From b5cdcb63ca45ddd949e5a4e5623da81c8522a803 Mon Sep 17 00:00:00 2001 From: David Corney Date: Thu, 2 Apr 2026 13:38:06 +0100 Subject: [PATCH 01/11] feat: Experimenting with local models --- .../encoder_experiment/finetune_encoder.py | 526 ++++++++++++++++++ scripts/encoder_experiment/label_sentences.py | 219 ++++++++ .../labelled_sentences.jsonl | 80 +++ scripts/encoder_experiment/questions.py | 15 + 4 files changed, 840 insertions(+) create mode 100644 scripts/encoder_experiment/finetune_encoder.py create mode 100644 scripts/encoder_experiment/label_sentences.py create mode 100644 scripts/encoder_experiment/labelled_sentences.jsonl create mode 100644 scripts/encoder_experiment/questions.py diff --git a/scripts/encoder_experiment/finetune_encoder.py b/scripts/encoder_experiment/finetune_encoder.py new file mode 100644 index 0000000..dc60415 --- /dev/null +++ b/scripts/encoder_experiment/finetune_encoder.py @@ -0,0 +1,526 @@ +# Claude-created +"""Script 2: Fine-tune encoder-only LLMs on the labelled data from label_sentences.py. + +Trains three models on binary yes/no classification for each question: + - ModernBERT-base-multilingual (answerdotai/ModernBERT-base-multilingual) + - mDeBERTa-v3-base (microsoft/mdeberta-v3-base) + - XLM-RoBERTa-base (xlm-roberta-base) + +Each model is fine-tuned separately for each question (NLI-style: input = question + sentence). +Results are written to a CSV and a summary table is printed to stdout. + +Dependencies (install manually, not in pyproject.toml): + pip install "transformers>=4.40" datasets torch accelerate scikit-learn + +Usage: + python scripts/encoder_experiment/finetune_encoder.py \\ + --input scripts/encoder_experiment/labelled_sentences.jsonl \\ + --output-dir scripts/encoder_experiment/results +""" + +import argparse +import csv +import json +import logging +import time +from dataclasses import dataclass, field +from pathlib import Path + +import numpy as np + +logger = logging.getLogger(__name__) + + +def setup_logging(output_dir: Path) -> None: + log_path = output_dir / "finetune.log" + fmt = "%(asctime)s %(levelname)s: %(message)s" + logging.basicConfig( + level=logging.INFO, + format=fmt, + handlers=[ + logging.StreamHandler(), + logging.FileHandler(log_path, encoding="utf-8"), + ], + ) + logging.getLogger("httpx").setLevel(logging.WARNING) + logger.info("Logging to %s", log_path) + + +MODELS: dict[str, str] = { + "ModernBERT-multilingual": "jhu-clsp/mmBERT-base", + # "mDeBERTa-v3-base": "microsoft/mdeberta-v3-base", + # "XLM-RoBERTa-base": "FacebookAI/xlm-roberta-base", +} + +RANDOM_SEED = 42 +MAX_LENGTH = 128 +TEST_FRACTION = 0.2 + + +@dataclass +class QuestionDataset: + question: str + inputs: list[str] + labels: list[int] + + +@dataclass +class ModelResult: + model_name: str + question: str + question_index: int + n_train: int + n_test: int + accuracy: float + f1_binary: float + f1_macro: float + precision: float + recall: float + train_seconds: float + + +def load_labelled_data(input_path: Path) -> list[dict]: + records = [] + with input_path.open("r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + records.append(json.loads(line)) + logger.info("Loaded %d labelled records from %s", len(records), input_path) + return records + + +def build_question_datasets( + records: list[dict], + questions: list[str], +) -> list[QuestionDataset]: + """ + For each question, build a QuestionDataset containing all the questions + labels (0/1). + Input string = question + " " + sentence_text (tokeniser adds [CLS]/[SEP]). + Label = int(answer) for 0.0 or 1.0; records with 0.5 (unsure) are filtered out. + """ + datasets = [] + for question in questions: + inputs, labels = [], [] + n_filtered = 0 + for record in records: + answers = record.get("question_answers", {}) + if question not in answers: + print(f"No answers for question {question}") + continue + answer = answers[question] + if answer == 0.5: + n_filtered += 1 + continue + inputs.append(question + " " + record["sentence_text"]) + labels.append(int(answer)) + if n_filtered: + logger.info( + "Question %r: filtered %d unsure (0.5) records, %d remaining", + question[:50], + n_filtered, + len(inputs), + ) + datasets.append( + QuestionDataset(question=question, inputs=inputs, labels=labels) + ) + return datasets + + +def split_dataset( + qd: QuestionDataset, + test_fraction: float = TEST_FRACTION, + random_state: int = RANDOM_SEED, +) -> tuple[QuestionDataset, QuestionDataset] | None: + """ + Stratified 80/20 train/test split. + Returns None (and warns) if a class has fewer than 2 examples. + """ + from sklearn.model_selection import StratifiedShuffleSplit + + labels_arr = np.array(qd.labels) + unique, counts = np.unique(labels_arr, return_counts=True) + + if len(unique) < 2: + logger.warning( + "Question %r: only one class present (%s), skipping.", + qd.question[:50], + unique, + ) + return None + + if counts.min() < 2: + logger.warning( + "Question %r: class %s has only %d example(s), skipping.", + qd.question[:50], + unique[counts.argmin()], + counts.min(), + ) + return None + + sss = StratifiedShuffleSplit( + n_splits=1, test_size=test_fraction, random_state=random_state + ) + indices = list(range(len(qd.inputs))) + train_idx, test_idx = next(sss.split(indices, qd.labels)) + + train_qd = QuestionDataset( + question=qd.question, + inputs=[qd.inputs[i] for i in train_idx], + labels=[qd.labels[i] for i in train_idx], + ) + test_qd = QuestionDataset( + question=qd.question, + inputs=[qd.inputs[i] for i in test_idx], + labels=[qd.labels[i] for i in test_idx], + ) + return train_qd, test_qd + + +def tokenise_dataset(qd: QuestionDataset, tokenizer) -> "datasets.Dataset": + import datasets as hf_datasets + + tokenised = tokenizer( + qd.inputs, + padding="max_length", + truncation=True, + max_length=MAX_LENGTH, + ) + data = {k: v for k, v in tokenised.items()} + data["labels"] = qd.labels + return hf_datasets.Dataset.from_dict(data) + + +def compute_metrics(eval_pred) -> dict[str, float]: + from sklearn.metrics import accuracy_score, f1_score, precision_score, recall_score + + logits, label_ids = eval_pred + preds = np.argmax(logits, axis=-1) + return { + "accuracy": float(accuracy_score(label_ids, preds)), + "f1_binary": float( + f1_score(label_ids, preds, average="binary", zero_division=0) + ), + "f1_macro": float(f1_score(label_ids, preds, average="macro", zero_division=0)), + "precision": float( + precision_score(label_ids, preds, average="binary", zero_division=0) + ), + "recall": float( + recall_score(label_ids, preds, average="binary", zero_division=0) + ), + } + + +def train_one_model( + model_key: str, + model_id: str, + train_ds, + test_ds, + output_dir: Path, + question_label: str, + epochs: int, + batch_size: int, + lr: float, + save_checkpoints: bool, +) -> tuple[dict[str, float], float]: + from transformers import ( + AutoModelForSequenceClassification, + Trainer, + TrainingArguments, + ) + + checkpoint_dir = output_dir / model_key / question_label + checkpoint_dir.mkdir(parents=True, exist_ok=True) + + training_args = TrainingArguments( + output_dir=str(checkpoint_dir), + num_train_epochs=epochs, + per_device_train_batch_size=batch_size, + per_device_eval_batch_size=batch_size, + learning_rate=lr, + lr_scheduler_type="linear", + warmup_ratio=0.1, + eval_strategy="epoch", + save_strategy="epoch" if save_checkpoints else "no", + seed=RANDOM_SEED, + report_to="none", + load_best_model_at_end=False, + logging_steps=50, + ) + + model = AutoModelForSequenceClassification.from_pretrained(model_id, num_labels=2) + + trainer = Trainer( + model=model, + args=training_args, + train_dataset=train_ds, + eval_dataset=test_ds, + compute_metrics=compute_metrics, + ) + + t0 = time.time() + trainer.train() + elapsed = time.time() - t0 + + metrics = trainer.evaluate() + # strip the "eval_" prefix added by Trainer + clean = {k.replace("eval_", ""): v for k, v in metrics.items()} + return clean, elapsed + + +def auto_detect_device() -> str: + try: + import torch + + if torch.cuda.is_available(): + return "cuda" + if torch.backends.mps.is_available(): + return "mps" + except ImportError: + pass + return "cpu" + + +def run_experiment( + question_datasets: list[QuestionDataset], + output_dir: Path, + epochs: int, + batch_size: int, + lr: float, + save_checkpoints: bool, + questions: list[str], + csv_path: Path, +) -> list[ModelResult]: + from transformers import AutoTokenizer + + results: list[ModelResult] = [] + + for q_idx, qd in enumerate(question_datasets): + split = split_dataset(qd) + if split is None: + continue + train_qd, test_qd = split + question_label = f"q{q_idx:02d}" + logger.info( + "Question %d/%d: %r (train=%d, test=%d)", + q_idx + 1, + len(question_datasets), + qd.question[:60], + len(train_qd.inputs), + len(test_qd.inputs), + ) + + for model_key, model_id in MODELS.items(): + logger.info(" Training %s (%s)...", model_key, model_id) + tokenizer = AutoTokenizer.from_pretrained(model_id) + + train_ds = tokenise_dataset(train_qd, tokenizer) + test_ds = tokenise_dataset(test_qd, tokenizer) + + try: + metrics, elapsed = train_one_model( + model_key=model_key, + model_id=model_id, + train_ds=train_ds, + test_ds=test_ds, + output_dir=output_dir, + question_label=question_label, + epochs=epochs, + batch_size=batch_size, + lr=lr, + save_checkpoints=save_checkpoints, + ) + except Exception as e: + logger.error(" Failed for %s / question %d: %s", model_key, q_idx, e) + continue + + result = ModelResult( + model_name=model_key, + question=qd.question, + question_index=q_idx, + n_train=len(train_qd.inputs), + n_test=len(test_qd.inputs), + accuracy=metrics.get("accuracy", float("nan")), + f1_binary=metrics.get("f1_binary", float("nan")), + f1_macro=metrics.get("f1_macro", float("nan")), + precision=metrics.get("precision", float("nan")), + recall=metrics.get("recall", float("nan")), + train_seconds=elapsed, + ) + results.append(result) + append_result_csv(result, csv_path) + logger.info( + " accuracy=%.3f f1_binary=%.3f f1_macro=%.3f (%.1fs)", + result.accuracy, + result.f1_binary, + result.f1_macro, + elapsed, + ) + + return results + + +CSV_FIELDNAMES = [ + "model_name", + "question_index", + "question_text", + "n_train", + "n_test", + "accuracy", + "f1_binary", + "f1_macro", + "precision", + "recall", + "train_seconds", +] + + +def init_results_csv(output_path: Path) -> None: + """Create (or truncate) the results CSV and write the header row.""" + with output_path.open("w", newline="", encoding="utf-8") as f: + csv.DictWriter(f, fieldnames=CSV_FIELDNAMES).writeheader() + logger.info("Results CSV initialised: %s", output_path) + + +def append_result_csv(result: ModelResult, output_path: Path) -> None: + """Append a single result row to the CSV.""" + with output_path.open("a", newline="", encoding="utf-8") as f: + writer = csv.DictWriter(f, fieldnames=CSV_FIELDNAMES) + writer.writerow( + { + "model_name": result.model_name, + "question_index": result.question_index, + "question_text": result.question, + "n_train": result.n_train, + "n_test": result.n_test, + "accuracy": f"{result.accuracy:.4f}", + "f1_binary": f"{result.f1_binary:.4f}", + "f1_macro": f"{result.f1_macro:.4f}", + "precision": f"{result.precision:.4f}", + "recall": f"{result.recall:.4f}", + "train_seconds": f"{result.train_seconds:.1f}", + } + ) + + +def print_summary_table(results: list[ModelResult]) -> None: + if not results: + print("No results to summarise.") + return + + print("\n" + "=" * 70) + print("SUMMARY: Mean ± SD of binary F1 across all questions") + print("=" * 70) + print(f"{'Model':<30} {'N questions':>11} {'Mean F1':>8} {'SD F1':>7}") + print("-" * 70) + + for model_key in MODELS: + model_results = [r for r in results if r.model_name == model_key] + if not model_results: + continue + f1_scores = [r.f1_binary for r in model_results if not np.isnan(r.f1_binary)] + if not f1_scores: + print(f"{model_key:<30} {'—':>11} {'—':>8} {'—':>7}") + continue + mean_f1 = np.mean(f1_scores) + sd_f1 = np.std(f1_scores) + print(f"{model_key:<30} {len(f1_scores):>11} {mean_f1:>8.3f} {sd_f1:>7.3f}") + + print("=" * 70 + "\n") + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--input", + default="scripts/encoder_experiment/labelled_sentences.jsonl", + help="Path to labelled JSONL from label_sentences.py", + ) + parser.add_argument( + "--output-dir", + default="scripts/encoder_experiment/results", + help="Directory for model checkpoints and results CSV", + ) + parser.add_argument( + "--epochs", type=int, default=3, help="Training epochs (default: 3)" + ) + parser.add_argument( + "--batch-size", + type=int, + default=16, + help="Per-device batch size (default: 16)", + ) + parser.add_argument( + "--lr", + type=float, + default=2e-5, + help="Learning rate (default: 2e-5)", + ) + parser.add_argument( + "--no-save", + action="store_true", + help="Skip saving model checkpoints", + ) + parser.add_argument( + "--device", + default=None, + help="Device override: 'cpu', 'cuda', 'mps' (default: auto-detect)", + ) + return parser.parse_args() + + +def main() -> None: + # Defer heavy imports to here so --help works without torch installed + try: + import datasets # noqa: F401 + import torch + import transformers # noqa: F401 + except ImportError as e: + logger.error( + "Missing dependency: %s\n" + "Install with: pip install 'transformers>=4.40' datasets torch accelerate scikit-learn", + e, + ) + raise SystemExit(1) + + args = parse_args() + input_path = Path(args.input) + output_dir = Path(args.output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + setup_logging(output_dir) + + if not input_path.exists(): + logger.error("Input file not found: %s", input_path) + raise SystemExit(1) + + device = args.device or auto_detect_device() + logger.info("Using device: %s", device) + if device != "cpu": + import os + + os.environ.setdefault("CUDA_VISIBLE_DEVICES", "0") + + from questions import QUESTIONS + + records = load_labelled_data(input_path) + question_datasets = build_question_datasets(records, QUESTIONS) + + csv_path = output_dir / "results.csv" + init_results_csv(csv_path) + + results = run_experiment( + question_datasets=question_datasets, + output_dir=output_dir, + epochs=args.epochs, + batch_size=args.batch_size, + lr=args.lr, + save_checkpoints=not args.no_save, + questions=QUESTIONS, + csv_path=csv_path, + ) + + print_summary_table(results) + + +if __name__ == "__main__": + main() diff --git a/scripts/encoder_experiment/label_sentences.py b/scripts/encoder_experiment/label_sentences.py new file mode 100644 index 0000000..c03954c --- /dev/null +++ b/scripts/encoder_experiment/label_sentences.py @@ -0,0 +1,219 @@ +# Claude-created +"""Script 1: Use Gemini (via Pastel) to label sentences with yes/no answers to a fixed question list. + +Output is a JSONL file with one record per sentence, each containing a `question_answers` dict. +The script is restart-safe: sentences already written to the output file are skipped. + +Supports two input formats (auto-detected by file extension): + - .jsonl pastel training format: {"sentence_text": ..., "score": ..., "claim_types": [...]} + - .json FullFact claims export: [{"sentence": {"text": ..., "claim_type": [...], + "checkworthiness": {"fullfact": {...}}}, ...}] + +Usage: + python scripts/encoder_experiment/label_sentences.py \\ + --input /path/to/fullfact-2026-03-16-claims.json \\ + --output scripts/encoder_experiment/labelled_sentences.jsonl \\ + --batch-size 20 +""" + +import argparse +import asyncio +import json +import logging +import sys +from pathlib import Path + +from pastel.models import BiasType, Sentence +from pastel.optimise_weights import load_examples +from pastel.pastel import Pastel + +from questions import QUESTIONS + +logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s") +logging.getLogger("google.ai.generativelanguage").setLevel(logging.WARNING) +logger = logging.getLogger(__name__) + + +def load_fullfact_claims(filename: str) -> list[dict]: + """Load the FullFact claims JSON export (a JSON array of article/sentence objects). + + Maps to the same internal format as load_examples(): + {"sentence_text": ..., "score": ..., "claim_types": [...]} + + The score is the max of the fullfact checkworthiness values (or None if absent). + This applies if a claim matches more than one topic, though the scores should be + the same anyway. + """ + with open(filename, "rt", encoding="utf-8") as f: + data = json.load(f) + rows = [] + for item in data: + sentence = item.get("sentence", {}) + text = sentence.get("text", "").strip() + if not text: + continue + claim_types = sentence.get("claim_type", []) + ff_scores = sentence.get("checkworthiness", {}).get("fullfact", {}) + score = max(ff_scores.values()) if ff_scores else None + rows.append( + { + "sentence_text": text, + "score": score, + "claim_types": claim_types, + } + ) + return rows + + +def load_input(input_path: Path) -> list[dict]: + """Auto-detect format by extension and return a list of normalised row dicts.""" + # if input_path.suffix.lower() == ".json": + return load_fullfact_claims(str(input_path)) + # return load_examples(str(input_path)) + + +def build_pastel(questions: list[str]) -> Pastel: + """Create a Pastel with only the experiment questions (no functions, no bias beyond the auto-added one).""" + return Pastel.from_feature_list(questions) + + +def load_already_labelled(output_path: Path) -> set[str]: + """Return the set of sentence_text values already present in the output file.""" + already_done: set[str] = set() + if not output_path.exists(): + return already_done + with output_path.open("r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + try: + record = json.loads(line) + already_done.add(record["sentence_text"]) + except (json.JSONDecodeError, KeyError): + pass + return already_done + + +def format_output_record( + original_row: dict, + answers: dict, + questions: list[str], +) -> dict: + """Merge original JSONL fields with question answers, keeping only string-keyed answers.""" + question_answers = { + k: v for k, v in answers.items() if isinstance(k, str) and k in questions + } + return { + "sentence_text": original_row["sentence_text"], + "score": original_row.get("score"), + "claim_types": original_row.get("claim_types", []), + "question_answers": question_answers, + } + + +async def label_batch( + pastel: Pastel, + batch_rows: list[dict], +) -> list[dict]: + """Call Pastel for a batch of rows, return formatted output records.""" + sentences = [ + Sentence( + sentence_text=row["sentence_text"], + claim_type=tuple(row["claim_types"]) if row.get("claim_types") else None, + ) + for row in batch_rows + ] + + answers_by_sentence = await pastel.get_answers_to_questions(sentences) + + records = [] + for row, sentence in zip(batch_rows, sentences): + if sentence not in answers_by_sentence: + logger.warning("No answer returned for: %s", row["sentence_text"][:60]) + continue + record = format_output_record(row, answers_by_sentence[sentence], QUESTIONS) + records.append(record) + return records + + +def append_records(records: list[dict], output_path: Path) -> None: + with output_path.open("a", encoding="utf-8") as f: + for record in records: + f.write(json.dumps(record, ensure_ascii=False) + "\n") + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--input", + default="/Users/davidcorney/fullfact/data-science-scripts/data/elastic_searcher/fullfact-2026-03-31-claims.jsonl", + help="Path to input file (.json FullFact claims export or .jsonl pastel training format)", + ) + parser.add_argument( + "--output", + default="scripts/encoder_experiment/labelled_sentences.jsonl", + help="Path for labelled output JSONL", + ) + parser.add_argument( + "--batch-size", + type=int, + default=20, + help="Number of sentences per Pastel call (default: 20)", + ) + return parser.parse_args() + + +async def main() -> None: + args = parse_args() + input_path = Path(args.input) + output_path = Path(args.output) + + if not input_path.exists(): + logger.error("Input file not found: %s", input_path) + sys.exit(1) + + rows = load_input(input_path) + logger.info("Loaded %d sentences from %s", len(rows), input_path) + + already_done = load_already_labelled(output_path) + if already_done: + logger.info("Skipping %d already-labelled sentences", len(already_done)) + + pending = [row for row in rows if row["sentence_text"] not in already_done] + if not pending: + logger.info("All sentences already labelled. Nothing to do.") + return + + logger.info( + "%d sentences to label with %d questions each", len(pending), len(QUESTIONS) + ) + + pastel = build_pastel(QUESTIONS) + batch_size = args.batch_size + total_written = 0 + + for i in range(0, len(pending), batch_size): + batch = pending[i : i + batch_size] + logger.info( + "Batch %d/%d (%d sentences)...", + i // batch_size + 1, + (len(pending) + batch_size - 1) // batch_size, + len(batch), + ) + records = await label_batch(pastel, batch) + append_records(records, output_path) + total_written += len(records) + logger.info( + " Written %d records (total so far: %d)", len(records), total_written + ) + if i >= 5: + break + + logger.info("Done. %d sentences labelled -> %s", total_written, output_path) + # Allow gRPC background threads (used by the Gemini client) to drain + # before the event loop closes, avoiding spurious _DeleteDummyThreadOnDel warnings. + await asyncio.sleep(1.5) + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/scripts/encoder_experiment/labelled_sentences.jsonl b/scripts/encoder_experiment/labelled_sentences.jsonl new file mode 100644 index 0000000..3443ab8 --- /dev/null +++ b/scripts/encoder_experiment/labelled_sentences.jsonl @@ -0,0 +1,80 @@ +{"sentence_text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", "score": 5.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", "score": 5.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", "score": 5.09725, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", "score": 4.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", "score": 4.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", "score": 4.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", "score": 4.722555, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The funding comes from £3.8m allocated to Wales by the UK Government earlier this month.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The expected final cost of the South Wales Metro soars to £1.3bn", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another £150m added (to the £1.1bn forecast).", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In total the party has lost four candidates across Wales in one week - while two had pulled out before Reform's lists were published.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", "score": 4.52192, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across the network, Transport for Wales, via the Welsh Government, has invested £800m in brand new rolling stock.", "score": 4.3787199999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Thousands in Wales to get £200 boost as prices rise", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tuesday's announcement represents the third Reform candidate to quit the party a little over a month before the Senedd election.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", "score": 4.285765, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", "score": 4.233315, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around £1.3bn, nearly double its initial estimate.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The A487 at Commins Coch near Aberystwyth, Wales, is amongst the longest-running improvement schemes currently underway in the country, with temporary traffic lights expected to remain in place until June 23, making it the most noteworthy set of Welsh roadworks to be aware of.", "score": 4.0675799999999995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get £200 towards their energy costs.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", "score": 3.8939399999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", "score": 3.866315, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", "score": 3.758995, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yes, but they were able to make those reductions in England, weren't they, and we haven't been making them in Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", "score": 3.636075, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "In Putting Wales First, a recently translated history of Plaid Cymru's political ideas, Prof Richard Wyn Jones references a 1940s newspaper editorial satirising the party's then preoccupations.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This manifesto is titled A new chapter for Wales.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", "score": 3.566845, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now a party insider says that the vetting process used for candidates in the Senedd elections in Wales is flawed.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", "score": 3.419705, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", "score": 3.381535, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", "score": 3.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", "score": 3.18436, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As well as the impact on heating, petrol prices have reached highs we saw during the early stages of the war in Ukraine.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", "score": 3.063685, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rhian Thomas is head of the Electoral Commission in Wales.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was launched yesterday ahead of the Senedd election in May.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", "score": 2.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", "score": 2.8717300000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Every one of those increases is significant.", "score": 2.73922, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Numbers have steadily increased since the programme began in 2016, and now top 20,000.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than £130m is spent each year on such schemes.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging £8.80 per 1,000 kcal compared to £4.30 for less healthy foods.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A sizable proportion are adult learners who have come via the workplace, but there have also been huge increases in take-up by 16- to 24-year-olds, and there is a growing level of participation among diverse ethnicities.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Which is why you had stock out and I think that was driven by fear of shortage but also price increase.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} diff --git a/scripts/encoder_experiment/questions.py b/scripts/encoder_experiment/questions.py new file mode 100644 index 0000000..14d6e0e --- /dev/null +++ b/scripts/encoder_experiment/questions.py @@ -0,0 +1,15 @@ +# Single source of truth for the question list used in label_sentences.py and finetune_encoder.py. +# Questions taken from scripts/example_pastel_model.json (excluding "bias"). + +QUESTIONS: list[str] = [ + "Is this making a claim that is too good to be true?", + "Could believing this claim harm someone's health?", + "Does this sentence relate to many people?", + "Is this sentence likely to be believed by many people?", + "Could believing this claim lead to violence?", + "Does the sentence contain compare quantities, such as 'more' or 'less'?", + "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual", + "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?", + "Is this sentence interesting to the average reader?", + "Does the sentence suggest a course of action?", +] From 797d7756874a0090c12afa634185c50e31911838 Mon Sep 17 00:00:00 2001 From: David Corney Date: Thu, 2 Apr 2026 13:39:20 +0100 Subject: [PATCH 02/11] feat: Adding claims data set --- .../fullfact-2026-03-31-claims.jsonl | 118724 +++++++++++++++ 1 file changed, 118724 insertions(+) create mode 100644 scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl diff --git a/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl b/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl new file mode 100644 index 0000000..acf8952 --- /dev/null +++ b/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl @@ -0,0 +1,118724 @@ +[ +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", + "media_hash": "04b6c31bcbf782e92cd7694f251c5e5f8bf0063fac1543da8a706c6d", + "sequence": 189, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465, + "senedd_election": 5.548465 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", + "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.51636, + "senedd_election": 5.51636, + "scottish_elections": 5.51636 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", + "media_hash": "6d42615c7f0605e2173116517852450ce41e72015a7ce881267c0745", + "sequence": 188, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "senedd_election": 5.395685 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", + "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.2593950000000005, + "senedd_election": 5.2593950000000005, + "scottish_elections": 5.2593950000000005 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", + "media_hash": "5cca71869e48351c12169c35e857ba6b12cebb74ad71326f6ed3d94b", + "sequence": 852, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 5.123595, + "scottish_elections": 5.123595 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", + "media_hash": "735b17ec975d6f20b22ae031a12d64fc63dd562a5a9156ec5d19c737", + "sequence": 888, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 5.09725, + "scottish_elections": 5.09725 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", + "media_hash": "e33546ce5c49873822230392e567021631711e43eb996092b3a8aea1", + "sequence": 195, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.981275, + "senedd_election": 4.981275 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", + "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.910905, + "senedd_election": 4.910905, + "scottish_elections": 4.910905 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", + "media_hash": "89ebe066db59c305dd3ec3faa21d71656b9184a78a9f6e2ba4cf78bf", + "sequence": 207, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.901365, + "senedd_election": 4.901365 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", + "media_hash": "cc00c0f2de04f4d6ef1c659b298827e66ce518bce8e886676530ea52", + "sequence": 222, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.884875, + "senedd_election": 4.884875 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", + "media_hash": "f10812f879772d722a90c5753954ada30817cb9cb276769d88c40ae6", + "sequence": 209, + "claim_type": [ + "personal", + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.722555, + "senedd_election": 4.722555 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "The funding comes from \u00a33.8m allocated to Wales by the UK Government earlier this month.", + "media_hash": "1c809ddad81a14516c21b359c702a7f1d785493d28aefb12d24c0690", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.5769, + "senedd_election": 4.5769 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "media_hash": "97e06701f4afc3537fff344c720bd9dfc26d4666a6cfd00dd610558e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another \u00a3150m added (to the \u00a31.1bn forecast).", + "media_hash": "a548162e66678724fc52130304025c60248738e32de1e97e6410abe4", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", + "media_hash": "1790d24fe6a685c7056e090f0b29a3e1327f49fcbf9f3d3d45fc35b4", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", + "media_hash": "5e14b797cb604f60f17ac178f6ca87ee0363656ecceb406b0e31e197", + "sequence": 203, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "Three Reform candidates quit in one Welsh constituency", + "publication_date": "2026-03-31T18:17:49", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/cje47941j4qo", + "media_type": "news_article", + "sentence": { + "text": "In total the party has lost four candidates across Wales in one week - while two had pulled out before Reform's lists were published.", + "media_hash": "63cf5493362055887adfdaf5e1f7e49fb71306f17055f7e0b25334c3", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", + "media_hash": "7321467dbae8b34f32354179b19b9f5b50f626fb02543aabc4e3c615", + "sequence": 213, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52192, + "senedd_election": 4.52192 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", + "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Food for Thought report", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.400095, + "senedd_election": 4.400095, + "scottish_elections": 4.400095 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Across the network, Transport for Wales, via the Welsh Government, has invested \u00a3800m in brand new rolling stock.", + "media_hash": "deb1d28b7151066ba26d0a716bbe5fc4088a6e5b57b1e2b1111364a7", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.3787199999999995, + "senedd_election": 4.3787199999999995 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Thousands in Wales to get \u00a3200 boost as prices rise", + "media_hash": "9e6938159d503cdf718fa61857220ce2ee9c12db1a824303ca77e96f", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.347765, + "senedd_election": 4.347765 + } + } + } +}, +{ + "title": "Third Reform candidate quits before Senedd election citing 'serious concerns'", + "publication_date": "2026-03-31T19:47:01", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/politics/third-reform-candidate-quits-before-33694032", + "media_type": "news_article", + "sentence": { + "text": "Tuesday's announcement represents the third Reform candidate to quit the party a little over a month before the Senedd election.", + "media_hash": "eb832c092728c8d808a7892a29f64ca6a22124ed237824701891f713", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 4.347765 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", + "media_hash": "5efbf740e399c74f90322a3b727665855b05d792d9fa5305688acf39", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.347765, + "senedd_election": 4.347765 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", + "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", + "sequence": 20, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.285765, + "senedd_election": 4.285765, + "scottish_elections": 4.285765 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", + "media_hash": "162427decdce3e89de25776d85b4787b6ab6333ddceb57f4c6a86b16", + "sequence": 2, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.233315, + "senedd_election": 4.233315 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around \u00a31.3bn, nearly double its initial estimate.", + "media_hash": "19984977ee13d7b9a89dca728c6ae1fca5e898f958574fe7fc979f09", + "sequence": 1, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.224345, + "senedd_election": 4.224345 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", + "media_hash": "723a4073ac83b157ce9ce2c829fef1c007c0ffa8387deec8bb340c13", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.213945, + "senedd_election": 4.213945 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", + "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", + "sequence": 986, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.10166, + "senedd_election": 4.10166, + "scottish_elections": 4.10166 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", + "media_hash": "701c815f7dd14dd4af6ed552c3aa758c00e430388f99fab3d97534d8", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.10166, + "senedd_election": 4.10166 + } + } + } +}, +{ + "title": "UK drivers warned about seven key roads over Easter bank holidays with huge delays", + "publication_date": "2026-03-31T15:09:47", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/easter-bank-holiday-travel-disruption-36950018", + "media_type": "news_article", + "sentence": { + "text": "The A487 at Commins Coch near Aberystwyth, Wales, is amongst the longest-running improvement schemes currently underway in the country, with temporary traffic lights expected to remain in place until June 23, making it the most noteworthy set of Welsh roadworks to be aware of.", + "media_hash": "eefd2c58d0e365a555c02020d440367c6f270b23fd2baeb11f89314f", + "sequence": 11, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 4.0675799999999995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", + "media_hash": "1197ec5dba4741ad33a06fc85c2329dda8148771307400261972f525", + "sequence": 721, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.061165, + "senedd_election": 4.061165, + "leo_s_topic": 4.061165 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", + "media_hash": "8bfca18fbf84b97920d21b6ed7a0e629c08aa6a8109b2671f9818000", + "sequence": 17, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.061165, + "senedd_election": 4.061165 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get \u00a3200 towards their energy costs.", + "media_hash": "9a95461557b214e3fd4e4e19072df5b5e8332f2ec98dbc8b90f5ce96", + "sequence": 849, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 4.026165, + "scottish_elections": 4.026165 + } + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", + "media_hash": "3b268f47c38e5a8b213eb4a8f021ebb1463bab4c4c2853e2991ef30c", + "sequence": 21, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.8939399999999997, + "senedd_election": 3.8939399999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", + "media_hash": "3810f68df12e1160540ad95d2cf921bf86b1220ea66bf38307ee0bce", + "sequence": 211, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.866315, + "senedd_election": 3.866315 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", + "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", + "sequence": 971, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Aled Morgan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.758995, + "senedd_election": 3.758995, + "scottish_elections": 3.758995 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", + "media_hash": "30cd1723bfc823d3c1325faef9a519bf15b63ecc2df1f2db562bd254", + "sequence": 206, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", + "media_hash": "dd7fa4c05e4853cd8e48af38f594720ac09b3e705427a66cdefcdc09", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Yes, but they were able to make those reductions in England, weren't they, and we haven't been making them in Wales.", + "media_hash": "3c58c619030a45d79df5a145454fd77d82ac304f71a5dbd9b7678229", + "sequence": 997, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", + "media_hash": "ff60758d4c9ebd7c702029dfa88ddcb9a05353f4ddb2641dc6de91bd", + "sequence": 204, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", + "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.748535, + "senedd_election": 3.748535, + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", + "media_hash": "2673585d7ff5fa0234fc017c81f719afa40d136638c868b1624c1fff", + "sequence": 35, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.739565, + "senedd_election": 3.739565 + } + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", + "media_hash": "573609c807f573b1bd6ee9826ab8e4c956c3cc0a12ed5a64c45a88c2", + "sequence": 38, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "BBC Wales", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003, + "senedd_election": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", + "media_hash": "b229152d7b35d2076b7418f5de224ce7eb8e1a55bff4bdbe38acf7fb", + "sequence": 39, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003, + "senedd_election": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", + "media_hash": "5080801fa8dc55ff7852ae397478b79271eaaa10250c31393fcec110", + "sequence": 205, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135, + "senedd_election": 3.703135 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", + "media_hash": "34ccc96534a02304efc672d48c95705df7e434783b79da696a512117", + "sequence": 202, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.636075, + "senedd_election": 3.636075 + } + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "In Putting Wales First, a recently translated history of Plaid Cymru's political ideas, Prof Richard Wyn Jones references a 1940s newspaper editorial satirising the party's then preoccupations.", + "media_hash": "70b549322b296520ba7cd8af62759e197c7bee10623c05ff35d02895", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Prof Richard Wyn Jones", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", + "media_hash": "58358ea3e614030f18193aa7f5e2368d39bc5a42b77fe1d4e68fa826", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.58131, + "senedd_election": 3.58131 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", + "media_hash": "27e4a3f1581447eb536556e314efc4eb5694e2819e33dede6df8ffbe", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.58131, + "senedd_election": 3.58131 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "This manifesto is titled A new chapter for Wales.", + "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", + "sequence": 981, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "senedd_election": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", + "media_hash": "2148e03f5a316c96d45041dd4c587be626eebd57a33651a007df1db5", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.566845, + "senedd_election": 3.566845 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", + "media_hash": "a36c466ad1ad5179c22f8bc96d7a50c47ded9163e5c203a2276c5eac", + "sequence": 1015, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Reform whistleblower says vetting process is \u2018expensive, flawed and unprofessional\u2019", + "publication_date": "2026-03-31T11:29:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-whistleblower-says-vetting-process-is-expensive-flawed-and-unprofessional/", + "media_type": "news_article", + "sentence": { + "text": "Now a party insider says that the vetting process used for candidates in the Senedd elections in Wales is flawed.", + "media_hash": "1d3cca79d9bd10d704ef713ceb56aac46df8723ece86be3dce440c77", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform UK whistleblower", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", + "media_hash": "71a9563a9b06a998ddd6532b2bb5d34e2eff4a320668e8b864f91efe", + "sequence": 891, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", + "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", + "sequence": 987, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "senedd_election": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", + "media_hash": "02befcea8b75930565027e0a883c97662112260256f7e28092732a76", + "sequence": 33, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997, + "senedd_election": 3.5503549999999997 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", + "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "senedd_election": 3.548465, + "scottish_elections": 3.548465 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", + "media_hash": "cd06ed5004f404717f563a41c98f8290b205fbedbe0dfdd6c61f7e25", + "sequence": 16, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.436025, + "senedd_election": 3.436025 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", + "media_hash": "a5a6e1aec007a74d87cdb081bdc25bf760fbca0b00fa022854411817", + "sequence": 31, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.419705, + "senedd_election": 3.419705 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", + "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.414065, + "senedd_election": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", + "media_hash": "39bf9f789c5f9f7143aab76d89496a5d9e29741c06422b5be5f24ed8", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.414065, + "senedd_election": 3.414065 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", + "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.3956850000000003, + "senedd_election": 3.3956850000000003, + "scottish_elections": 3.3956850000000003 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", + "media_hash": "f16a963461e2d5b708e3a168a2feb7b4990a19962140cf19fb92600e", + "sequence": 32, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.381535, + "senedd_election": 3.381535 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", + "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.226865, + "senedd_election": 3.226865, + "scottish_elections": 3.226865 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", + "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.18436, + "senedd_election": 3.18436, + "scottish_elections": 3.18436 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", + "media_hash": "1a8ebe3abbe18f8d438ca4981f4d4675b005ab2d0c11f2fe222d773f", + "sequence": 890, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.09725, + "scottish_elections": 3.09725 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "As well as the impact on heating, petrol prices have reached highs we saw during the early stages of the war in Ukraine.", + "media_hash": "74ad971b0c41d9e9fe5da086cb058b01e5fab9ba7a86cf4c1c8bc27e", + "sequence": 115, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.09725 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", + "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.063685, + "senedd_election": 3.063685, + "scottish_elections": 3.063685 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Rhian Thomas is head of the Electoral Commission in Wales.", + "media_hash": "bfc418945f3e18f1e9a05c482c7dafcfda7bdb07ffd8bae025224d8d", + "sequence": 884, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.91647, + "scottish_elections": 2.91647 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It was launched yesterday ahead of the Senedd election in May.", + "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", + "sequence": 970, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.91647, + "senedd_election": 2.91647, + "scottish_elections": 2.91647 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", + "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", + "sequence": 18, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", + "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Chris Nottingham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Blaenau Gwent Food Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", + "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", + "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Every one of those increases is significant.", + "media_hash": "d00dc2ac1491107d2002c2ab350ba8801c1692ffb7f7272edec3e4a5", + "sequence": 171, + "checkworthiness": { + "fullfact": { + "senedd_election": 2.73922 + } + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "Numbers have steadily increased since the programme began in 2016, and now top 20,000.", + "media_hash": "b45d4065822e872b97944d36e9f44526a70296a581147b358167b902", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Y Ganolfan Dysgu Cymraeg Genedlaethol", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "More than \u00a3130m is spent each year on such schemes.", + "media_hash": "7e0303524cd63bac6650c4cc3e93fe75a79f51183806cc2f80065247", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "senedd_election": 2.6987249999999996 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", + "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6987249999999996, + "senedd_election": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "A sizable proportion are adult learners who have come via the workplace, but there have also been huge increases in take-up by 16- to 24-year-olds, and there is a growing level of participation among diverse ethnicities.", + "media_hash": "9da33f60e4c95ec505db023d3854105ca479e836946a46bc22705fcb", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Which is why you had stock out and I think that was driven by fear of shortage but also price increase.", + "media_hash": "ecd0375973bb1747fd0f2c7ba72904edbdc4d966b6057f44278f8276", + "sequence": 178, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.658185 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It is slowing up approaching for the four six five to Stan Darcy at 43 and for the A four seventy to Coton interchange, but the rest of the approaches are moving well and at the moment still moving on the A fifty five.", + "media_hash": "67efdae62c9afcfc47dfe70c38de59c33d8e11784381671935381794", + "sequence": 228, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5769 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "That's the latest, more on the roads just after nine.", + "media_hash": "f848ed7953eec660378653a7b1729a88ea92655e51cb73a21886837b", + "sequence": 912, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769, + "senedd_election": 2.5769 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "The maximum award for heating oil has been increased from \u00a3500 to \u00a3750 and people can now apply up to twice within a 12-month period.", + "media_hash": "25fe9f3524764fbdde96ed14412d4ddde8a70454a61f84c885fa613e", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "senedd_election": 2.5769 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", + "media_hash": "f595f3379bb6c0c7ec5223b0549b909175def4f2441a6e06f9ff1473", + "sequence": 11, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.563275, + "senedd_election": 2.563275 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", + "media_hash": "0ed85b9ec2c3c2264f789df882b9c87e8a9264bb75fb0db8b161b667", + "sequence": 944, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sam Davis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002, + "senedd_election": 2.5528750000000002 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The maximum award for heating oil has been increased from 500 pounds to 750.", + "media_hash": "ec6e566bba201aecc47218e747ee9c7d7428527132e332e058d2bff1", + "sequence": 111, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Uh, you had a reaction to the initial crisis, sales went up 40% over three days, which is unsustainable.", + "media_hash": "290450f884e11b64f55dca8540cf02c0711d69a4b9824c4904563ce2", + "sequence": 143, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", + "media_hash": "a7269be0d9118d0566a69aa4523b660b1974f120361f1e611914c5d0", + "sequence": 889, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", + "media_hash": "ccb61923a8122037970ff5be668dabf65abb8a65293ac17254684c4c", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The funding for this measure comes from the 3.8 million pounds given to Welsh ministers by the UK government as part of a package of support for those struggling with the recent jump in the cost of heating oil.", + "media_hash": "8522ab0c8ce1a280cc3655a4741716f83caa8eb614cebced3ca4a52a", + "sequence": 108, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Um, sales are becoming slower, and the margin is smaller, so we're selling less fuel at a lower margin, but our costs remain the same in terms of staffing and business rates etcetera.", + "media_hash": "4d8341ee0294ef175da72de960b8891ace14ccc440439aef8d83e77e", + "sequence": 126, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And we used to have a five-day delivery window, we're now on a six-day delivery window which helps hugely.", + "media_hash": "a35af89a510cc314ff98e9ca0dbe1ff679de2813fe473dc2bfd2e5d0", + "sequence": 163, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Yeah, the cost of our fuel's gone up dramatically, so prior to this crisis I would be paying 44,000 pounds for a load of fuel, it's about 56,000 pounds now.", + "media_hash": "8c3aaeeee01cc7abfe3d8d040cc54a118b833a8271e4583852e12d60", + "sequence": 159, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of \u00a3734m.", + "media_hash": "47080177b9a9766661fcbc56b5e8a3762d314eac6f83eee50d724e9f", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", + "media_hash": "c67679ac07dc8f9eba19de30f771b4bb7ec7c7992b1c313903b7fa97", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The budget had already been revised upwards to \u00a31.1bn in 2023.", + "media_hash": "5db2c65d4bce5a9c2600ba4cbbe5b076bcb0fb2d84f4fd4d506feebd", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The original budget, set back in 2016, consisted of \u00a3164m from the European Union, \u00a3445m from the Welsh Government and the \u00a31.3bn City Deal for the Cardiff Capital Region, and \u00a3125m from the UK Government.", + "media_hash": "49944e632af0943a9b5637ee742a48a4d07670e31f72f1e18a278a94", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "We were working on that basis and you can absorb one or two pence increase in costs, um, we've had three weeks where costs went up 16 pence, six pence and 12 pence.", + "media_hash": "5d3eeaf8d366a735a51fc82ac62188130a1af1db9c68ee0b3e0b9582", + "sequence": 136, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", + "media_hash": "41787f2644ba253a4f2e7f857310aeee8178ba57c4086071edeed42c", + "sequence": 212, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "More broadly, a recent report by the Welsh language commissioner emphasised that while the number of speakers has remained stable over decades, it has not risen to reflect significant growth in the population as a whole.", + "media_hash": "12e06b0e274c05560e776fd4cf545b6ac55f15fbb20322f17c2b9bfa", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "welsh language commissioner", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "That final projected cost has now edged up to around \u00a31.3bn.", + "media_hash": "bd8297e1114fc62c46bed5d670f749300b4d964bb7c623928cda9e2c", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A lot of fuel is bought on what's called Platts lagged, so the average price of the fuel last week is my price for the fuel this week.", + "media_hash": "7e801fc2b0e0325fd2516f06178326f912f9653caa42e11979772d68", + "sequence": 132, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.500545 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", + "media_hash": "004ba823dc56bccdfcc3be4892702fa69fbff9ce9b98ded6bb6c42be", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Genevieve Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.66914, + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.6691400000000005 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", + "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.51636, + "senedd_election": 5.51636, + "scottish_elections": 5.51636 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", + "media_hash": "b66f8e066a2d657921e8cfd051521135d4c6db0be212be923b09ab4a", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "scottish_elections": 5.395685 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", + "media_hash": "0f9e88f058cac2940fbf6498ba2d157d67033836dc35e3a614ea5e55", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", + "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 5.36473 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.395685 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", + "media_hash": "ec50e4f7c10fe0e85b14de778170d48390915708b0f26a73cf29626d", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "scottish_elections": 5.395685 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", + "media_hash": "6554b5bde2af8c5ddb7e290750c470b6a7ab3b127797bb26c36e2d91", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.395685, + "scottish_elections": 5.395685 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", + "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", + "media_hash": "26d2d3297861afc92462f405ae7576948ffeeb57d1ac9ccc1296963e", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.36473, + "clinical_health": 5.36473 + }, + "demo": { + "health": 5.395685 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", + "media_hash": "b29551ca7be24314f5f1d43a494dde5f196f1c6ba4f5da9695917038", + "sequence": 10, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.35651, + "clinical_health": 5.35651 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", + "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.2593950000000005, + "senedd_election": 5.2593950000000005, + "scottish_elections": 5.2593950000000005 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", + "media_hash": "a1c18b06030ee4071712635e52daa53d0bccbd26571f2da7fabfc184", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.123595, + "scottish_elections": 5.123595 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.123595 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", + "media_hash": "5cca71869e48351c12169c35e857ba6b12cebb74ad71326f6ed3d94b", + "sequence": 852, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 5.123595, + "scottish_elections": 5.123595 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", + "media_hash": "735b17ec975d6f20b22ae031a12d64fc63dd562a5a9156ec5d19c737", + "sequence": 888, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 5.09725, + "scottish_elections": 5.09725 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Now it has emerged that while there is a \u00a34.1m publicly funded furlough scheme to save jobs at the plant, ADL are pursuing the axing of a quarter of its workforce in Scotland.", + "media_hash": "05ab8de9104cc12541414d8c96ef2dd2d56fdcff81958b0ccbd06f8e", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.970815 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "According to Scottish Government records, ADL received \u00a358m of public 'subsidy' for green vehicles since 2020 under two schemes aimed at transitioning Scotland to green buses - despite the company having embarked on a 2020 plan to axe a third of its Scottish workforce.", + "media_hash": "1812dbced0c419c9670e5e0ba96db2cd996dd40c66e2099d90e77c9a", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.970815 + }, + "demo": { + "politics_of_food": 2.970815 + }, + "pa-media": { + "politics_of_food": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", + "media_hash": "2611e759b67cbaf02fd2d0c95a28ddda0856ae9c65e556156ec4657b", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.970815, + "scottish_elections": 4.970815 + }, + "demo": { + "health": 5.16655 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.970815 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", + "media_hash": "afde05da79416c3a4056d8f69a2d80422df9e65712db2099d2e60a10", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.970815, + "health": 4.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", + "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.910905, + "senedd_election": 4.910905, + "scottish_elections": 4.910905 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", + "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", + "sequence": 37, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.89529, + "scottish_elections": 4.89529, + "clinical_health": 4.89529 + }, + "demo": { + "health": 4.89644 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.89529 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Scottish Government plans to cut nearly 20,000 public sector jobs by the end of the decade cannot be done without cutting frontline services and could see Scotland \"sleepwalking into austerity\", a new report has warned.", + "media_hash": "5fc53ea8cbc065ae6238879f8b16ee369201f4a424a1fac1787e7af9", + "sequence": 1, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.775650000000001 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "media_hash": "2a25a1faab38036d5d9763298dd6fdfa27319a06d678bc177ccb21b4", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.772635, + "scottish_elections": 4.772635 + }, + "demo": { + "health": 3.47096 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", + "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", + "sequence": 29, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.761455, + "scottish_elections": 4.761455, + "clinical_health": 4.761455 + }, + "demo": { + "health": 4.914235 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.914235 + } + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", + "media_hash": "100af847f6668a7d1f2fafdc857572d77000e15ff174bea3397f1ecb", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.698725, + "scottish_elections": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits 'unacceptable \u0301, says Cancer Research", + "media_hash": "6eaf1f179ea47b820cd1bbeca3dba64b37b0aafee71d084b09644b65", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.67355, + "clinical_health": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", + "media_hash": "87120b7a50ec002539fc16fd9a68fc8443e41c2b9e9999fa88488f1c", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.67355, + "clinical_health": 4.67355 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits 'unacceptable \u0301 says Cancer Research", + "media_hash": "b2a5a16576d84cce39883c1c04ce9838a53c4668a0e31b61278a3f20", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355, + "scottish_elections": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "However, IPPR Scotland suggests that the primary mechanism for this-a \"managed, downward workforce trajectory of 0.5% on average per annum to 2029-30\"-is a \"political choice\" that could have devastating consequences for those who rely on these services most.", + "media_hash": "56abdbc73e0f097268bc7370b75bb3ce72cfb5df2b24a34657780dc3", + "sequence": 5, + "claim_type": [ + "quantity", + "rules", + "predictions" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.66132 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "In June 2025, the company announced plans to end manufacturing altogether in Falkirk and Larbert, consolidating operations at its English site in Scarborough-putting up to 400 jobs at risk in Scotland.", + "media_hash": "9bf4600bba4fc51502e369b57c2bd6f4c69ea1b07b3223d5a1fcc8cc", + "sequence": 24, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.649215 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with \u00a36.1million in dirty cash uncovered in a money laundering probe.", + "media_hash": "886030accad256797c9fbf799d0cbc53bfe44b72c5f1261118599d61", + "sequence": 30, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "EU Agency for Criminal Justice Cooperation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.61247, + "crime": 4.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "There are 32 councils in Scotland, with the majority of them recognising Easter Monday as a public holiday - though there are some notable exceptions.", + "media_hash": "105d6860a8e4f927c72534034fd5015a531a0eea1bb622d03dfa3ef8", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "Out of 32 councils in Scotland, 27 recognise Easter Monday, this year falling on April 6, as a bank holiday:", + "media_hash": "0ee6e4c41329888651f39b8a13725a3fc560528cbe9261b7b9667cc5", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Aberdeenshire Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Fewer houses are being built across Scotland.", + "media_hash": "342b75aeb205a5d36a1e5c7c142c8883d37a1d582cb0445055524184", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.5769, + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "Transport Scotland announced \u00a345 million in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", + "media_hash": "fc533afa4923d5fcf9d010585699c118dd6976e778da7a187a0da63f", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", + "publication_date": "2026-03-31T15:30:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", + "media_type": "news_article", + "sentence": { + "text": "Scotland team news: Scotland manager Steve Clarke has hinted at making six or seven changes from the side that faced Japan to rotate his squad.", + "media_hash": "42fe2912d789357bc60c0881ff8a0f3024e130d17b2dac79eeb19ff8", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scotland manager Steve Clarke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "There are then five councils in Scotland which don't consider Easter Monday a public holiday.", + "media_hash": "242f5216b38508eeab36c07128a13ac4f47ab0f42708b73fac492a69", + "sequence": 57, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Fife Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Midlothian Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North Ayrshire Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Borders Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", + "media_hash": "7dae7b1b15ddc96c46f5b1aa697bb9261b8fe6a6822e45ecd9017144", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769, + "clinical_health": 4.5769 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "It received 285 responses from GPs across Scotland.", + "media_hash": "3d9ac159d4915f533b5f6aa0adea7ee542af99f0bf3af7a52f62b545", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "And it said there was no such relief for the more than 2,000 premises in Scotland with a rateable value of more than \u00a3100,000.", + "media_hash": "6f05b78f338f20bbf2b3780a8cb6adc430053990dc22f2d342bad7e8", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769 + } + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer is the least popular political figure in Scotland.", + "media_hash": "f31660b6e57ddebe22603b82015caa6a3c5e9b98ffa0f6d39971c13b", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.556405, + "scottish_elections": 4.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", + "media_hash": "76ec4a223ed0db2829b87cfa360ee8c0111f354c2ac98afde052399a", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.552875, + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.400095 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", + "media_hash": "08c7e3840f71fb499c0e9e93fc1ea0a9ccd37fa87ac622ed9e272937", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Full Fact", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "health": 4.545945 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (\u03bcg/g), which England and Wales have since adopted.", + "media_hash": "c41dda165efcd05ca3f64ffc2790f54ac233f79e2d2f7d3931313602", + "sequence": 45, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T09:37:57", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "Reform UK leader Nigel Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for his Scottish leader Lord Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", + "media_hash": "9895d46dda169ab3df1fc7a9f96058145ff00b30fdac668fde03ffba", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform UK leader Nigel Farage", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Lord Malcolm Offord", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in...", + "publication_date": "2026-03-31T05:49:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "\"The Scottish Greens would roll out 1,140 hours of funded childcare to all two-year-olds in Scotland and provide 570 hours of funded childcare to every child from six months to two years old,\" she added.", + "media_hash": "3826e109d4cad269cd7307821fe79e8c551fa30876e5db6516cf51c4", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", + "media_hash": "75bd15cfe91e0e65733c558e2de5758cf08ff58f3094468f3aee3276", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945, + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", + "media_hash": "23c6fc7f1a5203bd7309cfa1790d7e445ebbee14ba91edf8cf40f3f9", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Trussell Trust", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Deer numbers, while unknown to the exact figure, are believed to have doubled in Scotland since the 1990s and are sitting at about one million, according to environmental groups.", + "media_hash": "9f09ab00fca8d89b9c783182b15107ec4418607e76b2a19f9caa881e", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Environmental groups", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", + "media_hash": "77fd166baef910f3f07dc4b4c3454cbcdbdec780b0af03dd0eb2e55a", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", + "media_hash": "50948043fc783903a84982750c7cddd6df24ad197ecf5a2785cbb117", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "Transport Scotland announced last Wednesday that \u00a345m in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", + "media_hash": "a0ebc796d6df49ea0668785eb1b154a73d06d760a804541b7e010c4c", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T09:37:57", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47 per cent for Prime Minister Sir Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", + "media_hash": "d4e3614bd48ecfe75c2e3ff4aad4db39b20d50fa3a8d941ad89163ab", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Prime Minister Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour leader Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "The poll also revealed the popularity of several politicians in Scotland, with John Swinney continuing to be the most popular political leader in Scotland, with a net favourability rating of minus 10%.", + "media_hash": "23301ae979f74a26b7def3b662af79f4be6ba362ba3bec31ba9ba9f1", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Private providers play a significantly smaller role in the NHS in Scotland than in England.", + "media_hash": "9b7f7450418b9a6f7a57f2c9a7e09e89a4dad5db115ef49b4d211f59", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "It comes as the Scottish Retail Consortium (SRC) warned that medium and larger shops in Scotland will pay \u00a3162 million more than their English counterparts over the next three years.", + "media_hash": "6ec863bb3f46cddcfc4f2d7d9a05255e175993835339be2ec61698a0", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "Data compiled from pump price comparison website PetrolPrices.com shows a litre of diesel costs up to 217.0p at some forecourts in rural Scotland.", + "media_hash": "a95b3ecc2083060a7c2c3f72e9cbcec78c1630baa2ae9e7cbbd18246", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "media_hash": "1c7e438a20ffd2f9661537161467b6da5cbec91235ba69da12027d07", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", + "media_hash": "495b0535e398cdee5acd61ae8d7aef1ec7fd9463a572e5f7e7cb441b", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "A total of 84 of Scotland's primary schools ensure that almost ever primary seven pupil is up to standard in reading, writing, numeracy, listening and talking according to a new league table.", + "media_hash": "8d750befa1114e70276632c45265b31435ae966cf7868fedf125a5a3", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Sunday Times", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40413, + "score": 0.21319999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Scottish social housing builds fall to lowest level since 2014", + "media_hash": "e26ab068c6cacaca523ace35ae70e3cc60ef0b5b6a0e67925aa64332", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", + "media_hash": "ce125bfcca3bd148604aa672cc71ccb57b435addd135db195f8303f6", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "ADL said the proposal would safeguard approximately 200 skilled manufacturing and support jobs previously at risk of redundancy and would retain approximately 350 roles within Scotland.", + "media_hash": "071e4de3fe9e2b2d86e6696ac29e6a08347f5bc8b03c4b8f05cff03e", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", + "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Currently, the public sector in Scotland employs 22.2% of workers, compared with 18.1% in the UK as a whole.", + "media_hash": "6e348b211564db92a3da88788b58cdcd3337a09d2f8077280cfac8d0", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", + "media_hash": "0394d2a438e55d77c935963434df6a27c982e1f33ec53377b8a33efd", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "1919 magazine", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "crime": 4.545945 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T17:00:00+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/DaveDooganSNP/status/2039024927437709388", + "media_type": "social_post", + "sentence": { + "text": "\u26a1\ufe0f\ud83d\udcb8 Scotland is a net exporter of electricity, yet households here are hit with some of the highest standing charges in the UK.", + "media_hash": "72d5121af43c4f25dcf600cee59ca8256c9aaa0e1a10cc2be70e42c2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Some \u00a34.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional \u00a35.4m.", + "media_hash": "930a886ee8c0000fe195223b32259aa786ec034a1b8aa96c95458bbb", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.5368999999999999 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", + "media_hash": "42d0adc8d3f341c013f99fc4f36a6d2243f8c7abd60aa666d92dc163", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "health": 4.545945 + } + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "This compared with minus 47 per cent for Prime Minister Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", + "media_hash": "0f20a7a91a5efbd471be68ca79a6157a7ab6e3b97f0a7c6a5ccc25d0", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "polls": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for Reform's Scottish leader Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", + "media_hash": "784e7e43c13ec30242124ed11c0e2037fedea75045102e527c841512", + "sequence": 13, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "A total of 1,197 primary schools provided data for the annual Achievement in Curriculum for Excellence Levels publications, with the remaining 729 on the government database not participating, either because no children were up to standard, the school roll was too small or the data was not collected centrally.", + "media_hash": "e09a6cc54383a2382e1aef8c09db1dcb3221e91272d7ce721e2b8079", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Sunday Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "By the time the 2020 jobs cut was in place, ADL had already received over \u00a38m in 'job securing' taxpayer funding which was promoted as supporting building a new greener business in Scotland.", + "media_hash": "9ddf78feff1a8cbf188097ab441989de7b6d7f7c037b21ccc7b7e12a", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.35450000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "Reform UK leader Nigel Farage has a minus 31% rating in Scotland, compared with minus 15% for his Scottish leader Lord Malcolm Offord, although 55% of respondents said they had no opinion of Lord Offord.", + "media_hash": "bc10e51272f1f44e89ccfb67cb743b3e3cc0fab603364b24e2467a7e", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Lord Malcolm Offord", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "65% of voters would back Mr Swinney over the Reform UK Scotland boss, while 35% would support Lord Offord.", + "media_hash": "e9480f164ab260b52f18422b7a168acc05da8e74778629708def8ca3", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "McBurnie hasn't played for Scotland for five years - and may never again - but he has 13 goals and seven assists in 30 games in the English Championship.", + "media_hash": "8529ee136d3ac5b83a802238a23b5f4ef89b2636ae6daa3dd5347ebf", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Oli McBurnie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "Scotland had 14 shots to Ivory Coast's 12 and four on target to their opponents' three.", + "media_hash": "e721dd7298689e517b193e28ddb47bc92d5311d7cfb36b81366f5911", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scotland fans", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "The survey also found SNP leader John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10 per cent.", + "media_hash": "6ceddc636712cd35d14de3caf10abfdf8451ba6e2180b93309736714", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "polls": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", + "media_hash": "8d924471eb470cdf421ef9d21a7ed9335d69c43f9fbaf1f019a59645", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47% for Prime Minister Sir Keir Starmer and minus 25% for Scottish Labour leader Anas Sarwar.", + "media_hash": "06304fb6b13dd315f9c0803242d0cd68c04b82af4231053805b5a56a", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", + "media_hash": "0692d4b29d4d6a04e64057f461ad72382349124a8e881c1b2ff6c0e4", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Trussell Trust", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "publication_date": "2026-03-31T15:03:10+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/jcartlidgemp/status/2038995523269480851", + "media_type": "social_post", + "sentence": { + "text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", + "media_hash": "fabe7c09c45efe890a986c3c7e29dd896d0c00fe58aeeedaffb2841e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "defence": 4.545945 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "It was perhaps her experience that drove attitudes in the recent Logos survey of Christians in Scotland, which found that more than 80 per cent of participants said they were worried about the negative reaction or criticism that Christian politicians have received.", + "media_hash": "afbb7864dcbaae5817cd6c90df5f614db6d9060bedaed46479fae43c", + "sequence": 23, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Logos Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + }, + "demo": { + "race__ethinicy__religion": 4.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "The Grangemouth refinery produced 97% of Scotland's aviation fuel before it closed.", + "media_hash": "2a837d6787b38704b4b0229bd69c7519cf668bd8b72de429c93836a8", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", + "media_hash": "3ff650a586805fd9d9eb88ba98b49d6388bedd0e5e1371dfa2a552db", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.540725, + "crime": 4.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:48:34+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", + "media_type": "social_post", + "sentence": { + "text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", + "media_hash": "44040b133caca303abc5f1a268e4de1fcd62070a4d507d4a96adae92", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "the SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.500545, + "scottish_elections": 4.500545 + } + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "Britain's biggest bus and coach manufacturer which has been propped up by tens of millions in public money in Scotland has set out plans to axed a quarter of ifs staff despite a government-rescue bid sparked by its threat to move to England.", + "media_hash": "252ce14bd610685cb2e9094893d551d4a478af31d3ffde7bb28ee53b", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.496495 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", + "media_hash": "2adfdc7e49415afec074f7f64afbe9c23dc2951cf0284cccaf1bb491", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.486035, + "health": 4.486035 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland's energy workers face redundancies on an industrial scale thanks to Labour's crippling tax on Scotland's energy with 1000 jobs a month at risk - for Anas Sarwar to pose as the friend of Scottish industry is a kick in the teeth to workers across Scotland.", + "media_hash": "290d9068f0e76306fe454d4f5c775aa548e83a36407c1a4e2d068de7", + "sequence": 35, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Keith Brown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "This will be Scotland's first time in a World Cup since 1998.", + "media_hash": "b183c07106a5bfd88f1eea57f723afc43d289f3fc66edf14884e3313", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.46844 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", + "media_hash": "038f920dcca94e97602d994e708b20f84cf4eb9d35cd41338d62ce52", + "sequence": 8, + "checkworthiness": { + "fullfact": { + "clinical_health": 4.460005, + "scottish_elections": 4.460005 + }, + "demo": { + "health": 3.02204 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", + "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", + "sequence": 42, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.429455, + "scottish_elections": 4.429455, + "clinical_health": 4.429455 + }, + "demo": { + "health": 4.094984999999999 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.429455 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", + "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Food for Thought report", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.400095, + "senedd_election": 4.400095, + "scottish_elections": 4.400095 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "GMB Scotland warned that public money intended to support green jobs is instead flowing abroad, undermining domestic industry and putting livelihoods at risk.", + "media_hash": "4c0f7f00bdf5ec6b7c10794507ae1fb557b52340df68cc80350a0c9a", + "sequence": 30, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "GMB Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.36914 + }, + "demo": { + "politics_of_food": 2.5219199999999997 + }, + "pa-media": { + "politics_of_food": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", + "publication_date": "2026-03-31T05:01:49", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", + "media_type": "news_article", + "sentence": { + "text": "READ MORE: John Swinney vows new childcare system for Scotland if SNP win Holyrood election with \u00a3500m spending boost", + "media_hash": "1c35882872494efc7ba9afaad4395343b8d92d9fd0e9a93b636ed4a7", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "This was Scotland's last game before Clarke picks the 26 for America.", + "media_hash": "a8224b6d27ad9ea7aabae80f11bbe0bdabe0ccc7c48033965d94102f", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.347765 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "But successive 1-0 defeats to Japan and Ivory Coast have underlined the need for no further distractions as Scotland prepare to return to the World Cup for the first time since 1998.", + "media_hash": "caae222f29f69912b0c3d997dfe08b52f5be6e35a0cb724dc019e50c", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", + "media_hash": "fd6136869b9b62d77d42ff7007b79321d337343dc2b40c7be2c474dd", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Fair Feast", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.347765, + "scottish_elections": 4.347765 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "The latest loss - 1-0 against Ivory Coast in Liverpool - means Scotland now have only two games to work on improvements before their tournament gets underway against Haiti in Boston on 13 June.", + "media_hash": "2b7db93077bb0389b11062c5c621c1ec5966b0f2c00a256775201f96", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", + "media_hash": "272411c20dabb6e93f34343bb819c561d9574c643d13f77acf4438db", + "sequence": 13, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.331365, + "crime": 4.331365 + }, + "demo": {}, + "aapfactcheck": { + "queer-trans-sexuality": 4.331365 + }, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", + "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.326185, + "scottish_elections": 4.326185, + "clinical_health": 4.326185 + }, + "demo": { + "health": 4.326185 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.326185 + } + } + } +}, +{ + "publication_date": "2026-03-31T13:35:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/lucydahlia/status/2038973481841234064", + "media_type": "social_post", + "sentence": { + "text": "RT @STVNews: Thousands of ex-battery hens need new homes across Scotland or face death.", + "media_hash": "9c47b1ea03cfacf809eba5ba4ff9bffe2d4e04a36ed484e58c7a5251", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "STV News", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.287855 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", + "media_hash": "2095563abb1714ac6f688e6064acef4015abf0f35a5e22fdcc7055a6", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855, + "scottish_elections": 4.287855 + }, + "demo": { + "health": 4.712725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", + "media_hash": "78f07ccb46438e4c9836e219a4283f95a83723e85f0fcc360797dede", + "sequence": 28, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855, + "scottish_elections": 4.287855 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", + "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", + "sequence": 20, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.285765, + "senedd_election": 4.285765, + "scottish_elections": 4.285765 + } + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", + "media_hash": "3bef971223bf0779f87941fff65ae27737ed8730d549135bbc8868e3", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.263805, + "crime": 4.263805 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK drivers warned about seven key roads over Easter bank holidays with huge delays", + "publication_date": "2026-03-31T15:09:47", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/easter-bank-holiday-travel-disruption-36950018", + "media_type": "news_article", + "sentence": { + "text": "Traffic Scotland confirms that from the evening of April 2 until the morning of April 15, the stretch from River Garry to Shierglas will have temporary traffic lights in operation at all times, alongside a 10mph convoy system overnight and a 30mph restriction outside working hours.", + "media_hash": "eeb7deb105e548d2b60c506782384a733e62c3bf42c691576fdd41c0", + "sequence": 10, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Traffic Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.2553 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "April 1 marks the start of the new non\u2010domestic rating year and the Scotland\u2010wide revaluation with many firms facing a significant jump in their bills.", + "media_hash": "0f2d11aa70e88082177c3d8c93f417dfc743a1c8574276eda1310b99", + "sequence": 2, + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.233315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "He likely knows the majority of the 26 he'll be taking to Scotland's Charlotte, South Carolina base, but there are still a select number of slots to be claimed between now and then.", + "media_hash": "bf0b9837d12054388538f19583e96d1234d0d7d908f2007795a6916a", + "sequence": 7, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.224345 + } + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "Reform UK are set to become Scotland's second-largest party at Holyrood elections in May, according to a new poll.", + "media_hash": "4a066b3d22977a50859c0b9bd1cecbd5244fa4ea3e5623fced0da2fd", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.224345 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.224345 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", + "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", + "sequence": 43, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.224345, + "scottish_elections": 4.224345, + "clinical_health": 4.224345 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", + "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", + "sequence": 35, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.173405, + "scottish_elections": 4.173405, + "clinical_health": 4.173405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", + "media_hash": "4054ce172dbafe0019c7cc7c4854f178d6e0e230f1f21e07050f54ab", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.173405, + "scottish_elections": 4.173405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", + "media_hash": "9f6ae987c0baca74357aa22a06172ada9354698ae722bb0b0c9eeede", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.128005, + "scottish_elections": 4.128005 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "The people of Scotland deserve better from their cancer strategy.", + "media_hash": "e672ba027054e1045da9133d710b4bf83941bf1488b254f450a82198", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.128005, + "health": 4.128005 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", + "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", + "sequence": 986, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.10166, + "senedd_election": 4.10166, + "scottish_elections": 4.10166 + } + } + } +}, +{ + "title": "Ex-SNP candidate under investigation over alleged sexual offences", + "publication_date": "2026-03-31T11:15:31", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983585.stefan-hoggan-faces-police-probe-alleged-sexual-offences/", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", + "media_hash": "f119ef7581a322aec8188c5d4efc169dceec171ca39b9bc6372b84fa", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + } + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", + "media_hash": "8d882f7790685ab42df5d3c1acbe8682c377185d1cc7a0d325efe63c", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police investigating former SNP Holyrood candidate over...", + "publication_date": "2026-03-31T17:34:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", + "media_hash": "81e1fa29e1e255c5a9a56876cdd6c4ed53684116f135ccb74a1b43d0", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The report warns: \"If austerity is taken to refer to a degradation of public services in pursuit of balanced public finances, then the workforce reduction target risks Scotland slipping into austerity.", + "media_hash": "a1356d00f123e5f6f9ec44c2efb372db2c6d8fed1b3959475fa6605e", + "sequence": 28, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "A spokesperson for the group said: \"We did say closing Scotland's only refinery would leave us fuel insecure - an oil producing country relying solely on imports in a volatile world with potential conflict, shipping problems, and at the very end of a supply chain.", + "media_hash": "8dbe87d9f63ec252dd0bca289a139ec4c9dee3af3c1995fdad3d296c", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keep Grangemouth Working", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166 + } + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", + "media_hash": "8918e592ced05ef5e55087b7b355f25f4798b98d2834766a2f1d1913", + "sequence": 13, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in Scotland", + "publication_date": "2026-03-31T05:58:30", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", + "media_type": "news_article", + "sentence": { + "text": "\"Year-round childcare support, 52 weeks a year, for every child from nine months old, right until they leave primary school - that's what an SNP government on Scotland's side will deliver.", + "media_hash": "eee360c72c28ffbcf0f7607a9459721b05be91334664e66ee6dcedcb", + "sequence": 24, + "claim_type": [ + "quantity", + "rules" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.097144999999999 + } + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Scotland have failed to score in over 180 minutes of friendly football against admittedly very good opposition.", + "media_hash": "3d00e4f771373f8f1a8489b7280298eb19554154dae57af82628da87", + "sequence": 19, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.0921199999999995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", + "publication_date": "2026-03-31T16:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", + "media_type": "news_article", + "sentence": { + "text": "Last week it was announced that Alexander Dennis had won an order for 123 vehicles through the Scottish Zero Emission Bus Challenge Fund (ScotZEB3) led by Transport Scotland and administered on its behalf by the Energy Savings Trust.", + "media_hash": "d6872f988df8ae8c3d921002910396f96ba416a7995a8d2e0020f2fd", + "sequence": 7, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.0921199999999995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland is Europe's second biggest oil producer. We now have to import all our oil products at inflated prices,\" he said.", + "media_hash": "b357d8cfdd66f22fd6ad0bf7d80028d3528e7cdc06a5540a4ec625e9", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Simon Forrest", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.071625 + } + } + } +}, +{ + "title": "Campfire ban in Cairngorms with \u00a3500 penalty if broken comes into force", + "publication_date": "2026-03-31T06:36:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/campfire-ban-in-cairngorms-with-ps500-penalty-if-broken-comes-into-force-6528415", + "media_type": "news_article", + "sentence": { + "text": "Last year, Scotland faced what has been described as the UK's largest wildfire incident.", + "media_hash": "de266ed5128d72f3edd2a751e087cc05a1f75bd750f513f809b87f12", + "sequence": 15, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.071625 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "Ministers are facing growing calls to scrap subsidy schemes after the UK's biggest bus manufacturer moved to axe more than a quarter of its workforce - despite receiving millions in public funding to keep jobs in Scotland.", + "media_hash": "17d5f5e1ea6d7181d25011dfa5bcf74689e7d419c2d68b5ccb0ee72c", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Ministers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.071625 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a \u00a3500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", + "media_hash": "95f36115ba3a97b86eaf7f0acd6129e21af3f8153590b006af4f14f1", + "sequence": 24, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jackie Dunbar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.071625, + "energy": 4.071625 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", + "media_hash": "7b174f2126a3771613e30b8f6ffc8a4673a308afa6f4ca81046daa7a", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "health": 4.061165 + } + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "The Herald previously revealed that the move followed a row between ministers and ADL over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which have been worth a total of \u00a3155.8m to date.", + "media_hash": "e17f25e71e3e3d6cb92f90522205602ec4cb7b917798f3368694b95f", + "sequence": 33, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "ADL is one of the largest manufacturing employers in central Scotland with many roles in engineering, apprenticeships, and high-skill technical jobs.", + "media_hash": "0d40facf45096dad24d1bb20c92d852cef259e71005e6d83faefc956", + "sequence": 29, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "John O'Connell, chief executive of the TaxPayers' Alliance, said it was \"shocking\" that the Scottish government had \"doubled down on on its multi-million pound bribe\" to Alexander Dennis with a furlough scheme in a \"desperate attempt\" to keep it operating in Scotland.", + "media_hash": "1c8324efcda887298ddfea10db242c5b395d9ff80f1dbb0bd4710725", + "sequence": 19, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "John O'Connell", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "TaxPayers' Alliance", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "The Herald previously revealed that the move to consolidate operations in Scarborough followed a row between ministers and company executives over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which up till last year was worth a total of \u00a3155.8m to date.", + "media_hash": "f085ed25ed110744614d130a54876ccbbb4b430802f506f00c2c445c", + "sequence": 49, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "But when Christie and McTominay got in each other's way trying to get on the end of a Robertson cross from Kieran Tierney's through-ball Scotland were punished on the counter, having committed five players to the attack.", + "media_hash": "c4e8db7ec57949e1c5680572468c7bb75776b484ebc24125402e201a", + "sequence": 12, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", + "media_hash": "6962ae9b2ee416759e0ad7d4a2d43cf577ae5f59b2bb08897e9ec0d2", + "sequence": 74, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Martin Whitfield", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", + "media_hash": "7380b00349ad3920fad3371d5226a200ec016b157901cee9997c229e", + "sequence": 32, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "clinical_health": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", + "publication_date": "2026-03-31T11:28:24", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", + "media_type": "news_article", + "sentence": { + "text": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", + "media_hash": "9b9b2a88a6305b964be48ed5730eac83d9b9f4d9432b46134e8e83ef", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", + "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", + "sequence": 41, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.061165, + "scottish_elections": 4.061165, + "clinical_health": 4.061165 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", + "media_hash": "1b54f26520edbcc346fb2c8d155c5f29d7877674c0075e788b8c690c", + "sequence": 37, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.061165, + "scottish_elections": 4.061165 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The report also finds that median public sector pay in Scotland remains below pre-austerity levels and argues that lower pay elsewhere in the UK \"does not constitute a good argument that it is excessive in Scotland\".", + "media_hash": "91a30cddff13b33f52141ce4c6976314f7701c54fb133a99de2a483c", + "sequence": 35, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He said the Lib Dems are poised to beat the SNP in 10 constituencies across Scotland.", + "media_hash": "69833640dde3ed5fa3ed9d668feeebddd85dc42e520cf80cbbc14744", + "sequence": 67, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Lib Dems", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cole-Hamilton opens door to helping Sarwar become first...", + "publication_date": "2026-03-31T12:44:27", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", + "media_type": "news_article", + "sentence": { + "text": "\"I'm focused on delivering as many MSPs as I can for the Lib Dems and that's happening in 10 seats across Scotland, or wherever you are, on that peach ballot paper, the regional vote, where we can win.", + "media_hash": "a59e282ae31a4adec2a1ff98531f232b47245af3136981281eb9628a", + "sequence": 17, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Scottish Liberal Democrat Falkirk West candidate, Lucy Smith, said: \"Just days after Transport Scotland announced millions of pounds in support for Alexander Dennis we get the terrible news that more than a hundred workers in Falkirk are at risk of redundancy.", + "media_hash": "f0512891491c87af54eec40530f43e1d46118beaceb555ac719d57bb", + "sequence": 36, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Lucy Smith", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", + "publication_date": "2026-03-31T09:21:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", + "media_type": "news_article", + "sentence": { + "text": "Families can enjoy the one-hour Signature Tour, which explores 500 million years of natural history, folklore, and scientific research surrounding Scotland's most famous legend.", + "media_hash": "88e60839c7f0094919f4c35efe35753a00dc9f00aab0615e20087571", + "sequence": 24, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "The Loch Ness Centre", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", + "media_hash": "a57a83439d4b8f3a3cc370dca4b86aa6c09bd6d643ea6c8a2ea715bd", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.061165, + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Ivory Coast star Benie Traore was happy with the side's 4-0 thrashing of South Korea on Saturday and is hopeful they can deliver a similar performance against Scotland.", + "media_hash": "db2a21e98caccff2ce8560033dabfffbf83edf6540d3ffc598bb3d40", + "sequence": 55, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + } + } + } +}, +{ + "title": "Steve Clarke admits Scotland must find attacking...", + "publication_date": "2026-03-31T22:14:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696365/Steve-Clarke-admits-Scotland-attacking-quality-World-Cup.html", + "media_type": "news_article", + "sentence": { + "text": "Scotland head coach Steve Clarke admitted his side need to find more quality in the final third after their 1-0 defeat to the Ivory Coast at Everton's Hill Dickinson Stadium.", + "media_hash": "4476fd226c45a0d08a6ff73435a78ec4f45613313f5558b32c52bea0", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Steve Clarke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "A much-changed Scotland suffered another friendly defeat with the 1-0 loss to Ivory Coast offering manager Steve Clarke few solutions to their creativity problems as he prepares for the nation's first World Cup since 1998.", + "media_hash": "46a3ada87c41021b632f091674facb7eaf38078940ff52da1d6f1a53", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", + "media_hash": "ff53a3a7ad58317f37d43abf159f1a78b0bb8f5720600b0b964bb4b7", + "sequence": 70, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.2905 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", + "media_hash": "61d964f314636c9e38b36641749439b1d74ec8151d5be87a3fb46294", + "sequence": 20, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.059075, + "scottish_elections": 4.059075 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", + "media_hash": "d6dea1a7a319f23285c793b94df609d492d2446fc48dc2636e92b533", + "sequence": 2, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.27569999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.059075, + "scottish_elections": 4.059075 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in Scotland", + "publication_date": "2026-03-31T05:58:30", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", + "media_type": "news_article", + "sentence": { + "text": "Labour pledge two weeks of funded summer childcare in Scotland", + "media_hash": "9a50c2f36e42c432c53918d6a1492b71ba76f511927c1cdf7e6d0ca7", + "sequence": 0, + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.035135 + } + } + } +}, +{ + "title": "Scotsman hustings LIVE: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T16:29:41", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-live-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "The Scotsman's election hustings with Scotland 2050 is taking place at the Assembly Rooms in Edinburgh from 6pm", + "media_hash": "4c3eaafd132ba6e0adfbbc42e5289cb37fb6639b2f637361aaf9d2f4", + "sequence": 13, + "claimer": [ + { + "name": "The Scotsman", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scotland 2050", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "There was further cause to feel worried about Scotland's lack of edge up front.", + "media_hash": "2bf11e61041f107bab425a2cc9ceb9346304c664714b8366033644ca", + "sequence": 25, + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.035135 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Scotland head coach Steve Clarke watches on as his team lost 1-0 to Ivory Coast.", + "media_hash": "174e7c1d0cb8f7cb0537b12c61b5790fba13136a62a7501fded93025", + "sequence": 16, + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "This includes all three games in the group phase and in the knockout stages, if Scotland progresses further.", + "media_hash": "a16538021d9aec6a4c6f0aa25ff6710503aa4f9039f9f33e250206f4", + "sequence": 15, + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.035135 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get \u00a3200 towards their energy costs.", + "media_hash": "9a95461557b214e3fd4e4e19072df5b5e8332f2ec98dbc8b90f5ce96", + "sequence": 849, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 4.026165, + "scottish_elections": 4.026165 + } + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for \u00a3300 of support with their bills.", + "media_hash": "9067383b77bb0df353d633e264773cd338b1075a5cd22c2b406ddc3e", + "sequence": 19, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Advice Direct Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.026165, + "scottish_elections": 4.026165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", + "publication_date": "2026-03-31T11:28:24", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", + "media_type": "news_article", + "sentence": { + "text": "Tens of thousands of Scotland fans will be in the American city for Scotland's opening two games against Haiti and Morocco.", + "media_hash": "1f4c704bcc1a12d1b13219602aaa8b931ded1e17915d7292b11ec7b0", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.026165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", + "publication_date": "2026-03-31T16:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", + "media_type": "news_article", + "sentence": { + "text": "As things currently stand Alexander Dennis will close its Falkirk site and convert its Larbert facility into a chassis manufacturing hub, retaining roughly 350 staff in Scotland.", + "media_hash": "312b3ec140263789e47264da60dbc2cde653c9c31be171134af04967", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.026165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "IPPR Scotland adds that \"by failing to present (at the Scottish Parliament election in May 2026, for instance) the costs of constraining public services (in order to keep taxes down), politicians risk sleepwalking Scotland into similar outcomes\" to the UK Government's 2010 austerity programme.", + "media_hash": "afdd33891ce1c77867ced72b718a9e05e001b812c016fafa45f714d3", + "sequence": 32, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 39629, + "score": 0.29679999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.98733 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", + "media_hash": "0376c712fb7da35ef601cb6ab92ed7b92da964c028b8a5902942962d", + "sequence": 46, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Genevieve Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:01:20+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Alison_S_Taylor/status/2039040361977233737", + "media_type": "social_post", + "sentence": { + "text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", + "media_hash": "829c335a01bdca0183fa9d4f012164e2ca50f51079aa150aa6d15ed5", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.975225, + "scottish_elections": 3.975225 + } + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", + "media_hash": "3300a23f6cf1f9f0f23ade639188c03cee5fc3eefff4a6797fa33768", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", + "media_hash": "3c6d02636919a130275f51d1f229b8abd9eb72701e3f61f9fe2ea444", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", + "publication_date": "2026-03-31T11:06:15", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", + "media_type": "news_article", + "sentence": { + "text": "He said: \"This is a short-sighted decision that removes the only diving facility in the west of Scotland. Once it's gone, it's gone-and the community will not get it back.\"", + "media_hash": "40704f050a6b60b57a56b64076e9ef21dca7231e997cb7bd81562f0f", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Brian McGinley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", + "media_hash": "40b62d3dd90fb00582deb34f91d733adbadf22864589622925ab6182", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Susan Murray MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", + "media_hash": "85ddf4132aa1fae9eab9fb21c9aca9df83d71954df4c20578a6b8018", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.975225 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", + "media_hash": "26c73ba770ac8722398228649759b670308fd58b60b4b21859b1bc73", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", + "media_hash": "940d043e5e1428f9b31d6d6ea7d4efe650814d22041cd67beeb1dc09", + "sequence": 33, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", + "media_hash": "ed723601e675a3fea5ca775d8ba9c4ff7bdb173cc541fba1ff1ebf49", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "\"Grangemouth produced jet fuel for all of Scotland. The UK Government let it shut,\" he said.", + "media_hash": "05fe99f653ad2938fe3d2e505711abd0d950546a1e677a5a2fcf4ec3", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP MP Stephen Flynn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", + "media_hash": "7aebb7140b04b0299ebc18a9dfa1913093b38f4c1a3738b098ec72f8", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 4.36914 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", + "media_hash": "1e7402fd3cb8849eba07f7450f23961099de357ce2ccceda9235081c", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", + "media_hash": "388007679c4a042a020b6d511ae4f98591d3fcbf5b0cd46d3756ca95", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth refinery closure", + "media_hash": "11402838f27334abfbcb8982f8f7b484be9b38be0148eb27354e020c", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", + "media_hash": "b57d5be833b52020235188215fc83747d4ea69030a7f8b4e8dbf3cd4", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "nutrition_": 2.7201, + "politics_of_food": 2.7201 + }, + "pa-media": { + "nutrition": 0.0 + }, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Council criticised for closing crucial transport link during school exam season", + "publication_date": "2026-03-31T16:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985045.council-close-key-island-road-school-exams/", + "media_type": "news_article", + "sentence": { + "text": "Pupils in Scotland whose exam performance is affected by circumstances outwith their control may be entitled to special consideration under the Exam Exceptional Circumstances Consideration Service (EECCS).", + "media_hash": "2885cf2b86bef22650f9fbe9fdb653aaba958c8df1ba29b0e82196fe", + "sequence": 23, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.920805 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Pubs will be allowed to open until 30 minutes after the final whistle for Scotland games, but there are different rules for other matches.", + "media_hash": "058af12bfaa36238336b5ca634b3427bc96fe56fe2129c1dce199d80", + "sequence": 1, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.920805 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "It has been argued that losing manufacturing in Larbert and Falkirk would diminish Scotland's ability to innovate and scale production in green mobility - a strategic disadvantage amid increasing global demand for clean public transport.", + "media_hash": "08fb5585bf5c72b7dc453dfe62cdfdbed08b44940dd0fa1af79ed7c5", + "sequence": 32, + "claim_type": [ + "correlation", + "predictions" + ], + "claims_matched": [ + { + "tracked_claim_id": 104574, + "score": 0.0947 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.911715 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", + "publication_date": "2026-03-31T11:06:15", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", + "media_type": "news_article", + "sentence": { + "text": "The loss of the diving pool means there will be no diving provision in the west of Scotland, with the nearest facilities located in Edinburgh, and described the proposed leisure centre as offering \"less\" than the existing Citadel.", + "media_hash": "5dfc9f143b9c088cedaf8c40b86a751ecdd12f9c553e5179d61b2ee0", + "sequence": 16, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.911715 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Scotland will play in Liverpool for the fourth time tonight against a third different country.", + "media_hash": "204586114509eddc19775d1dd3aa91c106c7c015e98380a1e9d46247", + "sequence": 119, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.911715 + } + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", + "media_hash": "541859e8ca7689c57fae1c202c0a39f16eba65f69e43d8c29f712e44", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + }, + "demo": { + "politics_of_food": 0.0 + }, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", + "media_hash": "25d8357c62b597f7a5af980a82d300bf7f5581f9a8f6a1f8e1927a88", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Record View", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", + "media_hash": "7f13f2a4150e445aaa4e656ea3130781d03bb6184b9d5b2f2e1275f5", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + } + } + } +}, +{ + "publication_date": "2026-03-31T08:48:34+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", + "media_type": "social_post", + "sentence": { + "text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", + "media_hash": "35eaf5d51b900e1aa2a942ecbd2ba82e298fd6f02fdd540df44201c3", + "sequence": 2, + "claimer": [ + { + "name": "the SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.898845, + "scottish_elections": 3.898845 + } + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", + "media_hash": "3b268f47c38e5a8b213eb4a8f021ebb1463bab4c4c2853e2991ef30c", + "sequence": 21, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.8939399999999997, + "senedd_election": 3.8939399999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", + "publication_date": "2026-03-31T12:31:33", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", + "media_type": "news_article", + "sentence": { + "text": "The Men's and Women's 10K Glasgow are among the most distinctive and inspiring mass-participation running events in Scotland, and what makes them especially memorable is that they are two separate events taking place on the same day.", + "media_hash": "45176cdf5ef09018a3e731bb3d2f0dc68e8ccbfc7f301a4ff6e168f0", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.8939399999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", + "publication_date": "2026-03-31T09:21:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", + "media_type": "news_article", + "sentence": { + "text": "The Easter holidays are just around the corner, and so families all over Scotland will be trying to decide how best to make the most of the time off.", + "media_hash": "ede5fd525722e0aed7f9ea429357594f2c6c81e4f25b622c70035fe1", + "sequence": 2, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.866315 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "It backfired when an estimated 50,000 Tartan Army fans saw Don Masson convert a penalty and Kenny Dalglish head Scotland to Argentina.", + "media_hash": "645844e6ca6e72e832e30d4604513b3fe938a63979cd57ebe0d0b587", + "sequence": 129, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "Scotland's only oil refinery closed in April last year, leading to around 400 jobs being lost as the facility owners, Petroineos, said the site would transition to becoming an import terminal to \"meet Scotland's demand for transport fuels\".", + "media_hash": "bfb604be433654fb10922e8375d7bd4aab580264c1617851e6794c4e", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Petroineos", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + } + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "Scotland were though lucky to avoid going 2-0 down on 25 minutes when Wahi's 25-yard effort landed on top of the goalnet.", + "media_hash": "e6f80979b0cb53e3822650e012fd9fc46af6fa5b5a22ef0510b1538a", + "sequence": 58, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Elye Wahi", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:39:12+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/AndrewBowie_MP/status/2038883795730858081", + "media_type": "social_post", + "sentence": { + "text": "RT @ewangibbs: Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", + "media_hash": "6796b1c551ed80b827702568aa179f3e44fd1a4d9b9a1fab15af9499", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "England handed a debut to the Reverend Kennie Hunt, but couldn't get a win over the Scots in front of 38,000 at Goodison Park after Newcastle United striker Alexander Higgins scored for Scotland.", + "media_hash": "3a3eca49977a44113f9ec5fef1fafb9129b37edc2b6f118a69379f9d", + "sequence": 125, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + } + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "Scotland are currently battling with the world's best curlers at the Men's World Curling Championship in Ogden, Utah, in the USA.", + "media_hash": "625bd28dbccf15b2c3956961a559c460579ed052d519cf34daa68d80", + "sequence": 15, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Team Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", + "publication_date": "2026-03-31T05:00:00", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", + "media_type": "news_article", + "sentence": { + "text": "A \"life-saving\" charity is today celebrating 50 years of supporting people affected by domestic abuse and reshaping responses to the crime in Scotland.", + "media_hash": "ecf12a01d84a046b1670bb3fe00221ad57c7a7cb897ffd23fcd22551", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:48:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", + "media_type": "social_post", + "sentence": { + "text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", + "media_hash": "f10998e5e2c68043328e774e2c8f5ca176e17069b6ef17d1c7d7c00b", + "sequence": 1, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.860895, + "scottish_elections": 3.860895 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", + "media_hash": "24196df121e0b1a190caff62d537cc5aee3cda22501b00fbdcad2a04", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Scottish Tory energy spokesman Douglas Lumsden", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.788715, + "energy": 3.788715 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", + "media_hash": "71cc32dd894a229697cb2a9191e54582bb4eebf8c0e51598540cac7c", + "sequence": 30, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7800599999999998, + "scottish_elections": 3.7800599999999998 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", + "media_hash": "e7a3146e65a33ae931a15041ba0a62198d284507e12bb8864ac1cff7", + "sequence": 1, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7800599999999998, + "crime": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"That is a political choice, and Scotland is paying the price.\"", + "media_hash": "ab079b01b0271a5c469ff20335ca84b7b1ea55af5e0a8c532dc8b3ce", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7623699999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", + "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", + "sequence": 971, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Aled Morgan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.758995, + "senedd_election": 3.758995, + "scottish_elections": 3.758995 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", + "media_hash": "cb12d6b08127cb91842ef1759b8e950904991a5efc9c268e837b5a79", + "sequence": 41, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "clinical_health": 3.748535 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", + "publication_date": "2026-03-31T11:03:14", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", + "media_type": "news_article", + "sentence": { + "text": "\"I'd rather watch Scotland get hammered having a go than get beaten not having a go. There was a substantial crowd at Hampden for a friendly, who paid a lot of money for tickets and travel. Quite simply, the fans deserved far better than the dross put on a show. Sorry, John McGinn, there was no justification, and the boos were deserved.\"", + "media_hash": "5203d60c9f58659f9c2900b2bc4034a622ef38ae0262264771fc49da", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scott Gowers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Opposition politicians accused SNP ministers of presiding over a growing workforce crisis in Scotland's NHS.", + "media_hash": "26219861c873b9db89176e153433e5a970787da34f33923039a0836e", + "sequence": 14, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "Reform's focus right now is on non-white speakers of other languages, but Welsh has taken a bit of an attack, and I think it is scary for Gaelic speakers because we are such a small proportion of the population in Scotland compared to Wales.", + "media_hash": "b1d640bcaa37bfa2bb9c99921c78afcec677d192ccc2764b012d33db", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Eilidh Munro", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "Steve Clarke blanking out Scotland boos and stalling contract talks as World Cup deadline shifts", + "publication_date": "2026-03-31T21:50:39", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/steve-clarke-blanking-out-scotland-36951782", + "media_type": "news_article", + "sentence": { + "text": "The Scotland boss heard more jeers ring out around Everton's Hill Dickinson Stadium at both half time and full time in the latest friendly defeat to Ivory Coast.", + "media_hash": "85c7d50907e6c92626b9d17f6a4665a02c6590b6ac52714ba2de1614", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", + "publication_date": "2026-03-31T11:32:07", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", + "media_type": "news_article", + "sentence": { + "text": "One is making Scotland's clean energy infrastructure safer and more efficient.", + "media_hash": "d42570e0961c6e67843224242c26cf47a064a3eba2668f68abac9dc0", + "sequence": 26, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", + "media_hash": "48fdf07dfdf02242ff686315577f42532a9048c4ff29d403432d0bbb", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Gregor Poynton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "health": 3.748535 + } + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", + "media_hash": "e99add1c9063c7c65566f4d0c3e04a07d3e42d044e79acd88265876e", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.748535, + "scottish_elections": 3.748535, + "energy": 3.748535 + } + } + } +}, +{ + "title": "Edinburgh Festival Fringe reveals surge in demand to stage shows despite cost fears", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985017.edinburgh-festival-fringe-reveals-surge-demand-put-shows/", + "media_type": "news_article", + "sentence": { + "text": "The Edinburgh Festival Fringe is experiencing a huge surge in artists and companies taking part in this year's event - despite widespread concerns over the cost of taking a show to Scotland's biggest cultural showcase.", + "media_hash": "d9d29d0f94e41a84b3594b3eeaff0505c9e67c042e4d20ed4bf9cae4", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Motorists across Scotland faced soaring prices at the pumps", + "media_hash": "e4cb4fab4d33e1581f9614450c933821ca78e8692ffb27c7ca7ec1b4", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", + "media_hash": "002929fdc052da2c1c0be435aff697b1c0afcc16ce329618f20e4702", + "sequence": 76, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Mr Boyd, the director of IPPR Scotland, said: \"With a Scottish election approaching, voters deserve a more honest debate about the future of public services, and the taxation needed to sustain them.", + "media_hash": "ea30b2976ae024d815f8d59501e331ffee34a23deecb94c0fd713493", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stephen Boyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "For the first episode, which starts on Tuesday, Vicky and Jonny travel to the capital to discover more about another of Scotland's most infamous murderers, William Burke and William Hare.", + "media_hash": "52a89f4f6e03262175a8eba63673fd9b3e294edd4da44dbf85b1fd9d", + "sequence": 41, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He says the party is centre-right and is focusing his initial pitch on \"unleashing the potential of the people of Scotland who are over-taxed and over-regulated\".", + "media_hash": "8b7d23ddb05f8ccd395405101ac2aae6705e386ed8714c2ab1f70419", + "sequence": 49, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Scottish Labour leader Anas Sarwar said: \"When Scotland needs more buses built by Scottish firms, it is devastating to see Alexander Dennis downscale and workers' lives thrown into uncertainty.", + "media_hash": "7830a96e652dd81cc12ec19ec55a64608a79de2fb6cc228d9c623597", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", + "media_hash": "a416afed82bcdeff7e456cd28a3bee06154fee07e467bb256a9704b1", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "scottish_elections": 3.748535 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Cole-Hamilton opens door to helping Sarwar become first...", + "publication_date": "2026-03-31T12:44:27", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", + "media_type": "news_article", + "sentence": { + "text": "He added: \"I'm focused on delivering as many Lib Dem MSPs (as possible) and our vision, fixing our health service, driving down the cost of living, lifting up Scottish education and getting Scotland moving again.", + "media_hash": "b02268f982138b97ad9f701bda91356689eafbf4ecbf9eee9a750a8b", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "Farage has not made any explicit attacks on the Gaelic language yet, but Munro said that is likely because it hasn't entered his consciousness given it is not as widely spoken in Scotland as Welsh is in Wales.", + "media_hash": "a6dec3954b72e4004ea935080cbe22fb702a60dfa4f4e1c5ecc66df9", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "Ministers discuss how to help Scots faced with rising...", + "publication_date": "2026-03-31T21:24:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696235/Ministers-discuss-help-Scots-faced-rising-costs-Iran-war.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Swinney said: \"The impact of the ongoing conflict in the Middle East on people and businesses in Scotland is becoming more significant by the day.", + "media_hash": "79e0c2ec25a36e8bf481a0af0fd1f95c20bfe2b68a2e7106d6eb9b36", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "Although Scotland made a spirited enough attempt to rectify matters, the early goal remained the difference.", + "media_hash": "a12c1d8d73a75b8e18ba706ec4c9d292e4fc5276d3277561db023755", + "sequence": 14, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "Sheep farmer Tim Eagle, who is standing for the Scottish Conservatives in Moray, said: 'Serious questions must be asked about whether these consultancy fees have been value for money for two of the most dangerous roads in Scotland when so few improvements, if any in the case of the A96, have been made.", + "media_hash": "3bf152482334c7d68863cbf2b1a387b7b951a7f7a2ba50d23f697d9f", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Tim Eagle", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", + "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.748535, + "senedd_election": 3.748535, + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", + "media_hash": "b89c04b51de045c663054fbfc6865a27fbc198eaed8d44ca6fa5e307", + "sequence": 35, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Farming groups", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "National Farmers Union Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.748535, + "scottish_elections": 3.748535 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "He promised that a Scottish Labour government will build and buy more in Scotland, \"so public money backs Scottish jobs, Scottish businesses and Scottish communities\".", + "media_hash": "d16773602a7955ac24573e285363ee88edbd01fdeef4db3e72c1362d", + "sequence": 15, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"The family farm tax put Scotland's world class produce under threat and the rise in employer's national insurance is making it harder for firms to make ends meet.", + "media_hash": "ae36c950b48cc62dd07ae641b1ae8a53c9ddd63c1d47ace45dd02a90", + "sequence": 26, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Liberal Democrat", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jamie Greene", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", + "media_hash": "98365704f35fb6c4239da81b113b322ef23ad98adff1116f09805dc3", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scotland's farming industry", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "NFU Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "energy": 3.748535 + }, + "demo": { + "politics_of_food": 0.0 + }, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", + "publication_date": "2026-03-31T15:30:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", + "media_type": "news_article", + "sentence": { + "text": "UK TV channel: Live television coverage will be provided by BBC Scotland and BBC Two.", + "media_hash": "3fb889d04c5c8ded3ef7f902f6b7093f36d150bbe5c3c6f7122a2616", + "sequence": 20, + "claim_type": [ + "predictions" + ], + "claims_matched": [ + { + "tracked_claim_id": 17913, + "score": 0.46930000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.74449 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "A spokesman for Transport Scotland said: 'On complex, high-value projects, specialist advice is required to ensure contracts meet contractual and legal requirements whilst meeting policy objectives.", + "media_hash": "efc527385f8c2814bd36a78ca121ce200e769889803716a366151e00", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.73409 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "Good Friday is a public holiday in Scotland, which is followed by the early May bank holiday - but not Easter Monday.", + "media_hash": "babca4512d31fc41b9f1755d718cdb41397450e05f806c740c0ff149", + "sequence": 19, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.73294 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", + "media_hash": "573609c807f573b1bd6ee9826ab8e4c956c3cc0a12ed5a64c45a88c2", + "sequence": 38, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "BBC Wales", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003, + "senedd_election": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", + "media_hash": "ecfb88a8e6be59febe9decc81c6b6eb1ad4ba564216948d9e880573e", + "sequence": 18, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "There is an expectation that a disastrous result for Labour in Scotland, as well as in elections in England and Wales in May, will prompt an effort to oust Sir Keir among Labour MPs.", + "media_hash": "a6ab41168483026bb1a3d896a29629cbbd4b35c114477afb1f2f3e82", + "sequence": 18, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.7135350000000003, + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "aapfactcheck": { + "polls": 3.7135350000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", + "publication_date": "2026-03-31T09:21:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", + "media_type": "news_article", + "sentence": { + "text": "To celebrate Easter, Graham's Family Dairy will turn the whole of Scotland into a giant treasure map.", + "media_hash": "e64878fa6839f6176bea22f967fcc10653a2a90397193eeac745939b", + "sequence": 38, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Graham's Family Dairy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "What could six fictional voters teach us about how social media really works?", + "publication_date": "2026-03-31T05:23:02", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", + "media_type": "news_article", + "sentence": { + "text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", + "media_hash": "b229152d7b35d2076b7418f5de224ce7eb8e1a55bff4bdbe38acf7fb", + "sequence": 39, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ben Summer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003, + "senedd_election": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Campfire ban in Cairngorms with \u00a3500 penalty if broken comes into force", + "publication_date": "2026-03-31T06:36:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/campfire-ban-in-cairngorms-with-ps500-penalty-if-broken-comes-into-force-6528415", + "media_type": "news_article", + "sentence": { + "text": "There will also be a joint effort with Police Scotland to patrol areas that are most at risk.", + "media_hash": "115646a74815aca1366f85101dd373ba6c89cc16a7b91a4984ce41bf", + "sequence": 12, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", + "publication_date": "2026-03-31T13:53:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", + "media_type": "news_article", + "sentence": { + "text": "NHS staff in the region will join those from across Scotland in being given the holiday on June 15 to mark the national team's opening match of the tournament.", + "media_hash": "0908368457e64c5b663ce8a069456910cea84fe4339cf856ca612d3c", + "sequence": 1, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Andy Robertson will become Scotland's second-most capped player should be appear against Ivory Coast tonight.", + "media_hash": "61f8dcdae9c2618e5c85852dfd1d3c0d0d8a5af5221b1da91e55b18f", + "sequence": 74, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Scotland and Ivory Coast will face off for the first time tonight.", + "media_hash": "b70c7b7dc6d1ae36c627e34a3facded283b5e55d429423ca4b4d985a", + "sequence": 155, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", + "publication_date": "2026-03-31T15:43:02", + "publication": "novaramedia", + "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", + "media_type": "news_article", + "sentence": { + "text": "On 7 May, Scotland will hold a general election for our devolved parliament in Holyrood, Edinburgh.", + "media_hash": "03ef32346c67bde12e3c1a091557f38365f932a10aa193eb5aa0bb2f", + "sequence": 19, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Willie Miller: Stephen Robinson\u2019s 3 priorities to save Aberdeen from relegation -and why it was right to let experienced Sivert Heltne Nilsen go", + "publication_date": "2026-03-31T10:45:21", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/sport/football/aberdeen-fc/6986505/aberdeen-fc-willie-miller-stephen-robinson-priorities-relegation-battle/", + "media_type": "news_article", + "sentence": { + "text": "Scotland will face Haiti, Morocco and Brazil in their World Cup group.", + "media_hash": "93beaf191e10029e90251436d1a807f5c9a9986b72f4d220a995e1d3", + "sequence": 51, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Pubs will be allowed to open late for all of Scotland games.", + "media_hash": "b802d331d7209e2c53a71e3371446ff74ea4e044698655846d34d79d", + "sequence": 11, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + } + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "Team Scotland are looking to win a second successive World Curling Championship gold.", + "media_hash": "1667fa447d5c7ca9463d7af9ded1f78600548b23571a8630f3abb9f2", + "sequence": 3, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ross Whyte", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Team Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Wishaw MSP welcomes new funding to support Scottish-based musicians", + "publication_date": "2026-03-31T19:20:00", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/wishaw-msp-welcomes-new-funding-36950742", + "media_type": "news_article", + "sentence": { + "text": "Commenting, Ms Adamson said: \"Scotland's musicians are renowned across the world, and international touring plays a vital role in helping artists build sustainable careers, reach new audiences and showcase our country's creativity on the global stage.", + "media_hash": "79e5313123925ec2c14565541caaf63afa8d2d4f2dcded8d1025360a", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Clare Adamson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", + "media_hash": "e8010740956593f59364f297e55c4c3f588ee2c17dd1ae0cf584a843", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "crime": 3.703135 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", + "publication_date": "2026-03-31T11:32:07", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", + "media_type": "news_article", + "sentence": { + "text": "One is giving people in social housing the right to a healthy, sustainable home.", + "media_hash": "9e0ff278c501499dd6606a62a2b2fb49148812237370b3c507aff45a", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Paul Wilson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "housing": 3.703135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", + "media_hash": "7100c011b1055c79ac87f787a38bb80410cc71d65200cf519d05f4d4", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "crime": 3.703135 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "Holyrood is there to represent Scotland in all its diversity, and faith continues to play an important part in the lives of, at least, a very significant minority of the population.", + "media_hash": "07d5c0c62e84b10d7c071d340cc48e363c433b36446399df2b462fd7", + "sequence": 31, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", + "media_hash": "a72191d958d6a8b204303a3d8d073db19741884ff7c2fb17bb3c1867", + "sequence": 53, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Patrick Harvie", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Green", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.697825, + "scottish_elections": 3.697825 + }, + "demo": {}, + "pa-media": { + "food_systems": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", + "media_hash": "6658be1562fca05b50ab85e47c96a447f717cb65be4fd4d13ae8d27b", + "sequence": 1, + "claim_type": [ + "rules", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.66573, + "crime": 3.66573 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", + "media_hash": "4a5857123438eb8fa4dc702c657c297d6b7c8635f8108ed18a7aeee4", + "sequence": 42, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625, + "scottish_elections": 3.653625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "\"An SNP majority would be a disaster for Scotland's economy, but voters can stop this nightmare scenario by backing the Scottish Conservatives on their peach ballot paper.\"", + "media_hash": "1133322de785005d36ea77b1adf85f2a249b846e64a7fe0c64588186", + "sequence": 15, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Russell Findlay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservative leader", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.64377 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", + "media_hash": "a49f7bcc45c19245eb94bbee8fb52ad5f0a2f9198e1c331930bffad7", + "sequence": 19, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.635935, + "health": 3.635935 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", + "media_hash": "dd176e5ada44b4001da5152b79c4dd099e7d90cf283d7100f41e672a", + "sequence": 10, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.635935, + "health": 3.635935 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", + "publication_date": "2026-03-31T03:45:56", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", + "media_type": "news_article", + "sentence": { + "text": "\"They do have powers in Wales under legislation that came in this year, but we don't have the same powers in Scotland.", + "media_hash": "d018e0b720908663c5b1d01b9e30e1e9a3a153d38155188345e2b806", + "sequence": 26, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Stephen Jenkinson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.634205 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "\"A far more ambitious approach is required from those political parties seeking to form the next Scottish Government, one that at the very least ensures a competitive level playing field with England and which delivers on the industry's vision to make Scotland the best place in the UK to grow a retail business.\"", + "media_hash": "c337d04b85f62063ee94c3a71ee79142fa001bf01ac8e775492a570e", + "sequence": 24, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium (SRC)", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "David Lonsdale", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.6342049999999997 + } + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "... whereas Scotland has always had and continued to have a different legal system, different education system, different church system, so Gaelic is less of a factor for people in terms of national identity I would say.", + "media_hash": "6a09f4fa6f0cdd3f0fd7d65a3b94e9ccf5d8ac6fef11acbf5e1a782b", + "sequence": 28, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Eilidh Munro", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.6342049999999997 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "The public funding is contentious because substantial taxpayer money - allocated to secure jobs and promote clean, local manufacturing in Scotland has coincided with offshore production, reduced domestic orders, and now a possible factory closure and mass redundancies.", + "media_hash": "6a3b28b0b04a387a60b30dbafeadc961446af4046a047d48e7e3fb7d", + "sequence": 38, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.6342049999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", + "media_hash": "80bfd913544d43bad3c59d32bcdae3e643d9bd9a9365f1f7e642b1ff", + "sequence": 34, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "clinical_health": 3.612245 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", + "media_hash": "1000eaf6f4fec5852dc88f3720f6c9083f6ef71f8995a2b47df327fb", + "sequence": 15, + "claim_type": [ + "voting", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "energy": 3.612245 + } + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"We need a proper industrial strategy so we build more of our ferries, buses, trains, wind turbines and vital infrastructure here in Scotland.", + "media_hash": "5c1200a188f514f6c141294c9280cf4cf572f733d8c9c9cfe138ed58", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "Mr Sarwar is expected to say: \"A Scottish Labour government will build and buy more in Scotland so public money backs Scottish jobs, Scottish businesses and Scottish communities.", + "media_hash": "f09870df272103135b894340b437dee67caf9422a32d5f778e4f34d2", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", + "media_hash": "e8ba0501f33a1ca5f9728b40fc001b175d4b1e4c5c32de20d8b0d702", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour finance spokesman Michael Marra", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "energy": 3.612245 + } + } + } +}, +{ + "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", + "publication_date": "2026-03-31T05:01:49", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", + "media_type": "news_article", + "sentence": { + "text": "Mr Swinney's pledge would provide year-round childcare for every child from nine months to 12 years of age, with a promise that \"every single family in Scotland will get help\" towards the costs.", + "media_hash": "02a3ba0798eee05b9f32f8031e3697798c9bcbf45ec9972e7c27846a", + "sequence": 18, + "claim_type": [ + "rules", + "predictions" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.599205 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Check if you are owed \u00a3829 car finance compensation as over 12 million due payout", + "publication_date": "2026-03-31T06:43:07", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/check-car-finance-compensation-payout-36946549", + "media_type": "news_article", + "sentence": { + "text": "Scots urged to submit meter readings this week to avoid higher energy bills", + "media_hash": "2a9c1aab97cbcc0ab769a437aafb3cb9c031ad15d2ca04efa0596c79", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.59665, + "scottish_elections": 3.59665 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", + "publication_date": "2026-03-31T11:03:14", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", + "media_type": "news_article", + "sentence": { + "text": "John McGinn may be a Scotland hero.", + "media_hash": "22b2dfc9fac8786e2f46731d9515b8341f1399b226db86412000c27d", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I'd happily lose Scotland friendlies for the next ten years in exchange for ultimate international payoff", + "publication_date": "2026-03-31T05:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/id-happily-lose-scotland-friendlies-36945989", + "media_type": "news_article", + "sentence": { + "text": "At 31, McGinn knows this could be his last crack at a World Cup for Scotland.", + "media_hash": "0d950782b9ed606cc711b3af7f7799d29d382568ed0bee05c35a7685", + "sequence": 36, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Also, Scotland's publicly owned water and ferry companies do not have equivalents in other parts of the UK.", + "media_hash": "2759da544f278c1fb79878da14bbc6b64c5e75f1c51ecc11cebdbee3", + "sequence": 23, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Although they pressed in the second half, with Ipswich Town striker George Hirst getting into good positions, Scotland lacked cutting edge.", + "media_hash": "95b70388b95ef736b7140d3374c4779f1d868b76366e5c75700fcfd7", + "sequence": 24, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire urging people to prepare in advance for any healthcare needs to help reduce out-of-hours services demand", + "publication_date": "2026-03-31T12:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-urging-people-prepare-36948783", + "media_type": "news_article", + "sentence": { + "text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", + "media_hash": "2cce2c2834e7311d8cd62a21687a936e75b312ae0fa35347c6086ac7", + "sequence": 24, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "On the Radio Scotland Breakfast travel in Glasgow, there are emergency repairs, so there's one lane closed on Cathedral Street going west at North Frederick Street.", + "media_hash": "5044b77adbb5c24060e3935e8357a6f257e571b8997edf722faef44e", + "sequence": 59, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", + "media_hash": "6e249f27707f33ccc1a4bd3b7ac6c95408161b9f01357b8f1454521d", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Medicines Consortium", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "Murdo Fraser is a Scottish Conservative MSP for Mid-Scotland and Fife", + "media_hash": "7323c51dd17b00d96dce1604c075980f5be282371c031b3ef8004ead", + "sequence": 46, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "Typically the arrival of Easter also marks the beginning of school holidays around Scotland, with many councils lining up the spring term break with the annual celebration.", + "media_hash": "3a2a34992f99fc0a1501650b9d391ac3782a7a989c245611aef4adfd", + "sequence": 66, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "MLS side Charlotte are coached by Dean Smith, the former Aston Villa manager and pal of Clarke, his assistant is the Scotland boss' former Kilmarnock player, Gary Dicker and the club's technical director is Clarke's ex-St Mirren team-mate, Tommy Smith.", + "media_hash": "9adc32843fb8568f319aa881c6a003c897769b381d3b697d4903683f", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "This manifesto is titled A new chapter for Wales.", + "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", + "sequence": 981, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "senedd_election": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", + "media_hash": "943254d39c6b70c5bfd841cf0e666a83f183640984702dbb505f71a3", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's annual membership survey was carried out between July 28 and August 20 last year.", + "media_hash": "92e2710768a11115e0f02b2445449c84a771bb67d16f3e43978aeeaa", + "sequence": 31, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Clarke afterwards confirmed that Scotland will play Bolivia in New Jersey on 6 June.", + "media_hash": "47e5fc74b67e3943e7873329835eadf20cfbcb56de051012ab01cc36", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steve Clarke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", + "publication_date": "2026-03-31T12:53:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", + "media_type": "news_article", + "sentence": { + "text": "Kevin Hobbs, CMAL Chief Executive, added: \"It is a proud moment to see MV Isle of Islay carry passengers for the first time. Her entry to service is a clear demonstration of the progress being made to rejuvenate Scotland's ferry fleet. Our focus is now on expediting the delivery of her three sister vessels, which will provide further flexibility and resilience across the west coast network.\"", + "media_hash": "1ec627e126a09719edb05a7ed1330d2405f38020b44d42607d7e842f", + "sequence": 18, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "CMAL", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Kevin Hobbs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5723399999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", + "media_hash": "29a18e17320a82af97cbcaec70f86b027174eb5e43a076a1a05f9c93", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.562025, + "scottish_elections": 3.562025 + } + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "He said: \"It's the best I've ever seen Scotland play, it's outstanding.\"", + "media_hash": "7250819e1c20107e1a6bc41a6e41a109b95a088398a41b17057dd96f", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland fans", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Niall Reagan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.560815 + } + } + } +}, +{ + "title": "Willie Miller: Stephen Robinson\u2019s 3 priorities to save Aberdeen from relegation -and why it was right to let experienced Sivert Heltne Nilsen go", + "publication_date": "2026-03-31T10:45:21", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/sport/football/aberdeen-fc/6986505/aberdeen-fc-willie-miller-stephen-robinson-priorities-relegation-battle/", + "media_type": "news_article", + "sentence": { + "text": "It offers a strong possibility of Scotland qualifying from a group stage for the first time ever - but positive momentum is needed.", + "media_hash": "87ac20e2d4c7077df57f4cf0fbe197a90b6b5961851e627f9e181bae", + "sequence": 52, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.560815 + } + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "The search for the killer became Scotland's biggest manhunt and newspapers at the time labelled him Bible John after a witness said he quoted scripture.", + "media_hash": "724af7be0572f749296c2f9aa05c145304290590c6813d5a26b306eb", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.560815 + } + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "\"My party would fundamentally overhaul Scotland's business rates system to make them fair and transparent.", + "media_hash": "1eb2f07ed58cd46e7c105747d75f6ea1352bac8320295dcefef76644", + "sequence": 13, + "claim_type": [ + "support" + ], + "claimer": [ + { + "name": "Russell Findlay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservative leader", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.559555 + } + } + } +}, +{ + "title": "Glasgow tower block tragedy as man plunges to death and cops lock down area", + "publication_date": "2026-03-31T13:17:28", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-glasgow-tower-block-tragedy-36946528", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", + "media_hash": "c4b94cec680620537c00218d235dc9d49fc8b3ea7da08e3af0f3394f", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", + "publication_date": "2026-03-31T12:53:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", + "media_type": "news_article", + "sentence": { + "text": "The vessel, which will provide a mainland link for the people of Islay and Jura, arrived in Scotland at the end of February.", + "media_hash": "2fa33f5fc23ac4d111dfa07358dca9fdd48aa971653ac24fe77f9054", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'GTA Paisley' creator shares update after fundraiser for game's launch falls short", + "publication_date": "2026-03-31T12:29:24", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984043.gta-paisley-creator-shares-update-games-fundraiser-fails/", + "media_type": "news_article", + "sentence": { + "text": "People were quick to draw comparisons with Gellalty's game and the world-famous Grand Theft Auto series, which is also created in Scotland with studios in Dundee and Edinburgh, by Rockstar Games.", + "media_hash": "613c6665c9a57b2168ab0e6ac6868977c8156a7ff58b7449b574abbb", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "In order to access the funding, Alexander Dennis had to provide evidence of sufficient orders to sustain its operations in Scotland.", + "media_hash": "d0caf6fba9e8dbe9c63749029b2d563e4996610cc6ebd388e162b1a2", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", + "publication_date": "2026-03-31T11:07:30", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", + "media_type": "news_article", + "sentence": { + "text": "He added: \"This matter remains under active consideration as part of our wider approach to supporting Scotland's learning estate.\"", + "media_hash": "dec9ba203156d2bd54f87c4a75af665e4c2c0c633163e9ac43a7f63b", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Ivan McKee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "Swinney got year-long warning England-bound bus firm was 'reconsidering' Scotland", + "media_hash": "152b3a2fdf9ae789c859a1037cd4a578285a93ea907618225d1665f2", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland.\"", + "media_hash": "66e79267f2f20285e46da231609f2b1b317c6d4fc22a613cbe4f833a", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Paul Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", + "publication_date": "2026-03-31T09:21:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", + "media_type": "news_article", + "sentence": { + "text": "There is also lots on offer for the whole family in terms of food, from a bustling pizzeria in the heart of the Scottish capital to a rooftop venue with views out over one of Scotland's top golf courses.", + "media_hash": "bf4b628fe3db5d9357158e058e82e221347a37b5bd7ff09694313531", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", + "media_hash": "7e78dab14349a3bfc0a0d77081844f3b8fcd71503353f17772db6138", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mark Diffley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "The crime boss left Scotland in 2006 and had been living in Dubai, but was expelled from the United Arab Emirates (UAE) last September after a number of headlines on the Scottish gangster began to circulate.", + "media_hash": "e57d8a67aed9b30135d41c7116a07232b0623a2dd45a3ca937e91b3d", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "For Scotland, Naismith admitted getting it right for \"travel and humidity\" was paramount.", + "media_hash": "0b539859eca752c80b698a3027e68efe236cf32399c25e5f0f0a6012", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steven Naismith", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in Scotland", + "publication_date": "2026-03-31T05:58:30", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", + "media_type": "news_article", + "sentence": { + "text": "\"John Swinney's strong leadership is firmly focused on the priorities of the people of Scotland and our landmark childcare policy is a clear demonstration of the type of Scotland we will build - that's what's on the ballot in May.\"", + "media_hash": "57de207247e559a7b47618934a7807bbb5aa2fafc9376e28e3e90265", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "Mr Findlay said: \". Reform candidates are quitting before they've even begun. It's complete chaos and we're the only party with a credible, common-sense plan for Scotland.\"", + "media_hash": "806f9a373d1b541ec8a8662da984afd17d651e7853d6a3235cb45763", + "sequence": 83, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Russel Findlay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservative", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", + "publication_date": "2026-03-31T05:01:49", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", + "media_type": "news_article", + "sentence": { + "text": "Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard earned cash.", + "media_hash": "171443f6f6ea3f791caada4ede9c8d05114bff5da7be2d29c44adbab", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans want Steve Clarke football without fear back as boss swerves boos session with players", + "publication_date": "2026-03-31T05:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-want-steve-clarke-36946013", + "media_type": "news_article", + "sentence": { + "text": "The fear is that the wind could be knocked out of Scotland's sails all over again, just as it was on the road to Germany two summers ago.", + "media_hash": "7e06a329b4f291969766eced53b374f7f797381decf59a845ca9749f", + "sequence": 53, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "In a recent survey, the 'Pregnant then Screwed Scotland' group revealed the impact childcare is having on mothers in Scotland.", + "media_hash": "701981525ad19e938453e8f88df472449f00dfe580d5d1ac557797b9", + "sequence": 27, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "The actor visits Glasgow in a new Sky History programme to find out more about Scotland's notorious serial killer.", + "media_hash": "ef7ec0bc7772cd4e0e1a114da1a305dd59a4e179fd63985ce315816c", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "Vicky added: \"The dark nature of their crimes made them Scotland's first serial killer celebrities.\"", + "media_hash": "b01d7b3031e47a489e14b0cc7db5b69c84ff9f76f6aa09badfaf0a2b", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Vicky McClure", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Police investigating former SNP Holyrood candidate over...", + "publication_date": "2026-03-31T17:34:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", + "media_hash": "b482a75e855d18922197af3adb1189ba95d3866e30faa297c290aec5", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "\"It's the Scotland atmosphere.", + "media_hash": "01c89c1ce85687435cd4e3aa7c7ce956361dd6c1d40372926ddfbf35", + "sequence": 25, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", + "media_hash": "f420d8586b09e7fef11fc850fa9a6fbb016985a27218e68e9a599de2", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", + "publication_date": "2026-03-31T15:25:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", + "media_type": "news_article", + "sentence": { + "text": "Plans to make the day after Scotland men's team's first participation in the World Cup for the first time in 28 years a holiday have fallen foul of council officers for financial reasons.", + "media_hash": "f16349f2aa56757c53c7ab11ff014ffa0b7f50d0ef9f65268dcf79b4", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "Energy historian at Glasgow University, Dr Ewan Gibbs, also expressed his frustration as he wrote on Twitter/X: \"Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", + "media_hash": "990b73ff0fedb5ab0460e241f9c673772b37206e64e21d13a00328bb", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP MP Stephen Flynn", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Ewan Gibbs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "In a strange and angry pocket of the Tartan Army, there is a section of Scotland supporters who have taken to booing the head coach and the team.", + "media_hash": "32bda8499297d06a8ff94bf56f5572daede89134d98d193f920a3b8e", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Steve Clarke admits Scotland must find attacking...", + "publication_date": "2026-03-31T22:14:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696365/Steve-Clarke-admits-Scotland-attacking-quality-World-Cup.html", + "media_type": "news_article", + "sentence": { + "text": "Clarke refused to talk about his future beyond the World Cup - he has yet to agree an extension to stay on beyond Scotland's first appearance since 1998 - but confirmed their final warm-up match will be against Bolivia in New Jersey on June 6.", + "media_hash": "c6d483e2417823823c7a831307e3b6a2830186aa2f25739b1e7b6697", + "sequence": 14, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "They took the lead shortly afterwards with a quick break that saw them inflict maximum punishment on an exposed Scotland.", + "media_hash": "1b293dbbb8ef8e67987359a3530c05d609b4539ad9f5de7b79c0b912", + "sequence": 50, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland has previously said it will continue with its current policy.", + "media_hash": "28e703e2ff069434c235fcab2dfca6c6adcc76b1c6ac12a8260a7ec2", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", + "publication_date": "2026-03-31T20:36:44", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", + "media_type": "news_article", + "sentence": { + "text": "Ultimately, Scotland lost to Nicolas Pepe's first-half tap-in.", + "media_hash": "93e4b368f230f15447c72858ae6f748ff2d0435ba33969361c8455df", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "Chasing the game is not Scotland's strength but McTominay forced Lafont to concede a corner with a shot from distance after three team-mates had pressured Christ Inao Oulai into losing possession.", + "media_hash": "2fc3afb19cf6b65fc6e7401c39a19240840cf1ca4ee67ebae8424b6c", + "sequence": 15, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "Substitute Nathan Patterson's well-timed tackle in the penalty area prevented Amad Diallo pulling the trigger after a break from a Scotland corner while Bain pulled off a good save to deny the Manchester United winger, before Monaco's on-loan Sunderland winger Simon Adingra hit the post in added-time.", + "media_hash": "0f826f193778d055a271947943e85d7f02a947e693640befe8d56ae9", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Malcolm Offord is the leader of Reform UK in Scotland and the party's candidate for Inverclyde.", + "media_hash": "a0cd36677584fc519cfe3f4d8bba2e645904f26e32e8b5d5809faa65", + "sequence": 23, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man dies after falling from window of tower block", + "publication_date": "2026-03-31T13:57:31", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984593.man-dies-falling-flat-glasgows-dougrie-place/", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, March 31, 2026, police received a report that a man had fallen from a flat in Dougrie Place, Glasgow.", + "media_hash": "1fd8318d221d96ddf2cb76c45f3b8b5cccc9866ef684d2b531544ad6", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", + "media_hash": "3671056854f967d53285a39691be240f4dbfa67a2a893b7e05804806", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T11:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Responding to news of the consultation, a Scottish Government spokesperson said: \"The Scottish Government remains in regular contact with Alexander Dennis and trades unions and stands ready to discuss all options, across a range of areas, to protect skilled jobs and achieve the best economic outcome for Scotland.", + "media_hash": "b59ad083118be3ea3b21cd2834d67d38e5b6267fa9b7baadcdd1ec74", + "sequence": 24, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "The SNP candidate for Edinburgh Central added: \"There is no room for complacency, but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", + "media_hash": "b1bd0a6f9c2373d834bf1d7ac3c2ef85c4e56aea512cd3a2058c99d0", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Angus Robertson MSP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Here's when viral sensation Angine De Poitrine are coming to Scotland", + "publication_date": "2026-03-31T09:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981988.angine-de-poitrine-coming-scotland/", + "media_type": "news_article", + "sentence": { + "text": "VIRAL experimental math-rockers Angine De Poitrine from Quebec are coming to Scotland.", + "media_hash": "9224f620453d93aa087f4c8b3a7958e4bfb8598fe43f6b5af6d8630c", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "On his search for Scotland's World Cup base camp, the head coach found the one in North Carolina, with a wee hand from a few familiar faces.", + "media_hash": "70612f648fcbe21609ab5dfd295bf236a547f1af7956e8b7667a0dd9", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "With the help of Charlotte assistant Dicker and Scotland assistant Steven Naismith, BBC Scotland gets the lowdown on \"one of the best facilities in the MLS\" and the national team's summer set-up.", + "media_hash": "87278a3529c85d772a40c6df2b89c24dea47e6688c28b3b5bc13c840", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "\"It is not in the interests of Scotland's economy for shop owners to be incentivised to invest in Berwick-upon-Tweed over Bothwell, Buckhaven, or Blairgowrie.", + "media_hash": "6037cde94e5109a4d924ac954c2d0be1c286714e4a772735c28c8787", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium (SRC)", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "David Lonsdale", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "He mans a ship off the West Coast of Scotland and he's also, uh, very, very lyrical.", + "media_hash": "e0ad281bce8bd713fa801504db2d2af1fd09bfb642c176c53079ba42", + "sequence": 1736, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "Scotland job cuts plan risks austerity, IPPR Scotland warns", + "media_hash": "6724df0bfcf7d769a3634f7f2c36d46e0e946add748580087ab6ca57", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland needs change after 20 years of SNP government,\" the Scottish Labour leader said.", + "media_hash": "57eb78597b5d7601492757d909b36db6214768fd438c86f4595be0b1", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T22:34:30+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/ChrisLawSNP/status/2039109107970367522", + "media_type": "social_post", + "sentence": { + "text": "RT @theSNP: A historic SNP majority can unlock transformational change with independence - and make Nigel Farage irrelevant in Scotland's Parliament.", + "media_hash": "e782af747603e49ab18417b2e63a48b08b680a72c862b1779badf433", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "the SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Steve Clarke has called for an end to speculation about his future so he can concentrate on the World Cup after Scotland suffered a second friendly defeat in succession.", + "media_hash": "bcfec979b3a667157a0be94ab84ad734768c27a8d77457a5199006ee", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steve Clarke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", + "media_hash": "f8d3a4c92e59f62006be5cdca6367b18b0661350a3c3607074aadd2e", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", + "media_hash": "78e07e46d212bd0cd5e21f1d4cfa6b194306773895b0edd66947af91", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", + "publication_date": "2026-03-31T20:36:44", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", + "media_type": "news_article", + "sentence": { + "text": "He claimed that if Scotland go gung-ho against top teams, we run the risk of being left embarrassed.", + "media_hash": "c1c680fbb9300f69b0525a035b577d429c947cc6023283f9c0431fb4", + "sequence": 33, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John McGinn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", + "publication_date": "2026-03-31T20:36:44", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", + "media_type": "news_article", + "sentence": { + "text": "But from early on here, Scotland's intent was clear.", + "media_hash": "bc3df636b00f7368a92dbde045ea51984aa82f190225654a5de3ad79", + "sequence": 36, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steve Clarke", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He is a former Scotland Office minister, but has got himself into hot water recently with some of his past comments.", + "media_hash": "fabe1e64889f407b24aa8ad63c818861e386065e5a9449a8e7048c18", + "sequence": 25, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", + "media_hash": "225f398a9c173c03c7d4f4abbf2b8ffc518f20852ecdc157df373c45", + "sequence": 60, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T17:00:00+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/DaveDooganSNP/status/2039024927437709388", + "media_type": "social_post", + "sentence": { + "text": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f Scotland's energy must be in Scotland's hands, and that can only happen with independence.", + "media_hash": "58f928154dd3b1aee278448d861e9c10f5ba15aa0009efb8f01abd96", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "The company is a leader in zero-emission bus technology - electric and hydrogen buses - and plays a key role in delivering Scotland's and the UK's green transport ambitions.", + "media_hash": "78effa7b02faef3b65642d2a3ad87354fc90124df7bc6e65ca9ba5de", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "As the ECHO spoke to James Milne, 41, from Shetland, and Andy Irvine, 32, from Paisley, outside the venue, a line of Scotland fans emerged from inside the pub.", + "media_hash": "a73b570a04c43fa3e213e2d9868d285d1f7a4a546aef7c915afe2948", + "sequence": 34, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "Alexander Dennis workers have been on furlough since last September while awaiting the outcome of the latest round of bus funding, with ministers hoping fresh contracts would stabilise the firm's long-term future in Scotland.", + "media_hash": "4dd6072f54628d2c16ebdf4a812c62d83de72c4906a09ebfbc312807", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "He added that the wider economic environment was driving companies away from Scotland.", + "media_hash": "5591fae97b4a3a51790fbe79a4159c5e5b811fc0093ae2a747c0dddc", + "sequence": 22, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "The criticism comes as questions mount over the effectiveness of Scotland's flagship green transport funding schemes.", + "media_hash": "a1faf01f10898c20423594191dc9421dfa997cb6dba423c2be27ff7b", + "sequence": 26, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Green candidate replaced by rival who complained about him", + "publication_date": "2026-03-31T16:22:37", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", + "media_type": "news_article", + "sentence": { + "text": "BBC Scotland News understands that one of the individuals who submitted the complaint against him was Maggie Chapman, who will now take Ingerson's place at the top of the list.", + "media_hash": "c33be1b75e3fea806d8df23764a38dcfe0f7d2a20bd03afeb0807bf5", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", + "publication_date": "2026-03-31T15:36:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", + "media_type": "news_article", + "sentence": { + "text": "The stories of refugees integrating their lives to Scotland are the subject of a new drama project being launched in Stirling next week.", + "media_hash": "1f85669d6e85135badadd59d6e7d022f526e9f4699cd20d6c1da933c", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "Scotland's Assisted Dying Bill was opposed by people for a range of reasons, not just religious faith (Picture: Jeff J Mitchell) | Getty Images", + "media_hash": "e8f49fb3633f0010da7499e59c17a1bca1eb5b4e6daa2f1ed9c9ef1e", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", + "publication_date": "2026-03-31T13:53:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", + "media_type": "news_article", + "sentence": { + "text": "Last week First Minister John Swinney announced NHS staff would be given a one-off national holiday to mark Scotland's men's football team participating in its first FIFA World Cup since 1998.", + "media_hash": "969bd4b62e13d32a28b50ca3c62b23386ebe72125b2a4a2c511d6ef1", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", + "media_hash": "f57a0718e8725e4d6c754a5b495a6754c818ffb0b525e28b2d4d4ae2", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Cole-Hamilton opens door to helping Sarwar become first...", + "publication_date": "2026-03-31T12:44:27", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland's been very badly run for two decades by the SNP,\" he said.", + "media_hash": "d074246bcc12a5985c07c2d5cad78a22f8b55d479d62a732af76afc4", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Ed Davey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", + "media_hash": "468850ba63dba7734051a57781c59cab68bc4fbad4d5c5664ee2ed6c", + "sequence": 42, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "The Deputy First Minister added: \"Meanwhile, the UK Government has been sitting on its hands when it comes to the policy levers which would make a vital difference to order numbers at Alexander Dennis and support domestic bus manufacturing in Scotland.", + "media_hash": "c3c60140c2c73bac5f4ad44bd05e138639a2a83be048541c7374e060", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kate Forbes", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", + "media_hash": "74f292618f0c059f2e657ba424aa4f2bd7d85b6ef6040c9e0e310cff", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steven Lyons", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Amanda", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", + "media_hash": "5870605429121f95ba5a5e437d9441e8607a45271379abe867dd40d3", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mob boss Steven Lyons to be deported from Bali to Spain after arrest", + "publication_date": "2026-03-31T10:29:28", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/mob-boss-steven-lyons-deported-36948100", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"We are aware of the arrest of a Scottish nominal in Bali and we are working closely with European partners.\"", + "media_hash": "8b57b18fc7e73a8cc3c656cd9eeba68b4d4a7ab5e669c5298f4b6030", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "It was First Minister John Swinney that confirmed the new furlough support for ADL which he said would need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", + "media_hash": "78d5e46abb52bfc25027e05d01a3017c10617a836e8ce67096fef251", + "sequence": 40, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.21660000000000001 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland", + "media_hash": "8d8fa84d86d5114cdf23136928618ae2b295fb3b933b6909ad058d50", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "\"There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.\"", + "media_hash": "5b2dfbacfa904247a2a13f7ab5a3e9c65690cf7e457f50904f0b47e6", + "sequence": 25, + "claim_type": [ + "voting", + "other" + ], + "claimer": [ + { + "name": "Angus Robertson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", + "publication_date": "2026-03-31T09:21:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", + "media_type": "news_article", + "sentence": { + "text": "Earning fans thanks to its bustling and family-friendly atmosphere, Vittoria on the Walk specialises in Italian classics made with ingredients from both Italy and Scotland.", + "media_hash": "64e42ffbd50c0d236e10041003b27959ad579dec128dcb389b5756e2", + "sequence": 47, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Vittoria on the Walk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "John Swinney: SNP plan for NHS 'is working'", + "publication_date": "2026-03-31T06:29:37", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", + "media_type": "news_article", + "sentence": { + "text": "NHS in Scotland plan 'is working' says First Minister John Swinney", + "media_hash": "cbbeb8afc6616e6662d68ee41bc47519f828889f79d0c137365e86a2", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "First Minister John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "\"The gaffer here obviously knows Steve well, I think they know they'll be looked after quite well. He worked with John McGinn and a few other Scotland players, so having that connection, understanding what teams need and being flexible with it, really helps.\"", + "media_hash": "32421abaf6078a24165000726e396200dc2d1911a11f018c585bc388", + "sequence": 40, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Gary Dicker", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "Russell Findlay has promised to cut taxes permanently for businesses in Scotland if his party wins the Holyrood election.", + "media_hash": "8deb4cd87243bed4914fe0688a23e2c04756644d1de4c3ea731a98c5", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Russell Findlay", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in Scotland", + "publication_date": "2026-03-31T05:58:30", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", + "media_type": "news_article", + "sentence": { + "text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government, and parents need a break from John Swinney's failures draining their hard-earned cash.", + "media_hash": "6cacd39abb46ff6b776b6c0880fbdf387d7e28328d4b0261bf67bbbe", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "At the same time, SNP leader John Swinney was braving the stormy winds at the St Fergus gas terminal to push the case for independence - saying this would \"put the region's energy future in Scotland's hands\".", + "media_hash": "588a6d548b542118b8d79736a0e61532768bf092823a4e5271420ced", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "And they're the perfect opponents to for Scotland to play tonight, according to midfielder John McGinn.", + "media_hash": "778ee510316f0699874e3c93f60ffef906c1eb63c9dcf6d3bda34716", + "sequence": 135, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steve Clark", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "A man that knows a fair few things about the benefit or otherwise of a World Cup warm up match is the former Scotland striker Darren Jackson, went of course and played in France 98. Darren Morning to you.", + "media_hash": "15c773db57faf37363fba0607e2dca1a89bb649da3616157562add18", + "sequence": 969, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland fans want Steve Clarke football without fear back as boss swerves boos session with players", + "publication_date": "2026-03-31T05:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-want-steve-clarke-36946013", + "media_type": "news_article", + "sentence": { + "text": "Scotland 's big bus to Germany two years ago began to stall and splutter at around this exact same stage in the journey.", + "media_hash": "bf64e77aeae2d78a54c6ab97bef2870c66eb3e986a54cb77bf89f9c7", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "In the paper, Employment, Productivity and Reform in the Scottish Public Sector, the thinktank IPPR Scotland argues that the SNP plan for public service reform is based on flawed assumptions and includes multiple strategies \"pulling in contradictory directions\".", + "media_hash": "6ca23450e45e47d35b475efa05e782c621506b244a1ebbd78304a2f8", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", + "media_hash": "037f80d72150856bb52dab37bc9a5ac73a7f29fe0900201608e5ca41", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.3982 + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "Scotland have to get back to what has brought them joy in the recent past - huge tempo, dangerous deliveries from wide, a flooding of an opponent's penalty box, a creation of chaos, a flick-on, a ricochet, a breaking ball launched into a net.", + "media_hash": "021eeaff64a2cb9967ed15f8161d2dff29130f80cf329c09ab252a90", + "sequence": 54, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland fans", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Steve Clarke", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "The African side were unsettled by Scotland in the opening ten minutes but asserted themselves following Pepe's goal and hit the post late on.", + "media_hash": "2bed100860d68223b568545e80d8c94fda50888d8048fde8d55d3cc2", + "sequence": 23, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", + "media_hash": "c8010e05506ef0df19188606dfc2b242e9a89867bb810270a3229b43", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "Falkirk goalkeeper Scott Bain and Bologna midfielder Lewis Ferguson replaced Kelly and McTominay for the second half in which Scotland stepped up the pressure but still struggled to create clear-cut chances.", + "media_hash": "0ed4bf37943bf5fca3b8612b0d36e8ff082405eae47c09118bbc7754", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", + "publication_date": "2026-03-31T18:58:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", + "media_type": "news_article", + "sentence": { + "text": "Scots gangland figure arrested in Indonesia following Police Scotland raids", + "media_hash": "22c6512ea22b06481c7734da2ea2d99feddc44e67bb090cf17dbdb69", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "Niall said it was a good time to be supporting Scotland.", + "media_hash": "3a354f36a68fc323110c1fe0259235a3b9a2c7c59a99b499ea51d685", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", + "publication_date": "2026-03-31T16:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", + "media_type": "news_article", + "sentence": { + "text": "She said: 'For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland.", + "media_hash": "92d3f57bf1b6923272bfdbf189d1ddd3631667ced56971d1d604c81a", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Kate Forbes", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Council criticised for closing crucial transport link during school exam season", + "publication_date": "2026-03-31T16:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985045.council-close-key-island-road-school-exams/", + "media_type": "news_article", + "sentence": { + "text": "The Herald has asked Qualifications Scotland (formerly known as the SQA) to confirm whether those impacted by the disruption on Arran would be eligible to receive this form of support.", + "media_hash": "03bc97ee307b72ef019e0cd6fb90b1dd12abfafdc1cc1dbb3fbb40ee", + "sequence": 24, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "\"There's a lot of people in Scotland who really don't like Gaelic and don't think it should have money spent on it and it's concerning there could be that opportunism there from Reform to try and capitalise on that at a time when money is tight across everything, but it's also a really important time for the language.", + "media_hash": "8a4a0a9ce4bf20c3f7f506d1f96ae910c41873932d62935cc15a56b6", + "sequence": 29, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Eilidh Munro", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", + "publication_date": "2026-03-31T15:21:22", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland were called to the address after concerns were raised about the occupant.", + "media_hash": "2ef55cffda923da1dfadb60ebb60c1596d17d916550a785ab2e43e36", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", + "publication_date": "2026-03-31T13:53:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", + "media_type": "news_article", + "sentence": { + "text": "Last month, NHS Tayside told the Local Democracy Reporting Service it was awaiting direction from the Scottish Government about the public holiday after the First Minister and Perthshire North MSP John Swinney's proposal to make June 15 a bank holiday in Scotland was approved by His Majesty King Charles.", + "media_hash": "23c77bd51acd9872fa17a97911484fa5ebb92547dcfdece4b530a50c", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "His Majesty King Charles", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", + "publication_date": "2026-03-31T13:23:56", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", + "media_type": "news_article", + "sentence": { + "text": "Officers from Police Scotland say his death is currently being treated as unexplained.", + "media_hash": "4b4d52218bed3bc6d74ab0f6a54f0baae34682d5c05b069c00cf26d8", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "Scotland are the defending Men's World Curling Champions - so no pressure!", + "media_hash": "a60a7e9498f714d5d3527b16d5cfb723ff87dd27ec22b71458491e71", + "sequence": 48, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Team Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Pubs in the Highlands have been given the go-ahead to stay open late for all of Scotland's World Cup games this summer.", + "media_hash": "45d5d07de73cd15c1d094459cebce175df2a2f41d2826e140f6971e6", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "And Scotland is paying the price for it.", + "media_hash": "06e483bf0abb4c0eb8f6a692e206a2af32553bf3250494c786e24de0", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "'There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", + "media_hash": "b97796a98b198e76b280b455046ac75d156e7f256da50bfa5741482c", + "sequence": 23, + "claim_type": [ + "voting", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 3.703135 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "'Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", + "media_hash": "d5fffd4c874dd64dd036d47accf1681feac839847309f2a681a6d06e", + "sequence": 36, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 3.5503549999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "\"For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland,\" she said.", + "media_hash": "07b322c6feddb4fd3800c9cdc05d69f1e37ae50433feb2436e5f8c84", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", + "publication_date": "2026-03-31T11:03:14", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", + "media_type": "news_article", + "sentence": { + "text": "Our man Ryan McDonald handled the phone lines today ahead of Scotland's friendly against Ivory Coast", + "media_hash": "a2eddf532642dbb1d9802eac7841d2a4153698649fdd20e064fc4f0d", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", + "publication_date": "2026-03-31T11:03:14", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", + "media_type": "news_article", + "sentence": { + "text": "He said: \"As for the booing of a Celtic player, this is a common thing even when they are playing for Scotland, ask Davie Hay.\"", + "media_hash": "79366133660f189fb015b8995c62036568db15fa3e76b0cfd8fb74f4", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Eddie McCaffery", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", + "media_hash": "f53b2ae83cbb151ae7c9721d1b15c6a5e5ff13daef3d596f7c5f43c3", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alison Watson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Shelter Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland. Since February, we've seen a clear drop in the proportion of voters who say they 'don't know' their view of each party leader, indicating that engagement is increasing as the election draws nearer.\"", + "media_hash": "fa9d76d33dc140b9da1600d35fec1c9c72865b065e4d46b3606f6c9b", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Mark Diffley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "Lyons - one of Scotland's most high-profile gangland figures - was detained shortly after landing at Bali's I Gusti Ngurah Rai International Airport on a flight from Singapore on Saturday, only days after he was deported from Qatar.", + "media_hash": "dcbeedd6eeea05a61591ff207eca88efa27a5fae8c92cd87be884e8c", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", + "media_hash": "4de07c284139b1bffa489a0527b8d1f62ebdd808f2372c3bf52f959c", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "Clarke's former Killie midfielder Dicker agreed it's \"a really good central base\" with flights to both Scotland's match cities only a couple of hours.", + "media_hash": "7541afc3be2446acff8bdb32f1b5c3e034c715528aece03261940e9f", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Gary Dicker", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "Scottish Liberal Democrat finance and economy spokesperson Jamie Greene MSP said: \"The Tories like to talk the big talk on business, but when it comes down to it, the Lib Dems actually get stuff done for Scotland's hard-pressed SMEs.", + "media_hash": "20a6c36cb9e3cb49e276f6b1ec59f5599216a4f4a7ca898b9e415fa5", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jamie Greene MSP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Liberal Democrat finance and economy spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in...", + "publication_date": "2026-03-31T05:49:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard-earned cash.", + "media_hash": "8afe83ddf8d006a97d22d73b81e4c50362bad83d71d8a84355b9cf6f", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", + "publication_date": "2026-03-31T05:00:00", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", + "media_type": "news_article", + "sentence": { + "text": "Since 1976, Scottish Women's Aid has helped women, children and young people and has driven change in policy, law and public understanding in its drive to create a Scotland that no longer needs its services.", + "media_hash": "5d1390326efedf5b18d6ddbae84d4a980a00a6dbde2146f20a72e983", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland's voters deserve better.\"", + "media_hash": "386b87780a220fc0e8dd6e7a21323313af38cb2494a9be41c5d1d87f", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stephen Boyd", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "They visit Glasgow to find out more about Scotland's notorious serial killer who cops believed murdered three women Patricia Docker, Jemima MacDonald and Helen Puttock in the late 1960s.", + "media_hash": "1bd889aa6d72e854b0ea0d71345dd8351caff5a8d2b8bf4de80f0c19", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "cops", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "Liverpool city centre was packed with Scotland fans ahead of the World Cup warm up match at the Hill Dickinson Stadium", + "media_hash": "c61c2cad26efa130583ecdf7b492dd2f7875d6821f67bd6aa94868e3", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "The unfolding situation has exposed tensions at the heart of industrial policy in Scotland and across the UK.", + "media_hash": "e8c6b33e1dee8a6e354751d6bb8c45eca790aa9fb1da3f2830ced3ea", + "sequence": 37, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland,\" he said.", + "media_hash": "5ae2d4a07183c5b54fa79f6fb19132cf91df348387a629039b5e4856", + "sequence": 51, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Paul Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", + "publication_date": "2026-03-31T16:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", + "media_type": "news_article", + "sentence": { + "text": "Unions said the scheme was critical to the short-term sustainability of ADL's future in Scotland after the company previously announced in June 2025 it intended to centralise its manufacturing operations at a single site in Scarborough.", + "media_hash": "7a3e970c3263e9b38533dd7c46634fe177703df2f6b3bbfcf95e3823", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Unions", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alexander Dennis Limited", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", + "publication_date": "2026-03-31T15:25:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", + "media_type": "news_article", + "sentence": { + "text": "\"We want to make the most of Scotland's participation in this global sporting event by ensuring people have the opportunity to come together and celebrate - no matter the outcome of the match.", + "media_hash": "fc623e99889cd068070cde77710442dab6e23b1076105fd0b6b214e9", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "This reaction was all the more surprising given it was no secret that Forbes was a member of the Free Church of Scotland, and it was entirely reasonable to expect that her views would be in line with her church's teaching.", + "media_hash": "9534e7ba0165fcaac4d5773861c70919cbe78534b78a9f2ac9e17f00", + "sequence": 15, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Free Church of Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "The Labour leader has accused John Swinney \u0301s party of failing to invest in Scotland (Robert Perry/PA)", + "media_hash": "7f9aefb60ad2f91884427c82b0c61ad7ef8851daccc185b07d2a3309", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Scotland fans can fret - but they need to keep perspective too'", + "publication_date": "2026-03-31T23:01:17", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", + "media_type": "news_article", + "sentence": { + "text": "There was cause to be disappointed in the way Scotland conceded from a counter-attack, a run from Nicolas Pepe that wasn't tracked by Billy Gilmour, a defensive lapse that wasn't recovered by Kieran Tierney, and a shot that Liam Kelly presumed was going in until it came off a post.", + "media_hash": "c8caf2b0336271e856c9b9443cfc465af2b4d9f2e28f74981f193876", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", + "publication_date": "2026-03-31T22:13:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", + "media_type": "news_article", + "sentence": { + "text": "Scotland have already scheduled a World Cup farewell against Curacao at Hampden on 30 May.", + "media_hash": "c9c43855dad904c86422fe71eb568fb1fe63616117aee4c65cc87754", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "McTominay hit the post early on against Japan on Saturday night but the ball screwed off the woodwork to safety rather than into the net or back out to a Scotland player.", + "media_hash": "2c59c0b8fc52c86255dd7b635b12137da5cc519177ac75602d81266c", + "sequence": 57, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scott McTominay", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", + "media_hash": "f543675647f69b6e1babf6c951ea028d19cb40083f64a0b938a8fc1a", + "sequence": 71, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", + "publication_date": "2026-03-31T18:58:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", + "media_type": "news_article", + "sentence": { + "text": "On Tuesday, Police Scotland confirmed it is working alongside European authorities in relation to the arrest.", + "media_hash": "79b0ddd12b376d48a06113d660abec70c8e9430a6e6f4650c2ddf641", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "Armchair sports fans once again discovered a passion for curling at the Winter Olympics earlier this year - enjoying three weeks of thrills and spills on ice for Team GB (who, as ever, were from Scotland).", + "media_hash": "0621b917be63c4d3f3edc017dfdd81fbfb07e24c3aea98501190bae1", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", + "publication_date": "2026-03-31T11:03:14", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", + "media_type": "news_article", + "sentence": { + "text": "Eddie also had his say after Daizen Maeda was jeered by Scotland fans.", + "media_hash": "28e56439c12197497976864fb96e41457c4abe68c8547f3c60012744", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", + "media_hash": "4eed64d849cddd4f921f27c111f1b5b605953a97bb6eb68a81884403", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "international law enforcement", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Norman Silvester", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Swinney says Scotland not invited to key Cobra meeting on Iran war", + "publication_date": "2026-03-31T10:34:15", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983277.john-swinney-says-scotland-not-invited-cobra-meeting-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "FIRST Minister John Swinney has called for Scotland and other devolved nations to be involved in a planned UK Government Cobra meeting on Tuesday after no receiving any invitation.", + "media_hash": "31651f9bbeed14fd2736d1216685888e99e1e2b12f2e66eef134c741", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "John Swinney says Scotland not invited to key Cobra meeting on Iran war", + "publication_date": "2026-03-31T10:34:15", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983277.john-swinney-says-scotland-not-invited-cobra-meeting-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Government has released a statement detailing the First Minister has requested an invite be extended to Scotland, Wales and Northern Ireland.", + "media_hash": "88bf53272214b06226bef21eaaab94307c83a275334340fab37e347a", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Princes Street incident: Boy, 15, arrested after car chase in Edinburgh city centre", + "publication_date": "2026-03-31T08:23:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/boy-15-arrested-after-early-hours-car-chase-on-princes-street-6529563", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", + "media_hash": "932144d920312a346138f7c3fcf63bc8b4ebf9665ae1d9b668d6295a", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland found their base camp for 'travelling' World Cup", + "publication_date": "2026-03-31T06:24:03", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", + "media_type": "news_article", + "sentence": { + "text": "Steve Clarke's former Kilmarnock midfielder Gary Dicker is assistant coach at MLS side Charlotte FC - where Clarke's Scotland squad will be based for the World Cup", + "media_hash": "685ade53577ab9483540ec47ac2b25d798a4f125f321d6eebed2aa40", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", + "media_hash": "71a9563a9b06a998ddd6532b2bb5d34e2eff4a320668e8b864f91efe", + "sequence": 891, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", + "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", + "sequence": 987, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "senedd_election": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", + "media_hash": "8e8fa0be58a7449a317b4c331f6070ab4869fa6b9d93504f4deadf1a", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", + "media_hash": "57434479d14b7e0cf6a48505f39003f800b3bd2b52e9efe71617c202", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Biogen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Ms Stewart said she hopes the expansion of Fair Feast will be some sort of blueprint for other communities across Scotland and beyond.", + "media_hash": "210f49fc5ec32d392d77ffae030b40437466fcf76e1bcbc7e17071b8", + "sequence": 36, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "We had JJ Bule on, uh, radio Scotland last week, who did a, I think you could like an LCD sound system kind of very funky hipster kind of track.", + "media_hash": "00fb1f5dcb8b0a8213a36502aab3d16e7526d0700d643055675b6025", + "sequence": 1627, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "However, IPPR Scotland argues this does not mean the sector is \"bloated.\"", + "media_hash": "031467d95cbf8425d6fd96bfe2359405ae458adb370cd6447a14ded5", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "ADL positions Scotland at the forefront of zero-emission transport technology, aligning with national climate targets and global export opportunities.", + "media_hash": "1752255716c701c1594950d8aab7491574281da218ffda8b7834a57e", + "sequence": 31, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "Mathew Street was lined with Scotland fans just before 2pm, with constant chanting for midfielders Scott McTominay and John McGinn.", + "media_hash": "9288794828f6c59e317415ed3cb6ece7a46fddb3a7155d6146d6fbeb", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "It was back down to earth with a bump for Scotland at the weekend.", + "media_hash": "5b3446b9c18c31d75e5b8adceca46002e3092be84d37a1e95af84501", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "Robert Deavy, senior organiser in manufacturing at GMB Scotland, said: \"How many jobs must be lost and factories closed in Scotland before our governments stop sending contracts around the world?", + "media_hash": "2ef4c4471d858bab155b3811ab1fddeed58b275e3d869dccae95b7ab", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "GMB Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Robert Deavy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "It's meant that there are portions of people across Scotland who do not support Gaelic being funded in any way.", + "media_hash": "642459b2790981d262247ddcbbf1c46c386b8487dd0502c9481d0831", + "sequence": 23, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", + "publication_date": "2026-03-31T15:30:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", + "media_type": "news_article", + "sentence": { + "text": "Scotland manager Steve Clarke specifically requested a match against strong African opposition to prepare for their World Cup group stage game against Morocco this summer.", + "media_hash": "2ca0eeb3de3a2c7f3f361b4a4ced1d8f9ab0f5e3f7fa1cc2dc13628b", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland manager Steve Clarke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", + "publication_date": "2026-03-31T15:21:22", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", + "media_hash": "a5928758ecdf0493a55f46e7e1a8eafde9068ca7b3ec71a933cf7222", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", + "publication_date": "2026-03-31T03:45:56", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", + "media_type": "news_article", + "sentence": { + "text": "In her letter, Ms Hyslop said Transport for Scotland had been engaging with the UK Department for Transport over a trial being conducted in England.", + "media_hash": "54a728660cbb1e78655afabf49eae57b9166e62f18156c7dac4a5364", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Fiona Hyslop", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "That reflects a deeper, structural issue which is driving up the cost of doing business in Scotland.", + "media_hash": "d1c652bd6152912d9146d4bad702a518bf5f8061a8f0bb2a6c5fa977", + "sequence": 13, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "The roar Nathan Patterson received when he replaced Ross McCrorie after 61 minutes suggested many Evertonians had responded to manager David Moyes' call to come out and support Scotland.", + "media_hash": "d7e7e53bc431e8850e30f92718f3f7efe9207bf8e62c1e5416353a37", + "sequence": 62, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", + "publication_date": "2026-03-31T20:36:44", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", + "media_type": "news_article", + "sentence": { + "text": "Ryan Christie had a weak, close-range shot at the end of a promising Scotland attack - and seconds later the Africans were opening the scoring at the other end through Pepe.", + "media_hash": "116c54d5d469e8e77b64e86643e499aa84ab657a2cb805978c3bcf6a", + "sequence": 41, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Wishaw MSP welcomes new funding to support Scottish-based musicians", + "publication_date": "2026-03-31T19:20:00", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/wishaw-msp-welcomes-new-funding-36950742", + "media_type": "news_article", + "sentence": { + "text": "Motherwell and Wishaw Clare Adamson has welcomed new Scottish Government funding to support Scotland-based musicians with the rising costs of international touring.", + "media_hash": "b7c9081ac42c4e4d9f083ba4b1851ce54f9f66b6a20e356db6a0a07c", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Malcolm Offord from Reform UK is next saying the best form of opportunity is a good job, and says Scotland is the best country in the world for financial resources and people.", + "media_hash": "6c8c743076dcb63886a40b76bd2938f1e8127d775cf5c991eaf1c589", + "sequence": 48, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "Former Olympic silver medalist Ross Whyte is captaining Team Scotland at the 2026 Mens World Curling Championship.", + "media_hash": "d6e636da6497452c1a2e0388b2438db582ea0ff143ca9181b37ac8c9", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Green candidate replaced by rival who complained about him", + "publication_date": "2026-03-31T16:22:37", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", + "media_type": "news_article", + "sentence": { + "text": "A Green source told BBC Scotland that this was not the only complaint that had been made against Guy Ingerson.", + "media_hash": "002c816dbbbf4a3320a7b6eef86078bd55034e1d3d07bf21a43fb8ce", + "sequence": 30, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", + "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.51751 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", + "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", + "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.548465 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", + "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "senedd_election": 3.548465, + "scottish_elections": 3.548465 + } + } + } +}, +{ + "title": "Financial education in Scottish schools does not add up", + "publication_date": "2026-03-31T14:21:59", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", + "media_type": "news_article", + "sentence": { + "text": "Despite financial education already being included in the Curriculum for Excellence, the Scottish public believes schools should do more to teach students about money.", + "media_hash": "1a1225c6f79889768d722cdcd3c42d3164f607da50cd923078b2d969", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Money Ready", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5299199999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", + "publication_date": "2026-03-31T03:45:56", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", + "media_type": "news_article", + "sentence": { + "text": "\"If local authorities in Scotland wish to implement a trial it would mean their acceptance that any crossing, under trial conditions, may be unenforceable which comes with risks. A collective way forward may be to proceed with shared discussions on the potential risks, benefits and opportunities of trialling and ultimately introducing side road zebra crossings in Scotland.\"", + "media_hash": "d272db30bbbaeb2f90de80661df977603db2fb12be6c55935b0d58be", + "sequence": 22, + "claim_type": [ + "correlation", + "rules", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Fiona Hyslop", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.52944 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations according to research.", + "media_hash": "78e6c20cd8e71cf88a474906470ae73a4a780eae2c21b6870fb480bc", + "sequence": 540, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5163599999999997 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", + "media_hash": "bebcb4208b02f29456620f944e2fd8a509c525a3ca23d151f87ec087", + "sequence": 27, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.47393, + "scottish_elections": 3.47393 + } + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "Unlike other areas of the UK, however, Scotland doesn't recognise Easter Monday as a national public holiday, meaning that not everyone is entitled to an extra day off.", + "media_hash": "6dda8513cef9634a53e1e617ac934bbf61437a71699053cb1086d262", + "sequence": 13, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.46698 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", + "publication_date": "2026-03-31T05:00:00", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", + "media_type": "news_article", + "sentence": { + "text": "The charity has also pioneered the recognition of children as victims of domestic abuse in their own right and influenced the introduction of the Domestic Abuse (Scotland) Act, which criminalises psychological abuse, coercive control and controlling behaviour.", + "media_hash": "40c553c96490d19b061290fe10b438bb094222cb70ac15f0e09616fd", + "sequence": 6, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.436025 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Earlier today, councillors decided to grant a general extension of opening hours for all of Scotland's matches until 30 minutes after the final whistle.", + "media_hash": "da2730e7e3747626ed7dfc9c95571a3f16d06a57ab46d488b4d76c39", + "sequence": 14, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Councillors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.436025 + } + } + } +}, +{ + "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", + "publication_date": "2026-03-31T03:45:56", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", + "media_type": "news_article", + "sentence": { + "text": "An update for this week's meeting of the committee says: \"The Cabinet Secretary responded but offered no current legislative route to allow the introduction of continental style zebra crossings on public roads in Scotland. The decision of the committee taken on 3 April 2025 is therefore that the proposed study should not proceed.\"", + "media_hash": "5528d57165d37068f23468f33ea1765b7b0670b44555f9fab68bec4e", + "sequence": 18, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Edinburgh council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.436025 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Highland pubs will have to plan ahead to show most World Cup games", + "publication_date": "2026-03-31T10:30:11", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", + "media_type": "news_article", + "sentence": { + "text": "She said: \"In relation to licensed premises that have a full premises license and have televised sport if a Scotland match is played beyond the core licensing hours, there'll be late opening until 30 minutes after the final whistle.", + "media_hash": "d6decb10695cab923ba1dd693862bc081d2e4086507d72d2c6bfdaf0", + "sequence": 20, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Councillors", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jackie Hendry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.4269350000000003 + } + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops and our fear is this could see a shift in investment down south.", + "media_hash": "eaf690255c1fe4dd374e83b93b80c4b1adde58cf6c0172967755c9c0", + "sequence": 25, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "David Lonsdale", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.4269350000000003 + } + } + } +}, +{ + "title": "Medieval Scottish ferry found on Mull abandoned due to 'technical difficulties'", + "publication_date": "2026-03-31T23:01:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/heritage-and-retro/medieval-scottish-ferry-found-on-mull-abandoned-due-to-technical-difficulties-6529894", + "media_type": "news_article", + "sentence": { + "text": "Dr Macdonald went on to say that further work on Scotland's maritime history is expected to reveal more details about transport between the islands, and between the islands and the mainland.", + "media_hash": "094e32fade9fbc61dc318e74bfad9aff89d2e6a8f24e57c9860cfa5c", + "sequence": 20, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Dr Donald Macdonald", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.4269350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops, and our fear is this could see a shift in investment down south.", + "media_hash": "d8acf5adfbb741b8f55fa09c99fea7d15eb5b038c4a3303823d53ff5", + "sequence": 21, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium (SRC)", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "David Lonsdale", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.4269350000000003 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", + "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.414065, + "senedd_election": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", + "media_hash": "0eec77037a0660c7c69def7a32862548924b924582b4d4d4aa2ac657", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour finance spokesman Michael Marra", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065, + "energy": 3.414065 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Gordon Strachan has urged everyone associated with the Scotland national team to not even think about Steve Clarke's long-term future until afrer the World Cup.", + "media_hash": "ca6090be9ffbea0177588d84a24cda5bcad3a2044ba0bb6fb6a44f57", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", + "media_hash": "ea4c776071e4e1f3e5a2dd470dd7b71d087993258fdac6352bcc171b", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", + "media_hash": "52573a6944ac3078f1f560c59b0e9b589b1e113c4372e9a47858c692", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", + "media_hash": "e9c1379ac05eab18894ec619fa2bf225fd566c072d7c61170a62a524", + "sequence": 29, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Conservative", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", + "media_hash": "393a931a9a6085fd9209116b4867174d584df29766536993536dada4", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065, + "crime": 3.414065 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "\"The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government acting now.\"", + "media_hash": "87e931b750c69be16b4b0c26b4dbe320fde1e75128722da2ed25ab26", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Kate Forbes", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar: SNP has sold out Scottish industry by sending...", + "publication_date": "2026-03-31T23:04:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Sarwar told voters he is standing as first minister to \"fix the mess, get the basics right, and build a better future for Scotland\".", + "media_hash": "8d5752ad5776e4142bce4ef9129c4ec8ad8b1429a62ea24c59c184f7", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", + "publication_date": "2026-03-31T05:01:49", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", + "media_type": "news_article", + "sentence": { + "text": "He added: \"I'm standing to fix the mess, get the basics right, and build a better future for Scotland.", + "media_hash": "de910c117c1333d12088e7a1577e434e914739a27d12c7e73b6322fd", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", + "media_hash": "98d1471372b8b9cc449bbaa4203bae3e53faf553285c4a4c8a226b98", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.414065, + "scottish_elections": 3.414065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", + "publication_date": "2026-03-31T15:25:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", + "media_type": "news_article", + "sentence": { + "text": "The First Minister previously he wants \"as many people as possible to celebrate\" Scotland's return to the World Cup.", + "media_hash": "17294b1d82f257515b1927a8b479332a63139b0a94ad7e8acbac9faa", + "sequence": 15, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.4092450000000003 + } + } + } +}, +{ + "title": "I'd happily lose Scotland friendlies for the next ten years in exchange for ultimate international payoff", + "publication_date": "2026-03-31T05:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/id-happily-lose-scotland-friendlies-36945989", + "media_type": "news_article", + "sentence": { + "text": "I've said before, I'll play for Scotland until I'm told I'm not good enough.", + "media_hash": "7ec467c351e68d5d736149be8685dc1ca9b8e46740325c4f7ecaec22", + "sequence": 47, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.407405 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", + "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.3956850000000003, + "senedd_election": 3.3956850000000003, + "scottish_elections": 3.3956850000000003 + } + } + } +}, +{ + "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", + "publication_date": "2026-03-31T18:58:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", + "media_type": "news_article", + "sentence": { + "text": "Thirteen arrested in organised crime raids in Scotland and Spain", + "media_hash": "a84f9e38be663d70a43b48936bcddc4bf6f9faaad78223096ecdc7a6", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "\"It is vital that the UK Government ensures a long-term pipeline of orders and a supportive approach to reserved matters such as subsidy and procurement. A first step would be changes to the Subsidy Control Act 2022 in order to create that pathway for procurement reform. The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government to acting now.\"", + "media_hash": "0da7f21c560970d06abd9c85c3c40746ed7f488dcdf54c1a0d9c9426", + "sequence": 24, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Kate Forbes", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.299735 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", + "media_hash": "21efe1aab0ff4a772f97d563de1b0245d56f9eb68446f41421c1dc5a", + "sequence": 25, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jackie Dunbar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.290645, + "energy": 3.290645 + } + } + } +}, +{ + "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", + "publication_date": "2026-03-31T13:15:33", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", + "media_type": "news_article", + "sentence": { + "text": "Despite some areas of Scotland being hit with snow last week, Easter is almost here - bringing with it a lovely long weekend.", + "media_hash": "fd01e9b1359094c07d716f8f66d551a2bab1cb0f73a29cc5b6c3be8b", + "sequence": 11, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.25971 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Alarmingly, more than 140,000 of these were for families with at least one child.", + "media_hash": "1b7e0b9c1f1eda1988c4cc7faf19ffa9e421899da274aecf24748d1a", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.2500299999999998, + "scottish_elections": 3.2500299999999998 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.2500299999999998 + } + } + } +}, +{ + "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", + "publication_date": "2026-03-31T15:25:13", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", + "media_type": "news_article", + "sentence": { + "text": "John Swinney said: \"Scotland will be on the world stage this summer and I want as many people as possible to be able to celebrate that moment.", + "media_hash": "04b37f0103d69db28ba68fa4858f66ecd2edcf61f94b2b95a959288a", + "sequence": 16, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "THE UK Government has been told the closure of Grangemouth oil refinery has made Scotland \"vulnerable\" to supply shortages as the last shipment of jet fuel from the Middle East is to be received this week.", + "media_hash": "98b8c8369a7d450a033e23b49ed068714d6464850d7292e0eff6ab98", + "sequence": 1, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + } + } + } +}, +{ + "title": "John Swinney: SNP plan for NHS 'is working'", + "publication_date": "2026-03-31T06:29:37", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", + "media_type": "news_article", + "sentence": { + "text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", + "media_hash": "187f362805f21dfa00c539853f8a8c47c59d952a3ff1ede6aafd8b60", + "sequence": 12, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "First Minister John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in Scotland", + "publication_date": "2026-03-31T05:58:30", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", + "media_type": "news_article", + "sentence": { + "text": "Mairi McAllan, SNP candidate for Clydesdale, said: \"Our transformational childcare package will be a complete game-changer for families across Scotland.", + "media_hash": "a428f34c93da8bf0a3c4034af85ea1af916a2f5ce6ddf058990cf743", + "sequence": 23, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + } + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "First Minister John Swinney confirmed the support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", + "media_hash": "3a9ac79e839c6d6359dfa467d55052fc32fb5fe3450ea0bb3dcf1868", + "sequence": 28, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "It was First Minister John Swinney who confirmed the furlough support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", + "media_hash": "130cb0b6822df65b08fdfeba895a7973c497beee2661c90db37bac7e", + "sequence": 46, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.228755 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", + "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.226865, + "senedd_election": 3.226865, + "scottish_elections": 3.226865 + } + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "The SRC has also been campaigning for reforms to the way businesses in Scotland are taxed.", + "media_hash": "870eed68ee2f65a0b364c6c1d08125252a57f5ba0fd277141548dc2d", + "sequence": 20, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", + "publication_date": "2026-03-31T14:45:07", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", + "media_type": "news_article", + "sentence": { + "text": "SNP MP Stephen Flynn has criticised the UK Government over its decision not to intervene and save the Grangemouth refinery from closure, as he said \"Scotland's resources should be controlled by Scotland\".", + "media_hash": "0c680fe780f7b53e565068ec2825f9e0328cf8fb7de692eaeed6983a", + "sequence": 9, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "SNP MP Stephen Flynn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "Bus manufacturer Alexander Dennis to slash Scots jobs and close factory in Falkirk", + "publication_date": "2026-03-31T11:00:00", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/politics/bus-manufacturer-alexander-dennis-slash-36947245", + "media_type": "news_article", + "sentence": { + "text": "\"We remain grateful to the Scottish Government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", + "media_hash": "13fc55fc0f4380d8d6b021aa181ab5fa12554d92529b40633ad3c91a", + "sequence": 17, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Alexander Dennis Limited", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Paul Davies", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", + "publication_date": "2026-03-31T12:05:09", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", + "media_type": "news_article", + "sentence": { + "text": "\"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", + "media_hash": "351ed8e066f908af8391379dc391dd88b8fb1c3ed85f498e106f2da6", + "sequence": 19, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Paul Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "Following the consultation announcement, Deputy First Minister Kate Forbes has called on the UK Government to \"urgently deliver\" on the promises made to Alexander Dennis and help secure vital manufacturing jobs in Scotland.", + "media_hash": "27f812e89d562c02cdf4f172ed03583375406b2fcb4843712bc845df", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Kate Forbes", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", + "media_hash": "4a2783b6197af9efa0d12701a5e3607ee5da0ef8efa0de3068cc8ba9", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "End `ridiculous\u00b4 royal tax breaks, Greens urge in...", + "publication_date": "2026-03-31T23:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696455/End-ridiculous-royal-tax-breaks-Greens-urge-election-pledge.html", + "media_type": "news_article", + "sentence": { + "text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", + "media_hash": "90b275fb62298fa1e30aaa8c12095bbad025b618b2b6be0e6250652b", + "sequence": 13, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065, + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "\"Just one example, we've delivered social security Scotland and the national investment bank bringing jobs and investment to the economy. We've used progressive taxation to fund policies like free tuition and prescriptions. We believe in using Scotland's energy wealth and becoming an independent county and re-joining the EU.\"", + "media_hash": "67be06a781cd9cad8519b659f5204bf842f9fe8646114c8ae71e6c17", + "sequence": 46, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "CalMac ferry crisis: Lib Dems demand Holyrood be recalled over vessels shortage", + "publication_date": "2026-03-31T08:58:16", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982645.lib-dems-call-holyrood-recalled-calmac-crisis/", + "media_type": "news_article", + "sentence": { + "text": "The leader of the Liberal Democrats has called for the Scottish Parliament to be recalled to address the crisis engulfing Scotland's ferry network.", + "media_hash": "417a95f1656ef8d353901eeb80367a6ba2f908f5e10e72f1a8c3ef41", + "sequence": 1, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:48:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", + "media_type": "social_post", + "sentence": { + "text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", + "media_hash": "8ec10c3352342495edc697bd098438eec80d5a70bcb4a2738b263378", + "sequence": 2, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "Davies added: \"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", + "media_hash": "5ac85ee2df3880d42575ba991522c6f245a117424fcc885edadb0559", + "sequence": 8, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Paul Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", + "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.211065, + "scottish_elections": 3.211065, + "clinical_health": 3.211065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", + "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.18436, + "senedd_election": 3.18436, + "scottish_elections": 3.18436 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "Scots council pays \u00a330k after child given food they were allergic to", + "media_hash": "4103c42e04a2f9598a31600ecb80a061fe123e17f14e587229ec6cea", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.16655, + "scottish_elections": 3.16655 + }, + "demo": { + "politics_of_food": 3.31818 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", + "media_hash": "5d4250299936dc3bf7a2ad4fca723fe889fb12f24f02b6114c12dbfb", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.16655, + "scottish_elections": 3.16655 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "Dumfries and Galloway Council recently forked out \u00a330,000 in compensation to a family after a child was repeatedly given food they were allergic to.", + "media_hash": "b22da22d3aef3cb1feaaf1ba686fc6d15f5b157595eb265f81a97258", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.16655, + "scottish_elections": 3.16655 + }, + "demo": { + "politics_of_food": 3.16655 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "Over a third (34.5%) of mothers said they often find themselves choosing between paying for childcare and household essentials.", + "media_hash": "50f8879d9ec5d148a67d94ebfbfed4059fdcec396630caae56a64a2d", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pregnant then Screwed Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.123595 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Bowel Cancer UK found that around a third of people who are eligible here don't complete their test.", + "media_hash": "cc7942b4eba755ca82265a54cad59920ae9548e9f84ecda72c53eef7", + "sequence": 541, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.123595 + } + } + } +}, +{ + "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", + "publication_date": "2026-03-31T15:43:02", + "publication": "novaramedia", + "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", + "media_type": "news_article", + "sentence": { + "text": "It's now consistently true that majorities of young people in each of Scotland, Wales and Northern Ireland want to leave the UK, and the coming elections in Scotland and Wales will almost certainly bear that out.", + "media_hash": "bad8500c30064fa560ab30074218532482bb42245d0db5b4bfa88ffa", + "sequence": 42, + "claim_type": [ + "rules", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.1144249999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", + "media_hash": "1a8ebe3abbe18f8d438ca4981f4d4675b005ab2d0c11f2fe222d773f", + "sequence": 890, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.09725, + "scottish_elections": 3.09725 + } + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "New figures from the RAC Foundation show that the cost of the Middle East conflict has cost drivers across the country more than half-a-billion pounds in higher fuel prices.", + "media_hash": "dd4a3547d66292354f40c0893b95a3f7e2d19820262d2b2b14d931da", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.09725 + }, + "demo": {}, + "aapfactcheck": { + "economy": 5.09725 + }, + "pa-media": {}, + "maldita": { + "general": 3.09725, + "energy": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", + "publication_date": "2026-03-31T03:45:56", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", + "media_type": "news_article", + "sentence": { + "text": "I have asked Transport Scotland officials to seek further legal confirmation, as they consider the effectiveness of this type of crossing upon review of the published trial findings.", + "media_hash": "ddbffa852dd5dbb7cd4e17ae5e5dd0b6c2e0daba80fbcd79fbe62a55", + "sequence": 21, + "claim_type": [ + "rules", + "support", + "other" + ], + "claimer": [ + { + "name": "Fiona Hyslop", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.096735 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cole-Hamilton opens door to helping Sarwar become first...", + "publication_date": "2026-03-31T14:54:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", + "media_type": "news_article", + "sentence": { + "text": "\"But listen, Scotland needs change, and if there is an opportunity to get rid of the SNP and deliver change with fairness in its heart, which shares our values, of course, we'll look at that.\"", + "media_hash": "59970daec93333c127ed5522b48e23b7f9927bae6ad71d4c2784ea62", + "sequence": 18, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.092465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", + "media_hash": "009d0f925b83954eeba3eeb74adcdf138530faf6921ddc8adb236fcc", + "sequence": 25, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.092465, + "clinical_health": 3.092465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Scotland's Deputy First Minister Kate Forbes called for action from the UK Government.", + "media_hash": "e346570df6f15b41ad3230ad73fbf1813a489a3cecbdaa3b261f98e9", + "sequence": 27, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.074775 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "RUSSELL Findlay has promised to establish Canary Wharf-style enterprise zones in Scotland.", + "media_hash": "0a5b798956bbf403e062fb849f19d45dc5530453506374e20f2fa8ae", + "sequence": 2, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Russell Findlay", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.074775 + } + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", + "media_hash": "5f1fde4db51650778b64b784c3a487b3c8477bd3152bd0313aae5cb1", + "sequence": 61, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.063685, + "housing": 3.063685 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", + "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.063685, + "senedd_election": 3.063685, + "scottish_elections": 3.063685 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "\"And given that the council recently paid out \u00a330,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", + "media_hash": "12314b755594ea761309afedca6739fde76c88e89a7abbcdc6038b75", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dumfries and Galloway Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Annandale North Councillor Carolyne Wilson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Labour Group", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.061215, + "scottish_elections": 3.061215 + }, + "demo": { + "health": 3.061215, + "politics_of_food": 3.061215, + "nutrition_": 3.061215 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", + "media_hash": "2d96af65d00637e2c8f45d9d22e7116bd28156d393ee419116c3b175", + "sequence": 27, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Susan Murray MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.037655, + "scottish_elections": 3.037655 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", + "media_hash": "db80b90ea4e3d9d575b907a1dcfc3e8ab1040a8b3f8048639dc01b4f", + "sequence": 29, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.023415, + "crime": 3.023415 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.89698 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Swinney: SNP plan for NHS 'is working'", + "publication_date": "2026-03-31T06:29:37", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", + "media_type": "news_article", + "sentence": { + "text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", + "media_hash": "49c470606051982fb10a5869b5ace71ba84f771b53069000b7c1a56b", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Labour deputy leader Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cole-Hamilton opens door to helping Sarwar become first...", + "publication_date": "2026-03-31T12:44:27", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", + "media_type": "news_article", + "sentence": { + "text": "A Survation poll on Tuesday suggested the SNP could win 62 seats at Holyrood, Reform 19, Labour 18, Tories 13, the Greens 10 and Lib Dems 7.", + "media_hash": "3cf483ee40518f2545427f6bb49816dc457ad2aa56ca4c3a1ecab9c7", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Union says 1600 Scots jobs at risk if government doesn't act in 'national interest'", + "media_hash": "66d09be499124832f1c212badcda259058c60794c4b6a8e656de597f", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", + "media_hash": "27d3523d82bf99d4d959077e4d892e473c95daf935e5ff47a90d3085", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815, + "health": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "The price of filing up at the pump has been steadily rising since the war in the Middle East broke out just over a month ago.", + "media_hash": "bdf4c7dbe3b7079415cb58931fd513ba858a0f35a8a4c3cb6ac3bce8", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.89907 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "\"The most important ones in my view are those where 20% or more speak the language and that's where the extra funding will be.", + "media_hash": "4d6bf40fd8d191d270d8a14a2f41882ad818af6f28013cea88d0e29a", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815 + } + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "James said: \"It's my first time in Liverpool. It's amazing. I love the accent. It's just an extended city of Scotland.\"", + "media_hash": "9930faa542bcdaa0d9bc14341f380a658ff4ee18ad44e00ebd3b2a21", + "sequence": 38, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Scotland fans", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Milne", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.922625 + } + } + } +}, +{ + "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", + "publication_date": "2026-03-31T15:36:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", + "media_type": "news_article", + "sentence": { + "text": "\"It makes me happy to help people unlock their creative potential and show Scotland their captivating stories of dignity, resilience, and the desire to make the world a better place, starting with oneself.\"", + "media_hash": "f7aa8473311e142349749c7e1083cd6d378d0d5636a687c52ae61e38", + "sequence": 11, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Vira Klymkovetska", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.922625 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "Amongst the many hustings events I'm doing during the Scottish Parliament election campaign, I took part in one last week hosted by Christian think tank Logos Scotland.", + "media_hash": "83f4d99bcaef2d90f7120c3fe9046c8ca22d03aaa8813a0607aa5010", + "sequence": 10, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.922625 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", + "publication_date": "2026-03-31T15:36:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", + "media_type": "news_article", + "sentence": { + "text": "\"Moving to Scotland with two young children as a single mother made it impossible to continue my acting career at that time.", + "media_hash": "1e6b02f170311ed14cf69f14b0f15fda01d9f3bb23bc6a558db06180", + "sequence": 9, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Vira Klymkovetska", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.922625 + } + } + } +}, +{ + "title": "Green candidate replaced by rival who complained about him", + "publication_date": "2026-03-31T16:22:37", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", + "media_type": "news_article", + "sentence": { + "text": "Guy Ingerson was due to top the regional list for the party in the North East of Scotland in May.", + "media_hash": "fb39bd372f69ba715c40ebb30d9748f558584192fc0cb7a64b3c117f", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.91647 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Rhian Thomas is head of the Electoral Commission in Wales.", + "media_hash": "bfc418945f3e18f1e9a05c482c7dafcfda7bdb07ffd8bae025224d8d", + "sequence": 884, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.91647, + "scottish_elections": 2.91647 + } + } + } +}, +{ + "title": "Scotsman hustings LIVE: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T16:29:41", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-live-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He has served as an MSP for South Scotland since 2021 and has played a key role on Holyrood's standards committee", + "media_hash": "b5d394fae150a24208ed55058581cf903c24157b927f374f1f9530b5", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Martin Whitfield MSP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.91647 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It was launched yesterday ahead of the Senedd election in May.", + "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", + "sequence": 970, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.91647, + "senedd_election": 2.91647, + "scottish_elections": 2.91647 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "Scores of Torry residents faced losing thousands as they were told to sell up their homes for less than market value, after they were deemed unsafe and earmarked for demolition.", + "media_hash": "ef0aa8cbe7476c6713d477f664b649850c40b72e2c3b5e1f221be5ed", + "sequence": 55, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", + "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", + "sequence": 18, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", + "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Chris Nottingham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Blaenau Gwent Food Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "John Swinney: SNP plan for NHS 'is working'", + "publication_date": "2026-03-31T06:29:37", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", + "media_type": "news_article", + "sentence": { + "text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", + "media_hash": "d535025bd03429fd22329696ad5629d60232c430333daa77497e1e56", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Scottish Tory health spokesman Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", + "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", + "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "22 people went to clear up Cardiff Bay and were shocked at what they found", + "publication_date": "2026-03-31T19:20:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/22-people-went-clear-up-33693074", + "media_type": "news_article", + "sentence": { + "text": "He explained: \"The worst for pollution and litter is polysterene.", + "media_hash": "d1cf0984e0dd28c4ac5d0d37a3c3fad3c11523ddc081f84266cbcf3a", + "sequence": 21, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.8655049999999997 + } + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", + "media_hash": "12ebeb8b8006ad21fa2b481f3fc934b00020ee1734ac320d945462d7", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.862985, + "crime": 2.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP push for independence would only bring joy to...", + "publication_date": "2026-03-31T23:04:57", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696463/SNP-push-independence-bring-joy-despots-like-Putin--Findlay.html", + "media_type": "news_article", + "sentence": { + "text": "\"And, of course, John Swinney only cares about independence, when breaking up the UK would instantly make our great country poorer, less stable and less safe and bring joy to despots like Putin.", + "media_hash": "706e40a8d8c97239fd4d9eb3c03e718d2a4d0bd537ea35b88d1b0f70", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Russell Findlay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "culture-wars": 2.851145, + "scottish_elections": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "It's clearly wrong that individuals are tortured or coerced in an attempt to change their sexuality or gender identities, but such behaviour is almost certainly already illegal.", + "media_hash": "3e5b646ef3214b804a7515b8da8a68b25c497ae1bb5f1aba360539d0", + "sequence": 35, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.81209 + }, + "demo": { + "race__ethinicy__religion": 2.81209 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", + "publication_date": "2026-03-31T15:36:19", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", + "media_type": "news_article", + "sentence": { + "text": "\"I hope that this project will help refugees overcome trauma and send a strong message to the world that wars and violations of human rights have always been harmful to humanity and to women.\"", + "media_hash": "871700410150fb856661a5bffde0ffd3cfda8d0a12342db8a79ab569", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Iryna", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.805745 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", + "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.799985, + "scottish_elections": 2.799985, + "clinical_health": 2.799985 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.53726 + } + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, the \u00a380million spent on the A96 hasn't resulted in any dualling at all.", + "media_hash": "ff37d30fbd3a159ef06e46c9690a930edc7a30911605ad628b2de53f", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.772635 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "Critics argue that despite tens of millions of pounds in public backing over recent years, jobs are still being lost and production remains under threat.", + "media_hash": "735b6bb5cfe0bf3dbb58fb2dff76e91ba67c69dc1714bf38a6f90f04", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.772635 + }, + "demo": { + "politics_of_food": 3.09725 + }, + "pa-media": { + "politics_of_food": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", + "media_hash": "eaa02221fdad37e1e16920f4e8a9357f1d45634069cfa01b48fc4b75", + "sequence": 11, + "claim_type": [ + "predictions", + "support", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.753175, + "energy": 2.753175 + } + } + } +}, +{ + "title": "Financial education in Scottish schools does not add up", + "publication_date": "2026-03-31T14:21:59", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", + "media_type": "news_article", + "sentence": { + "text": "Leon Ward, chief executive of Money Ready, comments: \"We are seeing a massive public consensus that current levels of financial literacy are just not up to scratch. The 'cost of not knowing' is not just a phrase - it is the missed compound interest on a pension, the struggle to manage bills, and the anxiety of not understanding a credit score. By the time many people realise what they don't know, they have already missed out on years of potential financial growth and opportunities.\"", + "media_hash": "e6b6accccf8705f87caa541eaa48b2589309e5bcc3fd1f580342fb8f", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Money Ready", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Leon Ward", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.751055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", + "media_hash": "deed62a4ff8fb436ae263ebf718bcf36975cde689cf518d8d8520565", + "sequence": 12, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.751055, + "energy": 2.751055 + } + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", + "media_hash": "375bb9c9d8fab907da770ab5766606d9a0e967b87984eb206f698170", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.748535, + "crime": 2.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dumbarton Health Centre labelled \"not fit for purpose\" after funding snub", + "publication_date": "2026-03-31T13:20:29", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/dumbarton-health-centre-labelled-not-36949594", + "media_type": "news_article", + "sentence": { + "text": "As an ageing property, the building presents several risks, primarily due to the use of the building beyond its intended lifespan as CLASP buildings were only expected to last in the region of 50 years, yet Dumbarton Health Centre remains in use.", + "media_hash": "e4b9ae6a6267e143c8e089b524e62d27cd0551b6bf698a5b4b0356e0", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.7436800000000003 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Winds quite light with loads of 6 to 9 Celsius.", + "media_hash": "3c23785cc33b1b9a5cadbf669cb49e5456b3dcc12a66547975c228cb", + "sequence": 89, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.72968 + } + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "The pair killed 16 people in 10 months in 1828 selling the corpses to anatomist Robert Knox who would dissect them in his anatomy lectures.", + "media_hash": "6a554ab32f82d2f15e2cec1116263b3b691822945eaba676d499eb84", + "sequence": 42, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.72832 + } + } + } +}, +{ + "title": "John Swinney dodges questions on whether aides knew of Jordan Linden complaints", + "publication_date": "2026-03-31T12:53:35", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984174.john-swinney-accused-cover-up-amid-jordan-linden-questions/", + "media_type": "news_article", + "sentence": { + "text": "Linden, the former leader of North Lanarkshire Council, was convicted of 10 offences last week, including five sexual assaults between 2011 and 2021.", + "media_hash": "fb7d0d7b146c8e66d36df77e70c5e4b1a07f9c2fe0aa8871202f0dd9", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", + "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", + "sequence": 40, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Liberal Democrat", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.712725, + "scottish_elections": 2.712725, + "clinical_health": 2.712725 + }, + "demo": { + "health": 4.41429 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", + "media_hash": "fb4c9100ddd507fb12b6af7ff17a02659187b75b57e30c072bc217af", + "sequence": 27, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.712725, + "health": 2.712725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.712725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "\"Business rates thresholds have barely moved in recent years, while inflation has pushed up costs and rateable values.", + "media_hash": "fcb830f24153db619521594f5f82d126c197dcb57a31061f56780620", + "sequence": 14, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "A total of 12 per cent reported a significant increase in those presentations, and zero reported seeing a decrease.", + "media_hash": "cc3d2e2e24f1cf84f6bf48399eb083ecbb677870381a633aea57e85a", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "The research found that two-thirds (66.1%) of mums agreed or strongly agreed that their childcare costs are the same or more than their income.", + "media_hash": "8b022c26b8091e431e5c176897ebd3f8e89589bc37129fb540cd6da5", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pregnant then Screwed Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "title": "Financial education in Scottish schools does not add up", + "publication_date": "2026-03-31T14:21:59", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", + "media_type": "news_article", + "sentence": { + "text": "The charity works with more than 50,000 people across the UK every year delivering financial education programmes.", + "media_hash": "dcc0fad3432e4f8a708206ebaa0c43fb51902bfb490a4c8eb60b66b0", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The planned job losses are a key plank of the government's plan to fill a looming \u00a34.7 billion black hole in the public finances.", + "media_hash": "2baa08362c5548db1f17f3c0e5b2bdc7724348c10d165f730e23efdc", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "The figures are based on average daily pump price rises and last year's fuel consumption rate.", + "media_hash": "1b21e7c77c6daa935a99bd404ea5ac314170bb63f94be41e56af55d7", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", + "media_hash": "784e0d930b5c73351a6c477e8f3b69476b0d89820ea583ee8b125ed6", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T19:00:48+00:00", + "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", + "url": "https://x.com/theSNP/status/2039055327723766076", + "media_type": "social_post", + "sentence": { + "text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", + "media_hash": "e202f9a265e3e544a46a557204abdd5a4504f3872dd50bfa45facf8c", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", + "media_hash": "2ffc0a8a2bb10e3c7850d0abf7091ace3114ced9424b2acaf5c49ea4", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "The polling also reveals that 73% of firms expect to increase prices over the coming quarter.", + "media_hash": "246c89c222a60cf300ca3baea8885780836e9df9a1dc648cf12124a3", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Chamber of Commerce", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "The average cost of petrol is 152.8p per litre, an increase of 20p since the war began.", + "media_hash": "1bd8bf776be41915e86bf1bee7552b88acd4d6744a3a0f7211d19a20", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", + "media_hash": "1ccd5bc5d40ea0949a101c238d1e556667b785ada7dcfdba34fae724", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", + "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6987249999999996, + "senedd_election": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", + "publication_date": "2026-03-31T15:43:02", + "publication": "novaramedia", + "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", + "media_type": "news_article", + "sentence": { + "text": "As Swinney pointed out last year, by 2030, there will be 1 million young Scots eligible to vote, who weren't in 2014 - more than a fifth of the electorate.", + "media_hash": "d14c29e44d330cf8bd7a70427c49aa88a9e8a19a8fdfc6e899bbf5b2", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Scots motorists have been dealt a 'hammer blow' as the cost of petrol has soared to more than \u00a32 a litre - the highest in the UK.", + "media_hash": "9e34976bd885a7a6dfba04202b0241f758ec1c786dca55cbf603b373", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.67708 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.556405 + }, + "pa-media": {}, + "maldita": { + "general": 2.556405, + "energy": 2.556405 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", + "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservative", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.799985 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", + "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", + "sequence": 36, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "It was undoubtedly the case that some of those opposing assisted dying came at the issue from a faith perspective, but many more did so because of the belief that the weak, vulnerable and disabled would be put at risk should the law be changed in this way.", + "media_hash": "c1abfd5b5ddb97c9ebf60bcb512275b498b51320779e355e65843ede", + "sequence": 28, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.67029 + }, + "demo": { + "race__ethinicy__religion": 2.67029 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "By the time Scots come to cast their vote in the Holyrood elections on May 7, we could be in the throes of the worst economic shock since the 2007 crash.", + "media_hash": "74be11b32ebd8a16b8ca1179b772f7c02a7f9e621a369605c43d5cda", + "sequence": 7, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Record View", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.658185 + } + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "READ MORE: Reform plan to stuff Lords with '900 peers' to push deportation plans", + "media_hash": "3256800ba9e804256d5b1de93ce15a136528418d70a2e128c0cae9bd", + "sequence": 36, + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.658185 + } + } + } +}, +{ + "title": "SNP sex offender Jordan Linden: Whose side are you on, John Swinney?", + "publication_date": "2026-03-31T15:00:22", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/snp-sex-offender-jordan-linden-whose-side-are-you-on-john-swinney-6529550", + "media_type": "news_article", + "sentence": { + "text": "Otherwise, there is only one conclusion to draw - that Swinney is not on the side of the victims of Linden's sexual abuse, but on the side of those who covered up for him, with the SNP putting party before the victims of sexual abuse yet again.", + "media_hash": "e9d5dab27878f9824e1053792e3bf08a5833b867312b1bf0664e9761", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Unite and other unions warned that up to a multiplier of 1,600 jobs could be affected in the wider supply chain and support services if the closures proceed.", + "media_hash": "c5e35eb4fb1f401455bd1d7c8d2ae9f258f66b3b6fb0f5b261ce6928", + "sequence": 26, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Unite and other unions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.649215 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.649215 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The report, authored by Stephen Boyd, Dave Hawkey, and Casey Smith, states: \"The estimate that if frontline protection means freezing teacher numbers and seeing NHS staff increase at 1% cent per year, the government's target would imply employment reductions elsewhere of 3,600 per year, or 18,000 over five years.\"", + "media_hash": "f1a243e89e6755a740bda4bb0bff481d6d2df65d27803c8a923e3be4", + "sequence": 13, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stephen Boyd", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dave Hawkey", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Casey Smith", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The report authors say that if the burden is to fall on \"non-frontline\" roles in these areas, the cuts could be roughly equivalent to how many jobs \"were lost from local government in the first five years of 2010s austerity\".", + "media_hash": "6ec033cf4316d886e3a74f62e9d05cb80f405a5082c35d36a52372e0", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "support" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.631525 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man dies after falling from window of tower block", + "publication_date": "2026-03-31T13:57:31", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984593.man-dies-falling-flat-glasgows-dougrie-place/", + "media_type": "news_article", + "sentence": { + "text": "Glasgow supermarket worker shot with BB gun in attempted robbery", + "media_hash": "9263283ae967936321113ef1f7b624a7ba7ddc0069640b55123e7a18", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", + "publication_date": "2026-03-31T12:31:33", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", + "media_type": "news_article", + "sentence": { + "text": "There's a massive turnout for a 10K and hearing people cheering you on really helps when you're digging deep.", + "media_hash": "d97b7cadafa9dd07e4138c9d7cb1e15e2e479ac48f6849fa174fd3aa", + "sequence": 57, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Jock Rintoul", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.62122 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "\"By bringing check-ups and advice into everyday community settings - from workplaces and pharmacies to football clubs and shopping centres - we can reach people who might not otherwise come forward, particularly in more disadvantaged communities where the burden of ill health is greatest,\" the First Minister said.", + "media_hash": "c2c4a011944d862d31800552f649bc49c365ca8662bfec295df3d00f", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.6147650000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", + "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", + "sequence": 33, + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6127849999999997, + "scottish_elections": 2.6127849999999997, + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", + "media_hash": "fe5392c18430df8ead347a4a1f48e2f535a42890e1974abebee7a12a", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.61247, + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So we kind of know that this stuff's out there and that people are finding their news online and you might have also heard earlier this month on Radio Wales and across BBC Wales, my investigation into political deep fakes, I found more than a dozen pages on Facebook sharing fake news about British politicians along with some AI generated images and examples of deep fake videos of Welsh politicians, although those were labeled as satirical.", + "media_hash": "ba8e84d7ddbf38d0327a00473beb45b9e3691a65c712106904d2107e", + "sequence": 407, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.61247 + } + } + } +}, +{ + "title": "Three teens and man charged after 'armed gangs clash' at Edinburgh Asda car park", + "publication_date": "2026-03-31T16:41:41", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/three-teens-man-charged-after-36950874", + "media_type": "news_article", + "sentence": { + "text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", + "media_hash": "8396cc78831f783b6122529d651a82b24dfec458229190f68d8ad67c", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.61247, + "crime": 2.61247 + } + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "Welcome Break's Woodall Services on the M1 in Sheffield has the highest price for petrol, at 189.9p per litre.", + "media_hash": "232bbb4e883b249f0747defc6f41ba67c9db19a3086a17c6f723f9ff", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.58736 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", + "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", + "sequence": 30, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.579765, + "scottish_elections": 2.579765, + "clinical_health": 2.579765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.579765 + } + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "The most expensive motorway service area for diesel is Euro Garages' Rivington Services on the M61 in Bolton, Greater Manchester, where the price is 200.9p per litre.", + "media_hash": "cbfdd9f5a4617afbc703b99b24d49691c6206f7227a136de362810bd", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", + "publication_date": "2026-03-31T11:50:27", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", + "media_type": "news_article", + "sentence": { + "text": "The bus manufacturing sector in the UK suffered in 2025, with 51% of all zero-emission buses purchased being sourced from overseas.", + "media_hash": "6ffb0e6c207827dec69c71d4f7c19acdf7096ce488d361cbda9bd220", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "In the area covered by the Fife Council a total of 10 received at least 380 points - with three earning full marks.", + "media_hash": "60982be81b513233820e25050b604e83113c83238ffe822112929d4a", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Sunday Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", + "publication_date": "2026-03-31T16:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", + "media_type": "news_article", + "sentence": { + "text": "But just 14 of those new vehicles are understood to be double deckers - the type of bus that ADL specialises in building in Falkirk.", + "media_hash": "4df0e24ba8ad43f812db43a068703eea55aa305b6a19e53988a2fbce", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "The UK's most expensive petrol is being sold for 199.9p per litre at Avenue Garage in Northwich, Cheshire.", + "media_hash": "12bb90e48926132b03a7a882164b2ee5cccd7e83029107b5bfc4f66e", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "This consists of \u00a3409 million for diesel and \u00a3135 million for petrol.", + "media_hash": "a84b870f6a0e1b6f56540f17cfffda59b2fbaee3b2808695ca14355f", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", + "publication_date": "2026-03-31T12:53:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", + "media_type": "news_article", + "sentence": { + "text": "Eight CalMac ferries are currently out of action, four of them for planned maintenance and the others due to technical issues.", + "media_hash": "da84d4864e542241af4c2a94baa15e0134f6cc3b028c2352b0dbda3e", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EXCLUSIVE: Fife councillor who quit SNP faces police probe over alleged sexual offences", + "publication_date": "2026-03-31T11:06:58", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/5462114/fife-councillor-stefan-hoggan-alleged-sexual-offences/", + "media_type": "news_article", + "sentence": { + "text": "He later contested the 2024 general election for Westminster in North East Fife, finishing second with 9,905 votes behind Lib Dem Wendy Chamberlain, who received 23,384 votes.", + "media_hash": "32b4756627df6ebe51bad9fb6a79544e1f9e4c6bac41dafba1fa86ef", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "Also scoring the full 400 points with fewer than 10 per cent of pupils from 'very disadvantaged' families is Wormit Primary School, in the village on the bank of the River Tay opposite Dundee.", + "media_hash": "4811f6263460aa275d5fdc26063309c2e07dab181dbbd48691794ef4", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wormit Primary School", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "The school has nine teachers and an average class size of 22.8 puils.", + "media_hash": "84dd78bf3fccd61a81102ea16c1835f0d93737752a79ba93f0ecf73a", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", + "publication_date": "2026-03-31T09:23:58", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", + "media_type": "news_article", + "sentence": { + "text": "Following that win against Craig Levein's St Johnstone there were still 12 games to and there proved to be plenty of twists in turns.", + "media_hash": "2c2d533ca53343204e7fa8895f520c9bb07c7826d968fdc16dcbe114", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "It is understood that about 85 employees have since left the business.", + "media_hash": "af6a1935b33d1a2ec41609dafe373a23a4d0c14f14f0ad46407d415c", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", + "publication_date": "2026-03-31T12:00:49", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", + "media_type": "news_article", + "sentence": { + "text": "A Dunfermline statement reads: \"With over 9,000 tickets now sold for our upcoming semi-Final tie with Falkirk, the club can confirm we have been allocated a further 2,000 tickets for the match.", + "media_hash": "1d17d975e0a4ab2cc4b0bc0df650fa93679b4ccceaa4bf26ed5d5fc7", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dunfermline", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", + "publication_date": "2026-03-31T11:07:30", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", + "media_type": "news_article", + "sentence": { + "text": "Contacted by the Local Democracy Reporting the First Minister's office detailed that in 2026-27, West Lothian Council will receive \u00a3498.9 million to fund local services.", + "media_hash": "0de1cf4308f8cd49f130238d608a1b290fd97e0750ddb21852a0ac08", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "This policy alone accounted for around 7,500 new staff in local government.", + "media_hash": "64a3a378b0d934049f550e3d4a30bb3ff3e51f599b4ac54cf2911a02", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "The Liberal Democrats are projected to receive 8% on both ballots.", + "media_hash": "f1c421ef60a9461e151f7cb167ff08ae65d5871d4a80d9f2eb746684", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Approval recommended for 94-house scheme beside airport", + "publication_date": "2026-03-31T18:29:11", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985860.approval-recommended-94-house-scheme-beside-stornoway-airport/", + "media_type": "news_article", + "sentence": { + "text": "The application attracted six public representations, a formal objection from Sandwick Community Council, and a petition signed by 40 residents.", + "media_hash": "1257d67ff9b084118d8d9f2c6131c53a40ee916659383fd7642ee195", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "Average diesel prices at UK forecourts on Tuesday were 182.8p per litre, up 40p since the start of the conflict in the Middle East on February 28, the RAC said.", + "media_hash": "c6570a7ddd6d969f32bfd8373a7813e6b2eedc404918880770d43140", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", + "publication_date": "2026-03-31T12:00:49", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", + "media_type": "news_article", + "sentence": { + "text": "On that occasion, in April 2009, 17,124 supporters watched Falkirk run out 2-0 victors to earn a place in the final against Rangers.", + "media_hash": "2ab2da3c7482c233441fea384efe49d3ceb92a68376b58ebb18d6b26", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + } + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "Again, fewer than 10 per cent of pupils are 'very disadvantaged' and the school has a 93 percent attendance rate.", + "media_hash": "14d9209b2748c477ad300b85e76f9ec53c71bdcd299bd8437f8b95e7", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "This included 2,159 exceeding two years, which was down 45 compared to January.", + "media_hash": "0bb757b57ee197cf8e8b91c0075f2403e3dcf9a947b07198555112f6", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769, + "health": 2.5769 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "\"We have fewer police, we are all paying the highest taxes in the UK.", + "media_hash": "c487e2f3c4fe5efa00cba6f190688f5cc83476f17490267e306f6278", + "sequence": 62, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "The UK's largest bus manufacturer is at the centre of a row over the planned axing of a quarter of its staff after over \u00a390m in taxpayer support.", + "media_hash": "92a9b6ef6bf24032df365fe5702a01a07895e6cfef0347a6a5203f72", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", + "media_hash": "4cfcab5b6c35f455f8719d6a8980249ae08660c6d4dd870d364ed749", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.556405, + "clinical_health": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fife disabled drivers waiting months for blue badge bays amid huge backlog", + "publication_date": "2026-03-31T05:10:25", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461863/disabled-parking-bays-backlog-waits/", + "media_type": "news_article", + "sentence": { + "text": "\"Lack of access to a disabled bay can have a severely detrimental impact on a person's life.\"", + "media_hash": "b864dc15649d549706a7e52bb1a55d0b6a073d402fcfd281fa797d76", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Lynda Holton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5528750000000002 + } + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", + "media_hash": "35bd5c83dbd7a93284ceef661c43ba2b5c15a8203e95e66da1babfd6", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997, + "crime": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland serve up reasons to be a little worried ahead of World Cup", + "publication_date": "2026-03-31T21:02:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", + "media_type": "news_article", + "sentence": { + "text": "But after a promising start as Scotland felt their way back into the 3-5-2 system that had been dusted down to try to cope with the physical challenge of Ivory Coast, things began to go awry just 12 minutes in as Nicolas Pepe bundled in the opener for the so-called home team.", + "media_hash": "49d4f68147d5ff29fc22fce40aa9a69a361efedef9cfe0ab68957980", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nicolas Pepe", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", + "publication_date": "2026-03-31T11:59:42", + "publication": "scotsman", + "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", + "media_type": "news_article", + "sentence": { + "text": "The teams who have qualified are United States, Canada, Japan, China, South Korea, Sweden, Switzerland, Scotland, Italy, Germany, Czech Republic, Poland and Norway.", + "media_hash": "30129b79e87ed7ab4f87709fb0da5aca97567ffad900b8516eb8e4ee", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", + "media_hash": "a153fc2ac7b82fa57fc3a86af99525f97e7a529a42c0c5ebcaad8816", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Interpol", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997, + "crime": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices have led to motorists paying an additional \u00a3544 million for petrol and diesel.", + "media_hash": "3aa55b1c9e2b76fb936dcc5c9bda9a9b5f7c49fb552cead55586d066", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "The poll also projected the SNP would win 62 seats at the Holyrood contests on 7 May, which would leave the nationalist party three seats short of a majority.", + "media_hash": "8ef526411496fa0482eaa2940a6c46028143981ba5754f5afde92881", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "The survey of 1,068 people, carried out between 16 to 23 March, put the SNP on 35 per cent support in the Holyrood constituency vote and 32 per cent in the regional list.", + "media_hash": "695fa3e2a94fbc8b27ff9b7f7501f83918afb220a7bba4813cda75ee", + "sequence": 6, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament", + "media_hash": "3e00f9246f5696d95ee745ee0a8bdb750c2f55309e20baa21912c79b", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Recall Parliament to sort out ferries crisis, demands...", + "publication_date": "2026-03-31T12:14:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694637/Recall-Parliament-sort-ferries-crisis-demands-Scottish-Lib-Dem-leader.html", + "media_type": "news_article", + "sentence": { + "text": "Eight CalMac ferries are out of action, four of them for planned maintenance and the others due to technical issues.", + "media_hash": "7b97e8ef686af4d1c999d3caf72d4a54d93c9dad8decc08c16cf94a7", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", + "publication_date": "2026-03-31T12:00:49", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", + "media_type": "news_article", + "sentence": { + "text": "The Pars were initially allocated just over 9,000 briefs for the April 18 clash with their bitter rivals.", + "media_hash": "2045a018f403506b3a21ff6fc140749c4832536a6604c5bfed208339", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T11:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "More than half (51%) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", + "media_hash": "42187a12b2e136f859c069c2480c0acd14a543a777f1071368b43ada", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "Last week, it was announced that the firm was due to receive orders for more than 100 zero-emission vehicles through a Scottish Government scheme.", + "media_hash": "08517ea8d785e4ec66dfc52e5d242cfacd8dffe291721d11e97b5fbd", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", + "media_hash": "7264fa2229fb76c6edfe61ce3c53c50d7f951a1a336d66894a56a06b", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", + "media_hash": "2ad4946c1e63d014883a6bfebd2a7dbd9231791f4e4a19fce3738292", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "Some \u00a311.2m of those jobs grants from Scottish Enterprise came in 2023, three years after concerns were raised over ADL embarking on major job cuts.", + "media_hash": "979f6b95866e47db8e1c35b57e0e6d97b30d7a8a09106b60293cec25", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.36229999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "media_hash": "2d291f86484d27a598c8b4c205abd18c6fce052672dc0b79d089086a", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", + "media_hash": "1e8519a8b709e127f5e789e0d6e18a5331cb6940421f930568a0d976", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tories", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Lib Dems", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T09:37:57", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "Reform UK would receive 19 per cent of the constituency vote and 18 per cent of the list, projecting a 19-seat return.", + "media_hash": "434253a709118382be5a9733fa665130526475e4de2e61190ad79faa", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Irn-Bru maker AG Barr serves up \u00a3437m in sales and sets out goal to double in size: shares fizz", + "publication_date": "2026-03-31T09:21:31", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/irn-bru-maker-ag-barr-serves-up-ps437m-in-sales-and-sets-out-goal-to-double-in-size-shares-fizz-6529783", + "media_type": "news_article", + "sentence": { + "text": "Irn-Bru maker AG Barr serves up \u00a3437m in sales and sets out goal to double in size: shares fizz", + "media_hash": "a0a87ee7959b14e5448a97aae34ab08fc093428a87b837492995cff2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the LibDems on seven.", + "media_hash": "4794bd8461e561c030a4ea3d39fada12f84a60f1c968e5b93cf8dae9", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Malcolm Offord (-15) and Nigel Farge (-31) fare better than their Labour counterparts, although at the time of polling, most Scots (55%) had no opinion on Lord Offord.", + "media_hash": "6e0843dd33f0f575260e62dfb81fba027b250a3fffe5aa2f0166560d", + "sequence": 18, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farge", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Asked to choose who they would back in a hypothetical 1v1 scenario; 55% of voters said they would prefer Mr Swinney over Mr Sarwar, while 45% said they would support Mr Sarwar over the current First Minister.", + "media_hash": "f37bf5d68f995240c9fd5bb0de21aa5adbf9c7f5d57b2fc9613046a1", + "sequence": 19, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Swinney: SNP plan for NHS 'is working'", + "publication_date": "2026-03-31T06:29:37", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", + "media_type": "news_article", + "sentence": { + "text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", + "media_hash": "88e90a9893a157c986071cdb0f12da771d99069abee6418f5aef9038", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", + "media_hash": "a7269be0d9118d0566a69aa4523b660b1974f120361f1e611914c5d0", + "sequence": 889, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rhian Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Fife disabled drivers waiting months for blue badge bays amid huge backlog", + "publication_date": "2026-03-31T05:10:25", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461863/disabled-parking-bays-backlog-waits/", + "media_type": "news_article", + "sentence": { + "text": "More than 300 people are waiting for their applications to be processed.", + "media_hash": "2eabee9f3fcbdeab6cfa0d4c330a76be61bdceeb8d4329d56286c62b", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "For every \u00a380 parents pay in, they would get \u00a320 from the UK Government and \u00a310 from the Scottish Government.", + "media_hash": "be6f82582ea392e71a627a5d9ec4252d616d6b4d76a4bbe132c3019e", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "ADL says it has faced an \"uneven playing field\" due to policies that favour foreign competitors, including Chinese electric bus manufacturers, whose market share last year rose from 10% to 35% in the UK market", + "media_hash": "77c30d76bf77f29fad341706c8837a6542bea121392f9397dc5fd2d8", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Bus firm off to England in \u00a390m Scots public funding row may get even more millions", + "media_hash": "a227bd2dc9ea51f7ebb41276b9faad41504addaae0c96cb3f24503e0", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "The 29-year-old has scored 11 times in 45 caps and in each of the games where he has found the back of the net, the Dark Blues have won.", + "media_hash": "253857e8b5c4b4d3c17ab84e4e6c6794b643db35541b84d672eb2952", + "sequence": 82, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "The Dark Blues have lost four of our seven meetings against CAF nations, winning only two in total.", + "media_hash": "57453761bf3726d179898ace82195c52b64d14a9e3ae96bf88dd5572", + "sequence": 157, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", + "publication_date": "2026-03-31T16:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", + "media_type": "news_article", + "sentence": { + "text": "She added: \"We're . Gaelic speakers only 2% of the Scottish population but that means we should have two or three MSPs who speak the language or at least very supportive of it to make sure that that community's voice is heard.\"", + "media_hash": "9a8680af699febc2137b38a836136dba1281087dcd755fd6b900c775", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Eilidh Munro", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", + "publication_date": "2026-03-31T15:43:02", + "publication": "novaramedia", + "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", + "media_type": "news_article", + "sentence": { + "text": "Pollsters predict a 99.7% chance of a pro-independence majority - that is, a majority held by the Scottish National party and Scottish Greens, both of which support Scottish independence.", + "media_hash": "07657fa6ce5a5cee9ce24a3edc368a5a2a216662c3488223eea89df2", + "sequence": 20, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Scottish National party", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", + "publication_date": "2026-03-31T15:43:02", + "publication": "novaramedia", + "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", + "media_type": "news_article", + "sentence": { + "text": "Of the 10 opinion polls on Scottish independence so far this year, \"yes\" has been ahead in seven.", + "media_hash": "f82ef117277f227ee683bfe77f3d6b2fbdabffdac517f4a5ac774a39", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Financial education in Scottish schools does not add up", + "publication_date": "2026-03-31T14:21:59", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", + "media_type": "news_article", + "sentence": { + "text": "The study by financial education charity Money Ready revealed that 78 per cent of Scottish adults think schools are not providing enough financial education.", + "media_hash": "684f23e7cc17782d1120adbe075662118b0867a90f6cf04c5efae409", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Money Ready", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T13:39:45", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "Labour followed closely behind in the survey, with 19% of respondents backing the party in constituencies and 17% in regional votes, equalling 18 Holyrood seats.", + "media_hash": "3f22bc5b0a5c7e490dcfdba106b28da3a85b1203e74c51b28f991587", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Angry Wales boss Bellamy shows his new old self", + "publication_date": "2026-03-31T22:35:53", + "publication": "bbc", + "url": "https://www.bbc.com/sport/football/articles/cy51en767wgo", + "media_type": "news_article", + "sentence": { + "text": "Northern Ireland's travelling contingent did their best to generate a lively atmosphere, but there is only so much 300 people can do.", + "media_hash": "1d3de76bf15165536e0cbad3815c9488de597c71c903c83264182d85", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", + "media_hash": "d7f56059f6910a84610a932e2c60808109c3dae3f100b683e61eed12", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "SNP ministers have blown a 'jaw-dropping' \u00a3340million on design consultants and planners to dual just 11 miles of key Highland routes.", + "media_hash": "959e31d1206212bcd851aa851bfdac9b9e2107eab58b759916657a80", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "This is below the SNP's pledged 95% target which has not been met since 2012.", + "media_hash": "e19762e5395ca1b4762fb77efb21a55e534ca24cb86ec19212a1f619", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T12:50:25", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "The SNP could win 62 seats in May's Scottish Parliament election, with Reform UK narrowly in second place over Labour, a new poll has suggested.", + "media_hash": "6996edeb84e06826e885561ea571dbe9ba22e77272a5d9d6a8a4b35a", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "That means it costs \u00a3100.52 to fill a 55-litre family car, breaching the \u00a3100 mark for the first time since December 2022.", + "media_hash": "2323ba2ce63ec9785bc63ec45053e371db418c0d54996451f2c94abe", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", + "publication_date": "2026-03-31T12:05:09", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", + "media_type": "news_article", + "sentence": { + "text": "\"The company retains the option to evidence a claim for up to \u00a34.1 million of Scottish Government funding to support its staff furlough scheme, subject to conditions being met. No claim has yet been received.\"", + "media_hash": "e2ff56d46f8692b62f3063f5fca33b6702df188407b0a62014f258e1", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", + "publication_date": "2026-03-31T12:00:49", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", + "media_type": "news_article", + "sentence": { + "text": "Dunfermline have been handed an extra 2,000 tickets for their Scottish Cup semi-final against Falkirk.", + "media_hash": "4f0722c15deacca150b4595eb93ee6b9c4cce0e45e0f8d314f9046de", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", + "publication_date": "2026-03-31T11:50:27", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", + "media_type": "news_article", + "sentence": { + "text": "Last year, 400 jobs were at risk.", + "media_hash": "eb77b1aa5c2364f9346780e940089767ad48fd856b0470eb02558cce", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", + "publication_date": "2026-03-31T11:07:30", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", + "media_type": "news_article", + "sentence": { + "text": "The school is expected to reopen later this year after the extensive works which saw 60% of the original building torn down because of RAAC crumbling concrete roof panels.", + "media_hash": "c3937e599842766ed093f1077dcbd3dc9d35d2afd651eaf8c4f19ec1", + "sequence": 6, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", + "media_hash": "b55a04b734e8aa027139021f331c325b82d94fd97facc2b0f8406bab", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "The company said in June that it still needed to find orders for at least 300 buses a year to safeguard production in Falkirk over the long term.", + "media_hash": "e469fe09ea8cc6c287d15b0d98ffa10857cbd117819b2129d81679dd", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", + "media_hash": "b88937da3f7c34d664af1226923e0e85dfeb35a32b6fa28fef4b11ae", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T09:37:57", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35 per cent of the Holyrood constituency vote and 32 per cent of the regional list, leaving the party just three seats short of the majority.", + "media_hash": "62a30a41fdf831289614de54866b5907f3ecfb8ef417364be3579e8c", + "sequence": 10, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "THE SNP could win 62 seats in the Holyrood election with Reform UK narrowly in second place, a new poll has suggested.", + "media_hash": "5f6f2d2ff577d602b8811c9d32504df51c4aeb455816f6e5955dbc46", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "The survey of 1068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority needed to trigger a mandate for a second independence referendum.", + "media_hash": "8425b45f13b6128dce6be1a8a30c9f24420d097a5e3cb7e3e17c62cf", + "sequence": 2, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "The SNP comes first on both the constituency and list ballots, with thirty-five percent and 32% of the vote.", + "media_hash": "2a8f19d56fb56e611f0c21371cdf253ca9a4d7acf332657a2046db0e", + "sequence": 5, + "claim_type": [ + "quantity", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, 58% of Scots would choose Mr Sarwar over Lord Offord, while 42% prefer the former Tory donor.", + "media_hash": "136ecf5c006ae849b0abf5335fb39735692eb9ac21ac78de18941aaf", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "We'll also know from data from Ofcom that here in Wales, more than half of us use social media as a news source, Facebook alone in 2022 was the second most news source in Wales after BBC One.", + "media_hash": "61e0689768f78c31242c4f5db5e9b37f5f0bc5b6a0645b0828817673", + "sequence": 406, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The Welsh government estimates that between 20 and 25,000 households will get the 200 pound payment and says other people in severe hardship can apply to their local councils' discretionary assistance fund, where the maximum award for heating oil has been increased from 500 pounds to 700.", + "media_hash": "5f953996100affc7b3ce5c81392803523cc084d43b604a34611fd5ef", + "sequence": 606, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", + "publication_date": "2026-03-31T05:01:49", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", + "media_type": "news_article", + "sentence": { + "text": "During the school holidays, only 57 per cent of households say all childcare is free or funded.", + "media_hash": "c54a4a44c6a27318f1c8c2d1b3d8f3bfec0a4dd763ad19f804734272", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "They expect the introduction of the Isle of Ila will bring some relief, however five out of Calmac's eleven major vessels are still out of action as well as a chartered catamaran and two smaller ferries.", + "media_hash": "d2208e604efae545efc1f1bc33404c458cedfc40a3c9146c7ea8503d", + "sequence": 828, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "CalMac", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "Under the existing UK-wide scheme, for every \u00a38 parents pay for their childcare, the Labour Government adds another \u00a32.", + "media_hash": "042e5e37b587be14f969b60292a4bf213eab7911a26c809b8f5331a2", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "The maximum top up you can get for each child is \u00a3500 every three months and up to \u00a32,000 a year.", + "media_hash": "5b7ec51854bb6d4f15e938e767d03dde15cbee72af78cae53dd8dae7", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "A Sarwar Government would add an extra \u00a31 for every \u00a38 parents pay, boosting the discount from 25% to 37.5%.", + "media_hash": "efd61e85cbb849b9767be8d6cc768dab4bbaddc307252cdd1f0387a1", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", + "media_type": "news_article", + "sentence": { + "text": "Labour said the annual cap will increase from \u00a32,000 to \u00a33,000 per child and from \u00a34,000 to \u00a36,000 for disabled children.", + "media_hash": "4d59dd0b26adf0398c139da4eacc49cd2d9dec92f1f1c0fb0688fe9e", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "\"In just one quarter, we have seen a significant jump in the number of firms telling us that rates are a major pressure.", + "media_hash": "620d70322dafb99e2d0cd43fb06c4c458a0a4b9ac53e67eaaa7d4f3f", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "The AA said the gap between supermarket and non-supermarket retailers has widened from 5.4p per litre for petrol before the war to 7.6p a litre and diesel as much as 8.8p a litre.", + "media_hash": "d2285b51ae7c4ca621b1bf7799c723889152a73d60e502641a7fc9a6", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "general": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", + "media_hash": "a9911af16022cf11c16997958d7a6bc524fed8156ccdd07259c05e4d", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Conservatives unearthed the figures showing A9 expert fees alone have soared to \u00a3261.3million, meaning the cost of each mile is close to \u00a324million with another 72 miles of the route yet to be finished.", + "media_hash": "ea813249732b7acbd222f58027ed069f979a5e70838c91ef53a8bff5", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", + "publication_date": "2026-03-31T20:29:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "Only captain Andy Robertson - winning his 92nd cap to put him only 10 behind the all-time appearance leader Dalglish - and Scott McTominay kept their places.", + "media_hash": "7745248d4fce845c7cf3a081a10209ec40a3da91479b83e7f64f20e3", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", + "media_hash": "1866d6ad2e12f563725133a04e3b3250b7d5c421998c5df8d121b843", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:16:33+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/PJFerguson18/status/2039044192035369255", + "media_type": "social_post", + "sentence": { + "text": "Inexplicable, when an order for another 33 double deckers for Falkirk for nearly \u00a320,000 less subsidy lost to a comparative bid from First Bus buying from China.", + "media_hash": "076a2eda2e220825f1fa4889bc441902e368cbb1c488641fad0853ba", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Euan4Falkirk", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "First Bus", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "After Alexander Dennis (ADL) proposed to move its operations to England last year some \u00a34.1m was allocated in publicly funded support for a furlough scheme.", + "media_hash": "7a55a20080a7fba672cdcd0e29f65054900a80b24759e2394650ae15", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "ADL employs around 1,850 people in the UK, with a significant proportion based in Falkirk and Larbert.", + "media_hash": "13a7407d82d79b865534d12b1f3b72a11c521fc91a960fc4350a8b91", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "Last week it emerged that ADL was to receive orders for more than 100 zero-emission vehicles through a Government scheme.", + "media_hash": "2b5f631f619bcbc676d05973a08dd837b54354ca684ffd6cec932089", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 2.5459449999999997 + }, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "\"We've committed \u00a315.6 billion through the Spending Review to help local leaders improve transport and support the transition to greener buses.", + "media_hash": "dd58b177d5faac44e13dff43ad366c0c7c51e53b60a4fcb3ca225c55", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", + "publication_date": "2026-03-31T15:00:53", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", + "media_type": "news_article", + "sentence": { + "text": "The negative view amongst the party leadership did not seem to be, in the end, broadly reflected amongst the SNP's membership, 48 per cent of whom voted for Forbes to be leader, meaning she missed out on becoming First Minister by a whisker.", + "media_hash": "9bd00e796135ee314b02389eb6c15b243effc512f96ce788ac6eb456", + "sequence": 20, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "race__ethinicy__religion": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", + "media_hash": "76f780ecf7fa964d3d1e413f03310dc2ce5fb44c0976a1d204f6d672", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Financial education in Scottish schools does not add up", + "publication_date": "2026-03-31T14:21:59", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", + "media_type": "news_article", + "sentence": { + "text": "The Money Ready research identified the key areas of reform Scots would like to see, including: government intervention to ensure people receive financial education (79 per cent); financial education being provided across higher education and workplaces (75 per cent), and teachers being better trained to teach financial education (70 per cent).", + "media_hash": "91c48fb136bd86d7eabc2d81320c5cdaa78535a3d1cd4f1b708494e7", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Money Ready", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dumbarton Health Centre labelled \"not fit for purpose\" after funding snub", + "publication_date": "2026-03-31T13:20:29", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/local-news/dumbarton-health-centre-labelled-not-36949594", + "media_type": "news_article", + "sentence": { + "text": "It comes after the Scottish Government spending review, announced in January, highlighted an investment of \u00a34.1 billion health capital over four years which did not include a new health centre.", + "media_hash": "5527cd15b58ad50ae72f8b5e42470d173bdb68f5da0ad8933f74a710", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T12:50:25", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "The survey put the Tories on 13 seats, with 11 per cent of the constituency vote and 13 per cent of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", + "media_hash": "515d87ac26fe68cdfaa0ed60855e47de686d100c5e941e2e9fdbc887", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tories", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Lib Dems", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", + "publication_date": "2026-03-31T12:53:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", + "media_type": "news_article", + "sentence": { + "text": "The new vessel has capacity for up to 450 passengers and 100 cars, or 14 commercial vehicles.", + "media_hash": "568c2e9a950d9b26a8a7fbf7f981e47100b8667d602aaeb0f0d92cdd", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", + "publication_date": "2026-03-31T12:53:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", + "media_type": "news_article", + "sentence": { + "text": "This boosts vehicle and freight capacity on the route by 40%, improving the overall resilience of the wider fleet.", + "media_hash": "b9c51df0ea3ddad2b1e4f55cb9b5f98e5e39cdaa42027fce8067491c", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sarwar rules out deal with Reform as he accuses Swinney...", + "publication_date": "2026-03-31T11:54:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694557/Sarwar-rules-deal-Reform-accuses-Swinney-desperate.html", + "media_type": "news_article", + "sentence": { + "text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to \u00a33,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost of living crisis.\"", + "media_hash": "0e4fb781a9293b4acfe0c0045473d365675d8cbcc6cbd867031b24b5", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", + "publication_date": "2026-03-31T11:50:27", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", + "media_type": "news_article", + "sentence": { + "text": "Alexander Dennis, which previously proposed shutting down both Scottish bases, claimed it would save around 350 jobs under the new scheme.", + "media_hash": "755d780e3e0fdb76c736446ca4889d2532a88ba360087833167d6824", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", + "publication_date": "2026-03-31T11:13:09", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", + "media_type": "news_article", + "sentence": { + "text": "First Minister John Swinney pledged approximately \u00a34 million in funding towards the furlough scheme until work could recommence at the Falkirk site back in September.", + "media_hash": "34071a231a94acf6b4ba592df08e184e8292177518ea448a44fde60b", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", + "publication_date": "2026-03-31T11:07:30", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", + "media_type": "news_article", + "sentence": { + "text": "Without it the council faces a 20-year repayment on borrowed fundswhich would cost it \u00a330m.", + "media_hash": "32e859d16e904596e39740562686ea4c13905c17b0c0ba52d340fe53", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "West Lothian Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus manufacturer Alexander Dennis to slash Scots jobs and close factory in Falkirk", + "publication_date": "2026-03-31T11:00:00", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/politics/bus-manufacturer-alexander-dennis-slash-36947245", + "media_type": "news_article", + "sentence": { + "text": "ADL said the proposals would secure jobs for 200 skilled manufacturing staff, with a further 115 roles now at risk of redundancy.", + "media_hash": "de2b15113c316fd5501ae4dbd20843603f1cf90571c90c3c9db7bbc1", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis Limited", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "The Sunday Times report used data submitted by schools in each of the four categories to come up with a mark out of a maximum of 400.", + "media_hash": "012d98dcc9679805b1c61593eb55804e4d3276afd24e5e3926fc95a1", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Sunday Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", + "publication_date": "2026-03-31T10:33:43", + "publication": "scotsman", + "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", + "media_type": "news_article", + "sentence": { + "text": "Less than 10 per cent of its pupils come from a background classed as 'very disadvantaged'.", + "media_hash": "caaacac29352dac9d29bfdc112f2ff3b954ba875f31efe1a563e3f24", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "And some \u00a330m of jobs grants for research and development over 10 years has come from the Scottish Government's economic development agency Scottish Enterprise.", + "media_hash": "208afab2b3953a76224e129ced24afd214535c55ce2174a9bc7a95ff", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.47540000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", + "publication_date": "2026-03-31T09:23:58", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", + "media_type": "news_article", + "sentence": { + "text": "Rangers moved into second place with a 4-1 romp of Aberdeen before the international break, three points behind leaders Hearts and two clear of Celtic.", + "media_hash": "3e0a7c67ed1e9422fe0dbf7baeae6db3ce85ea5d11bb339882e05350", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rangers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hearts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", + "publication_date": "2026-03-31T09:23:58", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", + "media_type": "news_article", + "sentence": { + "text": "That gap to their Old Firm rivals remained intact when the champions went down 2-0 to Dundee United at Tannadice 24 hours later.", + "media_hash": "35edb5e886ee9148f0935cb6790e194bdb6fea0d1b47288ef8ab4d5d", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", + "media_hash": "cec6d1613d5899a9f545b48bcb87f5fd919cf169849c0aa0ed7f6bf1", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "The Conservatives will lose almost 20 seats, returning 13 MSPs, followed by the Scottish Greens with 10 MSPs and the Liberal Democrats with seven.", + "media_hash": "77a9eee42b89508453e5a49059f9cd6dec24098a55ed4281c40b54d7", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mark Diffley", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Reform and Labour are tied for second place with 19% each on the constituency ballot.", + "media_hash": "e62b8cb7e5f628573df03ab929772d3d9b1add6aa4ff0de4bbe15682", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Conservatives are projected to earn 11% and 13% of the vote on the constituency and list ballots, while the Scottish Greens are expected to pick up 8% and 11%.", + "media_hash": "d3857bfc50fc676ac357b014c38d903e37380eaedb131cff4a2524a9", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "By contrast, Prime Minister Keir Starmer has a net favourability rating of -47 among Scots, and the leader of the Scottish party, Anas Sarwar, has a net favourability rating of -25.", + "media_hash": "221a84bb8e2a3bc964d863cff5ad7175bb1d947d5df34baf28d838c4", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", + "publication_date": "2026-03-31T06:04:06", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", + "media_type": "news_article", + "sentence": { + "text": "\"By contrast, I used those budget negotiations as leverage to squeeze the SNP for every penny I could and, as a result, secured \u00a3178 million in rates relief for pubs, clubs, restaurants, hotels and self-caterers.", + "media_hash": "3f370bd73b7b615035703f5fabefe2287bd668f8f2e95533f7112d52", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Jamie Greene MSP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Liberal Democrat finance and economy spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "The researchers also highlight that while there has been a recent uptick in the number of local government jobs, this is almost entirely driven by the expansion of funded childcare for three and four-year-olds to 1,140 hours.", + "media_hash": "5a1bdb57dbc06ea005979a1bb693abae56a474d9f16c4efabdb9ec92", + "sequence": 24, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "With adult social services and teachers at levels close to 2010, the IPPR calculates that this \"leaves the rest of local government around 12,500 FTE members of staff below 2010 levels.\"", + "media_hash": "1c671b52dd9f90f4112dcddb6217d6f2242cf75488e2ac0212d7abbf", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "The SRC said Scots firms were paying \u00a354 million a year more than those down south, or \u00a3162 million over the three-year rates period.", + "media_hash": "4a3c1b436117e8cf277d3eb1571f738bc9d727daddff4299dd41c191", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Retail Consortium", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Islanders elsewhere have also been hit hard with the price of diesel setting motorists back \u00a32.17 a litre at one forecourt on Arran and \u00a32.11 a litre at another in Portree, Skye.", + "media_hash": "b8b8389083e2c29fbf4009d09192e7cf2ec6a34eea6c608425b573f1", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "general": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "This includes \u00a3409million for diesel and \u00a3135million for petrol, with figures based on average daily pump price rises and last year's fuel consumption rate.", + "media_hash": "44858aa1668af5455e93c3d6a097fa8c2b437a822efc87645050a487", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": { + "general": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "media_hash": "9cb748f8b3677b1b3010af20e34293eafcec8065f72b1be39c67a7f2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and convert...", + "publication_date": "2026-03-31T15:49:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", + "media_type": "news_article", + "sentence": { + "text": "A UK Government spokesman said: \"The UK is a global leader in bus manufacturing, with around 60% of buses funded through our zero-emission bus programme built by UK-based companies, supporting skilled jobs and a cleaner transport network.", + "media_hash": "ba6876aeed9262aefbfe8583fc7634998baaa142285b334da9be796f", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", + "media_hash": "b3bb98b7a1995903de750a6e20560045eea78ab3729c226969b7fe89", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T12:50:25", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "Labour followed closely behind in the survey, with 19 per cent of respondents backing the party in constituencies and 17 per cent in regional votes, equalling 18 Holyrood seats.", + "media_hash": "79e93c01fde78116056b81cd7c50f6b4cae2ccb8cc13d69224720460", + "sequence": 12, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", + "media_hash": "9cef34f6bfc4e4b0fe9d04700870d76316ef410ee522304c6ccb16e3", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dumfries and Galloway Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 4.834525, + "politics_of_food": 4.834525, + "nutrition_": 4.834525 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament.", + "media_hash": "df02e6d07c897e3ce37e044f75a45309c2239a417c7d0f53ed3566e3", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", + "publication_date": "2026-03-31T12:05:09", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", + "media_type": "news_article", + "sentence": { + "text": "More than half (51 per cent) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", + "media_hash": "7853530d17e37b06da52989cf948ea6b61cb34b99eecb3ce02162432", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", + "publication_date": "2026-03-31T11:07:30", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", + "media_type": "news_article", + "sentence": { + "text": "The council has used \u00a320m of its own resources and has made repeated calls to the Scottish Government to cover the last \u00a315m needed.", + "media_hash": "33e78cd707d16d01ecb129e8b378ecce7a6a884623ff703fe09d7031", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", + "publication_date": "2026-03-31T09:37:57", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", + "media_type": "news_article", + "sentence": { + "text": "Nationalists would be just three seats short of majority, with Labour third and Tories fourth", + "media_hash": "b4d781ddf0d6d0bc75be5448ca64e323ff54113dc77e71e1e2df12c6", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", + "publication_date": "2026-03-31T09:17:59", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Keir Starmer has a popularity rating of minus 47% for and minus 25% for Scottish Labour leader Anas Sarwar.", + "media_hash": "c6059e10c10bdab1a66080dac53de07cc7a301b579d6a55dc518846a", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Figures obtained by the Diffley Partnership predict that voters will elect 62 nationalist MSPs, two seats fewer than in 2021.", + "media_hash": "beb7e99876f1efc725b63986c1c8bceaf442d3f59480fcbb7fe13dc4", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Using polling conducted by Survation between March 16 and 23, elections guru Mark Diffley contends that the Reform will form the official opposition to the SNP, securing 19 seats, while Scottish Labour will come third with 18 seats.", + "media_hash": "61018314a69aeefebc21edffa26100e53358fe8a951a0e396f3eee42", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour pledge two weeks of funded summer childcare in...", + "publication_date": "2026-03-31T05:49:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", + "media_type": "news_article", + "sentence": { + "text": "\"We are offering 52 weeks support, Labour are offering two.", + "media_hash": "2ada192e74163eb890bc2be81eb591c02cc56c31ed3c8c716f4e9324", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish SPCA staff tell of 'horror' at looming cuts to animal welfare charity", + "publication_date": "2026-03-31T05:30:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25979483.scottish-spca-staff-horrified-cuts-animal-welfare/", + "media_type": "news_article", + "sentence": { + "text": "As first reported by The Herald, a major restructuring to try and cut costs was revealed to staff and members earlier this month as the organisation looks to cut costs by 20%.", + "media_hash": "e32642b9d5ce0280d63c29dfde7f23ed4ebf1b165bb37818d2cfa1d0", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New ferry to enter service but CalMac vessel shortage still critical", + "publication_date": "2026-03-31T05:18:08", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cn8dv2ld42qo", + "media_type": "news_article", + "sentence": { + "text": "Isle of Islay, left, is smaller and uses a more conventional propulsion system than Glen Sannox, right", + "media_hash": "a838e63c4c930187e2fdeed25e0bf62e62fa57e79490ed4a69f23769", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", + "media_hash": "f5e55bce795c0f0df9a6882b9a033678d5a3e4edab983fc4d2fbab35", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.51499, + "politics_of_food": 2.51499 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", + "publication_date": "2026-03-31T04:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", + "media_type": "news_article", + "sentence": { + "text": "It adds: \"This is a significant number: Outside local government, the NHS and the civil service, there are only around 65,000 public sector workers and it seems implausible that all 18,000 job losses (representing nearly a quarter of these workers) could be absorbed here.", + "media_hash": "7993aba0a704ab26b6c12cf995817108faca90b7f3f79190b3945b03", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "IPPR Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stephen Boyd", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dave Hawkey", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Casey Smith", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "However, according to former SNP minister Michael Matheson with 523 vehicles ordered, only 162 - less than a third - were built by Scottish manufacturers like Alexander Dennis.", + "media_hash": "54f25435f8168f31fcc57e8dfb00286001ea9d2e443e75e2286207cf", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Michael Matheson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Before the Scottish Government-backed furlough scheme, the company had received some \u00a390m of taxpayer cash over the past ten years and tens of millions since a 2020 plan to axe a third of its Scottish workforce in advance of June's plan to exit to England.", + "media_hash": "236e608d8c3b20d4ab9e6f956d0e0078d4e6ca1e2ad62b2b743b9782", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "Ex Rangers winger and current Manchester United star Diallo bagged an assist in that game, meaning he has been involved in seven of his country's goals in his last nine caps.", + "media_hash": "db183b116dca9b19514a43c1f7b754287c8befdd7958a6195ddee8df", + "sequence": 95, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", + "publication_date": "2026-03-31T16:29:50", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", + "media_type": "news_article", + "sentence": { + "text": "We're happy with the result and the fact we scored 4 goals.", + "media_hash": "78b7ef105c1faefd21de25e3ad27d256e39d8c9faff8155e47586358", + "sequence": 139, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Emerse Fae", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", + "publication_date": "2026-03-31T16:00:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", + "media_type": "news_article", + "sentence": { + "text": "The 26-week scheme ended on March 22 of this year with the Scottish Government picking up an estimated tab of \u00a34 million to cover 80% of workers' wages while Alexander Dennis secured the additional work needed to resume operations.", + "media_hash": "d256ffb4d97ab05e0ed62ce4b16eff1a8de53fd75d3f4d8ee04f6c3d", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", + "media_hash": "912309722bf504fb5e56c4073548e8c832ca5d39ff7af8fda21872bb", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Sarwar rules out deal with Reform as he accuses Swinney...", + "publication_date": "2026-03-31T13:34:30", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694557/Sarwar-rules-deal-Reform-accuses-Swinney-desperate.html", + "media_type": "news_article", + "sentence": { + "text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to \u00a33,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost-of-living crisis.\"", + "media_hash": "57cefb00b0ebd203929d3393fafd15e435a49418d0281be2fba027ba", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "Industry leaders have warned that some individual valuations have soared by as much as 500%.", + "media_hash": "5769febde36db24791e308113294e3ec69fc4d44c2f0b7233ca021a1", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "It comes as prices on the comparison website listed a top price of \u00a32.10 a litre for petrol and \u00a32.20 a litre for diesel at the Skerries Co-Operative Society pumps on the Shetland isle of Bruray - though to be the most expensive in the UK.", + "media_hash": "baa310bf714c65d0e911fe86508a37c0922e677d76da2f35913503d9", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "general": 2.556405, + "energy": 2.556405 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", + "publication_date": "2026-03-31T11:32:07", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", + "media_type": "news_article", + "sentence": { + "text": "Stac has now supported more than 120 start-ups, facilitated in excess of \u00a350m in investment into its portfolio, and helped create some 400 jobs.", + "media_hash": "05139a128bd6d6bbf73ba512b0de63176f379eb1a25dc8593a859b47", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Stac", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", + "publication_date": "2026-03-31T13:18:27", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", + "media_type": "news_article", + "sentence": { + "text": "The cost of filling a typical family car with diesel has exceeded \u00a3100 for the first time in more than three years, new figures show.", + "media_hash": "09397d534f05ffb226b52cabf5d37fae5588670380790c3215e998dc", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "This would put it ahead of Labour (18 seats), the Tories (13 seats), the Scottish Greens (10 seats) and the Liberal Democrats (7 seats), the research found.", + "media_hash": "b78d7d5b260f3b5149dd565922d39c4360d0260df0bd94ee3ba6628e", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "Reform would receive 19 per cent of the constituency vote and 18 per cent of the list, with Labour following closely behind with 19 per cent backing the party in constituencies and 17 oer cent in regional votes, according to the poll.", + "media_hash": "8ba3d526ae622596dffacc5af602a05a27c88e636e53c3503c1ffed7", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Survation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diffley Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", + "publication_date": "2026-03-31T13:01:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", + "media_type": "news_article", + "sentence": { + "text": "At the previous Scottish Parliament elections, held in 2021, the SNP won 64 seats, while the Tories won 31 seats and Labour won 22 seats.", + "media_hash": "0ce8364d53d627ff6920e33168f8c6dc77cb010eb838d829d9b92789", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "polls": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", + "media_hash": "3f7e8ca7052fb5e5bd2e3372b22cbf08f12db9849e32bf9e38158611", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", + "publication_date": "2026-03-31T11:28:24", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", + "media_type": "news_article", + "sentence": { + "text": "While ticket prices are normally $20 (\u00a315.14) for the return fare, it was reported the local transport authority will now charge $80 (\u00a360.55) for all games at the World Cup.", + "media_hash": "696aefb82f9e0b879d117f3506c3c23688e64a1698d431172be00104", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", + "publication_date": "2026-03-31T09:56:51", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", + "media_type": "news_article", + "sentence": { + "text": "The company had previously set out plans to close its facilities in Falkirk and Larbert, with the loss of 400 jobs, and move production to Yorkshire.", + "media_hash": "73b3ebeb9c03f1f115c3e717ac464f8adf4088c0d3d5587a3f87afde", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poll suggests SNP could win 62 Holyrood seats with...", + "publication_date": "2026-03-31T09:44:46", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", + "media_type": "news_article", + "sentence": { + "text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority.", + "media_hash": "6469240f430ab28af5cc7e14a68b52bbae853bd942deb0cdeb95f597", + "sequence": 3, + "claim_type": [ + "quantity", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", + "publication_date": "2026-03-31T09:12:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, on the regional list, Reform's support (18%) outstrips that of Labour (17%).", + "media_hash": "e1f105241be9c981e8b7fa1fbb5f1e1892c4f0e778a325022c743753", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reform", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "CalMac ferry crisis: Lib Dems demand Holyrood be recalled over vessels shortage", + "publication_date": "2026-03-31T08:58:16", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25982645.lib-dems-call-holyrood-recalled-calmac-crisis/", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile the troubled MV Glen Sannox, which only entered service last year between Troon and Brodick on the island of Arran, is facing \u00a33.2m of further costs.", + "media_hash": "e2d88475f0459fb04c1f2d381a4d3797e3718812e73d750990f0e9e9", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Here in Wales, the Welsh government has offered a one-off payment of 200 pounds for low income households who rely on heating oil, as prices have in some cases more than doubled.", + "media_hash": "6969d4bc01e94bda02dca8d4631eb77c1fa0436edf08be6e8d03abb4", + "sequence": 601, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", + "media_hash": "e8dc3bfc8a9d48d61488b1cbe8cb37d9a58a8b1627948729f1a80f57", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", + "media_type": "news_article", + "sentence": { + "text": "Over 7000 people were interviewed and over 4000 statements were taken but no arrests were made.", + "media_hash": "4044da8dcbf79ead303cf230b248c12eab6561bcf023b0a23cf18081", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "ADL had already secured tens of millions in public money after first proposing to cut around one-third of its Scottish workforce, including facilities in Falkirk and Larbert in 2020 and then admitting it is looking to move to England last year.", + "media_hash": "8a397d4238c16d6a4f4ffaaa3f66e1d5a856cbb2587f9546d50a9994", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", + "publication_date": "2026-03-31T16:40:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", + "media_type": "news_article", + "sentence": { + "text": "Niall said he had forked out around \u00a320,000 to go to the World Cup this summer, which included 10 nights in New York and six nights in Miami.", + "media_hash": "13eb9f6c336f3bc6d4bb8d9f19f060984ffd20238c7a744703a81308", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", + "publication_date": "2026-03-31T16:26:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Government had stepped in with what it described as an unprecedented \u00a34.1 million furlough scheme to support workers while new orders were secured.", + "media_hash": "1d9b7a99956f8fc8d3f92fe9a3056746304048170d0b53842af9be2e", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.4738 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 2.5459449999999997 + }, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", + "publication_date": "2026-03-31T16:00:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", + "media_type": "news_article", + "sentence": { + "text": "It comes one week after the \u00a345 million Scottish Zero Emission Bus Challenge Fund (ScotZEB3) confirmed that 334 zero emission vehicles are to be built - with 123 buses awarded to ADL and 166 awarded to Chinese company Yutong.", + "media_hash": "4ae17aab4d26ab74cb386a2b4c149a374c4dd9f87fd288b32f76367b", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", + "media_hash": "2f8f5edd62264970131328b073ad68cb5ba6c8a3f145c6eec92bf37b", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", + "publication_date": "2026-03-31T23:01:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", + "media_type": "news_article", + "sentence": { + "text": "According to a survey by the Chamber, 48% of businesses say rates are their primary concern.", + "media_hash": "f8326c050414d336437863760e77b16876377df913599cd1b395291f", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish businesses", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Chamber of Commerce", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", + "media_hash": "e2c1b487d20fbe6a88086b41c4816070fead6e309bb89bbfba701e47", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Government shelled out \u00a3260million of taxpayers' cash on the fees for the A9 dualling programme and a further \u00a380million on the A96.", + "media_hash": "20bf1c90283f85e82458d28383babd24d798c157db013493e9e6597a", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", + "publication_date": "2026-03-31T20:39:48", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", + "media_type": "news_article", + "sentence": { + "text": "'\u00a3261.3m has been spent on consultancy fees on the A9 out of an estimated total scheme cost of \u00a33.97billion.", + "media_hash": "294e533fc90c469996d94e2447e0a27219ae962aeeafdaf50436bae8", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Fiona Hyslop", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "media_hash": "97cc8a55fb457d4cfeddb4d222aab5e42fad94c3cb1521e1abcf7748", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Motorists travelling on the NC500 route are also seeing 'astronomical' prices with the cost of petrol listed just 4.1p off \u00a32 at Lairg, and diesel sitting at \u00a32.17 a litre at one forecourt in Thurso, Caithness.", + "media_hash": "dd7652551b8a99a24d4ce9fbdc34ad4fd821e4ff319815936d5ed08f", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "general": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "Steve Gooding, director of the RAC Foundation, however, said the price paid at the pumps by drivers is 'currently rising by \u00a337million a day'.", + "media_hash": "a1277acf5db04cd482be26e9f34cb79051d369a6e5767d016bd67cef", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "general": 2.970815, + "energy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", + "publication_date": "2026-03-31T11:32:07", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", + "media_type": "news_article", + "sentence": { + "text": "The announcement comes as the accelerator centre begins fundraising for its first dedicated deep tech fund, targeting between \u00a315 million and \u00a330m to significantly scale its capacity to back Scottish founders.", + "media_hash": "1bf2b109bf4d82884a2216adb673a20300a374650dc1c4718dfb0a2b", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Stac", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", + "publication_date": "2026-03-31T16:42:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", + "media_type": "news_article", + "sentence": { + "text": "Additionally, UK policies under the Subsidy Control Act 2022 limit the ability to favour domestic suppliers in public funding, while Scottish rules require UK-based firms to meet Fair Work First standards, which it is claimed put ADL at a competitive disadvantage compared to international rivals who are not bound by these conditions.", + "media_hash": "43f8f4a92f91a85fcd0e58ad9d4376076fe79886e577559d9f3212f1", + "sequence": 12, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Alexander Dennis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5438549999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "The crime lord is the head of the Lyons clan, which originated in Cumbernauld, North Lanarkshire, and has been involved in a bloody battle with rival Glasgow-based group Daniel for more than 20 years.", + "media_hash": "eeb496c68cb7d7d607eaab8afb31b4024bf744487f9595fd26ba1ba9", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", + "publication_date": "2026-03-31T11:06:15", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", + "media_type": "news_article", + "sentence": { + "text": "\"For twenty years, councils have been forced into annual cuts. This cannot continue,\" he said.", + "media_hash": "37dce9fcc8107c4abefd4db3a5f6cac3220bece9923d7fd81cd4979a", + "sequence": 19, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Brian McGinley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.502525 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", + "publication_date": "2026-03-31T12:31:33", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", + "media_type": "news_article", + "sentence": { + "text": "Every year, thousands of participants choose to support causes close to their hearts, turning each step of the journey into something meaningful beyond the finish line.", + "media_hash": "59dfeea9fc0dc31b3f359231f145a2205cafd77cb69405cb4f26edc1", + "sequence": 85, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", + "media_hash": "7091754801d02e06217bae835c2937684a0d8cbd9cd4265a9c31ddbb", + "sequence": 2, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "general": 3.09725, + "economy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran remains a stubborn foe after absorbing massive...", + "publication_date": "2026-03-31T15:46:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695393/Iran-remains-stubborn-foe-absorbing-massive-US-Israeli-attacks.html", + "media_type": "news_article", + "sentence": { + "text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", + "media_hash": "b899ad4209da633a9fb0ec9b0227641187fc44e0f3084bd923a36af5", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "general": 2.652965, + "defence": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", + "media_hash": "c0e57f6d3f0edf30285444e2d7eb86b9ea3eb60054f782c57940f058", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Treasury", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "general": 2.57747, + "economy": 2.57747 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", + "media_hash": "5ec8157db89f6e06e2366aeb7bb49ceaa107dc15d471337a942aaaf3", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "general": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", + "media_hash": "30f3953eea29da37d47932ff3265b04d1136d624c32c14560e4612b8", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "general": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "Research by the Institute of Directors recorded business confidence dropping to a net figure of -76 in March, compared to -63 in February.", + "media_hash": "df87d2cf54be76b152e33b6bbfe13be8b40dfa102ad70f53d40db782", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Institute of Directors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "general": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "Business confidence has dropped to a record low.", + "media_hash": "f782457dcf74ca300b28466274e8bb097510ac07035408489318a2b4", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "general": 2.511005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Heart disease remains one of the biggest killers in the UK, responsible for more than 460 deaths a day - roughly one every three minutes.", + "media_hash": "4aa7a3da9f3f0d6d2d0e6e0617b64e5335fb09cf8371b0d85284199a", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.6796 + }, + "demo": { + "nutrition_": 3.6795999999999998 + }, + "pa-media": { + "health": 3.6795999999999998 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show that tamoxifen patients are nearly three times more likely to develop deadly blood clots and endometrial cancer.", + "media_hash": "2ecab9e81a349e1ce0c3089493750e28704dd9b95f8876e735d9b41c", + "sequence": 38, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.3647299999999998 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "The UK lags behind other countries in cancer outcomes and faces a major shortage of staff and diagnostic scanners compared to countries like Germany, Sweden and Italy.", + "media_hash": "af398e782b1ff1b9f004da781fc439b606434d0498acad6c283082ff", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.6691399999999996 + }, + "aapfactcheck": { + "health": 4.66914 + }, + "pa-media": {}, + "maldita": { + "health": 2.6691399999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", + "media_hash": "004ba823dc56bccdfcc3be4892702fa69fbff9ce9b98ded6bb6c42be", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Genevieve Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.66914, + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.6691400000000005 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "\"The earlier bowel cancer is found, the more treatable it's likely to be, with more than nine-in-10 people surviving the disease when diagnosed at the earliest stage.", + "media_hash": "93ddc68874326d00e7a2950a5b55575f50563c2b5fad807ad159aa78", + "sequence": 65, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Over the course of the study the researchers found that more people who are susceptible to diabetes are now developing the disease than in the past.", + "media_hash": "ca70425cd24e0194aab25ae7bc17c2fc55e83b9c1d50046f3dbae967", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 5.123595, + "nutrition_": 5.123595 + }, + "pa-media": { + "health": 3.6691399999999996 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Latest data suggests Long Covid still occurs in about 3 in 100 cases.", + "media_hash": "f8f87b22ce0f0cf624bef3125706e0702c83554812d569e3223a363b", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "Studies have also shown that getting enough vitamin E - around 4mg a day for men and 3mg for women, roughly the equivalent of a tablespoon of sunflower seeds - may help reduce the risk of heart disease.", + "media_hash": "0334f6de6e95a1a9446f134a05189aff65b7725383636f9c1d1b335f", + "sequence": 33, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.6691399999999996, + "popular_media": 3.6691399999999996 + }, + "pa-media": { + "health": 3.6691399999999996 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Latest data suggests Long Covid still occurs in about three in 100 cases.", + "media_hash": "2982b20e8571147d3e5e818a13f6ff66061373268fc4962765534f97", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.66914, + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Crucially, research also shows that tamoxifen can slash the risk of breast cancer developing by as much as 50 per cent.", + "media_hash": "80c84a394068b4771d45f72bb99d6eed1c55868b89e16031e71b67f3", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 3.6691399999999996 + }, + "aapfactcheck": { + "health": 5.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "With nearly six million people in the UK thought to be living with diabetes, the need for realistic and effective interventions has never been greater.", + "media_hash": "7926a27f92ef7090377833e0661c736a327b1e5709c51adc10345ff3", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.66914 + }, + "demo": { + "health": 5.66914, + "nutrition_": 5.66914 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Radiotherapy on its own, meanwhile, eradicates around 40 per cent of cancers and also brings side-effects, such as skin irritation around the treatment area.", + "media_hash": "18b397a949ae770aa0bd6e209c7596a34d89f132cd6689c7dbfc0339", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Children and young people living in the most deprived communities were more than three times more likely to have a tooth extracted due to decay than those in more affluent areas, data also showed.", + "media_hash": "1efb659b9b59449365b8553749f078c6d0666417d2ef024d3ed6422b", + "sequence": 42, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Children and young people", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": { + "health": 3.548465 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "'If you give women who are at an increased risk of developing breast cancer a drug like tamoxifen, then you can significantly reduce their risk of developing the disease by up to 50 per cent.", + "media_hash": "89bd0fb5dadf7c0237ba05dd9bdf477b7cbd592df40e8875a7099e66", + "sequence": 19, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "health": 3.38007 + }, + "aapfactcheck": { + "health": 5.53285 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "At 12 trusts, more than half of cancer patients waited too long to start treatment after being referred by their GP or other doctor.", + "media_hash": "6759221a055320d925adb638ba2318b82f6fd538b35abfadb3c6c592", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "health": 3.3647299999999998 + }, + "aapfactcheck": { + "health": 5.395685 + }, + "pa-media": {}, + "maldita": { + "health": 3.3956850000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", + "media_hash": "04b6c31bcbf782e92cd7694f251c5e5f8bf0063fac1543da8a706c6d", + "sequence": 189, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465, + "senedd_election": 5.548465 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "It could explain the relatively low uptake among women for cancer screening - tests and checks that save thousands of lives each year.", + "media_hash": "b32e2e46d35f91af17896393a994c50ebe443ebfdde7ee7c7bfbd4fd", + "sequence": 46, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "Higher olive oil intake, specifically extra virgin olive oil which contains more health-promoting polyphenols (as not all olive oils are created equal), has been associated with lower rates of heart disease and early death.", + "media_hash": "66dceb41869de8b43500de8311461e32930caf4f3ed058fccfa9a075", + "sequence": 41, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.548465 + }, + "demo": { + "nutrition_": 5.66914, + "health": 5.66914 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.66914 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "It has long been suggested that sufferers may need to overhaul their lifestyle to keep the disease at bay, with approximately 90 per cent of cases being type 2 diabetes - which has been linked with obesity, lack of exercise and chronic stress.", + "media_hash": "2b06558e909d777ecddab929fb72dd60569ef02960e9fb4e5e5495eb", + "sequence": 12, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.53285 + }, + "demo": { + "health": 5.53285, + "nutrition_": 5.53285 + }, + "pa-media": { + "health": 3.53285 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.53285 + } + } + } +}, +{ + "title": "One Cuban family navigates daily life under a US oil...", + "publication_date": "2026-03-31T17:56:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695741/One-Cuban-family-navigates-daily-life-US-oil-embargo-deepening-economic-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Nearly 5 million people with chronic illnesses lack access to essential medications, while life-saving treatments like radiation treatments for cancer and dialysis for kidney disease have been interrupted for 16,000 and 2,800 patients, respectively.", + "media_hash": "0dfd1afa1a59e9618968898bd4f74e4be1a66dda2dc77f2af5c03479", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.517510000000001 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.5175099999999997 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "While in recent years revolutionary new drug treatments have increased the number of patients who beat breast cancer, it still kills more than 11,000 every year in the UK.", + "media_hash": "142f14dec2f1b4e9a00c9b52c649a03919653152219e84c55eb4eba6", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.51636 + }, + "demo": { + "health": 3.5163599999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "One person is diagnosed with cancer in the UK every 75 seconds following a surge in cases over the past decade.", + "media_hash": "a8afd07a0cb4d9783457cab8f22ac5a547981169cd3263d3cc7dd0bb", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.51636 + }, + "demo": { + "health": 3.3647299999999998 + }, + "pa-media": {}, + "maldita": { + "health": 2.5163599999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "More than a million people with heart disease are to be prescribed the weight loss jab Wegovy to prevent them from having heart attacks or strokes.", + "media_hash": "d4debc8b3ca3ef57f7e8513f9ebd4030aba52cc35e1f4cc238c6d0a6", + "sequence": 2, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.51636 + }, + "demo": { + "health": 5.51636, + "nutrition_": 5.51636 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.5163599999999997 + } + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "Long Covid is when the symptoms of Covid-19 last longer than 12 weeks, according to the NHS website.", + "media_hash": "4cd5b111518e6f6b0d66b8af078e3691b75838503837f9a2edde59be", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS website", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.47096 + }, + "demo": { + "health": 3.04609 + }, + "pa-media": {}, + "maldita": { + "health": 3.47096 + }, + "fullfact-policy": { + "climate_change": 3.47096 + } + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Research from the charity shows awareness of the five gynaecological cancers remains low in the UK, with stigma and embarrassment continuing to delay seeking medical advice, which results in thousands of women dying.", + "media_hash": "08752205cec9b360403770ba4548d9f75909e5a8ebcd73229e712d7c", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Lady Garden Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.47096 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", + "media_hash": "b66f8e066a2d657921e8cfd051521135d4c6db0be212be923b09ab4a", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "scottish_elections": 5.395685 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "However, only a small number of women - those considered to be at high-risk of developing breast cancer - are offered tamoxifen for this purpose on the NHS.", + "media_hash": "37c60f9c14ce8cddcdd7f73b937a6936cce354f31716065f2b900a5a", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "health": 2.970815 + }, + "aapfactcheck": { + "health": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "media_hash": "072291ede3a06f4feb70de0ec85762b5e6e0806b1067e5eef40ec03e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3647299999999998 + }, + "aapfactcheck": { + "health": 5.36473 + }, + "pa-media": {}, + "maldita": { + "health": 3.3956850000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The charity Bowel Cancer UK found that around a third of people who were eligible here, don't complete the test.", + "media_hash": "485f2b60b3ff0276238fd840caecde41f2133827461aea1696fb2000", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", + "media_hash": "0f9e88f058cac2940fbf6498ba2d157d67033836dc35e3a614ea5e55", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", + "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 5.36473 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.395685 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And also, you know, even those who have suspected disorders, they face incredibly long waiting lists of sometimes years, which is unthinkable for a say, six-year-old child with severe ADHD.", + "media_hash": "899a5d1dfeda3f78708c8bee2ba8b58acc4898f5c88d283d9f0742d8", + "sequence": 520, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.395685, + "clinical_health": 5.395685 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", + "media_hash": "ec50e4f7c10fe0e85b14de778170d48390915708b0f26a73cf29626d", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "scottish_elections": 5.395685 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "His various studies suggest that as few as one to four minutes of incidental vilpa each day may reduce your risk of heart attack, stroke and even certain cancers.", + "media_hash": "a406f5ebe41e92502500f3d3f2beacfbc7969e19263c8f8a3db6a9b2", + "sequence": 68, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Professor Emmanuel Stamatakis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "University of Sydney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "nutrition_": 3.5175099999999997, + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", + "media_hash": "6d42615c7f0605e2173116517852450ce41e72015a7ce881267c0745", + "sequence": 188, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685, + "senedd_election": 5.395685 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Those that had received CBA3656 excreted significantly higher levels of plastics in their feces than the control group, providing direct evidence that the bacterium could bind nanoplastics in a live intestine and help flush them out of the body.", + "media_hash": "b0a41fe0368fb6d8c854765f90b8b7f384ff93b4ef1fc0842f59346d", + "sequence": 30, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "politics_of_food": 2.970815, + "environment": 2.970815, + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", + "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "When tested in simulated intestinal fluid, a laboratory proxy for the human gut complete with bile salts, Leuconostoc mesenteroides CBA3656 adsorbed an impressive 57 percent of nanoplastics, far outpacing the others.", + "media_hash": "4e4b59942d28a68b4f15fa6f9c1ac904025328b9cfa781ee6c96cd52", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "politics_of_food": 2.970815, + "environment": 2.970815, + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "Crucially, the drug also reduced by 30 per cent the rate of major events such as heart attacks, strokes or death due to heart disease.", + "media_hash": "b62da406e63009f006a60ecc9d2156321c4b514d3fae890dc2e13489", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.395685 + }, + "demo": { + "nutrition_": 3.3647299999999998, + "health": 3.3647299999999998 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Last year, scientists found aspartame, which is found in products like Muller Light yoghurts, contributed to a worrying rise in diabetes risk - with those who consumed a cocktail of additives at a more than 10 per cent increased risk than those who steered clear of the artificial ingredients.", + "media_hash": "9e5f033376ec1514c2eeecfba3007b2c505b3382d15d1ff6acfc6ea4", + "sequence": 25, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.36473 + }, + "demo": { + "health": 5.36473, + "nutrition_": 5.36473 + }, + "pa-media": { + "health": 3.3647299999999998 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3647299999999998 + } + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "The UK's miserly rate of statutory sick pay - one of the lowest in the developed world - thus became a factor in the spread of Covid-19.", + "media_hash": "d0948645bf9777a18afb00c006293874a7a73eafeafb20f285bcc492", + "sequence": 7, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.36473 + }, + "demo": { + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", + "media_hash": "26d2d3297861afc92462f405ae7576948ffeeb57d1ac9ccc1296963e", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.36473, + "clinical_health": 5.36473 + }, + "demo": { + "health": 5.395685 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Also, it's the fourth most common cancer, but why are more than a third of people not taking up the offer of bowel cancer screening?", + "media_hash": "23bcb0f92549015f8434f032467311aa5bd3d828632f441bc14daf14", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.36473 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show women who develop breast cancer are significantly more likely to see it return later in life - at which point it is often harder to treat.", + "media_hash": "1100642d3524fc9236e5453fb29b300c24f68ee1499ee8abfc6c185c", + "sequence": 52, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.35651 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", + "media_hash": "b29551ca7be24314f5f1d43a494dde5f196f1c6ba4f5da9695917038", + "sequence": 10, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 5.35651, + "clinical_health": 5.35651 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Addressing the six pillars of lifestyle medicine including eating a plant-based diet, exercising regularly, and prioritising sleep could help reverse type 2 diabetes, experts said today.", + "media_hash": "682b1563b56b6a46f6aec160dbeb382f3b908fb0beb2c9017ac81d3a", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.350285 + }, + "demo": { + "health": 5.18304, + "nutrition_": 5.18304 + }, + "pa-media": { + "health": 3.3502850000000004 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3502850000000004 + } + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "More than a million people with heart disease will be prescribed a weight loss jab to prevent them from having heart attacks or strokes.", + "media_hash": "0179cff9cc754e91275519a74dabca009592dda570dee692a8cbf842", + "sequence": 1, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.34754 + }, + "demo": { + "nutrition_": 5.1947600000000005 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3475400000000004 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "The plastics seemed to give cancer cells a survival boost, making them more likely to spread and migrate to new sites.", + "media_hash": "7c9e6464e40b8e0e722ef844925a65d13a2454b76980d44ffa6453fb", + "sequence": 53, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.235835 + }, + "demo": { + "politics_of_food": 3.20488, + "environment": 3.20488, + "nutrition_": 3.20488, + "health": 3.20488 + }, + "pa-media": { + "health": 3.235835 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "However, it can also result in more serious issues, including asthma attacks and problems for those with respiratory or cardiovascular diseases, with the risk of respiratory infections also raised.", + "media_hash": "d582e8db63114ed540f91212a686436a45689e5301f925695a8f3c12", + "sequence": 12, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.235835 + }, + "demo": { + "environment": 3.235835, + "health": 3.235835 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "One 2024 study found that getting less than six hours of sleep a night could increase the risk of type 2 diabetes by 16 per cent - with the odds remaining high even when people ate well, suggesting a healthy diet cannot compensate for sleep deprivation.", + "media_hash": "5865327515dd262091a97b35791a61944c05ccdbfcd1838aa9598ff5", + "sequence": 21, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.226865 + }, + "demo": { + "health": 5.19591, + "nutrition_": 5.19591 + }, + "pa-media": { + "health": 3.226865 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.226865 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Cancer charities warn such delays slash survival chances, can make some treatments less effective and increase anxiety.", + "media_hash": "6e1a899f763ee4be2db6b34adf1d846bb2c07084a204b07776feb62f", + "sequence": 3, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.20488 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "maldita": { + "health": 3.20488 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "It turns out that my estrogen levels were really, really low and that I've probably been in perimenopause for a lot longer than I thought.", + "media_hash": "50efea43bb6049add081ec5fd9123790ca299dfc7058e1606d69881a", + "sequence": 133, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.197505 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.197505 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, a major study, soon to be published, found that a breast cancer diagnosis can cost women up to \u00a312,000 a year, in large part due to lost wages, childcare and travel costs.", + "media_hash": "777172461a91bbaac91070a1ec6d209fddf381713291ed984d71ce5e", + "sequence": 54, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "research", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.16655 + }, + "demo": { + "health": 3.16655 + }, + "aapfactcheck": { + "health": 5.16655 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "READ MORE: Walking for just 30 minutes could help ward off breast cancer", + "media_hash": "b61f266ec188de4673a039963c740d5bea460be85be5d41e752dd02b", + "sequence": 63, + "checkworthiness": { + "fullfact": { + "clinical_health": 5.158329999999999 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", + "media_hash": "a1c18b06030ee4071712635e52daa53d0bccbd26571f2da7fabfc184", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.123595, + "scottish_elections": 5.123595 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.123595 + } + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "Dr Conall Watson, consultant epidemiologist at UKHSA, said: \"RSV lung infection is less well known than Covid or flu but for older adults it puts thousands in hospital each year with a risk to life.", + "media_hash": "378133c0485fefce5e7d206ad72699a380316bc7810c0826e24341fe", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Health Minister Stephen Kinnock", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.0636849999999995, + "clinical_health": 5.0636849999999995 + }, + "demo": { + "health": 3.03273 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.063685 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Some people are at a greater genetic risk than others, with experts now suggesting that more of these 'at-risk' people are developing diabetes than before due to modern lifestyles.", + "media_hash": "f366384bfc38d6a4792d6875cea4293f53d91c88903d8fc401fd0cf2", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.0636849999999995 + }, + "demo": { + "health": 5.03273, + "nutrition_": 5.03273 + }, + "pa-media": { + "health": 3.063685 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.063685 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Now then, it's the fourth most common cancer and the second biggest killer, but a charity is warning too many people aren't taking a potentially life-saving screening for bowel cancer.", + "media_hash": "bdff98ee7d4572df98802d54006eeceb45c858882c0c9451e013069b", + "sequence": 670, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.0636849999999995 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Scientists have said Cicada can spread faster than other variants, and one of the UK's top microbiologists has revealed emerging evidence that it could spread most in children with no COVID immunity, increasing the risk of a new wave.", + "media_hash": "ab87547eb570b7f594413e035e07c2a4a70aba171e55a72e9511f3d5", + "sequence": 5, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "leading microbiologist", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.0521, + "clinical_health": 5.0521 + }, + "demo": { + "health": 3.0625600000000004 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.0521000000000003 + } + } + } +}, +{ + "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", + "publication_date": "2026-03-31T11:56:49", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", + "media_type": "news_article", + "sentence": { + "text": "When you have cancer the first time around you are on a curative pathway so the idea is that they're treating you to a point where you are cured.", + "media_hash": "37b5564c5477d5ebbe0e70273d5614dd83f348b8140543148613badb", + "sequence": 22, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.037655 + } + } + } +}, +{ + "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", + "publication_date": "2026-03-31T19:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", + "media_type": "news_article", + "sentence": { + "text": "It can make babies larger, and can also cause a premature birth and lead to Type 2 diabetes developing in the mother.", + "media_hash": "f5fcc50da4b38016372c4954772b2f82e843008278af14e8a34a2646", + "sequence": 24, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.037655, + "clinical_health": 5.037655 + }, + "demo": { + "health": 5.037655 + }, + "pa-media": { + "health": 3.037655 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.037655 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And everybody does it, you know, in the end of the day, so, you know, if we don't, if we don't check it, then, unfortunately, you risk yourself of maybe having bowel cancer and not getting treated early enough.", + "media_hash": "d25f7dcba9db0cb6f8680c93d095e7dd55e1536b6cd96e3fcba9c26e", + "sequence": 697, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "John Woodland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.037655 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "But but take ADHD. You know, if a child is acting up in class, unable to concentrate, um, you know, struggling to sort of sit still, then the support that that child needs would depend on whether or not they have ADHD. Is that not true, Dennis, of any condition? I mean, you know, if you want to get treated for your, let's take an obvious, if you want insulin for example, then you're probably going to have to get diagnosed with diabetes first. If you need chemotherapy, you're probably going to have to have a cancer diagnosis first. So it's not so much about incentives, that's just how the medical system works, isn't it? To get treatment or get support, you have to have a diagnosis.", + "media_hash": "c9c327f310f0369e2a8b1ca4701617ec7d3f164a38e9c4fe78a4eb4d", + "sequence": 489, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 5.037655, + "clinical_health": 5.037655 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Certain warning signs could mean you have early diabetes or liver disease (stock image) (Image: Getty)", + "media_hash": "1247ac39d99b2584752379e06da0255c18dd02d307ee2cb0b94ec3b5", + "sequence": 1, + "checkworthiness": { + "fullfact": { + "clinical_health": 5.037655 + }, + "demo": { + "health": 5.0067, + "nutrition_": 5.0067 + }, + "pa-media": { + "health": 3.15833 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "This is crucial because many types of breast cancer feed off oestrogen.", + "media_hash": "c0b17d02c4ecbb3f5cf38eb665e872098599185f5a90d5f544d8f0db", + "sequence": 30, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.037655 + }, + "demo": { + "health": 3.0067 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "Health experts are urging caution as the Cicada Covid variant spreads, with sore throat the most common symptom and advice to consult doctors about booster jabs", + "media_hash": "358bbf8e4618e1b0f3e83e590f88d79f9382d4c8aa3ee36fa879ecf2", + "sequence": 1, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Health experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.0220400000000005 + }, + "demo": { + "health": 5.0220400000000005 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.86926 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "A vaccine that is injected directly into tumours could boost survival rates from hard-to-treat cancers.", + "media_hash": "a12ac5d9bec5bb81f9728e69b43b34dd09a37dbed76d73bcd3009639", + "sequence": 1, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 5.0067 + }, + "demo": { + "health": 3.0067 + }, + "aapfactcheck": { + "health": 5.0067 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "Long Covid is when the symptoms of Covid-19 - extreme fatigue, shortness of breath, joint pain, aching muscles and brain fog - last longer than 12 weeks", + "media_hash": "d81274f34765adda6f0ab82bc7996e63bcfd76a1410a026014a93352", + "sequence": 1, + "checkworthiness": { + "fullfact": { + "clinical_health": 5.0067 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "maldita": { + "health": 3.15833 + }, + "fullfact-policy": { + "climate_change": 3.0067 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", + "media_hash": "e33546ce5c49873822230392e567021631711e43eb996092b3a8aea1", + "sequence": 195, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.981275, + "senedd_election": 4.981275 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "A record 106,810 cancer patients waited more than 62 days to start urgent treatment on the NHS last year, damning new analysis reveals.", + "media_hash": "b14c49240fdaed07e55e15743f0d4677e5183e80afa1ff0fc373985d", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.970815 + }, + "demo": { + "health": 3.3647299999999998 + }, + "pa-media": {}, + "maldita": { + "health": 2.981275 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And really, we, you know, the prevalence of psychiatric disorders in that population, for example, ADHD is significantly lower than what you would expect in England.", + "media_hash": "5e1918152e501199d31a501d96c67a39e90ade507ef656448fcb0bed", + "sequence": 504, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "clinical_health": 4.970815 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "And just 63.6 per cent of women invited for mammograms to screen for breast cancer in England attended last year (2024/25).", + "media_hash": "98a46dc967898d216c2d206a9249d845325be23d07437b2d88a03ea8", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in several European countries between Nov 2025 and Jan 2026 (Image: Getty)", + "media_hash": "567d76b63c20526019ec094883ce709ac24dcecc24eb1e99f7546680", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "clinical_health": 4.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", + "media_hash": "2611e759b67cbaf02fd2d0c95a28ddda0856ae9c65e556156ec4657b", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.970815, + "scottish_elections": 4.970815 + }, + "demo": { + "health": 5.16655 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.970815 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "She argues that, on this low tamoxifen dose, patients typically only suffer one hot flush a day, while also seeing their risk of cancer drastically cut.", + "media_hash": "f22f08b9a6751e9a0893e328994cc2113746f794d3d238c2448fb8db", + "sequence": 42, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.910905 + }, + "demo": { + "health": 2.910905 + }, + "aapfactcheck": { + "health": 4.910905 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "A study from February 2026 found that prolonged, low-level exposure to tiny plastic particles - just 20 nanometers wide - made colorectal cancer cells behave more aggressively.", + "media_hash": "eef3c4d431ac6132c4bcc529e60fab54165ddd3c43faf44c0c746c2c", + "sequence": 52, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.910905 + }, + "demo": { + "politics_of_food": 2.87995, + "environment": 2.87995, + "nutrition_": 2.87995, + "health": 2.87995 + }, + "pa-media": { + "health": 2.910905 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.910905 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Matt Sample, senior health policy manager at Cancer Research UK, said: 'Far too many people with cancer are still waiting longer than they should to begin treatment in England.", + "media_hash": "4980d08477226b5e038ff1ffa3397c92964ac52a0c29d379f4be5d63", + "sequence": 23, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Matt Sample", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.910905 + }, + "demo": { + "health": 4.865505 + }, + "aapfactcheck": { + "health": 4.638815 + }, + "pa-media": {}, + "maldita": { + "health": 2.910905 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", + "media_hash": "89ebe066db59c305dd3ec3faa21d71656b9184a78a9f6e2ba4cf78bf", + "sequence": 207, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.901365, + "senedd_election": 4.901365 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", + "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", + "sequence": 37, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.89529, + "scottish_elections": 4.89529, + "clinical_health": 4.89529 + }, + "demo": { + "health": 4.89644 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.89529 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", + "media_hash": "cc00c0f2de04f4d6ef1c659b298827e66ce518bce8e886676530ea52", + "sequence": 222, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.884875, + "senedd_election": 4.884875 + } + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "Health officials observed that the symptoms linked with Cicada are consistent with earlier versions of COVID-19.", + "media_hash": "aca1c8e357bde9b9654deaa61f46a988ffc64ca17d89a7a4eee39ae3", + "sequence": 10, + "claim_type": [ + "correlation", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.884875 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.037655 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "A new COVID strain sweeping the UK could disproportionately affect children (Image: Getty)", + "media_hash": "c6a672c98f998ba8debed05b9382e91acfb30997d64403282c9a4254", + "sequence": 1, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.88213, + "clinical_health": 4.88213 + }, + "demo": { + "health": 2.5323200000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.7305 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert, sparking controversy among doctors.", + "media_hash": "f4110f99ee45f1b0579df085466bf9666f9ebe60fbb9a092930fd96e", + "sequence": 3, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.87995 + }, + "demo": { + "health": 2.87995 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert - sparking controversy among doctors.", + "media_hash": "c32f7df8656efa146657a397099a871354ff706c5ed8d307763c3853", + "sequence": 3, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "leading expert", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.87995 + }, + "demo": { + "health": 2.74366 + }, + "aapfactcheck": { + "health": 4.87995 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", + "publication_date": "2026-03-31T11:56:49", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", + "media_type": "news_article", + "sentence": { + "text": "An ultrasound scan in July 2024 led to the 'earth-shattering' diagnosis of stage three breast cancer.", + "media_hash": "10b3539ff66131ebce96156ff2dfd82d53f499e411b39e1f9982477f", + "sequence": 7, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.8539200000000005 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "media_hash": "e13472feac79ae1fa233c9f453056b0b898415adcd989b25844f716c", + "sequence": 0, + "checkworthiness": { + "fullfact": { + "clinical_health": 4.8539200000000005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "The party said it would deliver this through 200 extra staffed radiotherapy machines, new radiotherapy centres to end 'radiotherapy deserts', and over 3,000 more cancer nurses to ensure everyone has a specialist supporting them.", + "media_hash": "b49ee62910766279e71f5c3fed464e32c71f8e4fa9d4334aa0a39629", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.834525 + }, + "demo": { + "health": 2.834525 + }, + "pa-media": {}, + "maldita": { + "health": 2.834525 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "In a bid to combat the increasing prevalence of type 2 diabetes, the NHS launched its soup and shake diet - which incorporates pillars of lifestyle medicine - which has now been shown to help thousands put their type 2 diabetes into remission.", + "media_hash": "abb79379298f05c9d1b704dc65ed1103974efb721ce73f32077ce1f5", + "sequence": 28, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.8334 + }, + "demo": { + "health": 4.98618, + "nutrition_": 4.98618 + }, + "pa-media": { + "health": 2.8334 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.8334 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "media_hash": "2a25a1faab38036d5d9763298dd6fdfa27319a06d678bc177ccb21b4", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.772635, + "scottish_elections": 4.772635 + }, + "demo": { + "health": 3.47096 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of new Covid strain symptoms including unusual signs", + "publication_date": "2026-03-31T14:58:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", + "media_type": "news_article", + "sentence": { + "text": "A new strain of Covid-19 has been detected in the UK amongst a further 22 countries across the world.", + "media_hash": "22fb21259f885a25737603d2ada7f32197bd06db6dcb4289410a522a", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.772635 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "You may be offered a COVID-19 vaccine in spring if you are aged 75 or over, are aged six months to 74 years and have a weakened immune system because of a health condition or treatment, or live in a care home for older adults.", + "media_hash": "dc85b5374a6904f50db9d1e27bf5f5711f59bfe0d5db0e7a67222cd2", + "sequence": 34, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.770545, + "clinical_health": 4.770545 + }, + "demo": { + "health": 4.345675 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.770545 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", + "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", + "sequence": 29, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.761455, + "scottish_elections": 4.761455, + "clinical_health": 4.761455 + }, + "demo": { + "health": 4.914235 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.914235 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "But it works less well in cancer that has spread - and, as it targets both healthy and cancerous cells, it causes side-effects from nausea to hair loss and heart palpitations.", + "media_hash": "dca331482923f76408fb0eb1fe167e5120dbe6a11f6bc1b3dc484afe", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.751055 + }, + "demo": { + "health": 4.87173 + }, + "aapfactcheck": { + "health": 4.751055 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "She says the major intervention is needed to combat the rising number of young women developing breast cancer.", + "media_hash": "8d1a2dd3edd0cafc9cfff084ada74e33bc6a72dfef1b3fa7384de176", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.751055 + }, + "demo": { + "health": 2.751055 + }, + "aapfactcheck": { + "health": 4.598275 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "I'm still active, you know, um, fit and, um, you know, nothing to worry about, if you like, none of the symptoms which, um, you look out for, if you like, but, um, you know, it just goes to prove, you know, because, you know, when you read up on bowel cancer, it does state, you know, some articles I've read where you can take up to 10 years to get symptoms and by then, it could be further, further down the track in terms of the stages.", + "media_hash": "924cee8af5bac1e7801bcf7411ca03e4ff869f21ae59aade8adf8aba", + "sequence": 702, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "John Woodland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.743765 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "It has long been recommended that women at moderate to high risk of breast cancer should be offered preventive treatments such as tamoxifen", + "media_hash": "eb69a007aafb5ee090f5dfada9ccfda4fb26a7e6b82f7c3ef854dbe2", + "sequence": 23, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "They said: \"Sunburn increases your risk of skin cancer. Sunburn does not just happen on holiday. You can burn in the UK, even when it's cloudy.\"", + "media_hash": "deab67d48d2129ec7588d740e81f592bc3a1b561a29afcbc4dc40206", + "sequence": 30, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "spokesperson for the health service", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.73546 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Type 2 diabetes occurs when the body doesn't make enough of the hormone insulin, or the insulin it makes doesn't work properly.", + "media_hash": "135231fed5b21aadc89b7e61ba054072ef1ce1d77dfdad5f0857270f", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + }, + "demo": { + "health": 4.67355, + "nutrition_": 4.67355 + }, + "pa-media": { + "health": 2.704505 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.73546 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "This is because tamoxifen has a number of side-effects, including hot flushes and night sweats, mood changes and fatigue.", + "media_hash": "df0a1e94a8c8ca6c39b54b6846b19f3a3847411aa9f414a4be3addaa", + "sequence": 34, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + }, + "demo": { + "health": 2.5528750000000002 + }, + "aapfactcheck": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of new Covid strain symptoms including unusual signs", + "publication_date": "2026-03-31T14:58:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", + "media_type": "news_article", + "sentence": { + "text": "Common symptoms are similar to most Covid-19 cases with some being resolved with rest, hydration, and over-the-counter medications.", + "media_hash": "9a3fe6bb051f115dfc888d5f257f38e5a5c2d36e3812053b471b2700", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + } + } + } +}, +{ + "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", + "publication_date": "2026-03-31T09:30:46", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", + "media_type": "news_article", + "sentence": { + "text": "\"Springtime can bring a range of seasonal health concerns, including hay fever, allergies and asthma flare-ups due to increased pollen levels.", + "media_hash": "e9a8bc273c50418a6bbc4ec8413bc3173e22c09da3e72e6228fe2d09", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Graeme Bryson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.73546 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "In tests on mice with bowel cancer, the vaccine was 100 per cent effective at completely eradicating tumours.", + "media_hash": "6ae0a72202f3fff38135c4aef5738b8dd49253b6cce20aa973f8068c", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.730845 + }, + "demo": { + "health": 2.5326649999999997 + }, + "aapfactcheck": { + "health": 4.532665 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", + "media_hash": "f10812f879772d722a90c5753954ada30817cb9cb276769d88c40ae6", + "sequence": 209, + "claim_type": [ + "personal", + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.722555, + "senedd_election": 4.722555 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "So that's that's the conclusion of this review, that too many children and young adults are being incentivized to get diagnosed with conditions like ADHD and autism and that there is an ongoing, this is the phrase, medicalization of distress. And I slight different points there. They're slightly kind of different conversations. But I think we're going to try and do both together because I want your thoughts fundamentally on whether you think that's right. And you might want to comment specifically on the idea that people are being overly incentivized to get diagnosed as neurodivergent. You might want to comment on the suggestion that there is a medicalization of distress that we tell too many people they're mentally ill when actually they're just sad or a bit stressed. Or you might want to comment on both. Either way, would love to hear your thoughts. Are those conclusions right? Are too many people being overly incentivized to get diagnosed with ADHD and autism? And is it true to say that there is a medicalization of normal day-to-day distress? That's been the argument for politicians for quite some time. This review has to some extent, at least, endorsed that view. Do you agree with it? Do you think it's right? 03456060973 is the number for your thoughts. You can text me on 8450, or send a comment to LBC. Before I come to your calls, let's talk about it with Dennis O'Grady, a professor of child psychiatry at Queen Mary University in London. Professor, good to have you with us. Um, let's start, shall we, with the the incentive suggestion that children and young adults are being incentivized to get diagnosed with ADHD and autism. What would be the incentive to get a diagnosis?", + "media_hash": "fbfcba0e7d2b56683fa3d63ba627c3691293ad75beb542df42f3fef8", + "sequence": 487, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.7201, + "clinical_health": 4.7201 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "It will target people with conditions such as chronic obstructive pulmonary disease (COPD), asthma, and cardiovascular disease, which can be worsened by cold and damp living conditions.", + "media_hash": "e439826e75fb38f879ab154e3abee8b56dd9707d4f1b649cd88265ff", + "sequence": 13, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.716055 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "The study, involving patients with type 1 and type 2 diabetes, found almost all of the participants found to have heart failure had preserved ejection fraction, which can be difficult to detect without dedicated testing.", + "media_hash": "a9919bc621202fdddd61b5b5cdaf1307db3e6c4f0babb2a5ebdd32f0", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.712725 + } + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "It was further noted that this advice applies particularly to the six most vulnerable groups: minors, elderly people, those with chronic respiratory or cardiac conditions, like asthma or bronchitis, pregnant women, outdoor workers, and finally, smokers.", + "media_hash": "539437489ba1afdafc43dfcd346218246e03f54f5a35bedc53b76f44", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.712725 + }, + "demo": { + "environment": 2.712725, + "health": 2.712725 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Surveys have shown that only 2 per cent of women who receive regular breast cancer screening - meaning they are scanned for the disease every few years - have heard of tamoxifen.", + "media_hash": "ece5ded9a21795b7477bab021a8a84fefe09f639d89fc312ddd6f8e0", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.698725 + }, + "demo": { + "health": 4.970815 + }, + "aapfactcheck": { + "health": 4.698725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "Despite this spread, it has not led to a notable rise in overall Covid infection rates compared with previous years.", + "media_hash": "ead349f1d19c2f819064e8662357196abdf2a66e11d0fe6b41367eb8", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.698725 + }, + "demo": { + "health": 2.6987249999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "That's because the colon believes its primary job is absorbing water - and it does so astonishingly well, absorbing up to five litres of fluid per day, meaning there's only so much that drinking extra water can counteract this action.", + "media_hash": "3dff21c989d16d20adf70372d86fec8385771ccd384210d2c56faaaf", + "sequence": 41, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.698725 + }, + "demo": { + "nutrition_": 2.72968, + "health": 2.72968 + }, + "pa-media": { + "health": 2.72968 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anyone who washes clothes at 60C urged to think again this spring", + "publication_date": "2026-03-31T02:47:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", + "media_type": "news_article", + "sentence": { + "text": "One of the key concerns is norovirus, which can survive on clothing and fabrics for up to a month in almost any condition.", + "media_hash": "6c7ae66ec47eb6c33251ac3f56581c8e2039554b6790eca22b81ad4a", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Hotpoint", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show that, via this mechanism, drugs like tamoxifen can stop breast cancer from spreading and - in combination with other treatments like chemo and surgery - can cure patients.", + "media_hash": "8a9c13121fe159778c3e2cc70d52e6079999e406ef225092ca1f7e0f", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "aapfactcheck": { + "health": 4.67355 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits 'unacceptable \u0301, says Cancer Research", + "media_hash": "6eaf1f179ea47b820cd1bbeca3dba64b37b0aafee71d084b09644b65", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.67355, + "clinical_health": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", + "media_hash": "87120b7a50ec002539fc16fd9a68fc8443e41c2b9e9999fa88488f1c", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.67355, + "clinical_health": 4.67355 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Complications during breast cancer treatment are also common.", + "media_hash": "4cc940191296ea71ca367eae2eaaf649bdc4b5c228f0e439f33d8606", + "sequence": 53, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "Although the acute phase of the pandemic has passed, COVID-19 continues to pose a considerable health burden.", + "media_hash": "00209ed8c236f2f2bb2fb3e60de55ca46fa581c41d0fc891a9fdb28f", + "sequence": 36, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 4.67355 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "The elderly and immunosuppressed are particularly vulnerable to Covid(Image: Getty Images)", + "media_hash": "02a1bcaac7c64f49fc7ad0920e88f14daa8e29d0cb2c81b6fb6f287c", + "sequence": 32, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits 'unacceptable \u0301 says Cancer Research", + "media_hash": "b2a5a16576d84cce39883c1c04ce9838a53c4668a0e31b61278a3f20", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355, + "scottish_elections": 4.67355 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Other concerning research has suggested that artificial sweeteners added to supposedly 'healthier' fizzy drinks like Diet Coke could trigger type 2 diabetes.", + "media_hash": "a8cba25d0c37b148c02791d8edfc1432c4d69c1343256b53fd97a72f", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 4.52192, + "nutrition_": 4.52192 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "While the pandemic's most severe phase has ended, COVID-19 remains a significant health concern.", + "media_hash": "faf8f03b0283b0d49512dd4b3af893cc01157564e2faa5145498f2a6", + "sequence": 36, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 4.67355 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Others argue that lifestyle changes - like losing excess weight, exercising regularly, and limiting smoking - are effective at lowering the risk of breast cancer, without any of the potential complications of medicines like tamoxifen.", + "media_hash": "d1516345f76738ed908bb528509d8f589685f67955f99656da13a71e", + "sequence": 50, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "lifestyle changes", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.67355 + }, + "demo": { + "health": 4.67355 + }, + "aapfactcheck": { + "health": 4.67355 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Rebekah Law, a breast cancer surgeon at the prestigious Royal Marsden hospital, believes the 45p pill, tamoxifen, should be offered 'in the same way as statins' - the safe and highly effective daily tablets taken by millions to cut their risk of deadly heart disease.", + "media_hash": "a02fd3ad9c421112bceb781befbc7a4dae47dde45f3842fcc25a86e7", + "sequence": 4, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.638815 + }, + "demo": { + "health": 2.502525 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place, including the fact that those who develop it are more likely to see it return later in life, by which point it often harder to treat.", + "media_hash": "a481dc594417db07d9d919981e91eb87a9a1eb08df8ff12b099e8580", + "sequence": 51, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.636725 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.059075 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Significantly, Dr Law argues that any women - regardless of family history or genetics - who is concerned about developing breast cancer should be allowed to request a tamoxifen prescription.", + "media_hash": "f33f9bd039811e418150cbbec1f995d85816f24dc081fdff04ec29ed", + "sequence": 8, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.634255 + }, + "demo": { + "health": 2.6033 + }, + "aapfactcheck": { + "health": 4.209385 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "But in the past ten to 15 years, treatment of some cancers has been transformed by immunotherapy drugs.", + "media_hash": "d1d316e01b1e07b7e5b908de201c061e77dc16f50c93e0da27510a29", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.62122 + }, + "demo": { + "health": 2.8933099999999996 + }, + "aapfactcheck": { + "health": 4.62122 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Cicada's mutations to the spike protein mean that our antibodies take longer to recognise it as the invading Covid-19 virus.", + "media_hash": "525884ad168f1935905d33cdaa088d757afc880829c27ef7538fca8a", + "sequence": 28, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.612785 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6127849999999997 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And there is no shortage of questionnaires and no shortage of influences who will tell you that you have ADHD and you should be proud of it.", + "media_hash": "905062176cab572544256126d5ae872f2d3d89ad9ef2d530be46bc7b", + "sequence": 535, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.612785, + "clinical_health": 4.612785 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", + "media_hash": "7dae7b1b15ddc96c46f5b1aa697bb9261b8fe6a6822e45ecd9017144", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.5769, + "clinical_health": 4.5769 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Experts also point out that, today, a breast cancer diagnosis is not a death sentence.", + "media_hash": "23d2637e97d6c060fc06033e5dc7c914c8f055044348490953030e0a", + "sequence": 47, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.55922 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "This new generation of medicines - including pembrolizumab (used to treat advanced skin, lung, bladder, breast and bowel cancers) and nivolumab (for tumours of the kidneys, head and neck) - work by taking the brakes off the immune system, so it can attack and destroy rogue, cancerous cells.", + "media_hash": "482a4f59d171d90bb558e143ab1065ab491f2b72cb6a70c5c90e00f1", + "sequence": 11, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "It needs to be tight to produce clear images, which are vital to detecting cancer, particularly early-stage cancers.", + "media_hash": "3cb4b06af4b68244d5093639749a4253f8187c94c418ecb695f2aeff", + "sequence": 76, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "This can include conditions like sunburn or long-lasting issues like wrinkles, fine lines, leathery skin and pre-cancerous patches.", + "media_hash": "7adf92d596c4d961ad2b8d2c43da2f7427ac75693cc2f6bf2ffd1fa9", + "sequence": 19, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "Dr Edward Piper, medical director at AstraZeneca UK, said: \"Delayed diagnosis and treatment of heart failure in people with type 2 diabetes contributes to poor long-term outcomes.", + "media_hash": "e27677f9cd397b52222bb5eef789d284026fe93d38a97065dbea5b7a", + "sequence": 20, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "AstraZeneca UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Edward Piper", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Currently, tamoxifen is mainly used on the NHS to treat women who already have breast cancer - or to prevent the disease from returning.", + "media_hash": "211b998194d090768c609cfdd3e4224c34abf59ae2f8658825269962", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.52077 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Influencers are telling their audiences that injectable peptides are the \"glow up potion\" they need for everything from clearing up hormonal acne, thickening hair, relieving back pain and even treating chronic UTIs.", + "media_hash": "1364fb666fb6512c9273c04215cb2441997b9f855d181307a578b791", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Influencers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.799985 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Terry's nails can also indicate other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", + "media_hash": "a88cff4011e787812f74a6214f7d4d4322cc482b8077bd4f8f505c02", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875, + "nutrition_": 4.552875 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Terry's nails can also signal other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", + "media_hash": "928b9def10837496cbde7d7419967b3444fdb4c6d88f156d34e89efe", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "\"There's a tendency to instantly think of expensive IV drips and elite supplements when longevity is mentioned, but fibre is actually proven to balance blood sugar, help manage cholesterol, support healthy weight and even reduce the risk of diseases like type 2 diabetes, heart disease and certain cancers,\" says nutritionist and author Emma Bardwell, who just published a bible on the topic, The Fibre Effect.", + "media_hash": "6d7e8cf167f76f8c92c40c72f92815de00880e2d5548edae1f9d777f", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Emma Bardwell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "nutrition_": 4.52192, + "health": 4.52192 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.552875 + } + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "This can result in ailments such as sunburn, as well as enduring problems like wrinkles, fine lines, weathered skin, and precancerous spots.", + "media_hash": "1e84d9543f253fe4af154eb63127b69c62f9c4422cbeeef7dc3eb584", + "sequence": 20, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", + "media_hash": "76ec4a223ed0db2829b87cfa360ee8c0111f354c2ac98afde052399a", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.552875, + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.400095 + } + } + } +}, +{ + "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", + "publication_date": "2026-03-31T19:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", + "media_type": "news_article", + "sentence": { + "text": "gestational diabetes is a temporary form of high blood sugar that can develop during pregnancy when the hormones block insulin function.", + "media_hash": "00df4fa13c1c9e7e95bf7aa77617a0e02bcbb4a2e8aa4f88064cafdb", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.552875, + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Research has linked nanoplastics to cancer, though the International Agency for Research on Cancer (IARC) has not yet classified them as carcinogens.", + "media_hash": "2e296da0f96f6256dd7018c42a689d3949e89edfe667bb7678876c05", + "sequence": 51, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "politics_of_food": 2.5528750000000002, + "environment": 2.5528750000000002, + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "These peptides, intended for research purposes (as some influencers do point out) and not approved for human use, are being increasingly sold through unregulated online channels.", + "media_hash": "64bcd50713d9ca2f6c0360e4535b85c40b9423613eb9917b51914d67", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Whilst further research is needed to understand the link between a lack of sleep and diabetes, the researchers highlighted other studies that have linked sleep deprivation to high blood pressure, heart disease and stroke.", + "media_hash": "c8ac1d5279f679900f8ec8681992c2ea5448663f4dcf8252d05cc3b9", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.52192, + "nutrition_": 4.52192 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The treatment has had a major impact in cancers such as malignant melanoma, an often lethal form of skin cancer, for which there used to be little treatment.", + "media_hash": "1e9c33929269b7ca9e579abadb9a1dd2c4922fd6a965104e92664862", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The major change coming to food in California grocery stores under new law", + "publication_date": "2026-03-31T15:06:39", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694623/major-change-california-certified-ultra-processed.html", + "media_type": "news_article", + "sentence": { + "text": "A growing body of research has linked them to chronic diseases, including obesity, cancer, heart disease, type 2 diabetes and metabolic problems.", + "media_hash": "b89fa23ee22223940bb86dcf42bd3ac3ca73b89e70f4d133b9e9ed58", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.52192 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Padmaja Pater, president of the ALCM, said: 'Too often, chronic disease like type 2 diabetes is managed as a condition that patients must live with indefinitely.", + "media_hash": "6fd750a73bc8ca2193d19e311626397aad736adaf77842b9f89de853", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "ALCM", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.128005, + "nutrition_": 4.128005 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Children get infections all the time but this might be something to do with the fact that they have never been exposed to Covid vaccines.", + "media_hash": "c666efd2f3bad745c21161845a35768f2a0baf8708c07ec5a44a8ce7", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Brits urged to change the way they wash clothes as 60C may not be safe", + "publication_date": "2026-03-31T02:47:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", + "media_type": "news_article", + "sentence": { + "text": "One of the main concerns is norovirus, which can remain on clothing and fabrics for up to a month in virtually any conditions.", + "media_hash": "204ec55aaee96bb825a57f329baea3e4ba3be1598cf4c3bc0bbe84ca", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iconic San Diego beaches that sit close to Tijuana closed over dangerous levels of SEWAGE in its waters", + "publication_date": "2026-03-31T14:27:44", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694455/san-diego-beach-tijuana-coronado-sewage.html", + "media_type": "news_article", + "sentence": { + "text": "Hydrogen sulfide can exacerbate existing conditions, including asthma and chronic pulmonary disease.", + "media_hash": "9f0c0612b173022bd7914befcef2089b88b5afa04f80f0758356c098", + "sequence": 27, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "environment": 2.6735499999999996 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Bonning says injectable tanning peptides, which have also been spruiked online, carry \"... a risk of it causing skin cancers, and there are also reports of significant kidney dysfunction and swelling of the brain after taking that kind of injectable\".", + "media_hash": "d214bcf259c0fd0940249dc63b8466532ad676c8533c61072b8a5de4", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Although cancer cells do already produce antigens, they often give off a weak signal, helping the tumour to escape the full force of the immune system.", + "media_hash": "aaeb6194f6a8ce75abf8baacb820bc145a32383f876003ce693b034c", + "sequence": 28, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5528750000000002 + }, + "aapfactcheck": { + "health": 4.128005 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "He said young children could have early anorexia or avoidant/restrictive food intake disorder (Arfid), characterised by limiting food type or quantity.", + "media_hash": "e316564c520f4935915e53e0998f7d90d4ba2ac7f6924ccd609a87a4", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Lee Hudson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875, + "leo_s_topic": 4.552875 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "But Ms Yau said: 'Heart disease is characterized by high blood pressure, a weak or irregular heartbeat, and red streaks of haemorrhage.", + "media_hash": "785b97c103eddfc83ae5dd517819d797c9d8473ea7b6575f9f271ca2", + "sequence": 98, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Marion Yau", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Heart disease", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104414, + "score": 0.19310000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.552875 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", + "media_hash": "579099884d4c68a64ea4805872cc92ae909f47d701aec1d53178d5d5", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 45085, + "score": 0.06908734046502547 + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.552875, + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (\u03bcg/g), which England and Wales have since adopted.", + "media_hash": "c41dda165efcd05ca3f64ffc2790f54ac233f79e2d2f7d3931313602", + "sequence": 45, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "\"Analysis has shown those aged 75 to 79 already getting the vaccine are much less likely to be hospitalised.", + "media_hash": "e4184d47d8c64e4e8b497467496a97399cafad48f48424c97b0f9cd9", + "sequence": 19, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Health Minister Stephen Kinnock", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 3.5163600000000006 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.5163599999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations, according to research.", + "media_hash": "89aad31070f38e288b3bb8fd141248d2065e7fcb04084033f885ef8a", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", + "media_hash": "75bd15cfe91e0e65733c558e2de5758cf08ff58f3094468f3aee3276", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945, + "scottish_elections": 4.545945 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "However, crucially, they have not yet detected an overall increase in COVID cases there compared to previous years.", + "media_hash": "da21979541b94ef81f0c40955f0b584cecabba9d123ab928f7cabd40", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centres for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", + "media_hash": "495b0535e398cdee5acd61ae8d7aef1ec7fd9463a572e5f7e7cb441b", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", + "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", + "media_hash": "5e14b797cb604f60f17ac178f6ca87ee0363656ecceb406b0e31e197", + "sequence": 203, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Scientists reported in the journal Bioresource Technology that CBA3656 absorbed 57 percent of nanoplastics in intestinal fluid to mimic the human gut, outperforming other tested strains by as much as 19-fold.", + "media_hash": "8b40ae139202ea49d125e45005a0e84c224e347d10d9072b7306a8e7", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Se Hee Lee", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "World Institute of Kimchi", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945 + }, + "demo": { + "politics_of_food": 2.5459449999999997, + "environment": 2.5459449999999997, + "nutrition_": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "However, crucially, they have not yet detected an overall increase in Covid cases there compared to previous years.", + "media_hash": "3d9871f8923409fe7c7b2d2b2c4a09d41684065998c74beafbe98ee1", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "Analysis published last March by UK Health Security Agency (UKHSA) showed there were 30% fewer hospital admissions among 75 to 79-year-olds as a result of the RSV vaccine.", + "media_hash": "99f417d1af982d9de7fb1c4ec13149e33860633d97bdf6b217d3c56e", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.545945 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The 65.5% uptake figure for Wales highlights that there's still an opportunity for more people to take part in bowel cancer screening.", + "media_hash": "7f9c19de4275ae3b7583b1420aa2834c87752f5c458a3f45b03466b2", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "The study, which began more than three years ago, involved more than 700 people with diabetes from the two health board areas who had at least one other risk factor for heart failure.", + "media_hash": "03ba4c34a3dbff9ecf1dbfaa760a4ae72b65833511357757aa413636", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545945 + } + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Their role is to amplify the garden's message of confronting the silence that costs the lives of 21 women a day and spark conversations with visitors about women's gynaecological health to reduce the stigma and silence about the deadly cancers.", + "media_hash": "4f0058f773625a777f2cc42c98e45cf6cfdb2e564ab1f3a87425812e", + "sequence": 4, + "claim_type": [ + "correlation", + "opinion", + "support" + ], + "claimer": [ + { + "name": "Lady Garden Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.545585 + } + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "Experts from Cancer Research UK and the British Association of Dermatologists recommend adopting sun safety measures between March and October.", + "media_hash": "0405d41b251fbece1d139dbbb22c83a9e1d0f8e957648e1c14a8731d", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Dermatologists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.53726 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.53726 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "media_hash": "640c75d18782c257ba6a671d212455cbf8605fad8538f5d9a16c2def", + "sequence": 0, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.53232, + "clinical_health": 4.53232 + }, + "demo": { + "health": 2.5323200000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5323200000000003 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", + "media_hash": "7321467dbae8b34f32354179b19b9f5b50f626fb02543aabc4e3c615", + "sequence": 213, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52192, + "senedd_election": 4.52192 + } + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Health officials are monitoring symptoms linked to Covid-19 as a new 'cicada' variant spreads amid warnings it could disproportionately affect kids", + "media_hash": "45c7a8e69fb38c680bec2dd6f9d4a218f74e3616299b1bd18e54c78d", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52192 + }, + "demo": { + "health": 4.52192 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.52192 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Dr says new Covid Cicada variant 'detected in UK' could 'avoid immune system' - symptoms", + "media_hash": "0c68a972eac5d4672e84495f6aec98508923dc1fc1c4dc6b063a3101", + "sequence": 9, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52077 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5207699999999997 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "The National Health Service (NHS) identifies the following as potential symptoms of COVID-19:", + "media_hash": "96ffaca44d7623e88e5bc9324531872ca2f1835b99cd1fa7dd295a55", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52077 + }, + "demo": { + "health": 4.0959 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Health officials have warned of red flag symptoms of a new Covid-19 variant set to sweep Britain.", + "media_hash": "5f61a8c422f17a16d05434849300498cd23cbe22b53fcbe0c254a79f", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Health officials", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.52077 + }, + "demo": { + "health": 4.52077 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.52077 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Law concedes that, since, historically, tamoxifen studies have only involved patients over the age of 30, there is currently no data on how effective it is at preventing cancer in younger people.", + "media_hash": "3c4dc7cec29481f7b493f745c1c9da684c2302122cf83a4407c6e5fc", + "sequence": 43, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.498455 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "It was the second time Woods has been arrested for a DUI not as a result of the influence of alcohol.", + "media_hash": "e12f73d9b24b0ae2aac27c996084c6343d929e46a8424edf85a00ed9", + "sequence": 35, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.486035 + }, + "demo": { + "health": 2.712725 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "Ireland is \"no better prepared\" for a pandemic than it was six years ago, a panel looking at the country's response to Covid-19 has heard.", + "media_hash": "12ebbadc3fdf0f4a43591a224749ce372cfe95bbfcc874df9916edcc", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Ireland's Covid-19 Evaluation Panel", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "NHS sonographers who carry out scans at 12 and 20 weeks of pregnancy and help diagnose cancers, warn that one in four job posts are currently vacant across England at a time when the NHS is already under acute stress.", + "media_hash": "c1001be9a578e8e38bf1b73d01aa90c90992e27035a9c99b3b729682", + "sequence": 343, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Society of Radiographers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.486035 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Unlike statins, which have to be taken for life, Dr Law argues that patients only need to be on tamoxifen for five years in order to lower their risk of breast cancer for the following 20 years.", + "media_hash": "c057689de2e86f933ea1622ca2a428bb3f5a0be4db8a9b31fcce6b73", + "sequence": 9, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.483945 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", + "media_hash": "038f920dcca94e97602d994e708b20f84cf4eb9d35cd41338d62ce52", + "sequence": 8, + "checkworthiness": { + "fullfact": { + "clinical_health": 4.460005, + "scottish_elections": 4.460005 + }, + "demo": { + "health": 3.02204 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How one family's bipolar disorder experience led to...", + "publication_date": "2026-03-31T04:06:51", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", + "media_type": "news_article", + "sentence": { + "text": "\"It \u0301s much more like a wartime economy.\"", + "media_hash": "724c7c97ac63519c78526d15fc06ed6ecb2c35720b73abc91d178382", + "sequence": 45, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.45262 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And yet, it seems that that vast numbers of young people are doing exactly that with conditions like autism and others.", + "media_hash": "0edbb53487d30b058dfa3c2894d884ac7c02394a0c79f07d2df0bb43", + "sequence": 532, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.440635, + "clinical_health": 4.440635 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", + "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", + "sequence": 42, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.429455, + "scottish_elections": 4.429455, + "clinical_health": 4.429455 + }, + "demo": { + "health": 4.094984999999999 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.429455 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "'Tamoxifen should be offered in the same way as statins to all women at risk of breast cancer ,' she says.", + "media_hash": "1d0af0ed83134bedf033a22367fa2775a192a9dab7a216f48add742f", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.4165849999999995 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.4165849999999995 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", + "media_hash": "06b97deea0fcf270783faff33af386a35a7393efaf7c471d5f1b7536", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.409655, + "leo_s_topic": 4.409655, + "health": 4.409655 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "This five-minute procedure is used to detect human papillomavirus, or HPV, which can cause cell changes in the cervix that may develop into cancer - it's offered to women aged 25 to 64 in the UK.", + "media_hash": "df3630248fdd50b4787bcaa77f077ffd62cf6450b48dfe85105f5237", + "sequence": 108, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.40644 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "The soap star, who played Liz McDonald on the ITV programme on and off for 30 years, revealed earlier this year that she had been diagnosed with the early stages of breast cancer and underwent her first bout of surgery shortly afterwards.", + "media_hash": "0b7fe64897d7507fd6dfe29013a5e4e00a97be6ca930ca883c09fa58", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "In many cases, Terry's nails suggest a chronic condition, such as liver failure or diabetes.", + "media_hash": "abda2723953674ca5198332da5223520b96fe47e18af9b947c132812", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 4.400095, + "nutrition_": 4.400095 + }, + "pa-media": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'I caught meningitis on Tenerife holiday - I would've died if I got on flight'", + "publication_date": "2026-03-31T07:24:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/i-caught-meningitis-tenerife-holiday-36946555", + "media_type": "news_article", + "sentence": { + "text": "Jade also plans on making a donation to Tommy's Journey, a fundraiser for a five-year-old boy from Sale suffering from an aggressive form of cancer.", + "media_hash": "e16417bf0e6aae78e332d4252e8c6382e415cf8df234af7e3e60b647", + "sequence": 27, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "measles": 0.0 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "In many cases, Terry's nails indicate a chronic condition, such as liver failure or diabetes.", + "media_hash": "b49d356d6bda79f98e228eb1923ec76efcbbda24452269a62259920c", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 4.400095 + }, + "pa-media": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:59:00+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/Daily_Record/status/2038903878490452388", + "media_type": "social_post", + "sentence": { + "text": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "media_hash": "4cf6de275f959c74563473fbdfb59f24c945580dbadc697442e8d8d6", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "health experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "The government published its National Cancer Plan in February this year, promising to embrace a robotic revolution to boost survival rates.", + "media_hash": "6ee28ed7e82a76a8c93be2bcfca523e33789c49ffd82b4ecdf63d849", + "sequence": 19, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.400095 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "This patient would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", + "media_hash": "177ad0d1b2af1026dde4d8f0089bd929a5e21c3502de97db55c0f6f3", + "sequence": 40, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.400095 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "This 'patient zero' would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", + "media_hash": "ee6a9aaff681cadbe524257c766e41c05ae113a913cdf5f53ac8b35d", + "sequence": 14, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.400095, + "clinical_health": 4.400095 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "\"And the evidence is clear that the RSV vaccine offered to pregnant women is providing excellent protection to babies. When you are offered the vaccine, don't hesitate.\"", + "media_hash": "28032e6d2ceeee653de8640c51252ab7c499acdb35ebb611629821c3", + "sequence": 20, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Health Minister Stephen Kinnock", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 39499, + "score": 0.5116 + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.38448, + "clinical_health": 4.38448 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "More than a million people with heart disease are set to be offered weight-loss injections on the NHS in a major shift in how the condition is treated.", + "media_hash": "02dabaf61f79bd217821d190381fc1f460e80836e7d2910f2dcd696b", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.377125 + }, + "demo": { + "nutrition_": 3.19476 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer.", + "media_hash": "872e531b2708231aa70d6b59ed5855be5a66537c2f03e3d87e297813", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.36914 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "publication_date": "2026-03-31T10:31:24", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", + "media_type": "news_article", + "sentence": { + "text": "Kimberley said: \"So just to make this clear, had you not been offered that trial that day, you potentially would not have found out that you had breast cancer for maybe another 10 years. Which is terrifying, but also amazing. Like, this is what this is all about.\"", + "media_hash": "3e3ba83149d3379d109b15f750c1cf9a67a77e755ca313df25ed8ca3", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kimberley Walsh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.36914 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Finnian Garbutt, 28, shares heartbreaking message as he enters 'last stages of life'", + "publication_date": "2026-03-31T17:10:48", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/finnian-garbutt-28-shares-heartbreaking-36950963", + "media_type": "news_article", + "sentence": { + "text": "The actor, 28, who is best known for playing Ryan Power on the BBC drama series, is currently battling Stage 3 skin cancer.", + "media_hash": "ca22978bd841b51471e0f1b41be340c3cce19f90702d4a5101b9f8b6", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.36914 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "The Covid cicada variant is sweeping the UK as a leading microbiologist who is analysing the BA.3.2 strain here tells the Mirror it could disproportionately affect children", + "media_hash": "082a7c8a6d5b9706f465adf87e5aca8d4a2d26d24d534c28f2e2d523", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.36914 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "They say this is leading to pregnant women and cancer patients facing delays for vital ultrasound scans, which could be really dangerous for the patient.", + "media_hash": "16c7d8c509fba7f3343a1875927b38adb2aadf8852f58125db5c2deb", + "sequence": 342, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.36914 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "Now, though, a large trial has shown benefit in 3,655 people who hadn't previously had a heart attack but did have type 2 diabetes.", + "media_hash": "625fca8a9a532f3d42d44d3d0eff6c124a3c704cf86342f9aab8700c", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.347765 + }, + "demo": { + "nutrition_": 4.772635, + "health": 4.772635 + }, + "pa-media": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "\"Bowel cancer is Scotland's third most common cancer, but screening is one of the best ways to spot the disease early or remove polyps that might develop into cancer.", + "media_hash": "9bc4f232db2b6808817b36168af7f2e83c6d012ab0bb14ae4680597a", + "sequence": 62, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.33462 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "The need for better ways to prevent breast cancer is clear.", + "media_hash": "85fd1d2bdee2b581bddadcc3adbeedf87599c9fc9c1b75782516d9d2", + "sequence": 25, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.3342600000000004 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.3342600000000004 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Writing in The Lancet's Diabetes and Endocrinology journal, the researchers said: 'We believe it is possible to view this as closely linked to societal changes that may be more conducive to developing diabetes.", + "media_hash": "2a140629962e95eed77885c23fc76893fa285dd857b8b208824b5193", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.326185 + }, + "demo": { + "health": 4.326185, + "nutrition_": 4.326185 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "And it's also partly on the edges at least to do with weight loss drugs that companies that supply packaged goods like Unilever believe that their market is likely to be damaged as the widespread use of weight loss drugs means that consumers are likely to buy less of their products.", + "media_hash": "c8296cacb46351cad17a779170e511cac00e7ddc1258a4d69c215ad6", + "sequence": 2897, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.326185, + "leo_s_topic": 4.326185 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", + "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.326185, + "scottish_elections": 4.326185, + "clinical_health": 4.326185 + }, + "demo": { + "health": 4.326185 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.326185 + } + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "The consultant paediatrician Dr Lee Hudson said eating disorders had become more common but pointed out that the term covered a wide spectrum of conditions, not just anorexia.", + "media_hash": "920c7aee1e917cb033ba29f58b8c3d2cd1eb86c2bce6c6c86b750511", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Lee Hudson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.326185, + "leo_s_topic": 4.326185 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T00:11:17+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038771073668321334", + "media_type": "social_post", + "sentence": { + "text": "Urgent flu warning issued to Aussies after worst year on record killed 1,738 people https://t.co/EE6Qr45J65", + "media_hash": "e603ebea196d5a68f91faaaabd9f459bfdda00a866b072f385a691ab", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Aussies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.31818 + } + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Prof Gupta was leading part of the research group which reported the first evidence for immune escape for Covid-19 during the pandemic.", + "media_hash": "21e6502496ca69e88f9a5f0d8f725a8d3b6f3c8eece8796ccff24f83", + "sequence": 34, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Health officials", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Professor Ravi Gupta, of Cambridge University, who advised the Government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", + "media_hash": "94a49698e085cda227aea8b3757edbb86d53e43198bd83577293ae86", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "leading microbiologist", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "New and Emerging Respiratory Virus Threats Advisory Group (NERVTAG)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.287855, + "clinical_health": 4.287855 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", + "publication_date": "2026-03-31T11:59:42", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", + "media_type": "news_article", + "sentence": { + "text": "New 'Cicada' Covid strain spreads to 23 countries as UK health chiefs on high alert", + "media_hash": "43264da16d5c230f7d1d985bbf03326aca7942866160dff6c77bb775", + "sequence": 7, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "UK health authorities are monitoring the BA.3.2 COVID variant, dubbed the 'cicada' strain, which has been detected in at least 23 countries and is likely already circulating at low levels domestically", + "media_hash": "8c13dfce6a648ad0fe86f3eb16775662192af65226796866111d2a47", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "UK health authorities", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855 + }, + "demo": { + "health": 4.287855 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.287855 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Ed Davey, leader of the Liberal Democrats, which analysed the NHS England data, said: 'Like millions of people, my life was turned upside down by cancer, which took both my parents when I was young.", + "media_hash": "c9950544a67566d548ba316173dc533829ee47f9c49d9069fdd39290", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.287855 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", + "media_hash": "2095563abb1714ac6f688e6064acef4015abf0f35a5e22fdcc7055a6", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855, + "scottish_elections": 4.287855 + }, + "demo": { + "health": 4.712725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", + "media_hash": "78f07ccb46438e4c9836e219a4283f95a83723e85f0fcc360797dede", + "sequence": 28, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855, + "scottish_elections": 4.287855 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", + "publication_date": "2026-03-31T20:19:52", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", + "media_type": "news_article", + "sentence": { + "text": "The influencer, 43, has amassed a legion of followers on social media over the years, and documented her husband's battle with cancer online.", + "media_hash": "e1e1f7e915a2f825ba198c043571fe92de8ef95f462657d587bb1a20", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.287855 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "In some cases, it is offered to women with a strong family history of the disease or cancer-causing genetic mutations, to prevent the disease from occurring.", + "media_hash": "640fa051e40b7d458e2219c252fa62f76528a399bd26978009f90c90", + "sequence": 6, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.285765 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.860895 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "So because somebody's declared that they're autistic, or have autism, it doesn't mean that they necessarily should qualify for support.", + "media_hash": "a1631baf184f32fd5d36dce066b7ae27d1235c6013ef6c7d9bca0f7d", + "sequence": 540, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.273495, + "clinical_health": 4.273495 + } + } + } +}, +{ + "title": "'Sending the King to the White House is a risk the UK does not need to take'", + "publication_date": "2026-03-31T18:01:28", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", + "media_type": "news_article", + "sentence": { + "text": "'Covid may not dominate daily life - bit it still demands respect'", + "media_hash": "28464c538e9d099eaf1014c15ad4b92c713da3a29675f36f47c105e3", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.24868 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "However, speaking exclusively to the Daily Mail at the European Breast Cancer Conference in Barcelona, Dr Law argued that women with an increased risk of the disease - such as those with a close family history of breast cancer, for example in a mother or sister - should be offered the chance to take tamoxifen.", + "media_hash": "f11c54eaae8e41242560eef7cff9663e195027ae4d49454c047d5338", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.23285 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.263805 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", + "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", + "sequence": 43, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.224345, + "scottish_elections": 4.224345, + "clinical_health": 4.224345 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "Specialists from Cancer Research UK and the British Association of Dermatologists suggest that people should take sun safety precautions between March and October.", + "media_hash": "f87a5f5924f1826a804aa2583f262abe8068bbee325fd62b46d03370", + "sequence": 22, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Dermatologists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.21566 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Where Street in the Health Secretary was one of those who came out, you might remember, fairly recently, end of last year, and said he thought that was going on. He thought that was part of the problem. He launched a new a review, um, to investigate why there was such an increase in demand for mental health services and conditions, um, like ADHD and autism. And that review has concluded today that the people are being overly incentivized. That's the word that it uses to go and get diagnoses with ADHD and autism. And that there has been, what the review called, a medicalization of distress. Which is a sort of scientific academic way of saying that too many people who are just going through the normal ups and downs of life are being told there's something clinically medically wrong with them. So maybe they're very anxious because they live in poverty and they've got an unstable job and they worry about how they're going to pay the rent at the end of the month. In which case, I would say almost, it would be strange if they weren't feeling anxious all the time. And yet in the modern world, perhaps they go to the doctor and they get told you have anxiety, you need pills. Or perhaps they go through a very difficult time, a divorce or bereavement and rather than just being told, look, yes, you feel very sad, but that's, it's difficult, but it's normal. They get told you have depression or you have this condition. Here is some tablets.", + "media_hash": "0552de818c15b72fa0a0b7dcfcbbc0f875d9f7f0bc3f84c1e74da46f", + "sequence": 486, + "claim_type": [ + "correlation", + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.213585, + "clinical_health": 4.213585 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "A new COVID strain, which has been named after an insect, is set to become dominant in the UK and could disproportionately affect children, a leading microbiologist has warned.", + "media_hash": "b645795cef0c58193379d15b79a38de76d6db77d3f753299693ef628", + "sequence": 2, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "leading microbiologist", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.1991700000000005, + "clinical_health": 4.1991700000000005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Well, I mean, that is true about insulin and diabetes, that is true. Um, but you know, if a child is unable to read, then you don't need a diagnosis to understand that that particular child needs support.", + "media_hash": "dc612f7e8cc01c7427c3560cd1ca089345597c01122a18df6a0562ac", + "sequence": 490, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.187915, + "clinical_health": 4.187915 + } + } + } +}, +{ + "title": "'Sending the King to the White House is a risk the UK does not need to take'", + "publication_date": "2026-03-31T18:01:28", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", + "media_type": "news_article", + "sentence": { + "text": "The emergence of the Cicada Covid variant is a stark reminder that this virus has not gone away.", + "media_hash": "d30cf2d53f1aea04f5cedda622df9f7838961472d95df3478e7f9e89", + "sequence": 18, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.187915 + }, + "demo": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Scientists say cicada spreads faster than other variants and one of the country's top microbiologists has told of emerging evidence that it could spread most in children who have no Covid immunity - which could drive a new wave.", + "media_hash": "30575290b1a45b3fa75cd9e1cfc55fe1bc84546e08a8d1f26ac9565c", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.173405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "When researchers tested the same particles in zebrafish, they watched the cancer spread faster in real time.", + "media_hash": "b0f4dc13bc6f7e4a7965723a2fe2a4f1dbfe8144098ebadb02e83d94", + "sequence": 54, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.173405 + }, + "demo": { + "politics_of_food": 2.598275, + "environment": 2.598275, + "nutrition_": 2.598275, + "health": 2.598275 + }, + "pa-media": { + "health": 2.598275 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", + "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", + "sequence": 35, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.173405, + "scottish_elections": 4.173405, + "clinical_health": 4.173405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "US scientists have recently raised concerns that the current Covid vaccines may be less effective against this new variant.", + "media_hash": "e6d2c12b741e4d8f3c448e4bd9cd7bcbea1fb9aea68301cd8192e3a3", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "US scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.173405 + }, + "demo": { + "health": 2.71895 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", + "media_hash": "4054ce172dbafe0019c7cc7c4854f178d6e0e230f1f21e07050f54ab", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.173405, + "scottish_elections": 4.173405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "Something interesting about MS is how much the symptoms fluctuate.", + "media_hash": "ff17cfb60194960da02fc5d89d2e5288ff71e0f4f466cf38066e0444", + "sequence": 19, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.15696 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "'That's why the Liberal Democrats will make improving cancer care a top priority, and fight every day for better care for you and your loved ones.", + "media_hash": "df42cf3b0cb46d6b3a30cd14a6005b0a885e6bce1b976ce501237fee", + "sequence": 12, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Ed Davey", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.154895 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "US citizens have been urged to stay vigilant after a new COVID-19 variant has been detected in over 24 states.", + "media_hash": "022d42cb1b8f4375da83e95ab30b6efa00cb8252db4867e4ad0a8485", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.151565 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "But at the same time, it chemically reprogrammes cancer cells so they proactively attract the attention of killer T-cells.", + "media_hash": "4142719a15f6ca47917c999a3009330649cda4fa6f00e1ef8420d725", + "sequence": 26, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", + "publication_date": "2026-03-31T11:59:42", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", + "media_type": "news_article", + "sentence": { + "text": "UK health bosses are keeping a close eye on a new Covid variant dubbed the \"cicada\" strain that's spreading like wildfire across the globe.", + "media_hash": "f8be413834492238ed23b7db05edcbae923016c347b0ae2aa5e299a8", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "UK health bosses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Children get infections all the time, but this might be something to do with the fact that they have never been exposed to COVID vaccines.", + "media_hash": "f8d18104b7f19469a84bd1750ca6dc8645b4c0862f4ed088dc0ab961", + "sequence": 20, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.128005, + "clinical_health": 4.128005 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Plastic surgeon Richard Wain, an expert in skin cancer, said: 'It can happen in any nail - on your hands or feet - and unlike other forms of melanoma, it's not related to UV exposure.", + "media_hash": "0f33fb1e4f1cb77296624351fc56e4c6ce8f33545f7206a5f697ae28", + "sequence": 52, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Richard Wain", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Similar to earlier versions, it contains alterations to the virus's spike protein - the component which allows entry into human cells - potentially influencing both its transmissibility and its ability to bypass existing immunity.", + "media_hash": "58425ecf33ddaac9e4853ba640cb81fc8f26629da94968216e82d81c", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "They can differ from person to person and may improve with rest, fluids, and over-the-counter medicines.", + "media_hash": "81fa15761df1f6bd44dfbeaad261b2655b7d340962c27e0ce74c4ad5", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "'We believe remission for type 2 diabetes and many other chronic conditions should be the North Star outcome guiding care.", + "media_hash": "1296cf36181aa5e81180d9533c37850ec7c07df6874dc596baf1ecd5", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Padmaja Pater", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 4.4165849999999995, + "nutrition_": 4.4165849999999995 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Many will be familiar with the effect of the very well researched glucagon-like peptide 1 (GLP-1): \"it's what's made Ozempic and Wegovy and Mounjaro so fundamentally different to other weight loss drugs,\" says Bonning, who is the chair of public health for the association.", + "media_hash": "f29935e42661247708872b99d0863819c11f370ca7e97aacf6041d25", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.128005 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Children are being incentivised to get diagnoses for conditions like ADHD and autism", + "media_hash": "32ec66e96c42dc43fe937b309bc2c0766b38980549ebdd518ccbc0a5", + "sequence": 41, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.128005, + "clinical_health": 4.128005 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "But in rare instances, cancer is discovered.", + "media_hash": "dbdd189cb60a6626d42817d83f53c1e8549aeadeebc17384459cdc95", + "sequence": 55, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Richard Wain", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 4.128005 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "'Phytoestrogens mimic oestrogen in the body and dock onto oestrogen receptors to help modulate oestrogen dominance, which has been linked to breast cancer,' Johnston explained.", + "media_hash": "8aace69b4cc76edbc226372c833aad2be691319a35a98fa00fed1ee3", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.128005 + }, + "demo": { + "health": 2.5528750000000002, + "popular_media": 2.5528750000000002 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Vernon Kay said \"As a man with many important women in my life, it's vital that I understand the language, symptoms and warning signs around gynaecological cancers so we can have open conversations and encourage early detection. These cancers affect half the population directly, and the other half through the women we love and care about. It's time to bring these often-overlooked cancers into the national spotlight and give them the same awareness and attention we've seen with some men's cancer charities.\"", + "media_hash": "563047c3621a2351189f4e614de94240abea07854056b657b043bf8f", + "sequence": 11, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Vernon Kay", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.1233249999999995 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "The Liberal Democrats are campaigning for a guarantee that every patient starts treatment for cancer within 62 days from urgent referral, with this right written into law.", + "media_hash": "0344a9e0784c2e74311cefb95bf3a0f80cf04e49a683a4e9f178362c", + "sequence": 16, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.118985 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.982695 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", + "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", + "sequence": 986, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.10166, + "senedd_election": 4.10166, + "scottish_elections": 4.10166 + } + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "Woods, who has been involved in other crashes over the years, is charged with driving under the influence, property damage and refusal to submit to a lawful test.", + "media_hash": "890e00e0c450f1e37930f8929c8144ab5a63f4fb9a1bf267d340bb1e", + "sequence": 19, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.10166 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", + "publication_date": "2026-03-31T04:47:11", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", + "media_type": "news_article", + "sentence": { + "text": "She said after going public with her complaint, other individuals contacted her to report similar experiences of trolling and harassment involving the same doctor during Covid.", + "media_hash": "2862da807c32aa60b1e45ae4d59f26b6b09b60caa20da6869db8667f", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", + "media_hash": "1197ec5dba4741ad33a06fc85c2329dda8148771307400261972f525", + "sequence": 721, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.061165, + "senedd_election": 4.061165, + "leo_s_topic": 4.061165 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", + "media_hash": "7380b00349ad3920fad3371d5226a200ec016b157901cee9997c229e", + "sequence": 32, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "clinical_health": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", + "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", + "sequence": 41, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.061165, + "scottish_elections": 4.061165, + "clinical_health": 4.061165 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", + "media_hash": "d6dea1a7a319f23285c793b94df609d492d2446fc48dc2636e92b533", + "sequence": 2, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.27569999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.059075, + "scottish_elections": 4.059075 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "A new Covid strain named after a tropical insect is set to become dominant in the UK and could disproportionately affect children, a top expert says.", + "media_hash": "c4867c08b7644fc33e793fc2cf9d8df9d4651c6853e8c648e4fd7de3", + "sequence": 2, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.04754 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place.", + "media_hash": "f4ec42a50a3a62b0d41da0d719155b9a546c7a4c933338900ed5f798", + "sequence": 51, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.013675 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "A cheap fermented vegetable and staple of Korean cuisine may help in combating a build-up of harmful microplastics linked to heart disease, cancer, inflammation and brain damage.", + "media_hash": "55c06f7fcdd0c9d41ab2e31fc799803cc30d0755ef7b9776d7c5c20a", + "sequence": 1, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.0067 + }, + "demo": { + "politics_of_food": 3.0067, + "environment": 3.0067, + "nutrition_": 3.0067, + "health": 3.0067 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "So when you hear words like ADHD and autism and it's like the cost it's the benefits bill.", + "media_hash": "e92237f644bd18d85cabaf8b2544c1009c047eb5c6a77f53bf3129c9", + "sequence": 659, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.006385, + "clinical_health": 4.006385 + } + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "In How Not to Take Supplements, the dietitian reveals how many products are missold to consumers, with some containing far less of their key ingredient than advertised.", + "media_hash": "af0d1feac95a4f3d00159f1ee819fcb67fae6dc08e56175237309fb6", + "sequence": 4, + "claim_type": [ + "correlation", + "support", + "other" + ], + "claimer": [ + { + "name": "Josie Porter", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dietician", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.986895 + }, + "demo": { + "health": 4.53244 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Death hunted him since he was a kid\u2019: how Lamar Odom survived to become a villain in his own tale", + "publication_date": "2026-03-31T12:11:01", + "publication": "guardian", + "url": "https://www.theguardian.com/sport/2026/mar/31/lamar-odom-documentary-nba-basketball", + "media_type": "news_article", + "sentence": { + "text": "His father, a heroin addict, has largely been a background character in Odom's life, and his mother died of colon cancer when he was 10.", + "media_hash": "a3b81599202a4fae0d5800c5f46d8498728209d3d6b0ab0992ad8435", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", + "media_hash": "0376c712fb7da35ef601cb6ab92ed7b92da964c028b8a5902942962d", + "sequence": 46, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Genevieve Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Separate laboratory tests on human breast cancer cells produced similar results, with the vaccine resulting in their complete destruction.", + "media_hash": "2ca1956de63dd7cd303cff76b72e210dfbd4eee1461cca8fe9188202", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "She can tell that she lost performing and then she got ill and cancelled the rest of that tour, there was covid and then she cancelled it and there's sort of people being, she had a couple of, um, appearances since then, that the Paris Olympics and she was at the Grammys presenting Taylor Swift with the album of the year for Midnights that year.", + "media_hash": "1061cfe823a55308a9370b32bd13ff7e710b0754d1f23e29ce834f07", + "sequence": 1079, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Lisa Verico", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "It involves a speculum being used to hold open the vagina, then a hysteroscope (a telescope-like device, with a camera and light) being inserted through the cervix (the neck of the womb - a narrow space, which can sometimes be very rigid), before fluid is pumped inside to distend the womb to make it easier to see what's going on.", + "media_hash": "b724c7d3326cf6bc48b1361a12bd7de3246d0da5f63b825766e16ece", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, in heartland regions such as Anglesey (Ynys M\u00f4n) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", + "media_hash": "8ec504c78c4850ebad34b6394d97b1703c8b1447ea2580eb0eb21304", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Cancer was later ruled out, although doctors were struggling to test Ronnie's bone marrow as it was so sparse.", + "media_hash": "2ff0801a62639b97a765394a80f596bf94e98748936ea3ad966daa73", + "sequence": 14, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Ed Davey, leader of the Liberal Democrats, said it is 'heartbreaking' to see how many people are forced to wait too long to start cancer treatment.", + "media_hash": "5e3ec6cc188d925774b147c7d126d7e492214aa1f4cd9dfc8264f98b", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "The businessman, who was 21 years Lorna's senior, battled stage four adrenal cancer after being diagnosed in April 2023.", + "media_hash": "e0165bbb013a1bcab05a2c8df2523fc21d0112c8079a839026a020f9", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "media_hash": "c01672bdb46257639cc06d39ee6abb723180920bf27b6777e3555636", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", + "media_hash": "3c6d02636919a130275f51d1f229b8abd9eb72701e3f61f9fe2ea444", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Michelle Mitchell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "There is maybe a small segment of the population, typically very affluent families, who can afford private healthcare, who do seek these diagnoses specifically.", + "media_hash": "1268d7388cbd4956bf068bdf53e43a0fb7285a31caee58f6a2e66b44", + "sequence": 548, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.975225, + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", + "publication_date": "2026-03-31T11:59:42", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", + "media_type": "news_article", + "sentence": { + "text": "READ THE FULL STORY: New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "media_hash": "144f7a9c8cd5f15438d7926ea3c5179735d89a203aca7eaaa96fa731", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "'We don't want to impact an otherwise healthy woman's quality of life and sexual wellness just because there is a slight risk she might develop the disease further down the line,' says Dr Pascal Pujol, a cancer expert at the University Hospital of Montpellier in France.", + "media_hash": "2288dfd86c7577d58fc5c969c75810022f0c4e9031c59ebbd6db95f5", + "sequence": 46, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "University Hospital of Montpellier", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Pascal Pujol", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "Your music is also partly informed by your own experience with your own health, overcoming breast cancer, the bodily changes as well.", + "media_hash": "6e043a2f1916783d75a9035388f1b84b5fecaa66404ba94ca3d250a0", + "sequence": 298, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "Cases of the COVID-19 'cicada' strain linked to international travel have included detections among individuals returning to the United States from several countries, including the UK", + "media_hash": "3d8cda2ea1dbf9b7a2ad169e667353a97d013afb99b25f5838f607ab", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", + "publication_date": "2026-03-31T06:00:33", + "publication": "guardian", + "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", + "media_type": "news_article", + "sentence": { + "text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", + "media_hash": "fdadcd84453316bce89ca177b924febe4f145fd9f129d6b9eda560ac", + "sequence": 33, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "health": 3.975225, + "leo_s_topic": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", + "media_type": "news_article", + "sentence": { + "text": "Bev found out she had cancer on the set of Irish soap Fair City , which she joined earlier this year as Lily Patterson.", + "media_hash": "3b84245076b7b9ba4fdd367f9eb28d283d629bb855b1760f3e2e0220", + "sequence": 37, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", + "publication_date": "2026-03-31T20:19:52", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", + "media_type": "news_article", + "sentence": { + "text": "Influencer and Instagram star has announced a major life update is on the way - just weeks after her husband John Andrews passed away following a long battle with cancer", + "media_hash": "01b0f9d3b0b1f9ebfd04fe241f3c3693ee755a8d4460eb194ca7f455", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "He told the Mirror : This is different from the (Covid-19) viruses we have been dealing with for the last two years.", + "media_hash": "9f2f571e6aa4db0601fd4b0211e957253592b44899a89e8432026f37", + "sequence": 36, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Health officials", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "A brave Airdrie mum battling stage three bowel cancer says she can see a \"light at the end of the tunnel\".", + "media_hash": "1e79d356de8083d7ae6980a6a49a0c816546aec84f35553ab6e525fb", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nicola Rankin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Nicola has spoken about her ongoing fight as part of Bowel Cancer Awareness Month (BCAM).", + "media_hash": "d721b7788f10e53c9b46c59a9692e64eaf74b2673c96b42294564842", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", + "media_hash": "85ddf4132aa1fae9eab9fb21c9aca9df83d71954df4c20578a6b8018", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.975225 + } + } + } +}, +{ + "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", + "publication_date": "2026-03-31T14:37:03", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", + "media_type": "news_article", + "sentence": { + "text": "At the time, he said: \"I'm really looking forward to working closely with Neuroblastoma UK to raise awareness of this cruel cancer and hopefully raise lots of money to help save more young lives.\"", + "media_hash": "8a4abaa5729558ce296f775f2675b07913551e3920fada8a672bf003", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scott Mills", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Which cancers the drug will be tested on first and what side-effects it may cause are as yet unclear.", + "media_hash": "27048a5e1af5c751b0fb8ba24d3c39be7d311e29e3112b35e9207337", + "sequence": 31, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.400095 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "publication_date": "2026-03-31T10:31:24", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", + "media_type": "news_article", + "sentence": { + "text": "Despite thinking she was low risk, she was diagnosed with cancer but has now been given the all-clear, reports the Mirror.", + "media_hash": "ffe08b3553a359a09dd067b719bf100bc47b5ce46625be2c8c886acd", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "'In practice, I've seen this approach help many women with symptoms linked to hormonal imbalance, including PMS, irregular periods and the mood and energy fluctuations that often accompany perimenopause,' Johnston said.", + "media_hash": "5970c46f495fdd8c82f59370acc8f2d06998fafefd2305e615161b98", + "sequence": 67, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 3.975225, + "popular_media": 3.975225 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Dawn had been referred to hospital after a routine blood test showed raised CA125 levels - a possible indicator of ovarian cancer - and after scans revealed a polyp, her consultant wanted to examine the area with a camera.", + "media_hash": "82d7dbfe00e1d2dcdc9bd2c523cc4ea3558453d6c63a1efba5799dd2", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", + "media_hash": "26c73ba770ac8722398228649759b670308fd58b60b4b21859b1bc73", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", + "media_hash": "940d043e5e1428f9b31d6d6ea7d4efe650814d22041cd67beeb1dc09", + "sequence": 33, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", + "media_hash": "ed723601e675a3fea5ca775d8ba9c4ff7bdb173cc541fba1ff1ebf49", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", + "publication_date": "2026-03-31T14:44:01", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", + "media_type": "news_article", + "sentence": { + "text": "They lost their mother, Carroll, in 2020 to cancer", + "media_hash": "43374fe47235bc2e5a85da84cb64de1759ce18d63ab3fa8e7ed97af3", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", + "media_hash": "a66223f695f36f48b9f06602809d961cf15ed180ebeead16c1ab64c3", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "World Health Organisation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "The National Health Service (NHS) lists the following as possible symptoms of COVID-19:", + "media_hash": "cfb025ffacb77cd54b595378befc7a48a746e8710f465e5196325d9c", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 4.0959 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.52077 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Let's speak now to John Woodland from Blackwood in Cardiff, who was diagnosed at 52 years old with stage two bowel cancer back in November 2023.", + "media_hash": "65e16540127198ddff565aaf3cf6487733aa1d20d007ab518aca0557", + "sequence": 682, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "A Covid strain that is a spin-off of Omicron has swept the US and already arrived in the UK, health chiefs have confirmed.", + "media_hash": "1be413639b7c5bc9c93d65101b0045a21869a3b416f6b6b2e7901144", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": { + "health": 4.0959 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.975225 + } + } + } +}, +{ + "title": "Finnian Garbutt, 28, shares heartbreaking message as he enters 'last stages of life'", + "publication_date": "2026-03-31T17:10:48", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/finnian-garbutt-28-shares-heartbreaking-36950963", + "media_type": "news_article", + "sentence": { + "text": "Finnian, who has 18-month-old daughter Saoirse, recently said he was diagnosed with Stage 3 skin cancer, which has sadly spread to his neck.", + "media_hash": "2338996b16523e7454033dabe739c0c919d968048cff3d1db79d8bbd", + "sequence": 15, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Prof Gupta was a key member of the research group that reported the first evidence of immune escape in COVID-19 during the pandemic.", + "media_hash": "61844211e294db2c60bb69dbaa4d52671c442f2278deccee5c6b1803", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.975225, + "clinical_health": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", + "media_hash": "7aebb7140b04b0299ebc18a9dfa1913093b38f4c1a3738b098ec72f8", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 4.36914 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", + "media_hash": "1e7402fd3cb8849eba07f7450f23961099de357ce2ccceda9235081c", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", + "media_hash": "388007679c4a042a020b6d511ae4f98591d3fcbf5b0cd46d3756ca95", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", + "publication_date": "2026-03-31T14:37:03", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", + "media_type": "news_article", + "sentence": { + "text": "The former BBC radio host first supported Neuroblastoma UK after a friend's daughter was diagnosed with this aggressive cancer.", + "media_hash": "3cccc6d5288d2350413f52b5238a5db4fcd45aec2b88d7e909ce4947", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Stonehaven mum jailed for pouring petrol through letterbox of woman\u2019s home with four children inside", + "publication_date": "2026-03-31T14:30:25", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6986541/stonehaven-mum-jailed-for-pouring-petrol-through-letterbox/", + "media_type": "news_article", + "sentence": { + "text": "Accused suffers from ADHD and was initially helping kids", + "media_hash": "837c11091987e847fa7d2d8f5b7480f1d66f929420cb717cb2c1490e", + "sequence": 40, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.975225, + "clinical_health": 3.975225 + } + } + } +}, +{ + "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", + "publication_date": "2026-03-31T23:05:50", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", + "media_type": "news_article", + "sentence": { + "text": "In a new interview with Prima, Hermione responded to speculation the show would return after six years off air as well as discussing her struggle with long Covid and her children flying the nest.", + "media_hash": "c87614fba901d58b201caf79c3b4a7f8f040693e329d3fcf838db819", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Prima", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "The Centers for Disease Control and Prevention (CDC) reported that from November 2025 to January 2026, weekly detections of BA.3.2 increased to make up around 30% of Covid-19 sequences reported in Denmark, Germany, and the Netherlands.", + "media_hash": "1846dfc1bac93c17a35b1cb785cc9d0b20b2482c50b9f415849dabf8", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104474, + "score": 0.22909999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "The CDC reported that between November 2025 and January 2026, weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in Denmark, Germany and the Netherlands.", + "media_hash": "7c35dfbf10f61c015115a132df22239d3a9334088689d07b65f88549", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centres for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.970815, + "clinical_health": 3.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", + "media_type": "news_article", + "sentence": { + "text": "The actress recently updated fans saying, \"I haven't got the all clear... In three to four weeks I'll find out if it's gone into my lymph nodes. If I am cancer free and if they managed to get it all on the left side then I begin radiotherapy so it's quite a long way to go. I am not insurmountable. I have some good days and I do have some really bad days especially if I'm over tired. But more often than not I'm doing well.\"", + "media_hash": "c40c4ae8161e3525369e45d86a94d726ee4241fb9a4472d01ff5e2ea", + "sequence": 36, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.970545 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "media_hash": "c732ef4b374936d6c9ec84b45221b50cd7cb15bdb9198bbf3293c41a", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.94427 + } + } + } +}, +{ + "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", + "publication_date": "2026-03-31T02:14:20", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", + "media_type": "news_article", + "sentence": { + "text": "If you are eligible and wish to do so, you can receive the MenB vaccine, which offers protection against the infection.", + "media_hash": "bff362abb8972c101f402ca353dd3bddbd9d8721e94acde1ba5c167c", + "sequence": 18, + "claim_type": [ + "correlation", + "rules" + ], + "claimer": [ + { + "name": "Club Chemistry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.9372949999999998, + "leo_s_topic": 3.9372949999999998 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "When tested in mice, those given the bacterium excreted significantly more plastic in their feces than untreated mice, which was evidence that it latched onto the particles and helped flush them out.", + "media_hash": "7533f964547f6530e8d3a8e86f5a5c67de86c9bd776b406e9066f574", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.9334350000000002 + }, + "demo": { + "politics_of_food": 0.0, + "environment": 0.0, + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Trinny Woodall added: \"I'm looking forward to being a Lady Garden Foundation Host Ambassador at RHS Chelsea and speaking to as many visitors as possible at the 'Silent No More' Garden. It's a platform to raise awareness, break taboos and encourage more open conversations about gynaecological cancers amongst its visitors. I've supported the Lady Garden Foundation since it was founded in 2014 and I'm proud to be part of a bold charity that is helping to revolutionise women's health. By educating and empowering people to recognise symptoms and talk more openly about gynaecological health, we can help drive earlier diagnoses and ultimately save more women's lives.\"", + "media_hash": "274e1756202d4cc878d43e8399f4b900feede162cf15a6247efb0655", + "sequence": 12, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Trinny Woodall", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.925145 + } + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "This includes placing restrictions on platform access for customers where necessary and an ongoing partnership with Drinkaware to implement further alcohol safety measures, including clear signposting to support resources.", + "media_hash": "68d4b1674389b6e2d0769b98b661543163c6b618427a6de19845a3d2", + "sequence": 28, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Uber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.920805 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Experts have said that while current vaccines may be less effective against Cicada, vaccination still offers significant protection against severe disease.", + "media_hash": "a44aa45315cd85226672c209b024f42260fa5e2fb5c72360bfb1f1a1", + "sequence": 32, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.901315, + "clinical_health": 3.901315 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "Experts said the findings demonstrate the extent of unrecognised heart failure in people with diabetes, and how the condition can be easily detected using a widely available blood test (NT-proBNP) that measures how much strain the heart is under.", + "media_hash": "508ba3b4f8f141dcd9744e6b9694683d2725de2f35159b4f7e04a117", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.901315 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Symptoms associated with BA.3.2 seem largely comparable to other strains of COVID-19.", + "media_hash": "d9b1f1da624198cfaf18eb26e174ad80a3996716bedae9d930d2d854", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.901315 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "\"With Clubcard Challenges on fresh, frozen and tinned fruit, veg and pulses, we're committed to helping customers get more of the healthy food they need for less.", + "media_hash": "6513fd8842e8b03f3ff03149eded374eb6cb82bbf4a399c391dd2481", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Oonagh Turnbull", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.901315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.901315 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "two minutes after 11 is the time this Tuesday night you are listening to late nights with Ben Kentish here on LBC. Very pleased that you are. Great to have you with us. Very, very good evening indeed if you are just joining me on the program this evening. We've been talking about Donald Trump. Suspect we'll talk lots more about his relationship with Kier Starmer and this state visit in the days and weeks ahead. But lots more. Um, topics for us to get our teeth into. After 12, we're going to be talking a lot more about divorce. Amid more warnings today that it's on the increase, specifically divorce linked to financial difficulties. Look at that after 12 o'clock. Um, for now though, want to get your thoughts on a topic that we've we've discussed fairly frequently together over the months. Um, but it's one that is very, very significant right now because it touches the lives of so many people. Um, in this country at the moment and that is the issue of neurodivergent and particularly the massive increase in the number of people being diagnosed with conditions like ADHD and autism.", + "media_hash": "bed436efbc6e2eff37d6182005facfe28992e5c695379ddfba45780d", + "sequence": 484, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.894025, + "clinical_health": 3.894025 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "And I think because a lot of things are very time critical in obstetrics, that is where the workforce tends to, to gravitate to and it is the general ultrasound that tends to suffer more and then we're trying to do patients that are on cancer pathways.", + "media_hash": "52443a598cd4897492a765a9f44df3aadf4e474430a2622ac56a6840", + "sequence": 374, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.894025 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "For you, you can't just say I have autism without somebody who is an expert having told you that you have autism.", + "media_hash": "60e6951325fc6964d07e59f73c9ce660503154c8a7c48d4ea04ec1a2", + "sequence": 531, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.89304, + "clinical_health": 3.89304 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "\"But I won't lie, having cancer is hard.", + "media_hash": "0f5bf9a50d19bf8cd586a09c865c925fb96a0e6ef5b3b3e18d9b899e", + "sequence": 43, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.89304 + } + } + } +}, +{ + "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", + "publication_date": "2026-03-31T09:30:46", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", + "media_type": "news_article", + "sentence": { + "text": "\"Additionally, colds and respiratory infections remain common as temperatures fluctuate.", + "media_hash": "5802da0053168d420fde594f034d0a9fb94f1189b3ec9571e2112258", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Graeme Bryson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.88572 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", + "publication_date": "2026-03-31T09:30:46", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", + "media_type": "news_article", + "sentence": { + "text": "\"Pharmacists can also support those with long-term conditions, such as diabetes or heart disease, ensuring they have the medications and advice needed to stay well over the holiday period.", + "media_hash": "70fb2123fd71a2cf5041ad0c8a8a63ed80f86c1c8ed0d0078c5350b2", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Graeme Bryson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.88572 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Poo normally should be a chocolate brown: bile - a digestive fluid produced by the liver - is a yellowish brown to dark green, and when mixed with our gut bacteria, it turns dark brown.", + "media_hash": "c484072115d445aead63a76aeefaeaa984cb791784dd69738bd391cb", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.88572 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of new Covid strain symptoms including unusual signs", + "publication_date": "2026-03-31T14:58:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", + "media_type": "news_article", + "sentence": { + "text": "Covid-19 Cicada was first identified in in South Africa on November 22, 2024 with between 70-75 mutations with some having the potential to reduce protection from a previous infection or vaccination, according to the Centers for Disease Control and Prevention (CDC).", + "media_hash": "fcf642145c94b75908496410bc1b8f9d87dddab111ff287549c0808b", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.87995 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", + "media_hash": "3810f68df12e1160540ad95d2cf921bf86b1220ea66bf38307ee0bce", + "sequence": 211, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.866315, + "senedd_election": 3.866315 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Prof Ravi Gupta, of Cambridge University, who advised the UK government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", + "media_hash": "8450a98dbbdc1cb16d03c4bec76811c63e004a69634e313e05b11621", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "publication_date": "2026-03-31T10:31:24", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", + "media_type": "news_article", + "sentence": { + "text": "Annette Illing, a 39-year-old mother of three, is the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal.", + "media_hash": "2610b08ce7c3a1c98aa3bffb548aec2c72da9019e363f6216f5259e8", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "The Christie Charity Sarah Harding Breast Cancer Appeal", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.862985 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "The TARTAN-HF trial found one in four of patients with diabetes who had at least one other risk factor for heart failure had undiagnosed heart failure that was detected through screening using a new blood test and ultrasound scanning of the heart.", + "media_hash": "2293b2e0da8af56c94d7278b923fcab46a67b62cfcaa967974b43c3d", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.862985 + } + } + } +}, +{ + "title": "At gas stations, Americans say they're 'paying the...", + "publication_date": "2026-03-31T20:33:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15696113/At-gas-stations-Americans-say-theyre-paying-price-Iran-war.html", + "media_type": "news_article", + "sentence": { + "text": "Williams, a retired civil servant who is undergoing cancer treatment, considers her pension to be \"fairly decent,\" but as the US cost of living has risen, she has had to dip into her savings.", + "media_hash": "90ff46aa064245e31dff28e9039139ef823c7c79dd160228a73fa4be", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Jeanne Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "The vaccine was initially made available in September 2024 to older adults as they turned 75, with a catch-up programme for those aged 75 to 80, plus women from 28 weeks of pregnancy.", + "media_hash": "e74a621b89a5ff84e93063626c267a3deed049b3b5b71dcb719ed1f3", + "sequence": 7, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.862985, + "clinical_health": 3.862985 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "AD FEATURE: Healthy eating can be easy \u2013 here\u2019s how", + "publication_date": "2026-03-31T16:40:02", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/healthy-eating-can-be-easy-36876677", + "media_type": "news_article", + "sentence": { + "text": "As well as the brilliant 5-a-day-hub on the Tesco Real Food website, you'll find hundreds of healthy, easy-to-make recipes, plus heart and diabetes-friendly meal suggestions, created in conjunction with the British Heart Foundation and Diabetes UK.", + "media_hash": "0432976ee1ea01ad242e71ba79b6121b7cf3b2cdbce66470818f6ff5", + "sequence": 32, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "British Heart Foundation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Diabetes UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.862985 + }, + "demo": { + "popular_media": 4.865505, + "politics_of_food": 4.865505, + "health": 4.865505, + "nutrition_": 4.865505 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.862985 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "Having had breast cancer, I, the relationship I had to my body was very different because, you know, you, you have a baby, you, your body goes through all of those physical changes, external, internal, then you can nurture that baby if you choose to nurse your child and then you go through these other physical changes when you get to a certain age, we go through menopause, we, it's such an extraordinary, um, machine that we have here.", + "media_hash": "5d97d9455daed786ecf66a6fa9777e619d0ad82eb362a1b0c46a41b0", + "sequence": 302, + "claim_type": [ + "personal", + "correlation" + ], + "claimer": [ + { + "name": "Rita Wilson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.832275 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "I know how difficult it's been for me, um throughout my life and when I was in school that there was nobody to say, um you might be ADHD so we might need to make adjustments.", + "media_hash": "7536c703881967828a18a96a84aec0420ea1ec4781ff37ce334fd36f", + "sequence": 660, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.832275, + "clinical_health": 3.832275 + } + } + } +}, +{ + "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", + "publication_date": "2026-03-31T08:45:14", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", + "media_type": "news_article", + "sentence": { + "text": "Mother-of-three Annette Illing, 39, is the first person to be successfully treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal, which was established after the singer died in 2021 at 39 after battling the illness.", + "media_hash": "3e3836e0fdd213897c9a6fded4873eb8c21486c130d1e5793fa876c0", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Sarah Harding Breast Cancer Appeal", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.8320299999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "For decades, cancer treatment revolved around long-established techniques such as chemotherapy - where powerful drugs are given to stop malignant cells from reproducing - and radiotherapy, when high-energy radiation is fired at tumours to destroy their DNA, halting their spread.", + "media_hash": "b9e10af45e505e04cfbb1382dde775cfd1b169e643def292c4151267", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.82381 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", + "publication_date": "2026-03-31T11:59:42", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", + "media_type": "news_article", + "sentence": { + "text": "Symptoms are similar to other Covid strains - the usual suspects like fever, cough, and fatigue that can be treated with rest and over-the-counter meds.", + "media_hash": "fc15d458ce451fa98bf99660345795790f5505cc2c6ce50e7036a771", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.82381 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Covid symptoms are no longer hallmarked by the loss of taste and smell as they were in the first couple years of the pandemic, although that can still happen.", + "media_hash": "df22a15763aa59269a0d682c8f4fd81d49b41b00de3eba26e7f5650d", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.82381 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "\"If I'm cancer-free, then, a few weeks after that, I will begin radiotherapy. If I'm not cancer-free, then we'll cross that bridge when we get to it. But I have a feeling I will be. I don't why I have that feeling but I just have.\"", + "media_hash": "7a35ec9103a51a761efb8a7e0e0958b200c898c557d2e942ae24f72d", + "sequence": 22, + "claim_type": [ + "personal", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.799255 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "Despite the fact that he was also diagnosed with prostate cancer which was subsequently treated and is waiting for another skin cancer operation, the PCI procedure has given him a new lease of life.", + "media_hash": "10ee7fa0fcf952b4f93aa2feab14915ca9dc525e2c539e6ae853317d", + "sequence": 70, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.795165 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", + "publication_date": "2026-03-31T15:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", + "media_hash": "71cc32dd894a229697cb2a9191e54582bb4eebf8c0e51598540cac7c", + "sequence": 30, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7800599999999998, + "scottish_elections": 3.7800599999999998 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "My world had fallen apart; I was too young to have cancer.", + "media_hash": "7b5127026589792df01f30b81a932db1478a9dd615454fe92e6be579", + "sequence": 12, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Katie Houston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7723649999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", + "publication_date": "2026-03-31T11:56:49", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", + "media_type": "news_article", + "sentence": { + "text": "\"When I received the cancer diagnosis it was earth-shattering news, we weren't ready. You never think it is going to happen to you. It was really, really surprising but not in a good way.\"", + "media_hash": "d408122d2bfc00740ddd66b8ba8076147be5fadbc46c1a2bc2f65fdf", + "sequence": 18, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Helen Christopher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7723649999999997 + } + } + } +}, +{ + "title": "Mum says she has best-behaved children in UK thanks to diet and strict rule", + "publication_date": "2026-03-31T07:51:27", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/uk-news/mum-says-best-behaved-children-36946864", + "media_type": "news_article", + "sentence": { + "text": "Pam claims her kids' plant-based diet has stopped them from needing the doctor for childhood illnesses like the flu.", + "media_hash": "d474c004271eb86331e706b001c4aca05de66bcb99f818d3ff095398", + "sequence": 27, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Pam Johal", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7723649999999997, + "leo_s_topic": 3.7723649999999997 + }, + "demo": { + "health": 3.7723649999999997, + "nutrition_": 3.7723649999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", + "publication_date": "2026-03-31T20:19:52", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", + "media_type": "news_article", + "sentence": { + "text": "John had battled stage four adrenal cancer after the disease returned in 2024, having initially been diagnosed in April 2023.", + "media_hash": "90b6d3b4ecdfa3ccee56509e0117630e6dc3d18f7a8b94f698f24fa5", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.76621 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", + "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", + "sequence": 971, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Aled Morgan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.758995, + "senedd_election": 3.758995, + "scottish_elections": 3.758995 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", + "media_hash": "cb12d6b08127cb91842ef1759b8e950904991a5efc9c268e837b5a79", + "sequence": 41, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "clinical_health": 3.748535 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Experts say that while current vaccines may be less effective against cicada, vaccination still offers significant protection against severe Covid disease.", + "media_hash": "09b42d8122d72f7369450b005b6b0f56889b3bc2724a689565e77f68", + "sequence": 33, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Health officials", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535 + }, + "demo": { + "health": 2.8717300000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", + "media_hash": "30cd1723bfc823d3c1325faef9a519bf15b63ecc2df1f2db562bd254", + "sequence": 206, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", + "media_hash": "a416afed82bcdeff7e456cd28a3bee06154fee07e467bb256a9704b1", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "scottish_elections": 3.748535 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", + "media_hash": "ff60758d4c9ebd7c702029dfa88ddcb9a05353f4ddb2641dc6de91bd", + "sequence": 204, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", + "publication_date": "2026-03-31T14:37:03", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", + "media_type": "news_article", + "sentence": { + "text": "Mills is no longer a patron for the charity, which aims to fund research into more effective treatments for children diagnosed with the cancer.", + "media_hash": "0d0b92b73b4e19eaaaa110c65ffdb99ec832f28d88e82d103b794a15", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", + "publication_date": "2026-03-31T08:45:14", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", + "media_type": "news_article", + "sentence": { + "text": "She thought she was low risk but ended up being diagnosed with cancer.", + "media_hash": "426ba472a861bc4bcb43018a2c4e83543fd25a1f09f7ea6dc8f941cb", + "sequence": 6, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.74141 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "\"Sometimes I worry that my cancer has become the talk of the town and it's all people see in me.", + "media_hash": "5ae897d30eef22dff5bd7f61e0662003a48a4c8e5f21aee4daac679f", + "sequence": 48, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Nicola Rankin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.74141 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "But within two years, the keen flute player from Bracknell, Berkshire, was forced to have part of her middle finger amputated due to the discovery of a life-threatening cancer.", + "media_hash": "5a862a985babdcb1b27c53111e2e718ee81c278ef9199ade7984f9ea", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "Katie Houston was diagnosed with stage 2 bowel cancer in August 2022, at the age of just 43.", + "media_hash": "c4dff44349bd14c33f4f51380e884f97b72aa6c70e75262dc9b8f216", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", + "publication_date": "2026-03-31T11:56:49", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", + "media_type": "news_article", + "sentence": { + "text": "Three months later, Helen suffered from a chest rash and scans sadly revealed her cancer had returned to her lymph nodes and neck as secondary stage three breast cancer.", + "media_hash": "cf2228d254bc9ca8fa9b842a3b5305b124de8d7589bd648f995f3839", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + } + } + } +}, +{ + "title": "Woman 'time-travelled into parallel universe and spent five years in the future'", + "publication_date": "2026-03-31T10:20:15", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/woman-time-travelled-parallel-universe-36947729", + "media_type": "news_article", + "sentence": { + "text": "At the hospital, it was found she had suffered a bilateral pulmonary thromboembolism, where blood clots obstruct arteries in both lungs.", + "media_hash": "225d22145aaae7333277003e2cd441e085abfc6e82ab78f82399cd82", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", + "media_type": "news_article", + "sentence": { + "text": "Amid Cain's health battle, after being diagnosed with aggressive prostate cancer, there's an accident next week that leaves his life on the line.", + "media_hash": "f62aa7f3831cd735a114fb5eb64b37691705b70a9c27942e75a09488", + "sequence": 3, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "That led doctors to give Elizabeth the devastating news that she should have part of her finger removed in July 2022 because the cancer had already occurred twice.", + "media_hash": "6ec6cef2287890e4afc1c5f5f54f2716e1455f58a776466965f8c37a", + "sequence": 39, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.735255 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anyone who washes clothes at 60C urged to think again this spring", + "publication_date": "2026-03-31T02:47:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", + "media_type": "news_article", + "sentence": { + "text": "While most respiratory viruses spread mainly through airborne particles, norovirus is different.", + "media_hash": "09f263b96075d11eece26f8d6f6c092749dbc933fc02e91c49a67f1a", + "sequence": 14, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.73409 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "Customers can also earn extra Clubcard points through Clubcard Challenges by buying frozen and tinned fruit and veg, beans and pulses.", + "media_hash": "96fc6702c0fbe24df4487f2492f3d3554ad308a808089922c6a532d2", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.73409 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Brits urged to change the way they wash clothes as 60C may not be safe", + "publication_date": "2026-03-31T02:47:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", + "media_type": "news_article", + "sentence": { + "text": "While most respiratory viruses transmit mainly through airborne particles, norovirus is different.", + "media_hash": "7f349bf76a73ca8b12eaf7b482361a91c7a3bc87f8eacad031489d84", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.73409 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "These low-dose X-rays detect early signs of breast cancer and are routinely offered to women aged 50 to 70 in the UK in a national screening programme.", + "media_hash": "65a98e748e90722ac266a3ed7b904b3848eae19dfbd2eab9ec47c75d", + "sequence": 73, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.73294 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "People who smoked daily during more waves of young adulthood were significantly more likely to still be smoking later in life.", + "media_hash": "4ab67062d7f403d8f46447613f20c538bda7d81c4dfe54c454e4fab2", + "sequence": 51, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.7310499999999998 + }, + "demo": { + "health": 3.6691399999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "I also meet with my cancer nurse every six months.", + "media_hash": "20332fa5ae6c664d14cbdf067328a16ea0d7a42c396e1a0bf4ee23a3", + "sequence": 27, + "claim_type": [ + "personal", + "quantity" + ], + "claimer": [ + { + "name": "Katie Houston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.720035 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Immunotherapy drugs stop that protein from binding to immune cells - allowing them to identify cancer cells as foreign and launch an all-out attack on them.", + "media_hash": "0d005b163662aee59ca54b6442fc84e62eb74fa71936b9514f39a522", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "Symptoms linked to BA.3.2 appear broadly similar to other forms of COVID-19.", + "media_hash": "48ee8fa65ad8d22be69d195a11acb2fe6a2afb5e37ea3841828dad60", + "sequence": 15, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The antigen serves as a red flag to the immune system, almost inviting it to dispatch soldier cells to attack and destroy the cancer.", + "media_hash": "845292ce91fc163716dec8c24c332e55c59cfa7d78eb06bf2277d960", + "sequence": 27, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.703135 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Former Esslemont School near Ellon goes on the market for \u00a395,000", + "publication_date": "2026-03-31T10:45:40", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/lifestyle/home-gardens/property/6983843/former-esslemont-school-on-the-market-for-95000/", + "media_type": "news_article", + "sentence": { + "text": "Holidays reflected the needs of the farming calendar, while Esslemont School's old log books recorded closures for epidemics of measles and whooping cough in the days before vaccinations.", + "media_hash": "59293edcbf9bcc2642ba18e0c2953c86a6cd0465d715530b36f938d3", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The drugs were developed because some cancer cells 'hide' from the body's defences by releasing a protein, called PD-L1, which binds to the surface of immune cells, instructing them not to attack.", + "media_hash": "a1fd0cf01be8ca8f88add1e9d44c67a50c334ea39a95e498488ad998", + "sequence": 12, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "It tends to be the first investigation for a lot of patients both in obstetrics and obviously for cancer as well.", + "media_hash": "10d09e9f46fa5381c79b07d8efe9c127dd20f0985953dce02bf02e4e", + "sequence": 357, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Until now, medicines such as Wegovy and Ozempic have been used mainly for obesity and diabetes.", + "media_hash": "1a5a1a30c0bf953d07b5473c9487239b897fcce5fbcb90f0aa8fb729", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "nutrition_": 3.854765 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And so, really, you know, and and there are very effective treatments as well, specifically for ADHD.", + "media_hash": "b3ba2a3f54af1a41c1bb6cb1596ce547dfc2aae7ab7c9e663b093ebe", + "sequence": 522, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.703135, + "clinical_health": 3.703135 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Unlike many forms of skin cancer, subungual melanoma is not linked to sun exposure.", + "media_hash": "d81fa756ef6c60bba1df0f232dd06932df9e85fd7cf117d8413e474e", + "sequence": 68, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Diabetes was confirmed by self-report questionnaires and blood glucose readings.", + "media_hash": "6780c424c7cce172ace6a3c586c5f556854912f87e83d0edd5a82cf9", + "sequence": 15, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 3.58131, + "nutrition_": 3.58131 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing T-cells to kill off the tumour", + "media_hash": "6f9924afe75bea2d100c19cc00bc9b5556fa8dd84780a285fb2eb64e", + "sequence": 13, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Inside Health", + "publication_date": "2026-03-31T09:00:00", + "publication": "bbc-health", + "url": "https://www.bbc.co.uk/sounds/play/m002tbkd", + "media_type": "news_article", + "sentence": { + "text": "A new non-hormonal drug has been approved to treat menopausal hot flushes.", + "media_hash": "1b5e48294e3c491ef4f18093bab79ed0eb50bf27e47aa87a976f6a7a", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "UK health officials are keeping a watchful eye on the emergence of a fresh COVID-19 variant, BA.3.2 - dubbed the \"cicada\" strain - as it makes its way across numerous nations worldwide.", + "media_hash": "e616a19847831154bdee8dffff27489b290a01cb89bcaa6fba51c2f8", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "UK health authorities", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.703135 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "They can vary between individuals and may ease with rest, plenty of fluids, and medicines available without prescription.", + "media_hash": "396ece03bfe53cf20d16c57597ced7c762af98ae399467f5ae835a0d", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", + "media_hash": "5080801fa8dc55ff7852ae397478b79271eaaa10250c31393fcec110", + "sequence": 205, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135, + "senedd_election": 3.703135 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "This is standard practice when melanoma is suspected, as the cancer develops in the nail bed - the skin beneath the nail - rather than the nail itself.", + "media_hash": "df7f31c57367b9a7cc23585f44829d81111c2c64371ed3f89b82a187", + "sequence": 22, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.703135 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "By midlife, about one in 10 reported that their memory was 'fair' or 'poor.'", + "media_hash": "00dbe1f4ee47759a86841aa986132a1b4c2e5f4f173f8bc5fd7133d4", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.700095 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Wave of US-Israeli strikes hit key Iran sites", + "publication_date": "2026-03-31T14:23:13", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694051/Massive-US-Israeli-strikes-hit-Iran-Trump-threat.html", + "media_type": "news_article", + "sentence": { + "text": "Iranian media reported Tuesday that a wave of US-Israeli strikes hit military bases, a religious site and a cancer drug plant in the more than month-old war rocking the Middle East and roiling the world economy.", + "media_hash": "78f86fc16fa41e47bfb339c2ae233d6abd65c32176b300eeb32a3cbd", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Iranian media", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6937550000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Law also argues that it is better to prevent breast cancer from occurring than to treat it.", + "media_hash": "0199986e22a479345e6c979838c5cdee30de2a788583d3d9c2c568c3", + "sequence": 13, + "claim_type": [ + "rules", + "support", + "other" + ], + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.674385 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.674385 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Covid-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", + "media_hash": "7619ee4d5c416c6de27559c491081f96a4e7d7bb8782a3d96a9e4181", + "sequence": 45, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.67103 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "COVID-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", + "media_hash": "ec2a9ee7c8ee54d1b29a176d9f9f4ddfb3061dc601373946dceb4e8c", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.67103, + "clinical_health": 3.67103 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "A large analysis of nearly 80,000 participants found just 15 minutes of fast walking can cut your risk of early death by 20 per cent.", + "media_hash": "2f8662b932450a770579d50ddefc1b4e1a12c8fb944b94de8bc12228", + "sequence": 61, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691399999999996 + }, + "demo": { + "nutrition_": 3.5163599999999997, + "health": 3.5163599999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "One analysis found that just 30 to 60 minutes of muscle strengthening activity every week is associated with a 10 to 20 per cent lower risk of death from all causes.", + "media_hash": "6ad8793a382563f1cc2e2fb121a9af6bc596fe9163f6636f4a46df45", + "sequence": 80, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691399999999996 + }, + "demo": { + "nutrition_": 3.5175099999999997, + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.5175099999999997 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Each year, more than 200,000 people suffer a heart attack or stroke.", + "media_hash": "b159f2d0aa23d50f8b6e64358366132dbc443ad1234dd41e2c14c139", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691399999999996 + }, + "demo": { + "nutrition_": 3.6691399999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", + "publication_date": "2026-03-31T10:45:43", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", + "media_type": "news_article", + "sentence": { + "text": "Data from Healthwatch has shown that millions are struggling to access NHS dental care, with some forced to travel hundreds of miles or face waits of months.", + "media_hash": "e9d5650e8c433e159667b5bfb02dfb7ae58c33dd53f52322af20f81b", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Healthwatch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691399999999996 + }, + "demo": { + "health": 5.66914 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "But while fruit and veg ought to make up a third of what we eat, government figures show that fewer than one in five adults and under one in 10 children are getting their 5-a-day.", + "media_hash": "8ade66e8dc8b7129d971d659b0300e1b726fe9ca93d3b08cbbaac0c6", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691399999999996 + }, + "demo": { + "health": 3.275225, + "nutrition_": 3.275225 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Roughly 28 million Americans have alcohol use disorder, nearly 19 million have cannabis use disorder and approximately 29 million smoke cigarettes, making each condition a major public health threat.", + "media_hash": "e048c5c17bdc7a31414bc5f16f54746a79ff230e20781bf14a5a3116", + "sequence": 62, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.6691400000000005 + }, + "demo": { + "health": 5.517510000000001 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.6691400000000005 + } + } + } +}, +{ + "title": "Stephen Lewis, former Canadian politician and lifelong...", + "publication_date": "2026-03-31T20:11:10", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", + "media_type": "news_article", + "sentence": { + "text": "\"Stephen spent the last eight years of his life battling cancer with the same indomitable energy he brought to his lifelong work: the unending struggle for justice and dignity for every human life,\" his family said in a statement released shortly after his death.", + "media_hash": "f33dec48c1b9c51fbfc727b9fafd983eb87fae7948c25565fe9ea7b6", + "sequence": 10, + "claim_type": [ + "personal", + "quantity", + "other" + ], + "claimer": [ + { + "name": "Stephen Lewis Foundation", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "family", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.660125 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "The new Covid variant is set to become dominant in the UK(Image: Getty Images/iStockphoto)", + "media_hash": "1a046224242e7991e7aaf9d31fe3fc68435b3b33906ff725eb32a40f", + "sequence": 6, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "She said: \"So, the next stage, is, in about four weeks, we will find out if she managed to get all the cancer out and we'll also get the results of whether it was in the lymph nodes or not.", + "media_hash": "adc4be00fcc21ef941219f6125859cd9d6d3d117eb4151ac2acfd033", + "sequence": 20, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "But the new vaccine - called iVAC (intratumoural vaccination chimera) - could boost the chances of defeating cancer, according to results published in February in the journal Nature.", + "media_hash": "72254f0a0328c1255b348dc0144ac8f5640bdf4d0ec3c8303612b451", + "sequence": 23, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "University of Oxford", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.653625 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", + "media_hash": "4a5857123438eb8fa4dc702c657c297d6b7c8635f8108ed18a7aeee4", + "sequence": 42, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625, + "scottish_elections": 3.653625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "The Department of Health and Social Care also claimed the NHS will meet all of its existing cancer targets by March 2029.", + "media_hash": "1c76c29fd85ad01e8c59a05640ad41caaae1726599f04f7c39a73167", + "sequence": 19, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Department of Health and Social Care", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.653625 + }, + "demo": { + "health": 3.653625 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "\"Through my long-term ambassador work with the Lady Garden Foundation, I think it's incredibly important that we start having open conversations with friends and family about the five gynaecological cancers and what the symptoms can feel like. Knowing my mum had ovarian cancer has also made me take proactive steps with my own health. I've undergone genetic testing for the BRCA gene, as well as other genes that can increase the risk of ovarian cancer. Being aware of your body and taking preventative action can make a huge difference to an earlier diagnosis\"", + "media_hash": "db127044f79db5651584666d2e5e4073512de1b3754bf9829cf1fd8f", + "sequence": 8, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Davina McCall", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.636075 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", + "media_hash": "34ccc96534a02304efc672d48c95705df7e434783b79da696a512117", + "sequence": 202, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.636075, + "senedd_election": 3.636075 + } + } + } +}, +{ + "title": "Kate Garraway recalls loved one \u2018felt like they were dying\u2019 after sepsis battle", + "publication_date": "2026-03-31T08:26:05", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/kate-garraway-recalls-loved-one-36947019", + "media_type": "news_article", + "sentence": { + "text": "The former lobbyist had contracted Covid-19 in March 2020, and in the months and years that followed, he had one of the worst cases of the virus.", + "media_hash": "01837365e47d6f2c1f71ec6c6930486fb52c3b5402d43ba6a4db0d7c", + "sequence": 10, + "claim_type": [ + "correlation", + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.635935 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Britain star shares horror over loved one's sepsis symptoms", + "publication_date": "2026-03-31T09:03:11", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/good-morning-britain-star-shares-36947383", + "media_type": "news_article", + "sentence": { + "text": "\"I think about all the people during Covid that didn't have that, and I think about all the circumstances when people don't have that.", + "media_hash": "19a45ef5fd8eedfbb9e56e8e9a6b4c460b3f1c7f4ab271b5fd66b834", + "sequence": 24, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Kate Garraway", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.62671 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", + "media_hash": "80bfd913544d43bad3c59d32bcdae3e643d9bd9a9365f1f7e642b1ff", + "sequence": 34, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "clinical_health": 3.612245 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", + "publication_date": "2026-03-31T23:05:50", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", + "media_type": "news_article", + "sentence": { + "text": "I'm so much better after the long Covid, but I feel different, physiologically.", + "media_hash": "0c291a9196c59a178e43ec98607dfaaa477003d4be697e954509395d", + "sequence": 38, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "Hermione Norris", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.605585 + }, + "demo": {}, + "aapfactcheck": { + "health": 3.605585 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "I wanted to play the flute but I want to live more.", + "media_hash": "0c65f3402b91ff4da2ce8ef34d913b65706ab452ec52673de3461792", + "sequence": 46, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.605585 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire urging people to prepare in advance for any healthcare needs to help reduce out-of-hours services demand", + "publication_date": "2026-03-31T12:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-urging-people-prepare-36948783", + "media_type": "news_article", + "sentence": { + "text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", + "media_hash": "2cce2c2834e7311d8cd62a21687a936e75b312ae0fa35347c6086ac7", + "sequence": 24, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", + "media_hash": "6e249f27707f33ccc1a4bd3b7ac6c95408161b9f01357b8f1454521d", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Medicines Consortium", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "The fluid, which contains lung cells and bacteria, is sent to the lab for testing.", + "media_hash": "13bd24b882edc378f7548539e92e462ea7005ee2fe847a4e0f54282d", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "This manifesto is titled A new chapter for Wales.", + "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", + "sequence": 981, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "senedd_election": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", + "media_hash": "943254d39c6b70c5bfd841cf0e666a83f183640984702dbb505f71a3", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.58131, + "scottish_elections": 3.58131 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Some 10 per cent of bacterial cases are fatal.", + "media_hash": "46855ca4a68a7bc0a0ab2b5a263911096e6bbf1ddd69b3668d5dc7aa", + "sequence": 65, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 40069, + "score": 0.42279999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.57942 + }, + "demo": { + "health": 3.53287 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.57942 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "Dr Kieran Docherty, clinical senior lecturer at the University of Glasgow's School of Cardiovascular & Metabolic Health, said: \"Our results from the landmark TARTAN-HF trial identified heart failure in a large proportion of people living with diabetes, emphasising the need for a heart failure screening strategy in this group of patients.", + "media_hash": "8960585e308bd82c8e54be42f823c6e50d72a5825afa634182f7f1d4", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "University of Glasgow", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Kieran Docherty", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.566845 + } + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "The main reason for economic inactivity in the UK is long-term sickness - accounting for about a third of cases, which is a record high.", + "media_hash": "2f3e7941c7484a0608c5a56ed6a7c9a3e52bc4cb7e5eeebbf55b978a", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5589250000000003 + }, + "demo": { + "health": 3.134055 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mitch Hedberg Eerily Predicted Exactly How He Would Die (& That\u2019s Not Even The Weirdest Thing About His Death)", + "publication_date": "2026-03-31T12:14:24", + "publication": "91f91b7b-4e5b-426d-afdc-d8c5c96d93e5", + "url": "https://www.vice.com/en/article/mitch-hedberg-eerily-predicted-how-he-would-die/", + "media_type": "news_article", + "sentence": { + "text": "Among the subjects the two discussed were Hedberg's dream date (Martha Stewart), among other things.", + "media_hash": "2b57176a799cff900be023c726be064e93720de1dd7894f25667b1e3", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "A brave West Lothian cancer survivor has shared her own story ahead of Bowel Cancer Awareness Month.", + "media_hash": "e78de901ea72198f004fc06cd1b9cbf4c347c02992516b8fa962be22", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", + "media_hash": "cc910ff7bf1539d885997a759d22140e10964188ed277bbbec0d1e80", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", + "media_type": "news_article", + "sentence": { + "text": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "media_hash": "9df7cdb92338ebac5802b5584a225ebcdab6264cdaa3c98f722ddf79", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "NHS Lanarkshire have collaborated with a number of partners to provide new research into diabetes.", + "media_hash": "5a58e9ed34727366d3dc6ded29d3f638dfe1cd07f44635e3152b759f", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", + "media_hash": "f420d8586b09e7fef11fc850fa9a6fbb016985a27218e68e9a599de2", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Genevieve Edwards, chief executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", + "media_hash": "2409b0dfbe4a2d1b8b23db11c616e10b042222c93b68d928d76e785e", + "sequence": 60, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Genevieve Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", + "publication_date": "2026-03-31T14:37:03", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", + "media_type": "news_article", + "sentence": { + "text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK.", + "media_hash": "1e02663ca1b3bc4222c4d79eb9ea7f26261275ac50ea906f0e8e3616", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "publication_date": "2026-03-31T10:31:24", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", + "media_type": "news_article", + "sentence": { + "text": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "media_hash": "d377de32d725271d38994bdf54fb49872fe80919225a3ab06b339118", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "media_hash": "552a263c4478a80efe5905ae9b479e4a616f0d0c09cca57903c1c7f2", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month", + "media_hash": "3a22ff14c5b3c000fa969a168eff4b0aeca158b1ad85db2570b646e0", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Lorna Luxe", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity", + "media_hash": "86795dbaf3b5936dc260197a059fcedd6a986143fee2a9ed4aef448a", + "sequence": 29, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "\"At the same time as I was waiting to hear back, Bowel Cancer Awareness Month had just started.", + "media_hash": "44753fc8f1b258b2bbb55a6a14b3734b5748cee5a617c5efe6ccc45b", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nicola Rankin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Tim Elliott, a professor of immuno-oncology at the University of Oxford, said this kind of approach - using drugs that both stop immune evasion and make cancer cells attract killer T-cells - is hugely promising.", + "media_hash": "7e32a1e59a6d51c156d1704e0923b164ecc81397045d1fcfb269ab04", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Tim Elliott", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.5503549999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Celebrity supporters of the gynaecological charity Lady Garden Foundation have pledged their support to the charity's 'Silent No More' Garden at the RHS Chelsea Flower Show, which has been designed to break the silence and stigma surrounding the five gynaecological cancers - vulval, ovarian, cervical, womb and vaginal.", + "media_hash": "2e567e9f816f4ee67a9cc0c42bb7da5dbf77f7b39cf042621b03ea75", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Lady Garden Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "Davina McCall whose mother had ovarian cancer, is a long-term supporter of the Lady Garden Foundation.", + "media_hash": "f90b6ef74791a7be8e9e4fc29776e56a353725b2228e44ea8224bc1b", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", + "media_hash": "468850ba63dba7734051a57781c59cab68bc4fbad4d5c5664ee2ed6c", + "sequence": 42, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Bowel Cancer UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", + "media_type": "news_article", + "sentence": { + "text": "EXCLUSIVE: Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", + "media_hash": "cbf157715be2f1568e002740c473314056be6c72736a2acf70d38997", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity.", + "media_hash": "8b6fc505f809bd309e25ec3978682acd90befbbd043a469369f09417", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "President Donald Trump, whose former daughter-in-law Vanessa is dating Woods, was asked about the golfer when he landed in Miami on Friday afternoon for an investment summit.", + "media_hash": "2963a4da3f88f8a747a7f5d5fe1bef7cf28ebfafbfb79e01845d62c0", + "sequence": 38, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "trending": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "To see if the strain could hold up in the human gut, the team tested it in simulated intestinal fluid containing bile salts, a notoriously harsh environment that can disrupt bacterial cell walls and render them ineffective at binding plastics.", + "media_hash": "b14c7d95cf0fa0714d2fb20a1ae013556eb091df75a1014bc8a12c47", + "sequence": 22, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "politics_of_food": 0.0, + "environment": 0.0, + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", + "publication_date": "2026-03-31T14:37:03", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", + "media_type": "news_article", + "sentence": { + "text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK following his axing from BBC Radio 2, which was announced on 30 March", + "media_hash": "043eb702932d628fe0526047a8f6d9a7facc52cebdea2cdab8cc55aa", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", + "publication_date": "2026-03-31T08:45:14", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", + "media_type": "news_article", + "sentence": { + "text": "Kimberley Walsh met with a mum who was treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal", + "media_hash": "c3cd34eb0a31d6f7efd200b772e1f0cffc7977facdf4378536606cf9", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "media_hash": "741851f07fc1b9054ab069c6970c4d065358d1108935c207c753317d", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "publication_date": "2026-03-31T01:46:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", + "media_type": "news_article", + "sentence": { + "text": "Club Chemistry has since set up a COVID-like 'track and trace' system which will allow it to contact club-goers if further cases emerge.", + "media_hash": "bdd88e6fce9aa1f812d104ba3da4dc449d6e37b6b5acea9453c1f81b", + "sequence": 30, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.5503549999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T15:16:21+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/antoniabance/status/2038998843774120216", + "media_type": "social_post", + "sentence": { + "text": "Labour MP Antonia Bance says she is 'gutted' at the British Medical Association for refusing their pay increase offer to resident doctors.", + "media_hash": "9788a9294fb2ac74458fdc741d73b5f7491ccf54dac448f6a72a8fc8", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Antonia Bance", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", + "publication_date": "2026-03-31T14:44:01", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", + "media_type": "news_article", + "sentence": { + "text": "His wife, Carroll Taylor Wiseman, a nurse in a newborn intensive care unit, died at the age of 46 in 2020 following a battle with cancer.", + "media_hash": "3f30e5ea83964c8f5b675b702a89a8df4002d7a05c729ff691a9a988", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Karl Peggs, a professor of cancer immunotherapy at University College London Hospitals NHS Foundation Trust, agrees.", + "media_hash": "c839aa9205211143df9219f1e8f7d50dc545a5d3d621b41ce69348eb", + "sequence": 38, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 3.5503549999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "\"At Anthony Nolan we give hope to families affected by blood cancers and disorders, but we can't do it without the lifesavers that sign up to our register.", + "media_hash": "bd26cfc7ea63782680440892a60eb09e2f9a46047a63a4f77177df96", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anthony Nolan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Rowena Bentley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Alongside the meal plan, patients are provided with one-to-one support and guidance to help them sustain a healthy lifestyle for longer and reintroduce healthy foods and maintain weight loss, while medications for type 2 diabetes and blood pressure are stopped.", + "media_hash": "a6391784ce2ba31e0a7078049793783ddcef89ff4d50181b882cc3cd", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 4.552875, + "nutrition_": 4.552875 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.5503549999999997 + } + } + } +}, +{ + "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", + "publication_date": "2026-03-31T10:31:24", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", + "media_type": "news_article", + "sentence": { + "text": "Kimberley Walsh met the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal", + "media_hash": "d30ab9706acf2eb0382c21664c1a683e0533d5e1c077803f18ba923b", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "media_hash": "51cbdd9164ea04872d68e24f56ca55de23132bf56856a2aad161e746", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", + "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", + "sequence": 987, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "senedd_election": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", + "media_hash": "8e8fa0be58a7449a317b4c331f6070ab4869fa6b9d93504f4deadf1a", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", + "media_hash": "57434479d14b7e0cf6a48505f39003f800b3bd2b52e9efe71617c202", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Biogen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Full list of new Covid strain symptoms including unusual signs", + "publication_date": "2026-03-31T14:58:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", + "media_type": "news_article", + "sentence": { + "text": "New cases of the Covid-19 Cicada strain have been detected in the UK", + "media_hash": "f724b4e265ac04531414a1c6ae93d059046612c1cc4a2596d4c21e36", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + } + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity, it is also available under the different brand name Ozempic for the treatment of type 2 diabetes.", + "media_hash": "1c1a5d3ff8b91df209ee148f2b8d2eb2d3414574d374f564641915af", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 4.128005, + "nutrition_": 4.128005 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", + "publication_date": "2026-03-31T19:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", + "media_type": "news_article", + "sentence": { + "text": "A second fan felt the diabetes idea made sense, especially as executive producer Ben Wadey promised a series \"red herrings\" leading up to the New Year's Day special, in which Penny's child will feature.", + "media_hash": "05936833684338259aabb33aa526d3cc61dc6e5725a8fc1f6a4402bd", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Ben Wadey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "clinical_health": 3.5503549999999997 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity and, under the name Ozempic, for the treatment of type 2 diabetes.", + "media_hash": "a0f6effb26094d80d6c0fa582bd30cad4e8a30d7ce2d964e886211be", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997 + }, + "demo": { + "nutrition_": 4.128005 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "One major study which followed more than 90,000 people over a period of 28 years, found those who ate the most olive oil (more than half a tablespoon a day) had a 19 per cent lower risk of death from any cause, compared to people who never or rarely used olive oil.", + "media_hash": "d3b9d50f9688ff46047dccc4ea4f10b43bc4500b22eba26027f90e03", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 3.3647299999999998, + "health": 3.3647299999999998 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "During the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", + "media_hash": "7f0e74d03b66d26ba54eff12de54f8633379482a546f6469509def55", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.3647299999999998 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "A study published in the Lancet last year reported a 65% increase in annual hospital admissions between 2012-3 and 2021-2 for children and young people aged five to 18 with mental health concerns.", + "media_hash": "8626ca53f6c05fead7dfe4a87a9022f24192c3000401bd9bc14f3a4c", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465, + "leo_s_topic": 3.548465 + }, + "demo": { + "nutrition_": 5.36473, + "health": 5.36473 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T20:00:57+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/M_Star_Online/status/2039070465520501096", + "media_type": "social_post", + "sentence": { + "text": "Nearly half of primary teachers report pupil eating disorders, according to survey", + "media_hash": "ef9a573c62865dc9ce1cf565e2f165e79177090d16add6772418108e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "primary teachers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + } + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "More than a million to be prescribed weight loss drug to prevent heart attacks and strokes", + "media_hash": "b84ecd9ed07ea306c0562cb8b12c5a9e4305dd2358b9ee7e0acb2b4f", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 5.66914 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "The Cicada variant - technical name BA.3.2 - is better at evading the body's immune defences as it has around 75 genetic changes in its spike protein, the part of the virus that helps it get into cells.", + "media_hash": "2a99552cba67e0ad8895d7e21db51240c95eea973c7299a77d35416e", + "sequence": 3, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Of those who survive, one in three suffer complications, including brain damage and hearing loss.", + "media_hash": "ac9fe4e929d6b8670652f900fefdd0ee5052382b5b3c72591d2798f4", + "sequence": 66, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", + "publication_date": "2026-03-31T08:46:35", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", + "media_type": "news_article", + "sentence": { + "text": "According to the NHS, Rett syndrome affects around one in 10,000 girls, which results in severe mental and physical disability and there's currently no cure.", + "media_hash": "a44374cfb494f0c673058225ebb4e0c2e027d19f2578f24d025f70a6", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Throughout the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", + "media_hash": "289a32d6a75e44b138fcd9d6121b13a8b7de9b4942784298cc5051ce", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Yet one in three women experience severe pain during a hysteroscopy, rating it at least seven out of ten, according to the Royal College of Obstetricians and Gynaecologists.", + "media_hash": "4bf925d6f10bf8203a17ee705c943f5c28749c70974f233166565d7e", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of Obstetricians and Gynaecologists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", + "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.51751 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Aplastic anaemia can affect anyone at any age, but is more common in people aged between 10 and 20, and those over 60.", + "media_hash": "13b9d67e7a5d7292a25ad2e3db18c7fe95ae216ad641f4ecfa750869", + "sequence": 20, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.700095 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show every four-week delay reduces patient survival by an average of 10 per cent.", + "media_hash": "946d5b0e8aa7cfbd0f06829ecafc51cfa6a384335019633ba32d3ef9", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.5175099999999997 + }, + "aapfactcheck": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": { + "health": 3.548465 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "'When all five physical measures were combined, mortality prediction improved even further in groups with preexisting health conditions.", + "media_hash": "2212fe44d7200c46e0eec92390bfec86d32dd8275b62bdb9598ef03f", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Professor Tom Yates", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "University of Leicester", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 5.350285, + "health": 5.350285 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "In young adulthood, participants averaged two waves of binge drinking, defined as having five or more drinks in a row in the past two weeks.", + "media_hash": "27f7e5a4ae6741b4a504702aa085d9bc85baa621ca6806fb9bc064b6", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.197505 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Each wave of heavy drinking raised the odds by 13 percent, and that risk persisted 30 to 40 years later, when they reached their 50s and 60s.", + "media_hash": "4178a2bdbb980a6e9471b9f4bd3f64a6da58aed8bd028f39ac7008a3", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids in a study", + "media_hash": "03297ff6b86138b18eed5d4282f519eab36bad0dcd1cac2a17c551c0", + "sequence": 46, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 3.3956850000000003, + "health": 3.3956850000000003 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "They averaged just over one wave of daily smoking and less than one wave of heavy alcohol use - drinking 20 or more days a month - or frequent cannabis use, which involves using 20 or more days a month.", + "media_hash": "53fcc6e9983e3b7bf477225065a1c9c7940da9595f200c2547e2fe54", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Even after accounting for midlife smoking, each additional wave of daily smoking in young adulthood raised the odds of poor memory decades later by about five percent.", + "media_hash": "2c04b6f3c730a0ef7133881d81abd5108ae2471e3cc080559b51113a", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Known as the soups and shakes diet, the intervention aims to help followers lose between 22lb and 33lb(10kg to 15kg), which is enough for most people to reverse the condition, experts say.", + "media_hash": "962cc69bd75e812af033cc6284bb0c5b2a12cad4bd5a195febeca09b", + "sequence": 30, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.548465, + "nutrition_": 5.548465 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "Estimates suggest around 175,000 people aged over 65 visit their GP with RSV every year, and the virus causes around 8,000 deaths among older people annually.", + "media_hash": "3813d6cfd5f411de899c678c45de2ff0ec22a06d48a46c50552792a1", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "But using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids.", + "media_hash": "a4556b9681c5800be42e4353e9341d8b141f4bad850c72f83947b41e", + "sequence": 49, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 3.548465, + "health": 3.548465 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "A 2021 trial found that patients with constipation who ate two green kiwis a day, 100g prunes a day, or 12g of psyllium per day for four weeks all equally increased poo frequency and decreased straining during a bowel movement.", + "media_hash": "91f5d6ea3f32369d335f265a7dca8812d878f98e4ab94d7eac757043", + "sequence": 121, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 3.3956850000000003, + "health": 3.3956850000000003 + }, + "pa-media": { + "health": 3.548465 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", + "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", + "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.548465 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "By age 35, more than a quarter of participants showed signs of alcohol use disorder, six percent had cannabis use disorder - meaning their use of marijuana had caused significant life problems or loss of control - and nine percent smoked a pack of cigarettes or more a day.", + "media_hash": "d02ae427312abfb9f97020e22a5fba544302ade280d246942d464e71", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.2500299999999998 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "Doses of medicinal cannabis products can be especially potent, containing up to 27% tetrahydrocannabinol (THC), the psychoactive compound in cannabis.", + "media_hash": "1b99e50f1b184669204f52afd140b3423c1bc5a062db3328b403bb84", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.05185 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3502850000000004 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "Street cannabis is thought to contain between 15% and 20% THC.", + "media_hash": "d6a737f022d823cb1656bf3b15d7ec3de378d20a8d5e54b1c9c264f0", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "It demonstrates a heightened ability to bypass existing immune defences due to approximately 75 mutations within its spike protein - the specific component the virus uses to enter human cells.", + "media_hash": "d4336d3db354037feb52152efc143a6ddf67caefb4977c72770695a5", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.2500299999999998 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "People with alcohol use disorder at 35 were 32 percent more likely to report poor memory in late midlife compared to those who drank without disorder.", + "media_hash": "683b57d649e9c4fef9b9b32d6a512281761c3de585ff8578fb4ad717", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Disease might be prevented in around seven in 10 cases, experts estimate, based on best evidence.", + "media_hash": "a993bdf2629c0c90b4bf328a3d3ae5b800c5fead300253f4665939dc", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.548465 + }, + "demo": { + "nutrition_": 3.548465 + }, + "dev": { + "blah": 3.123595 + }, + "pa-media": { + "health": 3.548465 + }, + "fullfact-policy": { + "climate_change": 3.548465 + }, + "mediacorp": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Between November 2025 and January 2026, BA.3.2 represented approximately 30% of sequenced COVID-19 cases in nations including Denmark, Germany and the Netherlands.", + "media_hash": "aabe9c49962a8ee7c5b2bce5c5a14dcf56c187fd4dbf6d50b16f4f23", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "Between November 2025 and January 2026, BA.3.2 accounted for roughly 30% of sequenced COVID-19 cases in countries such as Denmark, Germany and the Netherlands.", + "media_hash": "4af0dfed5515e5074928fc7fafb57d3f207929d6da2bb3652ab40cd1", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", + "publication_date": "2026-03-31T11:59:42", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", + "media_type": "news_article", + "sentence": { + "text": "By late 2025, it was accounting for about 30% of Covid cases in countries like Denmark and Germany.", + "media_hash": "8b84b93a74080d74c2227698923ca12cade8a5adbc3ca6fe3223833d", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", + "publication_date": "2026-03-31T19:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", + "media_type": "news_article", + "sentence": { + "text": "\"Still hoping the baby will be Vinny's and Penny has gestational diabetes, which would explain the baby being larger,\" said a fan.", + "media_hash": "ab57d9322dbb83817ce3a6119dc1511922e4dcae44dc66a6d566373b", + "sequence": 22, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Fans", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.545675, + "clinical_health": 3.545675 + }, + "demo": { + "health": 3.545675 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Thousands of people suffer from viral meningitis every year in the UK.", + "media_hash": "55b611e66b3a75cd6a90b7039922e35103a646da0cc4b8e0e25c172c", + "sequence": 71, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.53287 + }, + "demo": { + "health": 3.077045 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.53287 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "The one-off jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing disease-fighting T-cells to kill off the tumour.", + "media_hash": "9339504d99cf017cd25dc746421350dd17d2623f5b1e7b194a4cb3b5", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5194 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": { + "health": 4.128005 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NADINE DORRIES: Jackie vs Carolyn - both were Kennedy women of style, but only one had substance", + "publication_date": "2026-03-31T02:50:23", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/columnists/article-15692683/NADINE-DORRIES-Jackie-vs-Carolyn-Kennedy-women-style-one-substance.html", + "media_type": "news_article", + "sentence": { + "text": "A survey published in the European Heart Journal informs us that short bursts of activity, such as running upstairs, can slash your risk of dementia by 63 per cent.", + "media_hash": "b87b606cd60322f999e2ea17120b30044d5d9af6f64d1b79ee1bc81f", + "sequence": 59, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "European Heart Journal", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5175099999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "An NHS survey of 2,000 women last year found that a fifth of women said they preferred not to have a mammogram as they've heard it's painful.", + "media_hash": "cc2a2d45d8cabbb6aef76921514c3d32d00658d278f6909850b85505", + "sequence": 51, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "More than 10,000 under-50s are diagnosed with the disease every year in the UK now - 10 per cent more than in 2010.", + "media_hash": "aa26f7e42291adce151e66db5ff1336d224db4e7c302391aaad95911", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "health": 3.123595 + }, + "aapfactcheck": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "Once considered largely eradicated in the UK, tuberculosis (TB) is rising again, with cases up by more than 13 per cent and London among the most affected areas.", + "media_hash": "7a88e7c9a4b13d466735ec6a9fb08e5d2f8071a38bf3417ffd7831f9", + "sequence": 38, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.5163599999999997 + } + } + } +}, +{ + "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", + "publication_date": "2026-03-31T10:45:43", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", + "media_type": "news_article", + "sentence": { + "text": "Recent figures from the British Dental Association show that around nine in 10 NHS practices are not accepting new adult patients.", + "media_hash": "04a11b26e578146567d6cb25471ff80fdb514b884b54199abb714e9c", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Dental Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "health": 3.077045 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Up to two million people in Britain are currently thought to be using weight-loss jabs, the vast majority paying for them privately.", + "media_hash": "530cf67f596660c83326df4b67ccc08710f7c3b262c55915f8977f72", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "nutrition_": 2.970815 + }, + "pa-media": { + "health": 3.09149 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "\"Through the programme, we've donated more than 10 million portions of fresh fruit and veg to schools across the UK to date, increasing access to healthy food and helping children to discover a love for fresh produce.\"", + "media_hash": "0a79794137e6241def0d7ef6360e1b0fd3cfa12555f171d5999b6b2b", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.545945 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Many melanoma patients are still alive ten years after their diagnosis; in the 1990s, average survival time was just six months.", + "media_hash": "9b26ac8addf8556d15dc21304c8cccf5c5e4cb1e82725fe0cab1d38a", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "health": 2.66662 + }, + "aapfactcheck": { + "health": 2.66662 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "media_hash": "370a158570997232faf9ad63ede4b286ddcfca51e9ab7d49ec6d4695", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5163599999999997 + }, + "demo": { + "environment": 3.5163599999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.51636 + } + } + } +}, +{ + "title": "'Sending the King to the White House is a risk the UK does not need to take'", + "publication_date": "2026-03-31T18:01:28", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", + "media_type": "news_article", + "sentence": { + "text": "Covid may no longer dominate daily life, but it still demands respect.", + "media_hash": "b820d6393e216d0268bebb9b4434e2bee62357394b5a901a463fe775", + "sequence": 28, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.50221 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "An estimated seven million Americans, meanwhile, live with Alzheimer's Disease.", + "media_hash": "c26885df75ffbe91ffa03792e2c621ecaa7e9e153d2bd62c63b6249c", + "sequence": 63, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5019150000000003 + }, + "demo": { + "health": 2.925415 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "There's so much we don't know about women's health and the connections between everything but I do believe there's a really strong link between ADHD and autoimmune diseases.", + "media_hash": "0b347928c4b8b8a17b0d8ab50ca9b18bd8b413034557e2814e5eae0d", + "sequence": 134, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5002750000000002 + }, + "demo": { + "health": 3.5002750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.5002750000000002 + } + } + } +}, +{ + "title": "The Delusions by Jenni Fagan review: 'always interesting'", + "publication_date": "2026-03-31T10:03:38", + "publication": "scotsman", + "url": "https://www.scotsman.com/arts-and-culture/books/the-delusions-by-jenni-fagan-review-always-interesting-6529664", + "media_type": "news_article", + "sentence": { + "text": "Edi, a single mother has died young, from cancer.", + "media_hash": "0e785b04b8fbb37a8fe59978ab1e09e3c6106a1a0ef1d283b83fb349", + "sequence": 21, + "claim_type": [ + "personal", + "quantity", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 17927, + "score": 0.40559999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.4201550000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "When we get to a certain age, night-time trips to urinate become more likely - especially for men who may have enlarged prostate glands (which can prevent the bladder emptying fully).", + "media_hash": "d5c2c1e439d121200ac7e9cf659ccbbee6391e8626a94a53d6c924ff", + "sequence": 60, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.4184200000000002 + }, + "demo": { + "nutrition_": 3.4184200000000002, + "health": 3.4184200000000002 + }, + "pa-media": { + "health": 2.5686799999999996 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", + "media_hash": "86d362a210c7cecf9869a88f456e410bb08f46380093f35448d292e5", + "sequence": 13, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.4184200000000002, + "clinical_health": 3.4184200000000002 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.4184200000000002 + } + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "He added: \"I would encourage everyone who becomes eligible for the RSV vaccine from April to come forward and get vaccinated as soon as they have been invited to do so by their GP.\"", + "media_hash": "98567f83abf7aacbbdaedeb0f33c5bec7783269d0dbce1d88e52ca99", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Health Minister Stephen Kinnock", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.414065, + "clinical_health": 3.414065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", + "media_hash": "98d1471372b8b9cc449bbaa4203bae3e53faf553285c4a4c8a226b98", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peter Hastie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.414065, + "scottish_elections": 3.414065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "Now 40, I have made a full physical recovery from my cholangiopathy and still attend NA meetings, but now I am one of the people who reassure newcomers that there is hope.", + "media_hash": "8e710449a1c9b78facd51dd9a6c07db5461201006c1ab19d0c7469d4", + "sequence": 128, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.407405 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "Um, and at the same time, even when I was going through breast cancer, I felt, wow, my body's extraordinary, it's still helping me heal, it's still helping me get to the next phase.", + "media_hash": "e2ab393635727a1f3aae53a36eac375b1f2f09489712b6481e6fcaa7", + "sequence": 303, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "Rita Wilson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.407405 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "I'd love to hear from you if you've got a diagnosis or you're currently trying to get a diagnosis for a condition like ADHD or autism.", + "media_hash": "02334656da9a49c33f4a9c512396c70082abc35114aa3cf7d8551fc1", + "sequence": 610, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.407405, + "clinical_health": 3.407405 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Um so I'm 51, um and I was diagnosed with ADHD just two weeks ago.", + "media_hash": "6defb7d77cd4cee737eb5634b1b607c41117dcee66163c14835056ac", + "sequence": 654, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.407405, + "clinical_health": 3.407405 + } + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "with long Covid , my focus is on being well and healthy.", + "media_hash": "1fb105c4de226600ec9f3703d9aa62d1f7160b7e4a3f0260cb05f31e", + "sequence": 12, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.407405 + }, + "demo": { + "health": 4.22619 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.2571449999999995 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Um so I've been reading up on ADHD for the last four or five years trying to um understand it because a few people that know me have sent to me you know I think you might be ADHD have you ever thought about it.", + "media_hash": "e88a135532842c64079bf44a8f22a038d1ce1ef838d62e6191967c9c", + "sequence": 655, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.407405, + "clinical_health": 3.407405 + } + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "Cut to 2020 and Covid, and I was working really hard.", + "media_hash": "2df8fe148d10e90d73643d98f116dc0eb9d0075f3b08e30ee3d94486", + "sequence": 12, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.407405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "We'd love to hear from you if you've been diagnosed with ADHD or autism.", + "media_hash": "618308d2dabc1fa3872e783fae888c23ff19ae0c756350f32815922f", + "sequence": 558, + "claim_type": [ + "personal" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.407405, + "clinical_health": 3.407405 + } + } + } +}, +{ + "title": "Good Morning Britain star shares horror over loved one's sepsis symptoms", + "publication_date": "2026-03-31T09:03:11", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/tv/good-morning-britain-star-shares-36947383", + "media_type": "news_article", + "sentence": { + "text": "The former lobbyist had caught Covid-19 in March 2020, and in the months and years that followed, he endured one of the most severe cases of the virus.", + "media_hash": "f5cec2b0f990b29b924bac517cef7be611ffca6ea058f412ecfd3a74", + "sequence": 14, + "claim_type": [ + "correlation", + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3959650000000003 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "As the weeks passed, though, that couple of glasses in the evening became three, then four, then the whole bottle.", + "media_hash": "193c4344f927625b1d734ef7651f2c276c3c0d0eea30dcb101ce0669", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "The UK Health Security Agency has issued a warning after 13 travel-associated cholera cases were reported in 2025, a 56% increase from the previous year", + "media_hash": "391b363b4ccdf66a88a26dab8466f5056ec71493843f07a1cd87791c", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "environment": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.395685 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "The data reveals 13 travel-related Cholera cases plus one additional case in a person who drank water from an endemic country were recorded in 2025 - representing a 56 per cent rise.", + "media_hash": "e543d4f839a334b0a3febdae7b271a7570b67c8824ef82092360962c", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "environment": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", + "publication_date": "2026-03-31T03:18:54", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", + "media_type": "news_article", + "sentence": { + "text": "Treasury officials said suspicious activity reports related to health care rose 20 percent in 2025 compared with 2024, but warned that the reports likely represent only a small share of the fraud occurring nationwide.", + "media_hash": "3c17a1088f1e28ec7cb872271587783d75f134b1d5c76c01c08aab0d", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Life expectancy for about half of those with the condition is between just two and give years from the onset of symptoms.", + "media_hash": "d9feeac5326a2109d68c069813a8374d3fc3c3500997daa1522db2ec", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.5175099999999997 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "She said the mortality rate for over-70s who \"cocooned\" at home was no different to the general population, but mortality rates for people of the same age in residential facilities was 21 times higher.", + "media_hash": "e9b5cf19486a74a032ea33b705775c3feba4dfdb148de807582769cb", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Professor Mary Codd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.395685 + } + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "It happens when the bone marrow cannot make enough new blood cells for the body to work normally, with around 100 to 150 new cases in the UK every year.", + "media_hash": "d4eb3189c15e8108554d6c96f2a5b357949af20206dd93d05311ddf7", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "The family was told his levels were at 5% with very few cells, when a baby his age should have 100%.", + "media_hash": "9f939559ec0d8a2cfb068b41a07993159deed244124d5d6472435a20", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "There was a 20% reduced risk of a major heart event among the 17,604 people who took part in the study.", + "media_hash": "94280911332669037a7900916a06ff5928796e7a1d3bdcb3a260ecce", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3647299999999998, + "nutrition_": 3.3647299999999998 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "Indeed, figures from the Office for National Statistics show that ketamine use among women is on the rise; in 2023, female deaths from ketamine were three times higher than pre-2020.", + "media_hash": "1992088ea2b88425883c95af51cd6b72d65f8c6cb1039d914a8e34c0", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "My team's findings, published in the journal JAMA Network Open, concluded that having an old gastrointestinal injury, such as a stomach ulcer, was associated with a 76 per cent increased risk of later developing Parkinson's.", + "media_hash": "75d56db458c020811775e1351cdebed06fa46190ffa427654388b77e", + "sequence": 20, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "nutrition_": 3.3647299999999998, + "health": 3.3647299999999998 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show the five-year survival rate in melanoma patients on the drugs has improved by around 50 per cent since they were introduced", + "media_hash": "71c6fe2e6bb5aaa57d5dd99d4f1405dac636b369ee644a884b90709d", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "aapfactcheck": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "Among the 17,604 people who took part in the study, there was a 20% reduced risk of a major heart event.", + "media_hash": "097e62e068a0990aff3183fd9418553840d84d18da651031dea7766e", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "nutrition_": 3.3956850000000003 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "She also bled for several weeks (normally, if there is bleeding it lasts no more than a couple of days).", + "media_hash": "db480edb9eadb68fe4a4a45a616b6f54602c58c51f6482f11c514589", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "More than five million women in England are not up to date with their routine cervical screenings, for instance, according to 2024 data.", + "media_hash": "a08d0d6e01a7117ab36b4c0d5a3156fc91db539ffe741320171f3506", + "sequence": 47, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 4.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Around eight million people in the UK are living with cardiovascular disease, with an estimated 1.2 million thought to have a body mass index (BMI) above 27 and therefore meeting the new eligibility criteria.", + "media_hash": "9325cc2f9bd8a47956ebc6d63387b3b53bc6103d0b4c7d2ddbb83e71", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "nutrition_": 3.3956850000000003 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "A person who engaged in heavy alcohol use in their 20s was not just at slightly higher risk of memory problems in their 30s.", + "media_hash": "79069e5998a16c57bc6c49e67e7b101a96e2cce23b098d9416add315", + "sequence": 34, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show the five-year survival rate in melanoma patients on the drugs (given via weekly or fortnightly infusions into a vein in one arm) has improved by around 50 per cent since they were introduced.", + "media_hash": "0b6fbb0633616a9562710ecafe635d663bf7b80f44c97b268323d9e5", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "And a recent study of more than 5,000 people in the US, Canada and the UK found 34 per cent of those aged 18 to 34 experienced at least one bowel disorder (e.g. chronic constipation or diarrhoea) - in contrast to 22 per cent of those over 65.", + "media_hash": "33152b4aae8c12a288356058f7b3b639a98e1a55aed07e15eafcaf2c", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "nutrition_": 3.3956850000000003, + "health": 3.3956850000000003 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "He had lost his job and taken out a payday loan to fund his prescription, which was now costing up to \u00a31,000 a month.", + "media_hash": "eba837c90f82f13e161c878ce0bbd413ed60b9e71c9ca2a1e6bfac41", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "The figures show 13 travel-associated Cholera cases and an additional case in an individual who consumed water from an endemic country were reported in 2025 - a 56 per cent increase.", + "media_hash": "fd32ad33349d40fd83de9262bd14aea2154e845e882ac2c6509ea2e6", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "One 2021 clinical trial found that people with high blood pressure who ate around four tablespoons of flax seeds a day experienced significant reductions in body mass index (BMI), total cholesterol levels and blood pressure.", + "media_hash": "55be0aa6f03e67eb488beea57c5ca66c982036c347112107332ffc2d", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003, + "nutrition_": 3.3956850000000003, + "popular_media": 3.3956850000000003 + }, + "pa-media": { + "health": 3.3956850000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "For each additional wave of daily smoking in their 20s, they were nearly twice as likely to be smoking a pack or more a day at 35.", + "media_hash": "4dd6cf97e36f79cd8eabd56682f31f4cc31c34f47a147843f5e6b666", + "sequence": 54, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3956850000000003 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "Participants with at least one of 131 common illnesses were considered 'unhealthy.", + "media_hash": "6975a7e4f420461209f13a61ea11c8da37ca198968a6b50a362cdecc", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.38124 + }, + "demo": { + "nutrition_": 5.38124, + "health": 5.38124 + }, + "pa-media": { + "health": 3.38124 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.38124 + } + } + } +}, +{ + "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", + "media_type": "news_article", + "sentence": { + "text": "\"I was immersed into a tank with the worst things you've ever seen and that was terrifying,\" says Bev.", + "media_hash": "31ea5e0b04a37a4b2855017db644df3014634da1c334fc873a6a313e", + "sequence": 18, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.357955 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "As days get hotter and the sun becomes more intense, people risk skin damage from sun exposure.", + "media_hash": "84c53fe62c9670906b65c6760077d05de3606ad34fb29ed334f40df2", + "sequence": 4, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.35651 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.35651 + } + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "Collagen is not going to give you the same benefits as certain skincare treatments, using sunscreen, drinking more water and reducing alcohol or smoking.", + "media_hash": "413be523f8d4328eb2f6a02acb29cc89ddccb566b83eb4156d4f1a09", + "sequence": 18, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Josie Porter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.35651 + }, + "demo": { + "health": 5.35651 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brits urged to change the way they wash clothes as 60C may not be safe", + "publication_date": "2026-03-31T02:47:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", + "media_type": "news_article", + "sentence": { + "text": "This stomach bug can remain on fabric for up to a month, making contaminated clothing a more significant transmission risk.", + "media_hash": "ab8e59296879a5cce0fcc9ed66e0745d61812db2c19b98dcbdaac734", + "sequence": 14, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.35651 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anyone who washes clothes at 60C urged to think again this spring", + "publication_date": "2026-03-31T02:47:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", + "media_type": "news_article", + "sentence": { + "text": "This stomach bug can survive on fabric for up to a month, making contaminated clothing a greater transmission risk.", + "media_hash": "f091569c1a11a98360e4cf89290d4424883c05820116d37d6b67e4a0", + "sequence": 15, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.35651 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Patients with conditions such as peripheral arterial disease, or those who have already experienced a heart attack or stroke, face a significantly higher risk of another potentially fatal event.", + "media_hash": "5ff8a25eaa8b589a1539aacc5868755753eb723d7637b2847f0db2c8", + "sequence": 18, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.35651 + }, + "demo": { + "nutrition_": 3.35651 + }, + "pa-media": { + "health": 3.235835 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "New guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 or over in addition to other medicines, such as statins, and alongside a reduced calorie diet and increased exercise to prevent heart attacks and strokes.", + "media_hash": "a7cdc230cfc9b45768024f184c615c9583aafd8f1417361bd669fb63", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3502850000000004 + }, + "demo": { + "health": 5.31933, + "nutrition_": 5.31933 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Anyone can be affected but at-risk people include those aged under five, 15-to-24 and over 45.", + "media_hash": "5ea23e15128bdc37b9e41d0e4a85b43f4fc4ab7ac92809751daf3ac1", + "sequence": 51, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3502850000000004 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3502850000000004 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "'It's positive to see the UK Government commit to meeting cancer wait time targets by 2029.", + "media_hash": "e9119ad9071632a987ca75672fad430bfe158f4edcd8046a5c140ba6", + "sequence": 24, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Cancer Research UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Matt Sample", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.34943 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "Millions more will be eligible for the potentially life-saving jab (Image: Getty)", + "media_hash": "2afe9f8c94740a71c3849cb245a5826dde0ad78cbeb54ee607b04829", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.3475400000000004, + "clinical_health": 3.3475400000000004 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.3475400000000004 + } + } + } +}, +{ + "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", + "publication_date": "2026-03-31T11:56:49", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", + "media_type": "news_article", + "sentence": { + "text": "\"When it comes back at that point it is no longer curative, you are then on a palliative pathway. It is no longer about can we get you better, no cancer, it's about how many years can we keep you alive and comfortable. That's incredibly hard news to deal with when you've got two young children and you want to be there to bring them up.\"", + "media_hash": "c732e5d69a959f4f635def8f1de703b035daeb338a21d9dd32b1cf6b", + "sequence": 23, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Christopher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + } + } + } +}, +{ + "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", + "media_type": "news_article", + "sentence": { + "text": "She said how this latest incident leaves Moira \"worried\" amid her fears she will lose Cain as he battles cancer.", + "media_hash": "ff32eb69573e6189e5712cd004ba278481a55cfe2ab395ad5364a438", + "sequence": 7, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Natalie J Robb", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Moira Dingle", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "She also has ADHD.", + "media_hash": "c6fda1fd91a1cd4dcf1717bb4e5ffed44a05d84ad477ab0ceeb6b439", + "sequence": 3, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Ronnie, from Merseyside, was diagnosed with the rare blood disorder aplastic anaemia just before his first birthday.", + "media_hash": "15a19fceb6c1f96ededefb4bf24a9825f24c3375cb953bb2c9483c01", + "sequence": 5, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Laura", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", + "publication_date": "2026-03-31T19:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", + "media_type": "news_article", + "sentence": { + "text": "\"I really hope so and that this is all a red herring by Wadey to throw us off,\" the fan said before adding: \"The diabetes thing would make sense too.\"", + "media_hash": "003623ccac9faafe70195935fcb90eec6210d8f868e2acb552a127df", + "sequence": 26, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Fans", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.347495, + "clinical_health": 3.347495 + }, + "demo": { + "health": 3.347495 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", + "publication_date": "2026-03-31T12:48:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", + "media_type": "news_article", + "sentence": { + "text": "She said: \"My mother had ovarian cancer, and in those days no one talked about women's gynaecological cancers, their symptoms, or how they affected women's bodies - it's like there was a real sense of shame and embarrassment.", + "media_hash": "cbf4c468c7adde13ad73a7f624a40ce6ed052e9625a022b0c934f9dd", + "sequence": 7, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Davina McCall", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + } + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "Hermione Norris has revealed she has suffered from long Covid, which left her concerned about her ability to take on physical challenges.", + "media_hash": "f846d477c6178655bcd4f6ce8aef77e378ff65ed514394cbe3f826c5", + "sequence": 2, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Hermione Norris", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "\"I also use an infrared sauna for my autoimmune condition. I get really stiff joints. I'm so much better after the long Covid, but I feel different, physiologically. It gave me a shock, as I've always been quite fit and strong.\"", + "media_hash": "22f49f5c2f0e729e1357da80c354ead584efeea29d9bcba1263623f3", + "sequence": 15, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Hermione Norris", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Describing how her battle with bowel cancer began, Nicola said: \"It was so frustrating knowing that something wasn't right, but also feeling like the people who were meant to be helping me, just weren't listening.", + "media_hash": "03fe5ed3478b99596951308fa80e5b3b471d5f86d6d8b04c8af62788", + "sequence": 9, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Nicola Rankin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + } + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "That's been particularly tough as my mother died of lung cancer at a relatively young age, but she did smoke and I never have.", + "media_hash": "6d44303ba88f9df2387074305e1b998f1a1a191df0db113280015dba", + "sequence": 64, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "Beverley Callard, who played Liz McDonald on Coronation Street, has tearfully explained that she is \"in denial\" amid her cancer battle as she waits for results to come back following an operation", + "media_hash": "c560bc1911fb3b56bee1d215fedf75a86dc5bc96f9ed472cd67562da", + "sequence": 1, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "Coronation Street legend Beverley Callard was on the verge of tears as she admitted she is \"in denial\" amid her cancer battle.", + "media_hash": "ec898a821454a960f93f32ddfcdcef75b0803ed02fde56c1e5905b11", + "sequence": 2, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And nothing to panic about, whether it be blood or whether it be, and nothing I'd found in the diary or anything of that, any of the symptoms, so as I say, you know, for me, it was definitely a shock without a doubt because, you know, we all believe, um, you can say cancer free if you stay fit and healthy and all those things, but it just goes to prove that isn't the case.", + "media_hash": "6d4d76660c7463a0c502b369abbfd3e70e15ad74783b391dcdbb0a9b", + "sequence": 718, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "John Woodland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.347495, + "leo_s_topic": 3.347495 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Thousands of people living with motor neurone disease could be given the chance to live longer, thanks to a new drug which has been shown to slow the progression of the most common form of the degenerative illness.", + "media_hash": "8d45a445d0eeec3ea7a33ae3048b711116e9100264c1010c4059c262", + "sequence": 2, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.31933 + }, + "demo": { + "health": 3.47096 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when NICE approved Wegovy for weight loss on the NHS.", + "media_hash": "17046c8fcc233b84b131676420dab7f75f440773366e573d0ccd4064", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.31818 + }, + "demo": { + "nutrition_": 5.16655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when the National Institute for Health and Care Excellence (Nice) approved Wegovy for weight loss on the NHS", + "media_hash": "60f7b2f2025fab5d4c2ae37f5c68131dfe3a76d7f14272d94bc68e32", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.31818 + }, + "demo": { + "nutrition_": 4.9398599999999995 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", + "publication_date": "2026-03-31T06:00:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", + "media_type": "news_article", + "sentence": { + "text": "Since the cameras stopped rolling, Bev has been diagnosed with breast cancer and is currently undergoing treatment.", + "media_hash": "eb1f0f0bbab564759825122c5cbc3c70a275b941957cbf79f38b0b92", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.310385 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month.", + "media_hash": "d7586006485d4842b24d32258850733f4bf5f05bd5db2f2324b65c7f", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.310385 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", + "publication_date": "2026-03-31T14:44:01", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", + "media_type": "news_article", + "sentence": { + "text": "Weisman lost his wife Carroll (left) to cancer in 2020", + "media_hash": "624b0015f1ff825f43d94e03ed6d3e15a862471e2156e76efe1cedca", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.310385 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "It is recommended for those with a Body Mass Index (BMI) classed as overweight or obese - higher or equal to 27.", + "media_hash": "ed6e5ecf6c2bf1b52bc3b6bf93d372746be123e47a0339f48ef67fdd", + "sequence": 22, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.3040900000000004 + }, + "demo": { + "nutrition_": 2.985215 + }, + "dev": { + "blah": 3.3040900000000004 + }, + "pa-media": { + "health": 3.121505 + }, + "fullfact-policy": { + "climate_change": 3.3040900000000004 + }, + "mediacorp": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Never hold in a poo - the longer it sits in your colon, the more water will be drawn out of it, making it harder to go.", + "media_hash": "a480d1a21730f82fdfbb7c7a1de954cd3c04e6b951c20e8ec84c3b31", + "sequence": 40, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2821300000000004 + }, + "demo": { + "nutrition_": 3.2821300000000004, + "health": 3.2821300000000004 + }, + "pa-media": { + "health": 3.2821300000000004 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "In 2022, the World Health Organization recorded a worldwide surge in cholera notifications, with more cases emerging from a growing number of nations.", + "media_hash": "cb83368ba004a71a1f1421e5cb28d617e9fa486e96e28b74d937ea8b", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2500299999999998 + }, + "demo": { + "environment": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.25003 + } + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "Almost 424,000 people now receive the devastating news each year, with the frequency up from once every 90 seconds just ten years ago.", + "media_hash": "09e51437c2cd5b0250dd433c033af1c68e265b05905a0be2a83c3195", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2500299999999998 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": { + "health": 3.548465 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show only around 40 per cent fully respond to them.", + "media_hash": "54b2137c342a0148c0d0b21ddc5ad9db0f0dde4b36a26ca9eaa707a6", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2500299999999998 + }, + "demo": { + "health": 3.123595 + }, + "aapfactcheck": { + "health": 3.2500299999999998 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "Its popularity as a recreational drug has surged in recent years - particularly among young people - largely because it is cheap compared to other drugs.", + "media_hash": "4581f945cb0d47b8c065a88d5eb3d1a04f7697fce35487c28813199c", + "sequence": 35, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "'The earlier we can diagnose and treat ALS, the greater the potential to preserve function and maintain quality of life for longer, which are key to making ALS livable until we can cure it.", + "media_hash": "60d3839eff38526160a5cb4046ba040742eab1e4ef477ea20bae4861", + "sequence": 15, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Kuldip Dave", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "ALS Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "health": 3.20488 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "When looking at walking speed, the team found slow walkers were more likely to have higher resting heart rates than brisk walkers, which signals increased stress on the heart.", + "media_hash": "52017b787e269b2fec006cfef6e1ab4da8a93a5014ef4d43dbd181cd", + "sequence": 28, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "nutrition_": 3.235835, + "health": 3.235835 + }, + "pa-media": { + "health": 3.235835 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "Preliminary analysis indicates the cicada variant may be more capable of evading antibodies generated through prior infection or vaccination, raising concerns about reduced immune protection.", + "media_hash": "6445f53b920d7c88db8b6b5cd764fbdbe171a8e066e1e2ac3f73b8d8", + "sequence": 32, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Health authorities in the UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "health": 3.235835 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "These metrics can show how much stress essential organs like the heart are under on a day-to-day basis, but improving them can take months or years of dieting, exercise and medication.", + "media_hash": "8e8b3b53a78ec1fb46e8cd8108ac1b2d58448392a3db4290bd3b2f4a", + "sequence": 3, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "nutrition_": 5.235835, + "health": 5.235835 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "PM", + "publication_date": "2026-03-31T16:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404361", + "media_type": "transcript", + "sentence": { + "text": "And similarly, when we think about some of the physical health outcomes, cardio metabolically, so for our hearts and for lots of different bio markers, from activities like dance, and actually direct trials have compared dance to non-dance exercise, are often showing greater benefits physically from the dance compared to the non-artistic equivalent.", + "media_hash": "330ef86a4c5966f0e4ce973007e103164f561da7847cbf2b6dbf8566", + "sequence": 238, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Daisy Fancourt", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Moreover, tamoxifen patients are warned not to get pregnant while on the drug as it significantly raises the risk of birth defects, including physical deformities and genetic diseases.", + "media_hash": "8db9549a40b3a0a3f6fe493876ae4fb8b340e0ec3719b14cb7ce168d", + "sequence": 39, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "health": 3.235835 + }, + "aapfactcheck": { + "health": 3.235835 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Early research suggests the cicada variant may possess a greater ability to sidestep antibodies produced by previous infection or vaccination, sparking worries about diminished immune defence.", + "media_hash": "516436357512642cefa26e6b4e8214113bba6f4832ea647d988b0d0f", + "sequence": 32, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "health": 3.20488 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "This is particularly important for older people or those with weakened immunity, with studies showing it can reduce the number of infections.", + "media_hash": "fd635a58a5169e3893ec0a796aa588998fb0abfe4ca9397415f25331", + "sequence": 39, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.235835 + }, + "demo": { + "health": 3.20373, + "popular_media": 3.20373 + }, + "pa-media": { + "health": 3.235835 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.235835 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show that half of women who have breast surgery will experience persistent pain after the procedure.", + "media_hash": "083d0ceb7d4064518b6d6beb00abdf2332d65a447fcb607cc3f797a6", + "sequence": 54, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.226865 + }, + "demo": { + "health": 3.226865 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "'In practice this could cut around three to five major cardiovascular events per 100 patients every few years.", + "media_hash": "bfccf60321cc19333e9f7cd45af8233a6d359eece94ee43f6d5ad24e", + "sequence": 34, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Oliver Guttmann", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.226865 + }, + "demo": { + "nutrition_": 3.226865 + }, + "pa-media": { + "health": 3.226865 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "People who used cannabis frequently in young adulthood were more likely to report poor memory decades later - an eight percent increase in risk for each wave of heavy use.", + "media_hash": "49c17fbddf1e4cd5a475e8e0b4bce931e17059dc91d4316e97368f93", + "sequence": 42, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.226865 + }, + "demo": { + "health": 3.04313 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Eating an excess of sweets and chocolate is directly linked to poor dental health in children, due to the foods' high sugar content.", + "media_hash": "4080c39785ab2938efdb7834e50f0e6d3a774a104da943dbc3e1bc71", + "sequence": 33, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2202399999999995 + }, + "demo": { + "nutrition_": 5.2202399999999995, + "health": 5.2202399999999995 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "These months are when the UV Index can reach three or higher, which is when people should take measures to protect themselves from the harmful effects before they happen.", + "media_hash": "788007ef5f415735a4b2b2c05e2b0326a1f0c9ff033edb099d039b82", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2139949999999997 + }, + "demo": { + "health": 3.39658 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.2139949999999997 + } + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "These months mark when the UV Index can climb to three or above, which is when people should take steps to shield themselves from the damaging effects before they occur.", + "media_hash": "bf5774322be6fb60e94cd17c5cf39c012a98aa33c36c06d89011c969", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.2139949999999997 + }, + "demo": { + "health": 3.39658 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.2139949999999997 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", + "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.211065, + "scottish_elections": 3.211065, + "clinical_health": 3.211065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.", + "media_hash": "218d7e042f8efed1e8d5bd237012a703b602857c1554f6f9868de31e", + "sequence": 19, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Helen Knight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.20373 + }, + "demo": { + "nutrition_": 3.0521000000000003 + }, + "dev": { + "blah": 0.0 + }, + "pa-media": { + "health": 0.0 + }, + "fullfact-policy": { + "climate_change": 0.0 + }, + "mediacorp": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "An alert has been issued following 13 cases of a potentially deadly disease that can prove \"fatal within hours\" being identified in individuals returning to the UK from four destinations.", + "media_hash": "70b3ebf3c06929aa23577f0502fe2043f7789012c78ec447916b9e1d", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.197505 + }, + "demo": { + "environment": 3.16655 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.197505 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Heavy marijuana use in one's 20s raised the odds of developing cannabis use disorder by age 35.", + "media_hash": "219c6cfa16a9529cdd91766fcdc32ff3e6acb74739bfce5ba2704f85", + "sequence": 46, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.197505 + }, + "demo": { + "health": 3.3502850000000004 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'I died for 10 minutes and time-travelled into the future - death is a door'", + "publication_date": "2026-03-31T06:35:07", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/i-died-10-minutes-time-36946547", + "media_type": "news_article", + "sentence": { + "text": "Her oxygen levels quickly plummeted to 65% - which is lethal.", + "media_hash": "c9490e6a80f327f5e189cb2ec316eb78614827b7620f843298e35f40", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.197505 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "To date, it has gathered 8,000 testimonies of women with shocking stories that echo Dawn's - many report not being informed that a hysteroscopy can be painful or being given information about pain relief options.", + "media_hash": "2d589110115afbe0619a2c8be078d06c5d32780697fa1d507dc2c707", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Campaign Against Painful Hysteroscopy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.197505 + }, + "demo": { + "health": 3.16655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Weight-loss jab Wegovy will be offered for free on the NHS to more than a million people in England at risk of heart attacks and strokes.", + "media_hash": "c231b293e533cb4429abed302733a00e2d2079459cf7eae357e1b5c2", + "sequence": 8, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.19476 + }, + "demo": { + "nutrition_": 3.19476 + }, + "dev": { + "blah": 3.19476 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.19476 + }, + "mediacorp": {} + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another,\" she said.", + "media_hash": "c5785cdd7e33b8f62796ccf015e2c5dd085fcd3bc250602a68d423a7", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS England", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Helen Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.18436 + }, + "demo": { + "nutrition_": 3.18436 + }, + "pa-media": { + "health": 3.18436 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.18436 + } + } + } +}, +{ + "title": "Mum with rare MND fights for access to life-extending drug", + "publication_date": "2026-03-31T05:35:26", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", + "media_type": "news_article", + "sentence": { + "text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", + "media_hash": "5d4250299936dc3bf7a2ad4fca723fe889fb12f24f02b6114c12dbfb", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.16655, + "scottish_elections": 3.16655 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "A warning has been issued after 13 cases of potentially lethal disease which is 'fatal within hours' were detected in people returning to the UK from four destinations.", + "media_hash": "36e179d861368c553bdffe1425e1f52bcff0863e607586dd545ecfde", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.16655 + }, + "demo": { + "health": 3.16655 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.16655 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "It's thought that artificial sweeteners can significantly alter the make-up of bacteria in the gut.", + "media_hash": "4d9265732760bea253484d50cfbb17fb5c9ea602c4a9d64691c4966e", + "sequence": 26, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "health": 3.15833, + "nutrition_": 3.15833 + }, + "pa-media": { + "health": 2.6127849999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6127849999999997 + } + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "Expired sunscreen can lose its effectiveness, failing to protect your skin from the sun damage you think you're covered from.", + "media_hash": "745b5373acdb92fc493a7c97cf93e6d436e09ae1d2cccc3b1dbcef3e", + "sequence": 18, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.15833 + } + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:00:46", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Tooth decay remains the most common reason for hospital admissions in children aged five to nine.", + "media_hash": "a771bee496873b4e1aef95c048848af66fd96d7ab1ea73467a6cdf4d", + "sequence": 41, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "NHS hospitals", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "maldita": { + "health": 3.15833 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "Eating pumpkin seeds can also help support hair health, the nutritionist adds, with one of the most notable symptoms of a zinc deficiency being hair loss.", + "media_hash": "d2ca5765f53c7d781f6446e793976e577ff47228ad4d62a2b8d33a0c", + "sequence": 40, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "nutritionist", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "health": 5.158329999999999, + "popular_media": 5.158329999999999 + }, + "pa-media": { + "health": 3.15833 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.158329999999999 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And if they're feeling stressed and anxious and a bit sad about that that's not a medical condition.", + "media_hash": "eeccb907a91cf8b27ef2c62c7ecd95a5499b3f7a7379c83d3e4b5ea3", + "sequence": 622, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.15833, + "clinical_health": 3.15833 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Ultra-processed foods (UPFs) have changed how we poo - and not for the better.", + "media_hash": "36bcf37f8fb487c741b789b2dc29bd9e55452d1f930c7316764b1938", + "sequence": 78, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 101972, + "score": 0.21309999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "nutrition_": 3.037655, + "health": 3.037655 + }, + "pa-media": { + "health": 3.15833 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "Low sick pay is making Britain sicker", + "media_hash": "78b1f61c2937d9e62891f0bfbccb76c3f4b09e68941726903bb07d19", + "sequence": 0, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "As temperatures rise and sunlight becomes stronger in the coming months, people may face an increased risk of skin damage from UV exposure.", + "media_hash": "5a942b8c33e666cab0cbcf7717c417ba1a299dae88b1b3f3e976fccb", + "sequence": 4, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.15833 + } + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "Even on overcast days during early spring and autumn, UV levels can still be strong enough to cause harm, specialists warn.", + "media_hash": "ee75e21eec50e7963fcb219c559bcbf32301ad8cd53d4363938385ec", + "sequence": 23, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.15833 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.15833 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Specialists warn that shortfalls in worldwide genomic monitoring mean BA.3.2's actual distribution may be greater than currently understood.", + "media_hash": "67c7f0c100eef67756f24f6a4f2251874358bd251572a6e0565ac144", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Specialists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.123595 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "Furthermore, the fact that, since 2014-2016, women have lost almost four years of healthy life expectancy and men have lost three years demonstrates just how systemic the problem has become.", + "media_hash": "18185f36720f6ddaab241b52f1cf0aef6c26e65d763bc2ba9a3e3a01", + "sequence": 14, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 5.548465 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.123595 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "The disease affects around 58,000 women every year.", + "media_hash": "98aa03a6d998366a1069de6c93a16f9a52dcceb49aa596462a754238", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.47096 + }, + "aapfactcheck": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "The analysis also finds that the majority of workers (58 per cent) reported working when they didn't feel well enough, and a third of these cited sick pay as one of the financial reasons for working through illness.", + "media_hash": "c21388d0bb5551939c8c0fd205a6575c934451f8acada9dd9fd132ef", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centre for Progressive Change", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "The National Education Union (NEU) poll also revealed that two-thirds (68%) of secondary school teachers who responded regularly encountered absenteeism linked to students' mental ill-health.", + "media_hash": "a4f12fe28749ed65c10c44dc59ae626bd28949ce87cb5df098e75549", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Education Union", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595, + "leo_s_topic": 3.123595 + }, + "demo": { + "nutrition_": 5.123595, + "health": 5.123595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "Almost half of teachers (48%) who responded said they regularly witnessed chronic anxiety among pupils, while almost a third (31%) saw students living with social isolation.", + "media_hash": "8d2538f8e13ce66dd05a289420cfdde82c495acfe56ad1b910dcd74c", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Education Union", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595, + "leo_s_topic": 3.123595 + }, + "demo": { + "nutrition_": 4.970815, + "health": 4.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "With around 17,600 new cases of melanoma in Britain every year, and between one and three per cent are subungual melanoma.", + "media_hash": "2212ac25e17e4c10194ba9beda5c3f5c6abff8d58d067fcb7278263a", + "sequence": 51, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "According to analysis of that data shared exclusively with the New Statesman by the Centre for Progressive Change think tank, 10 per cent of the workforce - 3.7 million people - have worked through illness in the past year because they couldn't live on statutory sick pay alone.", + "media_hash": "6d958711e0946653e3d31465e397ef93106e657c8c531d6135dd578e", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Centre for Progressive Change", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Each year in the UK, there are around 100,000 hospital admissions due to heart attacks, another 100,000 people experience a stroke and around 350,000 people live with peripheral arterial disease.", + "media_hash": "2d629b39bd070b7929c198975c956dbdc5d28a1003c42f3621a76e6f", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "nutrition_": 3.6691399999999996 + }, + "dev": { + "blah": 3.123595 + }, + "pa-media": { + "health": 3.6691399999999996 + }, + "fullfact-policy": { + "climate_change": 3.6691399999999996 + }, + "mediacorp": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "And those who developed the disorder were 36 percent more likely to report poor memory later in life compared to those who used cannabis without developing a disorder.", + "media_hash": "2be56f3b9ff0d6aec21220139b1b6a953bad786c7da56ff325dfe67d", + "sequence": 47, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "That figure is slated to double by 2060, driven by the rapid aging of the baby boomer population as well as an overall rise in the number of Americans living into old age - the leading risk factor of the disease.", + "media_hash": "9a72e3fcf11fc5f45b9fcd88caf7c42d9daa026832f5131d4c9609b8", + "sequence": 64, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.123595 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "I mean, this report finds that one in ten young adults self-identify as autistic.", + "media_hash": "c5e1ede9c5390e2776f066bfdda4a2771fee9c9d516329d58c3d2b26", + "sequence": 529, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.123595, + "clinical_health": 3.123595 + } + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Ronnie, from Merseyside, had just started crawling when his mother Laura noticed he was bruising more.", + "media_hash": "f45cad1cf9c3183596549d9028823244c10bac51b5481b4267185f23", + "sequence": 3, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.120805 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Ronnie was rushed to hospital where medics initially suspected he had leukaemia, a type of blood cancer.", + "media_hash": "69556cd84e3bad21d06954aab2f98e60219db3c01623171a762d7c1b", + "sequence": 10, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.107525 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "Nicola added: \"On April 4, 2019, I was called into the hospital and told I had stage 3 bowel cancer.", + "media_hash": "41a2977650c49e300a3c44442e8de3ffa9bfcb5c3c5cc377f7e3de3b", + "sequence": 28, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Nicola Rankin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.107525 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Speaking after her second melanoma was removed - leaving her cancer free - she added: 'The whole way along I never felt I was going to die because the surgeon was very reassuring that it was cancer but it was very treatable as it was diagnosed early.", + "media_hash": "7a99a510e7ed649e07c31c2ce8e3156d714b33b639bb1ffce8d544b5", + "sequence": 48, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.107525 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "But for one woman, it turned out to be the only signs of a rare, deadly kind of cancer that ultimately cost her part of her finger.", + "media_hash": "cba7078e5cf6b88e53a6ed4d9f2a6d68b948a66dbccbefe694716a8c", + "sequence": 4, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.107525 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Wave of US-Israeli strikes hit key Iran sites", + "publication_date": "2026-03-31T14:23:13", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694051/Massive-US-Israeli-strikes-hit-Iran-Trump-threat.html", + "media_type": "news_article", + "sentence": { + "text": "The Iranian government also said airstrikes had hit a plant making cancer drugs and anaesthetics, claims AFP could not independently verify.", + "media_hash": "de4a08f48ef83a4a2339900ea0c0c11671c40cb36b696d885f98df89", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Iranian media", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "In 2025, cases were reported in 33 countries across 5 WHO regions, with the highest number of cases in the Eastern Mediterranean, followed by Africa, South-East Asia, the Americas and the Western Pacific .", + "media_hash": "2d189017950705ecd7276a9a71d4495717e4d6a5bbbf9b7d8541cf87", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.09725 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "The team reported 33,318 deaths.", + "media_hash": "9b1d339702cdc2a097847267a71e3a8b683f27f21960b250188fa81d", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.09725 + }, + "demo": { + "nutrition_": 2.89907, + "health": 2.89907 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 5.09725 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", + "media_hash": "009d0f925b83954eeba3eeb74adcdf138530faf6921ddc8adb236fcc", + "sequence": 25, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.092465, + "clinical_health": 3.092465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "But, other experts say even the smaller dose could put women at needless risk of side-effects and complications.", + "media_hash": "9806f1fe933a0ada4ee0f17c4fdd46735a5c2c9077044ec635c49aca", + "sequence": 45, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.083055 + }, + "demo": { + "health": 3.083055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health", + "media_hash": "a5e809d370306442dce539a29aa54674aa0f3680cfc73c467a606be4", + "sequence": 6, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "NHS England", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.04313 + }, + "demo": { + "health": 5.19591, + "nutrition_": 5.19591 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.04313 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "If the majority of your nail beds appear pale and washed out, with a thin reddish-brown strip near the tip, this could be a sign of 'Terry's nails'.", + "media_hash": "bfa11409831f2db87831514069fdcf75591c92bda9693c652854f371", + "sequence": 9, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 2.884875 + }, + "pa-media": { + "health": 3.037655 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Limb amputation is a potential side effect if septicaemia (blood poisoning) occurs.", + "media_hash": "ba3906eee483057403b7d7a92d8dc81ab97130c56a50136cacee9bdf", + "sequence": 67, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.037655 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "This hormone is needed to bring down high blood sugar levels - which left unchecked can increase the risk of heart attack and stroke as well as problems with the eyes, kidneys and feet.", + "media_hash": "28b17554e4255ecaa76bd5c8f8bddbc1e18712f967f818a03f4bcb98", + "sequence": 11, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655, + "nutrition_": 3.037655 + }, + "pa-media": { + "health": 3.037655 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.037655 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "This, experts say, changed the way the body absorbs and regulates blood sugar, which over time increases the risk of developing the disease.", + "media_hash": "326a42d6450d6f141c65e80c8fb04ed40996d61f7d4f394919639bc0", + "sequence": 27, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 5.235835, + "nutrition_": 5.235835 + }, + "pa-media": { + "health": 3.037655 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.037655 + } + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Kids could be particularly susceptible to catching cicada(Image: Getty Images)", + "media_hash": "073a1753c25fd4e4ebd4b0e7eaaac47417bc6434e90dd109fd18941f", + "sequence": 12, + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.037655 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Quitting by age 35 did not erase the risk.", + "media_hash": "4c9897535b649fc3304e5f65492127ff5ab3e33816ae3dfbf1c21272", + "sequence": 58, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "\"High LDLs over a lifetime increase your risk.\"", + "media_hash": "27ce428fa3d90b8e0326e72cd75f4f84964b8db7c6e70d427561bd93", + "sequence": 27, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "nutrition_": 3.15833, + "health": 3.15833 + }, + "pa-media": { + "health": 3.037655 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "Evidence suggests that low sick pay means workers battle on regardless of their symptoms, or return to work too soon - spreading disease and making themselves sicker.", + "media_hash": "23461eddeecc1efd13cea6489fdc6068efed6639030ea33aa5409a4d", + "sequence": 33, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Changes in colour, width, or pigment spreading onto the surrounding skin should also raise concern.", + "media_hash": "582660cacc8d1bdfe16f935b1f5e5f6b8f358c34bf9c4abdecce4906", + "sequence": 72, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Specialists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "statins and tamoxifen and yet because we haven't normalised it in society, women aren't aware of its potentially life-saving effects.", + "media_hash": "3b44cfd86a9e4d7124fb09862f5e4f44699208e778b0b9baa6633657", + "sequence": 61, + "claimer": [ + { + "name": "Dr Rebekah Law", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 2.6127849999999997 + }, + "aapfactcheck": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "As MND gets worse, a sufferer may experience problems breathing, swallowing and speaking.", + "media_hash": "5e39709cccdf082b695b3f278557981d6c4b1e87ecef58b862d63b4c", + "sequence": 26, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.189285 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "A daily smoking habit in young adulthood predicted worse self-reported memory by age 50, regardless of whether the person had quit by age 35.", + "media_hash": "43cfecd5ec9049d53fae47f503f00adfe5203d9e714fb0cc159b49b4", + "sequence": 4, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Alcohol use disorder, meanwhile, is defined as meeting two or more diagnostic criteria for problem drinking over the past five years, including loss of control, cravings or continued use despite harm to oneself.", + "media_hash": "daaedbfd2d7ccfc1e4fa281e3a874cbad9a9b4beb2082d85d2c55b61", + "sequence": 30, + "checkworthiness": { + "fullfact": { + "clinical_health": 3.037655 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Looking at your smartphone on the loo is a modern-day habit - but a study my team ran, published in the journal PLoS One last year, proved this is something you should never do, as it is associated with a significantly heightened risk of haemorrhoids.", + "media_hash": "20379e9d976af3940c59873e48f444f90a4bb9e4848ac299bec5519c", + "sequence": 44, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.0067 + }, + "demo": { + "nutrition_": 3.06859, + "health": 3.06859 + }, + "pa-media": { + "health": 3.0067 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "For this reason, experts liken the side-effects of tamoxifen to an early menopause - though most women find that their periods return if they stop taking the tablets.", + "media_hash": "decd9b77a241e3be7de7e3f7dcb507fc2be6fbfbc44d8422902be09a", + "sequence": 36, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.00555 + }, + "demo": { + "health": 3.00555 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "The actress, who is still awaiting her results which will indicate whether she is cancer-free or not, has relocated to Ireland to star in the soap opera Fair City so had to go through the rigmarole of changing the GP she was registered with, but the process made her realise that she has not been letting herself really think about the situation at all.", + "media_hash": "75d513ec1fed45332527aa2e06d6e80e850b3a01bd7fac49ce7f0450", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Beverley Callard", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "It has also called for a new 'Cancer Fellowship' scheme to welcome scientists from the US whose cancer research has been defunded by the Trump administration.", + "media_hash": "17fac4a7e583d608779610de4c8b95b0cef97fd9fb97bdb5bf03eb94", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Liberal Democrats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.975225 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "I was an expert witness who reviewed the medical evidence that put Lucy Letby behind bars - this is what defenders of the killer nurse get so wrong about the case", + "publication_date": "2026-03-31T10:20:16", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/crime-desk/article-15692267/sandie-bohin-expert-witness-lucy-letby-medical-evidence-defenders-wrong.html", + "media_type": "news_article", + "sentence": { + "text": "One of the key pieces of medical evidence cited during the trial was a 1989 academic paper by Canadian neonatologist Dr Shoo Lee, which examined how air embolisms present in babies.", + "media_hash": "c8af49a435382718fdf2eafcc0b29cd7690057b162e884baafb91838", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.975225, + "leo_s_topic": 2.975225 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "The UKHSA revealed that across England, Wales and Northern Ireland, 14 confirmed cholera cases were recorded in 2025, marking a 56% rise compared to 2024 when 9 cases were documented.", + "media_hash": "13d5d56ee332c84851f071093980d982aeac5f6140a40d16be7b3432", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "environment": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Around 5,000 adults in the UK have the condition and there is a one in 300 risk of developing it over the course of a lifetime.", + "media_hash": "51e45315bcfab001ef2eb16cec40571a1505c37640e2ba2c1150ca95", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:00:46", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "NHS hospitals performed 56,143 extractions on children and teenagers in the financial year ending 2025 - up 14 per cent on the previous year's total of 49,112.", + "media_hash": "38d5fe6038db78c19472ef4645466f31e71b3838476161b68f8b38b2", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS hospitals", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "In the UK between one and three times a day is normal - while in eastern India, the average is 14 stools per day (partly down to local diet, which is heavier in fibre and spice).", + "media_hash": "928eec907131a8cdb2861c7a8b116e083e8b3cc0242e29117023047f", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 4.545945, + "health": 4.545945 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "At 500 million bacteria per milliliter, the strain trapped 87 percent of the plastics, its peak performance under ideal conditions.", + "media_hash": "b51e75047b38d1cce5cdf3897db768d33933f024e84420334ae71f22", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "politics_of_food": 2.970815, + "environment": 2.970815, + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 2.970815 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "Freedom of information data from NHS Business Services Authority showed there were 659,293 unlicensed cannabis products privately prescribed in 2024, more than double the 282,920 issued in 2023.", + "media_hash": "ca09cd4a4f4873871a613faecd6198d0bae8606543ab200b179bdd9e", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "In fact, one small study found a 10-minute walk immediately after eating had a greater benefit than a 30-minute walk 30 minutes after eating.", + "media_hash": "79fc0c1ce180db20eb0389d14a1c7412a8453ba6706fd21aa9e79919", + "sequence": 58, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Exclusive \u2013 RX Border Defense\u2019s Patsy Writesman on CCP\u2019s Stranglehold on Skinny: FDA\u2019s \u2018Green List\u2019 Surrendered GLP-1 Supply Chain to China", + "publication_date": "2026-03-31T04:07:25", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/30/exclusive-rx-border-defense-green-list-surrendered-glp-1-supply-chain-china/", + "media_type": "news_article", + "sentence": { + "text": "Boyle pointed out more than 1,500 adverse incidents from GLP-1's reported by the FDA, which Writesman contended could be even higher.", + "media_hash": "a518413dd08883439588923c3e43c25ae5b27983c26c0f44361431c9", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Patsy Writesman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 3.3956850000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "media_hash": "c47433b07fe931eb48ace60c2d7b1b1f9f77e496f542c01da3501452", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 2.772635 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "And the injections may only be given if someone's LDL is higher than 3.5 mm/L, while taking the maximum doses of statins and ezetimibe.", + "media_hash": "29243c2c35675f6bdb3a0752a7ba52386bfae867f9ab6ef952a4c8be", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "Hospital visits increase during these events, \"even up to five days after the episode ends\".", + "media_hash": "43452a5c0a88bdf24e1a6226de5e29723f82cfb9ac198406de884967", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Canary Islands Health Department", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "General Directorate of Public Health of the Canary Islands Health Service", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "environment": 2.970815, + "health": 2.970815 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "The UKHSA said that in England, Wales and Northern Ireland there were 14 confirmed cholera cases reported in 2025, which represents a 56% increase to 2024 where 9 cases were reported.", + "media_hash": "d3e92160b30ca8266bb3b043050314904f3ba8ec4450b17039ba1e49", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "There were 336,023 people in the healthy group and 71,546 in the unhealthy group.", + "media_hash": "2b900cc463a72e3b99ac3537249ef9ad5fae51746a90a65fe61aa770", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 4.5769, + "health": 4.5769 + }, + "pa-media": { + "health": 2.970815 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.5769 + } + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "Treatment typically involves a combination of potent antibiotics over a long period (over 18 months in my case and the infection is still there).", + "media_hash": "ac202316c6bd63c951fa60af9257d62015b68c980eea883795f5bd7a", + "sequence": 61, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "Throughout 2021, these bouts of pain became more frequent and intense, and on 14 occasions I went to A&E.", + "media_hash": "38a1a4c8249218145db2199aa009345faa13552993ee00974c7d2ad6", + "sequence": 77, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "The UK Health Security Agency has released data showinga 56 per cent increase as symptoms explained", + "media_hash": "60bfb2dbdea185998a00c107cf15cb471f54fdc45ee4c641ad509ed4", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 4.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.970815 + } + } + } +}, +{ + "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", + "publication_date": "2026-03-31T09:45:26", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", + "media_type": "news_article", + "sentence": { + "text": "However, figures released by the British Association of Aesthetic Plastic Surgeons revealed that in 2023 there were 4,641 procedures carried out in both the NHS and private sectors.", + "media_hash": "ecdd7b7592c62cc0f8ec2749df33fa634dfc0f79213e723be55b545f", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "Around one in four (24.9%) of those screened were found to have the condition within six months, in contrast to only 1% in the group continuing their usual care.", + "media_hash": "ae4cfc93a100b06b486ed9d0861c31f93c6e7e4b7dcd801c139e5d93", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "Scope, a charity that supports people with disabilities, puts the average at \u00a31,095 a month.I do all these things, like physio and personal training, to help my mobility so that I don't rely on the NHS.", + "media_hash": "b2dbd3e524fdcc2d5d563b2f85ca9e93807b60cd5475b7f25ab22048", + "sequence": 153, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scope", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "When replacing cholesterol and blood pressure, NRI improved 11 percent for women and 14 percent for men.", + "media_hash": "48a1217ed33fa8183609a21c51ca035ec3e6a6a2fe1d165ad198511d", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.970815 + }, + "demo": { + "nutrition_": 3.3956850000000003, + "health": 3.3956850000000003 + }, + "pa-media": { + "health": 2.970815 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "The numbers might look small at first glance, but what makes them significant is that these risks did not fade after a few years.", + "media_hash": "df282df8c2734f6b5c874fef8c80db1b7eef30304d5a509071074d05", + "sequence": 32, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.9374000000000002 + }, + "demo": { + "health": 2.73922 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "People exposed to passive smoking or with suppressed immune systems, such as patients undergoing chemotherapy, are also more at risk.", + "media_hash": "fefc0eea319e1c10e54c98f4587515fa16983d16e4449bd79ed12253", + "sequence": 52, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.93364 + }, + "demo": { + "health": 2.598275 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.93364 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Taking paracetamol and ibuprofen about an hour before the procedure can help with cramping.", + "media_hash": "34306a45fa56c2e7a4f55d56cf79aaa42958b6be17a8a6a113b9e8a2", + "sequence": 101, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.93117 + }, + "demo": { + "health": 4.748585 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "Researchers discovered that the mutant strain 'Circada' surged globally in September 2025.", + "media_hash": "ff05e8cdbf44e745d73fd9f8bc22dfb47623d1831799ea02c52072b5", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.925415 + }, + "demo": { + "health": 2.89907 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.925415 + } + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "I'd obviously signed up to some kind of trial at the time, and they were checking up on people post-Covid.", + "media_hash": "75271806f0bf58f4b873053163cdfc585068452ebfbc9b3bd31bce94", + "sequence": 32, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", + "publication_date": "2026-03-31T23:05:50", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", + "media_type": "news_article", + "sentence": { + "text": "I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack.", + "media_hash": "c7732305fc281da0aa4ffaafd183172501e112450e14d278f4430ff7", + "sequence": 27, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Hermione Norris", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": {}, + "aapfactcheck": { + "health": 3.347495 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", + "media_type": "news_article", + "sentence": { + "text": "She told Prima magazine : \"I'm not great at extreme discomfort. I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack. But we did a couple of massive walks and I was fine. I was pleasantly surprised.\"", + "media_hash": "c4fd19cfef0a9d24e42510991c9e69c33298cbf9007f9c06f8d3dea0", + "sequence": 10, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Hermione Norris", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "I also organised a \"let's talk\" session with a disabled influencer who has endometriosis.", + "media_hash": "18fa8e804c93b67cba248ca2ed6f970731dc2a423a7846484f33da70", + "sequence": 22, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "It's really good with my ADHD brain because it ties into my competitiveness and also gives me a focus, so that I'm not thinking about how well I'm standing and therefore I'm often more stable when I'm doing the exercise.", + "media_hash": "67d6eb1a5965868a7ebc9e3e12cf04cea8d92921a15f1f00c492825c", + "sequence": 63, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T16:52:41", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "'I don't think that is an unusual concern but that is outside of my influence to change even were I to make a prevention of future deaths report.", + "media_hash": "d214b6687eecd94d4fd9f5edddd4b83ed029be407a93fb02265768f8", + "sequence": 33, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Christopher Wilkinson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.922625 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 0.0 + }, + "fullfact-policy": { + "social_media_misinformation_": 2.922625, + "climate_change": 2.922625 + } + } + } +}, +{ + "title": "Inside Health", + "publication_date": "2026-03-31T09:00:00", + "publication": "bbc-health", + "url": "https://www.bbc.co.uk/sounds/play/m002tbkd", + "media_type": "news_article", + "sentence": { + "text": "Before delving into the evidence with resident GP Dr Margaret McCartney, James finds out what it feels like to have a hot flush.", + "media_hash": "3977ab7ce83caa6370e87538d7d9435d5f0eb8602f4dc39b36784f4e", + "sequence": 4, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.922625, + "clinical_health": 2.922625 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Instead, she is calling for patients to be offered a smaller daily dose - a quarter of the current amount - in order to avoid these side-effects.", + "media_hash": "b78b8bc12943c01d394ab07f4bb4d035719e7e8d4011f6f35551b945", + "sequence": 41, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.9201050000000004 + }, + "demo": { + "health": 2.9201050000000004 + }, + "aapfactcheck": { + "health": 4.920105 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Stephen Lewis, former Canadian politician and lifelong...", + "publication_date": "2026-03-31T20:11:10", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", + "media_type": "news_article", + "sentence": { + "text": "He had been diagnosed with stomach cancer eight years ago.", + "media_hash": "f6bfaaa38688af3f39ea36a6b3bd5cc287ab4e6ac675ab60c1ad49f3", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Stephen Lewis Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.91647 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "It was launched yesterday ahead of the Senedd election in May.", + "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", + "sequence": 970, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.91647, + "senedd_election": 2.91647, + "scottish_elections": 2.91647 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Pressing on your nailbeds may temporarily make the discolouration disappear, though this is not a cure for Terry's nails.", + "media_hash": "07d5b35f290c81899e6536172daf433bc388e41f1a0e5e6d33e0c782", + "sequence": 17, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.9158299999999997 + }, + "demo": { + "health": 2.884875, + "nutrition_": 2.884875 + }, + "pa-media": { + "health": 2.9158299999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "It's also possible to use a local anaesthetic gel and, if the cervix needs to be held steady, a small anaesthetic injection can numb the area.", + "media_hash": "570217e69545ec5d838a75f85fd084bbde55e988439e6750860773f6", + "sequence": 102, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.9158299999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "Millions are being urged to act after a huge change in guidance.", + "media_hash": "0518b0404ff5efe15091e8a72d4d5a6e6ebd9f33fe228fa05dd018b0", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.91556, + "clinical_health": 2.91556 + }, + "demo": { + "health": 2.91556 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.91556 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "They are also more likely to suffer financially as a result of their illness and to develop long-term complications such as chronic pain.", + "media_hash": "76e7d5935627c0f9cea0fbe456a628c5329e607d9dbb4e8501528108", + "sequence": 15, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.9142349999999997 + }, + "demo": { + "health": 2.9142349999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Doctors should also prescribe lifestyle changes that include eating healthily and getting enough exercise to help people keep the weight off.", + "media_hash": "9250b04f2ba3d05711dea705367da0e80a93c419d566982e6c800ef0", + "sequence": 27, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.90771 + }, + "demo": { + "nutrition_": 2.90771 + }, + "dev": { + "blah": 2.90771 + }, + "pa-media": { + "health": 2.96962 + }, + "fullfact-policy": { + "climate_change": 4.90771 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", + "media_hash": "0ae215e5eea20faf31960bed36ef9636499978ffcae105c20cf24ae2", + "sequence": 6, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Dr Michael J Ryan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.901365, + "health": 2.901365 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "So, one 'hit' a night became two - and then one during the day, too.", + "media_hash": "53b38eca2c4138e8dab23e382c286a28b2bc32f9253b8507f8fd6bd6", + "sequence": 62, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", + "publication_date": "2026-03-31T08:45:14", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", + "media_type": "news_article", + "sentence": { + "text": "Annette had received a letter inviting her to take part in a trial funded by The Sarah Harding Breast Cancer Appeal.", + "media_hash": "b50d11925f1c09db5acd06dabbb2371a4262fc6469158ed41602c29b", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.885515 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", + "publication_date": "2026-03-31T20:14:03", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", + "media_type": "news_article", + "sentence": { + "text": "Beverley Callard breaks down in tears as she issues update after breast cancer surgery", + "media_hash": "8de455a6dd132ad1723125d22c92c886e179b08ec1ae18b6c1e8570e", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.885515 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Elizabeth was a keen flute player before having her finger amputated", + "media_hash": "4ceb090760361ba09c72410a5b0cb5ea2a7d2c3887f20dc46868f2e0", + "sequence": 38, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.885515 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", + "publication_date": "2026-03-31T08:46:35", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", + "media_type": "news_article", + "sentence": { + "text": "She may develop scoliosis.", + "media_hash": "f2b5e14b3cb9248862847d1e192f1c865289918230c53d0ba4429755", + "sequence": 26, + "claimer": [ + { + "name": "Cesar Garcia Torres", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.884875 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Once the coil is in place, the uterus may briefly contract - a feeling like period pain.", + "media_hash": "c19b13295e669ddf66dd113b7210f39393b90232b0e57ef1254e959c", + "sequence": 98, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.884875 + }, + "demo": { + "health": 2.9158299999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "For example, a drop in the hormone oestrogen after the menopause means vaginal tissue can be thinner and drier, making the insertion of a speculum more painful.", + "media_hash": "cbef57724de710e49c141d683d54a67d86d5b20c6fab26885f5a29fc", + "sequence": 53, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.884875 + }, + "demo": { + "health": 3.037655 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "However, for those whose heavy drinking, whether frequent or episodic, continued into their 30s and led to alcohol use disorder by age 35, the effect was significant.", + "media_hash": "e4bbf3ca050e8bc5abfc2e5987862b11a463b295ab6b189845aab602", + "sequence": 38, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.884875 + }, + "demo": { + "health": 2.884875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "A three-tablespoon serving contains over a third of an adult's daily magnesium, which helps calm the nervous system and regulate circadian rhythms - playing a crucial role in sleep-wake cycles.", + "media_hash": "0a12e99a3741a872e9456c9fac48dfc9512284d221a03888f0a7a8d6", + "sequence": 47, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.88131 + }, + "demo": { + "health": 4.8194, + "popular_media": 4.8194 + }, + "pa-media": { + "health": 2.88131 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.88131 + } + } + } +}, +{ + "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", + "publication_date": "2026-03-31T09:45:26", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", + "media_type": "news_article", + "sentence": { + "text": "A mother who 'hates' the way she looks with her 'heavy and saggy' size 40K-cup breasts is desperately fundraising for surgery after claiming the NHS turned her down at least 20 times.", + "media_hash": "276fcd8fdc6a18e4d3694819b5b8275253b2bd18c16b23f88bfc7b39", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.87995 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "\"Today's guidance will no doubt help save lives as cardiovascular disease is still one of the country's biggest killers.\"", + "media_hash": "1bdcbcd2188798819bb1195c6be69f5684918b1e3641bd2a7067b77c", + "sequence": 26, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "British Heart Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.875965 + }, + "demo": { + "health": 2.6922300000000003, + "nutrition_": 2.6922300000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.875965 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "These changes include more sedentary lifestyles, unhealthy ultra-processed foods which make it harder to maintain a healthy weight, and more high-pressure working environments which drive stress levels and impact sleep.", + "media_hash": "b90d29ad69058549507492b324e126aed699e5fcc5df7bf6382fb148", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "health": 4.87173, + "nutrition_": 4.87173 + }, + "pa-media": { + "health": 2.8717300000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.87173 + } + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another.", + "media_hash": "a1d4df02e28f135f2a80284652f0b0f99940956b746676a2c4801e1a", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS England", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "health": 2.8717300000000003, + "nutrition_": 2.8717300000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.8717300000000003 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "Besides being good for the gut, regularly eating flaxseeds - especially in their milled form - has been shown to reduce total and so-called bad cholesterol levels, decrease blood pressure and improve blood sugar control.", + "media_hash": "15756b0d953600f6c7ebedf385fa7ebd80cc073a8488bfa3ef9dcb22", + "sequence": 14, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "health": 4.87173, + "nutrition_": 4.87173, + "popular_media": 4.87173 + }, + "pa-media": { + "health": 2.8717300000000003 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.8717300000000003 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "Cholesterol-lowering drugs that are alternatives to statins may become more widely used after a major trial has shown they can stop heart attacks and strokes even in people not thought to be at the highest risk.", + "media_hash": "261714c9d7a4804f9047a5263923cb8c8b63610b1497cc81e429bdb5", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "nutrition_": 2.8717300000000003, + "health": 2.8717300000000003 + }, + "pa-media": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "So many people seem to believe that lurking in your colon are 'toxins', and the longer your poo stays in your intestines, the more dangerous these are.", + "media_hash": "bec4bf4dfe99590752bef334c51acf1fec2bdc863e03f9d46f97d5d4", + "sequence": 69, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "nutrition_": 2.8717300000000003, + "health": 2.8717300000000003 + }, + "pa-media": { + "health": 2.8717300000000003 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Drug trials suggest Wegovy can help slash the risk of future heart and circulation problems.", + "media_hash": "f906c24e28b8f9e56eadd34ae02da4e76b7a33632021ca3afcc91b29", + "sequence": 11, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8717300000000003 + }, + "demo": { + "nutrition_": 2.5219199999999997 + }, + "dev": { + "blah": 2.8717300000000003 + }, + "pa-media": { + "health": 2.8717300000000003 + }, + "fullfact-policy": { + "climate_change": 2.8717300000000003 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "The Swedish researchers, who tracked nearly 250,000 Britons, said their findings should serve as a 'reminder that sleep plays an important role in health.", + "media_hash": "99ec22de92648075e7d91ce18efd820690dd8ee9e409577256b4b319", + "sequence": 22, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Swedish researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8655049999999997 + }, + "demo": { + "health": 4.440635, + "nutrition_": 4.440635 + }, + "pa-media": { + "health": 2.8655049999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.865505 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "walking pace was the strongest individual predictor of mortality, particularly in those with a prevalent health condition,' the researchers wrote.", + "media_hash": "c007c046ead88297374f86f6e5e4529eddc0b27ccebe5770184376aa", + "sequence": 31, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8655049999999997 + }, + "demo": { + "nutrition_": 4.865505, + "health": 4.865505 + }, + "pa-media": { + "health": 2.8655049999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.865505 + } + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "'There are lots of people out there who have got complex coronary disease which they've been told can't be treated or they have not been offered a treatment,' says Dr Hanratty.", + "media_hash": "77c9df951c238ac7b9063915cf4988fc5d328f28861cd27e8874a0b8", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Colm Hanratty", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8655049999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "Guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 and above in addition to other medicines, such as statins, and alongside a reduced-calorie diet and increased exercise.", + "media_hash": "dce60c7eb33352225dde5a74ab490e122fd28814ebd1a59b3e7b6a00", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8655049999999997 + }, + "demo": { + "nutrition_": 0.0 + }, + "pa-media": { + "health": 2.712725 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "Today, the NHS typically prescribes only a small number of licensed CBMPs - those approved by the medicines regulator - for conditions such as severe epilepsy, multiple sclerosis and chemotherapy-related pain.", + "media_hash": "600ea17718e91686d1163a1ea8619a3de5da36b873b1344729b09adc", + "sequence": 12, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.856485 + }, + "demo": { + "health": 4.856485 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.856485 + } + } + } +}, +{ + "title": "'I caught meningitis on Tenerife holiday - I would've died if I got on flight'", + "publication_date": "2026-03-31T07:24:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/i-caught-meningitis-tenerife-holiday-36946555", + "media_type": "news_article", + "sentence": { + "text": "Meningitis patients 'may have been left disabled' because of hospital delay", + "media_hash": "998785c3ac3dd6c9c033cd5b712ff468dca089417ba9d671b43aff52", + "sequence": 8, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.85392 + }, + "demo": { + "health": 2.85392 + }, + "pa-media": {}, + "fullfact-policy": { + "measles": 2.85392 + } + } + } +}, +{ + "publication_date": "2026-03-31T20:00:00+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMirror/status/2039070225958887548", + "media_type": "social_post", + "sentence": { + "text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR6bMj https://t.co/YQoQMBYDJE", + "media_hash": "35dd9d3ed9ba7422eece4978545c9a93c13594de7a60781c36db9706", + "sequence": 0, + "claimer": [ + { + "name": "My son's mother", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.85392 + } + } + } +}, +{ + "publication_date": "2026-03-31T14:01:35+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMirror/status/2038980026989744148", + "media_type": "social_post", + "sentence": { + "text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR5DWL https://t.co/Ge4yc8pRu5", + "media_hash": "33be078a90b62df909bc537a30841ecbcaf30f82afbf2e26ce056ecf", + "sequence": 0, + "claimer": [ + { + "name": "My son's mother", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.85392 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "In fact, research shows that nine in ten women are alive five years after diagnosis.", + "media_hash": "b65ad45896d98d839b1ca3ac1bb09c26280123674277b1a9089360ad", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "research", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.850355 + }, + "demo": { + "health": 3.5019150000000003 + }, + "aapfactcheck": { + "health": 2.6521749999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T13:33:00+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/dailystar/status/2038972832965616016", + "media_type": "social_post", + "sentence": { + "text": "An alert has been issued after a potentially deadly disease was identified in individuals returning to the UK from four destinations", + "media_hash": "96fec8735cc0fc9c512b7f77997b816670187d030aacd221cc2cc1cc", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8334 + } + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "According to the National Institute on Drug Abuse, opioids are 'addictive'.", + "media_hash": "48b8b34b1d24f949d9db71a3b48adbadd3b47e64924451ec53e5d2bd", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.83094 + }, + "demo": { + "health": 2.799985 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "Experts can't seem to agree on the magic number of steps per day for optimal health - is it 5,000, 7,000 or 10,000?", + "media_hash": "f6ce20a852684251c62e52c589b15e5e4d597a4bca1c0dc38a94990f", + "sequence": 52, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.8194 + }, + "demo": { + "nutrition_": 4.66662, + "health": 4.66662 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.8194 + } + } + } +}, +{ + "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", + "publication_date": "2026-03-31T04:47:11", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", + "media_type": "news_article", + "sentence": { + "text": "'No one should have to endure racial harassment from a registered medical practitioner.", + "media_hash": "04744ecd315c6e7e3edb3e71f3c37003a31b21bd415342828b91e6a4", + "sequence": 18, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Sharon Stoliar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.81209 + }, + "demo": { + "race__ethinicy__religion": 2.55922 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "However, having fewer people in the workforce - whether for health or any other reasons - almost inevitably means a smaller economy.", + "media_hash": "b8989abef9d7b9ec07c06cde1e08cc833feaa38521d111d98c81e799", + "sequence": 12, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.810965 + }, + "demo": { + "health": 4.962595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.8109649999999995 + } + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "However if more people become infected, then a similar proportion of those who experience severe disease becomes a bigger total number.", + "media_hash": "3f21955597079ce0644e72d9c6adb015abbb980199b1e4d8fd3db591", + "sequence": 30, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.810965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.810965 + } + } + } +}, +{ + "title": "PM", + "publication_date": "2026-03-31T16:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404361", + "media_type": "transcript", + "sentence": { + "text": "So for example, for depression outcomes, we see greater reductions in depression when people are engaged in arts-based social groups compared to non-arts social groups.", + "media_hash": "631a26e80e3cbd53124e664ae393374cbe8cc12f68bc22c9e1602390", + "sequence": 237, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.810965 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Studies show that women who get the disease are significantly more likely to see it return later in life.", + "media_hash": "709b85602ae95c91e8bc1c1517d7e4a4123e750289b4128cbe1b0935", + "sequence": 14, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.810965 + }, + "demo": { + "health": 2.810965 + }, + "aapfactcheck": { + "health": 2.810965 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Some people may live for up to 10 years, and, in rarer circumstances, even longer.", + "media_hash": "c395e6a3fe3c47ba238b66736f243019116c0d711b4a2855d58f4dad", + "sequence": 30, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.801995 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", + "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.799985, + "scottish_elections": 2.799985, + "clinical_health": 2.799985 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.53726 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just, if they've got that test sitting in the loo waiting to be done, just do it today.", + "media_hash": "80dfe8fd2c11c5c839404961e4f876ac913d501421e51bf9fa6b13e6", + "sequence": 680, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.7863350000000002 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "The narrative that seems to be being pushed out there saying are we need to spend more money on defense and we can't be spending money on benefits.", + "media_hash": "cbb3f7acbb3b1ef7a0209f6ffb0dd5a2d4c5025abd873ce1a47c17e9", + "sequence": 658, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.7846200000000003, + "clinical_health": 2.7846200000000003 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "The condition can also affect toenails, where it is even more likely to go unnoticed.", + "media_hash": "6c6e43c6a167ee29a181cecb209af9cf220d1e2e45df697d1a4a0a04", + "sequence": 70, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.7820099999999996 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Fatty foods, for example, produce yellower poos as you produce more bile (which is yellow-ish green) to digest them: anyone on a keto diet - which is high in fat, low in carbohydrates - should watch out for this side-effect.", + "media_hash": "01ba0747c2fabf08ee56ba1f0c68797564612dc1a56f1efa506eeae3", + "sequence": 108, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.7808599999999997 + }, + "demo": { + "nutrition_": 4.7189499999999995, + "health": 4.7189499999999995 + }, + "pa-media": { + "health": 2.7808599999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Army veteran who stopped in car park for medical episode fined \u00a3120", + "publication_date": "2026-03-31T09:22:26", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/health/army-veteran-who-stopped-car-36947549", + "media_type": "news_article", + "sentence": { + "text": "An army veteran has been given a \u00a3120 fine after he pulled over to have an anxiety attack in a car park.", + "media_hash": "2537a805fd9c045da2fc5a67c66bd2564679ad955a2e0c75b2b647a2", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.772635 + } + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "Former firefighter Glenn Perkins would spend up to \u00a360 a day on Uber Eats getting cider and other drinks.", + "media_hash": "1da5abaf79ebe0eb4eddd998df306278145661445fbd54543a375a73", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Yesterday, the manufacturers of the drug, Prilemia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", + "media_hash": "a691028e695291d4bddc0f2c4d83b136b54a12fcf2b66f7c308aa5ad", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prilemia Therapeutics", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ferrer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "In a new study, 400,000 adults were divided into four groups based on their lifestyle habits, body mass index (BMI), cholesterol, blood pressure, age and death status.", + "media_hash": "863bbda37cf3ce4c57e43d5e0aab58479fb48427828cf0d51f2d537d", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.772635 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "In a 2022 study, researchers assigned participants to eating the same diet for 11 days; the only difference was that one group's meals contained carbomethylcellulose, a common synthetic emulsifier in many UPFs.", + "media_hash": "158509e0844a8ede0dff2289e823fad35d75d41531accde452b50cb9", + "sequence": 79, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": { + "nutrition_": 4.772635, + "health": 4.772635 + }, + "pa-media": { + "health": 2.772635 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Yesterday, the manufacturers of the drug, Prilenia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", + "media_hash": "6ebb9d78da57c987dd898d3110d22b7eb8ca4ea3c70cdf5487d104e8", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prilenia Therapeutics", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ferrer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": { + "health": 2.772635 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "Currently, treatment with Wegovy is limited to two years on the NHS through specialist services and its long-term risks are still being studied.", + "media_hash": "58151e706f71d2bbf380ba71e7fe08d24fa9d026d39c94672ad5f661", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.772635 + }, + "demo": { + "nutrition_": 2.772635 + }, + "dev": { + "blah": 2.772635 + }, + "pa-media": { + "health": 2.772635 + }, + "fullfact-policy": { + "climate_change": 2.772635 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "You know, three years of wait is could be a life sentence for that child.", + "media_hash": "1e15c97bff1977a8f5f7d80be8e3537a9cfde4ee73053de7a301b3c8", + "sequence": 521, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.7705450000000003, + "clinical_health": 2.7705450000000003 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, in the early stages, cirrhosis usually doesn't show many symptoms, or sometimes none at all.", + "media_hash": "ee14775dc1351c59d636f3a323d0dd047252183841df62eff8fe1737", + "sequence": 20, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.704505 + }, + "pa-media": { + "health": 2.751055 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "But many other experts oppose the move, arguing that tamoxifen can have serious side-effects including debilitating symptoms - often likened to an early menopause - as well as significantly raising the risk of birth defects.", + "media_hash": "f484107808deef9775a109efe659d493dfca0fffe15bc7fae3b7660f", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "The disease causes muscle weakness that gets worse over a few months or years,", + "media_hash": "39040f0e2d5e587986e3b7d142b66f043ac0ff0f7a23354df776f0a8", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Symptoms typically first include stiff or weak hands, weak less and feet which may cause someone to trip over a lot, and twitches spasms or muscle cramps.", + "media_hash": "e99ceb5de3faeb344d16b9fc43d9cf6c607d9774ee863041446fef4e", + "sequence": 25, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "During this window of heightened neuroplasticity, the brain is highly sensitive to rewards and more easily rewired by substances like alcohol, cannabis, and nicotine.", + "media_hash": "007b09bccb429e204d583c4bd177170f9119f66e4378f6e2701b2e1a", + "sequence": 60, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", + "publication_date": "2026-03-31T23:01:43", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cz90595pgzlo", + "media_type": "news_article", + "sentence": { + "text": "People who have already had one of these health issues are at higher risk of experiencing more problems and stand to benefit from medicines that can cut that risk.", + "media_hash": "4f147fddfd58171fcaa144ef71dd79d7e5e2aa55e39d5b43e6594db0", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "nutrition_": 2.751055 + }, + "dev": { + "blah": 2.751055 + }, + "pa-media": { + "health": 2.751055 + }, + "fullfact-policy": { + "climate_change": 4.751055 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "'Breasts are also more sensitive before a woman's period, while a cold examination room and sudden exposure to cold surfaces can increase sensitivity.", + "media_hash": "5fde54aabaad00ae090c3196bdb71fe1aeb667dde531f3c4e6bf6666", + "sequence": 78, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Small breasts can sometimes be more painful as there is less tissue to spread between the plates.", + "media_hash": "04673a3f77042de7444cbf92bc4e71db155cd943977cf538c7e01908", + "sequence": 79, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Another 2022 study found that people assigned to a diet containing common added sweeteners (e.g. aspartame, sucralose and saccharin) experienced new diarrhoea, constipation and pain after eating - symptoms that were all reduced for those assigned to diets with minimal sweeteners.", + "media_hash": "d5a1b1aaa260a28642a67a6658be2b2bf407cd4875a582b6bd4adb29", + "sequence": 81, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "nutrition_": 4.598275, + "health": 4.598275 + }, + "pa-media": { + "health": 2.751055 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "A dark line running from the base to the tip can be a sign of subungual melanoma - especially if it does not grow out or is getting wider.", + "media_hash": "658555f544fe4122ef2804225f1e22093500608f6c8bf0371ac980b7", + "sequence": 79, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.7201 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "Creatine is a performance enhancing compound which, when taken regularly, draws more water into the muscles increasing their fullness and potentially, their size and strength over time.", + "media_hash": "70d43111e4c0fe3be67bf7dceb747de7743e76bb5fef339c7a8de00b", + "sequence": 22, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 4.02199 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Sending the King to the White House is a risk the UK does not need to take'", + "publication_date": "2026-03-31T18:01:28", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", + "media_type": "news_article", + "sentence": { + "text": "With signs, it spreads faster and may hit children harder; vigilance matters more than ever.", + "media_hash": "5cc0079fd2470740cb8573f5653b0d47795ed464a2cd5e25ccd307b8", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104459, + "score": 0.051000000000000045 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.6147650000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Claims of benefit are \"seriously and significantly\" overblown and can't be supported by any evidence, because most of these peptides have not been clinically trialled, Bonning says.", + "media_hash": "a785f26de9e7effc2757246296ace9203f717bc6e5f3b54d4a057462", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.751055 + }, + "mediacorp": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "\"We've also committed, where possible, to ensuring that a healthier version of a product won't cost more than the standard version.\"", + "media_hash": "9081729b1bd730dd3b877c1065462016e862a16556ba9b11a5600726", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Oonagh Turnbull", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.751055 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Bonning says topical products that contain peptides such as skin creams and lip treatments for skin hydration generally differ from injectables which involve changes to cell signalling, that can cause harm.", + "media_hash": "09a5e87b22dc6cbb9e459bd6c379d93ab48bb7398d2a1655769be4a0", + "sequence": 29, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + }, + "demo": { + "health": 2.751055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "PM", + "publication_date": "2026-03-31T16:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404361", + "media_type": "transcript", + "sentence": { + "text": "But actually, we've had randomized control trials that have directly compared arts engagement to non-creative social interaction, for example, and actually showing that the arts engagement is more effective for lots of these mental and physical health outcomes.", + "media_hash": "e6ac6a016b43d5d210d4704a5d229e1429631d035c741109280c680e", + "sequence": 236, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.751055 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T11:25:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "It can also lead to irregular periods or stop them altogether.", + "media_hash": "a53d2fe5abb68878908b15251c31be19bc5261254b6a54ce919c5870", + "sequence": 35, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.74701 + }, + "demo": { + "health": 4.716055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "Symptoms may begin within hours to 5 days following exposure.", + "media_hash": "8ba45c656cd73b9cde3dc055d878e152ec92c86e975b9798c73c44fc", + "sequence": 10, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.74701 + }, + "demo": { + "environment": 2.716055 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.74701 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "'I was worried about the long-term consequences like handwriting and playing the flute.", + "media_hash": "72b8e8159939aad5f125e1043358bc077d2de08e7a6f5854787cb46c", + "sequence": 45, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.742565 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tributes to `beautiful\u00b4 autistic girl, seven, who...", + "publication_date": "2026-03-31T15:34:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695357/Tributes-beautiful-autistic-girl-seven-drowned-golf-course-pond.html", + "media_type": "news_article", + "sentence": { + "text": "Tributes to 'beautiful \u0301 autistic girl, seven, who drowned in golf course pond", + "media_hash": "4e763599e2996951bc19f213276dce5d6229cd7d09e681c9d1adf3b7", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.7416799999999997, + "clinical_health": 2.7416799999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Under new guidance, patients who have had a heart attack or stroke will be eligible for a weekly Wegovy jab to cut their chances of another life-threatening event.", + "media_hash": "67e2a6fc2c5a0d3d45c288d72d9a83c76b671794f00f3c74e118318f", + "sequence": 3, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.7395899999999997 + }, + "demo": { + "nutrition_": 2.7395899999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Certain medications can also cause nail problems.", + "media_hash": "623c6d49609adbc467f89901f419504449fda4f4adf2de7eabfad8a4", + "sequence": 48, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 2.704505, + "nutrition_": 2.704505 + }, + "pa-media": { + "health": 2.73546 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Certain medications can also trigger nail problems.", + "media_hash": "224bad1872b2069fff9739d5e0c9cf7d00bc6c0c787ace3f4169af18", + "sequence": 43, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 2.704505 + }, + "pa-media": { + "health": 2.73546 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "LDL in the blood can stick to arteries, slowly building up plaques that block off the blood supply to the heart or trigger blood clots.", + "media_hash": "994ee38a1d0392ea37c162b79ee4944fa4b5edcfa45a39dbea2b15c2", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "nutrition_": 2.6735499999999996, + "health": 2.6735499999999996 + }, + "pa-media": { + "health": 2.73546 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Bacterial meningitis requires urgent treatment at hospital with antibiotics.", + "media_hash": "bb940fe1ab8a13d97cf21117f272f7a963b8bce40d2f7ce38c6bbbd2", + "sequence": 64, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.73546 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Thin loo paper is rougher on the skin, which can lead to damage to the anal area.", + "media_hash": "de60739f12c4c674decd9e8782fd05b3bfd892b5760c661b68513dd7", + "sequence": 132, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.73546 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "TB is highly infectious to others, but NTM infections are not.", + "media_hash": "3008fc56ad569f3813cf88f577bcb1264f105d4562a8e9baf1c44f31", + "sequence": 40, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Headache is one of the main symptoms", + "media_hash": "02b4feea49b02501f21ac363a45f912097d810ea95d5e5411a0df984", + "sequence": 62, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.73546 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "But cigarettes diverged from alcohol and cannabis.", + "media_hash": "112d5a8afc990c07286f2d8d9d8914a02e0ca733bf12c11e02f92eee", + "sequence": 55, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Yellow, thickened or brittle nails are most commonly caused by fungal infections.", + "media_hash": "36c5af911cd020c4b245bcae324610c40b82987c817db852f62c5b8f", + "sequence": 87, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.73546 + }, + "demo": { + "health": 2.704505 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "This rose to 80 per cent for children up to four years old and 86.5 per cent for those aged five to nine.", + "media_hash": "de9c06d11a1e24b202ba105646f195f681b865b80432ee168b9d32ba", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.72968 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "The average age was 58, and participants were followed for about 16 years.", + "media_hash": "aba2aa01418f4f96915a8295c8a973806877853a6ec4a62e4e6add7b", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.72968 + }, + "demo": { + "nutrition_": 2.5769, + "health": 2.5769 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.72968 + } + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "In the UK, most PAO symbols range from six months to two years.", + "media_hash": "af1fed3608579b374fbb2d273cc3a76714be30b41ce8b1931bcf0507", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "Tesco has donated more than 10 million portions of fresh fruit and veg to schools across the UK", + "media_hash": "6195d3a6b4e0fe85196e78459317d5a885356bed2d28d2c7fd4dbec4", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.72853 + }, + "demo": { + "health": 2.5459449999999997, + "nutrition_": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "They suggest a heart failure screening programme for diabetics could improve diagnosis rates, lead to earlier treatment and potentially reduce the risk of hospitalisation and death.", + "media_hash": "2e18262303a75b29d8009ab488e82977347788c3ee3f017df6593a9a", + "sequence": 5, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.716055 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "'If a woman is anxious, she'll be tense in the pelvic floor .", + "media_hash": "7b0d7470b6aca48c4dcf29ebfab8a74e58dad698956c01905f804c3b", + "sequence": 61, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.716055 + }, + "demo": { + "health": 2.716055 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "Suspended dust is expected to negatively impact the air quality, weather forecasts indicate.", + "media_hash": "75f9a44e70baeea4600d4ed56d1e8501a0dbb142f62841d4eee371c5", + "sequence": 8, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Canary Islands Health Department", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "General Directorate of Public Health of the Canary Islands Health Service", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.716055 + }, + "demo": { + "environment": 2.83673, + "health": 2.83673 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.716055 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", + "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", + "sequence": 40, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Liberal Democrat", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.712725, + "scottish_elections": 2.712725, + "clinical_health": 2.712725 + }, + "demo": { + "health": 4.41429 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "title": "Exclusive \u2013 RX Border Defense\u2019s Patsy Writesman on CCP\u2019s Stranglehold on Skinny: FDA\u2019s \u2018Green List\u2019 Surrendered GLP-1 Supply Chain to China", + "publication_date": "2026-03-31T04:07:25", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/30/exclusive-rx-border-defense-green-list-surrendered-glp-1-supply-chain-china/", + "media_type": "news_article", + "sentence": { + "text": "\"We have one example of someone, a lady in Kentucky, she had only been on the drug for one month and had kidney failure. Now, let's just take that example and say that there was a bad batch and a thousand people got that drug and had to have kidney transplants. The finger is going to be pointed back at the FDA on that, and we don't have a thousand . kidneys],\" she said.", + "media_hash": "35f7e1fdc27ed28be01c7e98a0c448e9da0fd25ae1c3ba748085f632", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Patsy Writesman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725 + }, + "demo": { + "nutrition_": 2.712725 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", + "publication_date": "2026-03-31T02:14:20", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", + "media_type": "news_article", + "sentence": { + "text": "But two young people, including sixth-form pupil Juliette Kenny, died of meningitis during the outbreak.", + "media_hash": "1f33e6abd08df744445d3b03f9e1765702190809fd217699bf6550cd", + "sequence": 24, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725, + "leo_s_topic": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Sebnem Avsar Tuna, general manager of Wegovy manufacturer Novo Nordisk UK, said it means clinicians now have access to the first GLP-1 receptor agonist proven to reduce the risk of heart attack, stroke or cardiovascular death in this high-risk group.", + "media_hash": "ded904a715729df7524ff09525fef3bfbc7e9de2fdb1b1b0f55e7299", + "sequence": 46, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Novo Nordisk UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725 + }, + "demo": { + "nutrition_": 2.68177 + }, + "pa-media": { + "health": 2.68177 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", + "publication_date": "2026-03-31T09:45:26", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Brice says she has requested a breast reduction through the NHS at least 20 times since 2000, citing both physical pain and mental health struggles.", + "media_hash": "5e51c2e94ee09c734d3645b10e276d21ad4932ffbe4b72cc45324ef5", + "sequence": 22, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725 + }, + "demo": { + "health": 4.486035 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Death hunted him since he was a kid\u2019: how Lamar Odom survived to become a villain in his own tale", + "publication_date": "2026-03-31T12:11:01", + "publication": "guardian", + "url": "https://www.theguardian.com/sport/2026/mar/31/lamar-odom-documentary-nba-basketball", + "media_type": "news_article", + "sentence": { + "text": "Reportedly on a cocaine binge in the days before the brothel incident, Odom suffered kidney failure, multiple heart attacks and 12 strokes.", + "media_hash": "fb79ae7bb5b2e0c9ede67b0e50d606210e63795d55952e16d8834007", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "This was the fourth time Woods has been involved in a car crash, most recently in February 2021 when his SUV ran off a coastal road in Los Angeles at a high rate of speed, leading to multiple leg and ankle injuries.", + "media_hash": "3fdebb85169319a76d2727638a9eae8e0ccf38721f29448cdf350da0", + "sequence": 32, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.712725 + }, + "demo": { + "health": 2.68177 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T10:51:08", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "Chemotherapy can be very effective.", + "media_hash": "376a67c4abd0a60df1682fe1d6d1fc4940be362f9b80806fb4834df3", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.704505 + }, + "demo": { + "health": 2.6735499999999996 + }, + "aapfactcheck": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "publication_date": "2026-03-31T01:46:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", + "media_type": "news_article", + "sentence": { + "text": "Be mindful of those around you, what may feel like a minor illness to one person could pose a serious risk to someone else.", + "media_hash": "25da1e7093fe13b613de9ebdfd841b57a5e246be26951c79c3204e70", + "sequence": 19, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Club Chemistry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.7004400000000004 + }, + "demo": { + "health": 2.7004400000000004 + }, + "aapfactcheck": { + "health": 2.7004400000000004 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How one family's bipolar disorder experience led to...", + "publication_date": "2026-03-31T04:06:51", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", + "media_type": "news_article", + "sentence": { + "text": "The federal government provided more than $2 billion annually for mental health between 2019-2024.", + "media_hash": "930499326ce546f3236eca4933237b7c4e4cefe927490e16cc7f41a7", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "It is currently \u00a3118.75 a week, still one of the lowest among advanced economies.", + "media_hash": "0976e6bef00e9dad7e4df368bba53d1824e6cab3681d664d81b7a7d3", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.6987249999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "A promise to keep prices low on thousands of products from more than 1,000 of the nation's most-loved brands, including Heinz Baked Beans and Weetabix.", + "media_hash": "5fd9110db052952b8ea9528372ef6b654c2da499a376401a26c2efb6", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.5459449999999997, + "nutrition_": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Some people with MCI stay stable; a small percentage even improve (stock)", + "media_hash": "1bcf69bc98c8c77a1272d65c918f9f9cd62a42c04108c83198572b22", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.500545 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Now after a period of going dormant cicada has spread to 23 countries and is spreading across the US, being detected in the wastewater systems of 29 states.", + "media_hash": "164401b6572c600a6af843c62dd13a7aa5f5244897845d400d84aa04", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Some 40 per cent of smartphone users spent more than five minutes on the loo to poo, compared with only 7 per cent of non-users.", + "media_hash": "1455b2de1aaa35e104fb90d510f222e9de5531df3970536ac709bf38", + "sequence": 52, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:59:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "More than four in five trusts (83 per cent) missed the key target of treating 85 per cent of patients within this time frame.", + "media_hash": "2e90bcff2c19c4984a26646191e2c98007bbc20143e8a84c029599b0", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "Next, the society of radiographers has said that the demand for ultrasounds has increased, but that there aren't enough people being trained to do the work.", + "media_hash": "a90b19ebe4a511c2700d99db3d1364ab7db200efad35c7ec59d70837", + "sequence": 341, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + } + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "The number of extractions because of tooth decay made up 60.5 per cent of all tooth extractions for those aged up to 19.", + "media_hash": "ab7149758d2bc2d0982a6835b4ce37b18c56fca51967743fa3dda606", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 3.548465 + }, + "pa-media": {}, + "maldita": { + "health": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", + "publication_date": "2026-03-31T21:30:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", + "media_type": "news_article", + "sentence": { + "text": "And nationally, the longstanding target of treating 85 per cent of patients within 62 days has not been met since 2014.", + "media_hash": "a2938e515a594c91297b781ce15d406c3e6ebc618e44e727c86fde5e", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.970815 + }, + "aapfactcheck": { + "health": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "health": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", + "publication_date": "2026-03-31T17:17:40", + "publication": "guardian-society", + "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "Three-quarters (76%) regularly saw their students experiencing social difficulties, while the number of teachers complaining that their school did not have a counsellor rose from 29% to 40% in three years.", + "media_hash": "d702e4b399d41eae428bb8c6f607ca685d5bff776bd763ddcf849ed5", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Education Union", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996, + "leo_s_topic": 2.6987249999999996 + }, + "demo": { + "nutrition_": 4.970815, + "health": 4.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "The latest global data is from February, so the strain may have spread more widely since then.", + "media_hash": "d6613ca9e970013a1c4a7ce3442146eb8a02b1581741faf630860b9f", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6987249999999996, + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Eight out of ten are alive a decade later.", + "media_hash": "2ee72329e22b581fc628ba46762792d3d42e540582a6867f63c919e9", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "research", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 2.6987249999999996 + }, + "aapfactcheck": { + "health": 2.6987249999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "In 2025, cases were confirmed in 33 countries spanning 5 WHO regions, with the Eastern Mediterranean recording the highest numbers, followed by Africa, South-East Asia, the Americas and the Western Pacific, reports the Mirror.", + "media_hash": "21f44a5fc4aa6a25c58c5fdd02de56cfe46354ff13e9effbbc8e6c7a", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "environment": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.2500299999999998 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "The highest amount of PIP you can get each month is about \u00a3750 or \u00a3800, yet costs can be way higher.", + "media_hash": "358325a8d367a13e598602004fb74e2919234a598377db6450309a65", + "sequence": 152, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 3.6691399999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", + "media_hash": "2ffc0a8a2bb10e3c7850d0abf7091ace3114ced9424b2acaf5c49ea4", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "He said from early on \"there was no one on it with serious epidemiological experience\" and that by the end of the pandemic it had up to 50 members, adding \"you can't run a committee with 50 people\".", + "media_hash": "042a0c28f3588f3ef6e7d6d0b39846958c6313b7638168fcc6462256", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Professor Anthony Staines", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "But of course, you know, 10% of the population is not autistic.", + "media_hash": "7d38dd4291322fd852eceb16e5bc5e332ffbb8aa152873cf5d58185b", + "sequence": 543, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6987249999999996, + "clinical_health": 2.6987249999999996 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "In 2022, the World Health Organization reported a global increase of cholera notifications, with more cases reported from an increasing number of countries.", + "media_hash": "1e89b733392356659e38a2edf260c7a91c43d945fdfbc1926a6396c8", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "World Health Organization", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "health": 5.09725 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.698725 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "They lower LDL levels by 60 to 70 per cent, compared with 30 to 50 per cent for statins.", + "media_hash": "38d124003d24246cd96af05f79e72a10fd28fba61b9fc78752b37a0f", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "pa-media": { + "health": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Decades of study have concluded that anywhere from three times per day to once every three days is within the healthy range.", + "media_hash": "a8dd1d81f8fbb11f76a349ec3620b524f9c0193cbc35fd9bc7885c12", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "nutrition_": 5.66914, + "health": 5.66914 + }, + "pa-media": { + "health": 2.6987249999999996 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "In lab experiments, the bacterium trapped up to 87 percent of nanoplastics and 57 percent of them in gut-like conditions.", + "media_hash": "37e75f94ce4d27660d2493441c9c178289535b67f001dff196522a11", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6987249999999996 + }, + "demo": { + "politics_of_food": 2.970815, + "environment": 2.970815, + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 2.970815 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6987249999999996 + } + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "Known as 'Cicada', the new variant is set to affect the vulnerable members of society the most, with the elderly, chronically ill and children told to stay indoors.", + "media_hash": "26c1cb6ea45ac1b2f40f5194debbbea30139d719c06e1d2fe22eb427", + "sequence": 3, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.698365 + }, + "demo": { + "health": 2.698365 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.698365 + } + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "You can naturally get enough omega 3 by eating two portions of oily fish throughout the week.", + "media_hash": "e70847c4f6edd6912210d3570b3e823af5329f050a3fdd37b209f902", + "sequence": 51, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6831300000000002 + }, + "demo": { + "health": 2.54684 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "Paddy had his operation and his life improved until he had a resurgence of a skin cancer that had been on his head.", + "media_hash": "a5b3f80d4680272c4cd06cfe4fea7a423123da97d4b600e6e633aee0", + "sequence": 9, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.682655 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", + "publication_date": "2026-03-31T20:30:35", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", + "media_type": "news_article", + "sentence": { + "text": "John was originally diagnosed with a rare form of cancer in 2023, but after a period of remission his cancer returned the following year, spreading to his brain.", + "media_hash": "8a56d68fc15faf5cf5e819dea1f0da8f6395cea7987910de30cb0213", + "sequence": 38, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.682655 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", + "publication_date": "2026-03-31T20:19:52", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", + "media_type": "news_article", + "sentence": { + "text": "John went into remission in November 2023 but sadly, his cancer had returned by May 2024 and had spread to his brain.", + "media_hash": "2b9d8282c009978ffc8b4e542325f2c6625956e4e9eb3de189cc9954", + "sequence": 39, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.682655 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "It can be fatal.", + "media_hash": "eb344e5f229ea15076d6fdbb297ca786ec713aa02ee6b62041d92728", + "sequence": 76, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.67931 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Your nails can reveal a lot about your overall health, often offering crucial hints about parts of your body that might need further examination.", + "media_hash": "83a87b17e7b6252a7bb2e7ab9770d22f12d3ec301352dce8f41236f1", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355, + "nutrition_": 4.67355 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "But there is limited evidence that cannabis is a suitable treatment for depression.", + "media_hash": "f4cd57f7fbc732f7b5c8915bef7f6ece0300321d93040a026b982ab6", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "They also contain healthy fats, essential amino acids our bodies can't make on their own and powerful antioxidants that can ward off the visible signs of aging whilst protecting our hearts.", + "media_hash": "668d516ad7b6ac300831de9c5cf9bbb0120f39e206d0551ee823bd00", + "sequence": 9, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.552875, + "popular_media": 4.552875 + }, + "pa-media": { + "health": 3.703135, + "nutrition": 3.703135 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 3.703135 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "'Poppy seeds are a great source of calcium for people who don't eat a lot of animal products, which isn't only great for bone health but also for nerve signalling,' Johnston said.", + "media_hash": "9ebae06c0467014d948950daa072291d1b157ea8788e33c1dae7b2e2", + "sequence": 45, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355, + "popular_media": 4.67355 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.0839 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", + "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservative", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.799985 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", + "publication_date": "2026-03-31T02:14:20", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", + "media_type": "news_article", + "sentence": { + "text": "The typical symptoms of meningitis include a high temperature, seizures, cold hands and feet, and being very sleepy or difficult to wake.", + "media_hash": "13d789b4c4165527241f08bda10790297d1d61c0bcad1fddc7ae96ca", + "sequence": 30, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996, + "leo_s_topic": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Sonya Babu-Narayan, clinical director at the British Heart Foundation, said: \"So-called 'weight loss drugs' like semaglutide have proven benefits beyond reducing the number on the scales - they are now considered important medicines for preventing deadly heart attacks and strokes.", + "media_hash": "2dd0918a3316354a338da768ff21c190f921232614c375816a492eef", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Heart Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.52192, + "nutrition_": 4.52192 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "'Flax seeds are absolutely incredible for not only your gut but also your heart and overall health,' Johnston explains.", + "media_hash": "87d6b20595922786edce9b8692c739f6ab8b07975da58513e5b055d7", + "sequence": 15, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355, + "nutrition_": 4.67355, + "popular_media": 4.67355 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.552875 + } + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "Dr Khan explained that vaccines and boosters remain a tool for protection even as the virus evolves over time.", + "media_hash": "679075083d8ab833f68c614c14e5015768854f6dd1344b9b02601e4e", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Talal Khan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Other early symptoms of heart failure can include fatigue, shortness of breath, or leg swelling.", + "media_hash": "8d61efcba141b92e633f5dfc9dfe5dab8f6fbd08fa985f603f5621f5", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "So much stigma surrounds mothers who fall into drug abuse, and it keeps women silent and trapped in their addiction.", + "media_hash": "642877d81a88a3ba32520c404ea58177e67f151a2f47b91fce2cc5b3", + "sequence": 129, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Viral is rarely life-threatening but can cause long-lasting effects, such as headaches, fatigue and memory problems.", + "media_hash": "79148ca371b2a6f3da3d6ae8fb8633b3e40c6e2894ed1eb5b3254030", + "sequence": 70, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Although ineffective, antibiotics may be given when patients arrive at hospital just in case they are suffering from the bacterial form of the disease.", + "media_hash": "e17c5609b2a3dcf8ccf817490a6b47255b1efd50cfb5287356263dd9", + "sequence": 73, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "You certainly don't have pounds of poo sitting around for weeks inside your colon that only an intense juice cleanse can fix.", + "media_hash": "6a0839dd102b29f73a8dc7dd21cd55aa7cb23558ba17e03efe8c8765", + "sequence": 75, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "nutrition_": 2.6735499999999996, + "health": 2.6735499999999996 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", + "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", + "sequence": 36, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Poor memory is a common sign of early dementia.", + "media_hash": "798bb2df76871a37da128a4d9e89a57985e78fdfec0e19882690ddcd", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Megan Patrick", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "And most MCI never becomes Alzheimer's - it can be caused by vascular issues, depression, medication or sleep disorders.", + "media_hash": "216ff0cebba3bbc184ace6f30c0b2d1be3ff33387f7967868d0ebf89", + "sequence": 13, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Your nails can tell you a great deal about your overall health, often providing vital clues about areas of your body that may require closer attention.", + "media_hash": "fed3830cd5b8a1798de23e63154879c8ac646f95adf51e5ba7ab525f", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "Out-of-date sun cream can lose potency, leaving your skin vulnerable to sun damage you thought you were shielded from.", + "media_hash": "7b0c755ad914ae9ff858c6a92610cc8363ab35d7040b3fb0f1a08c8d", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "High \"bad cholesterol\", also known as low-density lipoprotein (LDL), is one of the major causes of heart attacks and strokes.", + "media_hash": "76e5072a1e04178c46b2f42f413a2e1ab20f08527063f3c066046019", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "nutrition_": 2.6735499999999996, + "health": 2.6735499999999996 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Vaccines are available against certain strains of bacteria that cause meningitis, such as tuberculosis.", + "media_hash": "1bf4e90a01ee8900767aee02e44517251ec41faed1ac3d36121864a0", + "sequence": 68, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "It might seem fine to use what is left of an old bottle of sunscreen from last year, but there is a symbol that tells you exactly how long it is good for.", + "media_hash": "717004a6669d2dac231f8fbc88108e522fa9a65ff0d9b813f08eb28e", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "Research has shown that eating a healthy diet, exercising regularly and prioritising sleep can help ward off the disease", + "media_hash": "73d9e3a874540adef86ad4d64b3ade32ff7aea0cb40ea194cb1792e4", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355, + "nutrition_": 4.67355 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Nails can reveal a lot about your overall health through changes in colour, shape and texture", + "media_hash": "a8cf841d16113b0c58e7f73dbb3f4f0717d34f68b57b0ef970a93e79", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 4.67355 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "Ketamine is an anaesthetic drug, used on humans and animals, and also used to treat depression", + "media_hash": "117de8a5e18e8a3817ab5ba6e3539b50c7c1503f3431b28e256aef11", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", + "media_type": "news_article", + "sentence": { + "text": "RSV is a common cause of coughs and colds and usually resolves on its own, but it can cause severe illness in babies and older adults.", + "media_hash": "f31aa6ba68dec31ee62354e768499df71268956778ef788734b68dec", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "It's very difficult, then, to have regular, predictable bowel movements and support gut health on an ultra-processed diet.", + "media_hash": "7c1e379f5ed8997332f8d067107c4522c6f0118e40f01c085d9138ce", + "sequence": 82, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 101972, + "score": 0.23109999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "nutrition_": 4.67355, + "health": 4.67355 + }, + "pa-media": { + "health": 4.67355 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "Blood pressure, weight and cholesterol are considered the top measures for predicting a person's overall health and how long they may live.", + "media_hash": "8716c0c0bc08882002f11355c0821b5085ea91dbed277b51edac459b", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "nutrition_": 4.67355, + "health": 4.67355 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.67355 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "The human brain continues developing well into a person's mid-20s, particularly in regions responsible for impulse control, decision-making and long-term planning -the functions needed for someone to recognize when a habit is becoming a problem.", + "media_hash": "7e278420058a4a4cea4f91a24db73a35b5f061021474d5cfe5188d52", + "sequence": 59, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "The firm says if an Uber courier has concerns about the validity of a person's ID or their sobriety, they are instructed not to complete the delivery and return the alcohol delivery to the store.", + "media_hash": "d30e06786950175605123ea7b0251f49f6531c771927f17a07eb1bfb", + "sequence": 32, + "claim_type": [ + "correlation", + "rules" + ], + "claimer": [ + { + "name": "Uber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.66521 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Rather, young adult users were more likely to develop the disorder, and that disorder caused the memory problems.", + "media_hash": "db59dd5a9e483e126391d2b4b9bfb6fb80ae9e125ca740a12e0acca5", + "sequence": 45, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.658185 + }, + "demo": { + "health": 2.658185 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "One of the reasons that people are maybe less inclined to offer some of these patients treatment is that they're concerned about the potential for complications, the potential for risk.", + "media_hash": "a53918730f15efc5bac973b44c46b5637f2e6a6d7c357d1489867813", + "sequence": 60, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Colm Hanratty", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.658185 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "at least that's the conclusion of a government review today into the number of people who have been diagnosed with those conditions and why that has shot up so much in the last few years", + "media_hash": "ae9c7813c05d98a79e143df0e6eecb89823b32c3ab0f1a83c6db2e5f", + "sequence": 42, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.658185, + "clinical_health": 2.658185 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "With multiple pregnancies, uh, some women are having scans every two weeks, or if a problem is identified in the community, they'll be brought in and a scan really needs to be done within 24 to 48 hours.", + "media_hash": "76dab0e79d66b3f3a22f0f51cc191ca65dcf485239b58bc565419366", + "sequence": 367, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.658185 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "It's important to stress because we don't want to alarm women, especially if they're pregnant, that you know, there is necessarily a correlation between a need for more scans in pregnancy and a riskier pregnancy.", + "media_hash": "040317e512de2932b9c5e83facd5b301702983675c1a460d16892d07", + "sequence": 370, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.658185 + } + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "And we see that particularly when people have had arteries that have been blocked for a very long time, and which is regarded as more challenging to treat.", + "media_hash": "29982d80fe204513a06a19b85498a2ca6303aa93b497ffeb5ae96e22", + "sequence": 19, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Colm Hanratty", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.658185 + }, + "demo": { + "health": 2.658185 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T15:40:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "It had been used by another 16-year-old, Adam Raine in California, who in April 2025 took his own life after what his family's lawyers allege in an ongoing lawsuit was 'months of encouragement' by the AI chatbot.", + "media_hash": "087f15fb1033f7b138ce2d11c8d81eba83f0f18fb97f7dd0d770cf95", + "sequence": 35, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "ChatGPT", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.652965, + "climate_change": 2.652965 + } + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T10:00:05", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "DS Garry Knight from the British Transport Police told the inquest that digital forensics teams had found he had been using ChatGPT at around 12.30am asking for advice on suicide.", + "media_hash": "e40ca1d20d115e95688134f16fe11f4cf40eb6e237b563bcb47222e3", + "sequence": 24, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "DS Garry Knight", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Luca Walker", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 0.0 + }, + "fullfact-policy": { + "climate_change": 2.62201, + "social_media_misinformation_": 2.62201 + } + } + } +}, +{ + "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", + "publication_date": "2026-03-31T04:47:11", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", + "media_type": "news_article", + "sentence": { + "text": "'Jewish people could be going to get a procedure done by someone threatening to kill people.", + "media_hash": "200e18655f35dd49ccd9bad6659957ce46456aba63bae50ea9ec8316", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Senator Andrew Bragg", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": { + "race__ethinicy__religion": 2.652965 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T16:52:41", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "It was also discovered that the teen had been using ChatGPT the night before to plan his suicide.", + "media_hash": "0620f2735415de72cf2fb0f41f5dd7d4e0488961034cce595a44d6ef", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 2.652965 + }, + "fullfact-policy": { + "climate_change": 2.652965 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "'When it's treated later, you may have to remove the finger - and it can kill, absolutely it can.", + "media_hash": "963ab64a2881b733b8d090cedb85bc38bfb88af07f83e39912ffeca0", + "sequence": 63, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Richard Wain", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": { + "health": 2.62201 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", + "publication_date": "2026-03-31T06:00:33", + "publication": "guardian", + "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", + "media_type": "news_article", + "sentence": { + "text": "Scraps from earlier in the novel - about voices in the head, suicide attempts, even a seemingly uncrucial factoid about Josef Mengele injecting adrenaline into children's eyes to change their colour - re-emerge as pre-echoes, ancestral kinship.", + "media_hash": "016285353344fb1c6234d5e67da2277fefbf55e36459eccd238ab8a9", + "sequence": 36, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965, + "leo_s_topic": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Iran\u00b4s imprisoned Nobel peace laureate Narges Mohammadi...", + "publication_date": "2026-03-31T19:02:59", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695881/Iran-s-imprisoned-Nobel-peace-laureate-Narges-Mohammadi-heart-attack.html", + "media_type": "news_article", + "sentence": { + "text": "\"We are very worried that the regime is seeking to exhaust (Mohammadi), to wear her down, slowly killing her,\" Ardakani said.", + "media_hash": "9a98bc2eec0bdf4d77f94ece66d95eeaaaa57dd37434836f3514393f", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Chirinne Ardakani", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": { + "health": 2.652965 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Though if it is not caught quickly it can be aggressive and highly dangerous.", + "media_hash": "24ec230e05441bcc615c469a2d8cc806d16f14810672a3aa92e84d76", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.652965 + }, + "demo": { + "health": 2.652965 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Whilst it's currently not approved by any regulatory authority, researchers believe the global study, which will involve more than 500 participants, could pave the way for therapeutic treatments that slow down the progression of the disease.", + "media_hash": "640fad6df58bb31b521841551766ccf5eb802a5e7fdb0f820145a947", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Prilenia Therapeutics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.649215 + }, + "demo": { + "health": 4.649215 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Nanoplastics are tiny plastic particles even smaller than microplastics, measuring just one micrometer (\u03bcm) or less in diameter, making them invisible to the naked eye.", + "media_hash": "e8e83acff009e65a76334344e4a30459bb2029bb52d260b7286a2429", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.638815 + }, + "demo": { + "politics_of_food": 0.0, + "environment": 0.0, + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 2.638815 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.638815 + } + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "It is a stark omission, given the government's focus on the huge rise in people dropping out of the economy because of illness.", + "media_hash": "64165bf0c2a3be7ac2bdda42ef590eb344082b2cb248aa1b26f4512a", + "sequence": 15, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.638815 + }, + "demo": { + "health": 2.638815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Most therapeutic peptides are prescription only, with some on the list of prohibited medications, Bonning says.", + "media_hash": "3f014c065d5d2e3e046356ebf1b9f26b68df19f11e9a95357a789bf6", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.638815 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.638815 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "The report also cites the growing use of weight loss drugs as a key part of the change compared to recent years.", + "media_hash": "186b575627ad9c009f8614687f659795dd2d9521bbdbe7859e9e3d09", + "sequence": 397, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.638815 + } + } + } +}, +{ + "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", + "publication_date": "2026-03-31T13:59:55", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", + "media_type": "news_article", + "sentence": { + "text": "The menB jab was introduced on the NHS for babies in 2015, meaning the majority of young people born before then are not protected against it unless they have had the vaccine privately.", + "media_hash": "969e3522fb10fa4e89e8e8042e7fdadde9f2a0c53cc38f7c34b9f7df", + "sequence": 41, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.638815 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "measles": 2.8655049999999997 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "\"Oliver's law\" calls for a ban on prescriptions for people with serious mental illness, mandatory consultation with NHS mental health teams, face-to-face assessments for complex cases rather than video consultations, tougher CQC oversight (including routine audits and publication of prescribing data), mandatory reporting of serious harms and clearer General Medical Council sanctions for unsafe prescribing.", + "media_hash": "3a71843483cca9ddb2add06f5c9e8d7eaff5fb09b8b203fc89e70f91", + "sequence": 24, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Alexander Robinson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.634255 + }, + "demo": { + "health": 4.634255 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T09:51:02", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "An 'academically gifted' teenager asked ChatGPT for advice about how to kill himself before taking his own life the next day, an inquest heard.", + "media_hash": "9fae2ff697a36c2c9acee1053bcb2b88302a73b69804301e6c221f39", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.62201 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "education": 2.62201 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T15:40:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "Luca Walker, 16, asked the AI chat bot about suicide hours before his death on a train track.", + "media_hash": "9a259e79c0d7829acac6f0b09bd1d5869b3868ef8daeb2cc76d0849d", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "ChatGPT", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.62201 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", + "publication_date": "2026-03-31T04:47:11", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", + "media_type": "news_article", + "sentence": { + "text": "A senior Perth doctor has been suspended amid explosive allegations he ran a covert online trolling network that targeted fellow medical professionals with antisemitic and racially abusive attacks.", + "media_hash": "d6ddc687d7a178ff159b999a652f4befe4b4438a833f259de4ea80f5", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.62201 + }, + "demo": { + "race__ethinicy__religion": 2.62201 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "Throughout the UK, most PAO markings indicate a range of six months to two years.", + "media_hash": "5a665b0c05f3326b44231c2a6da0fc0c57ab2217731a06c350a40873", + "sequence": 13, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6153500000000003 + }, + "demo": { + "health": 2.6153500000000003 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "\"We need to make sure everybody gets their cholesterol down as quickly as possible and as low as possible,\" said Dr Joseph Cheriyan, a heart researcher at the University of Cambridge.", + "media_hash": "3750f56593f2cfcb1fbcd398485e369ba9077068564691538d657a11", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Joseph Cheriyan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "University of Cambridge", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6147650000000002 + }, + "demo": { + "nutrition_": 2.6147650000000002, + "health": 2.6147650000000002 + }, + "pa-media": { + "health": 2.6147650000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sales of heart, liver, and kidneys soar as \u2018nose to tail\u2019 eating has a resurgence", + "publication_date": "2026-03-31T09:19:05", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/sales-heart-liver-kidneys-soar-nose-to-tail-eating-a-resurgence-27765736/", + "media_type": "news_article", + "sentence": { + "text": "Sales of heart, liver, and kidneys soar as 'nose to tail' eating has a resurgence", + "media_hash": "fe2d19c4d418b1199e5a60c8435b3ca3035ed02218ccf01cc95d1c35", + "sequence": 0, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6127849999999997 + }, + "demo": {}, + "pa-media": { + "nutrition": 2.6127849999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "And so because of that, and because these patients are maybe limited by symptoms, but they're out in the community, they're just left to kind of trundle along and perhaps their quality of life isn't that good and they aren't able to do much.", + "media_hash": "970588482b91481aa3ef626bfb316fda163a41738a3b519cd26d0146", + "sequence": 21, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Colm Hanratty", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Consultant cardiologists Dr JJ Coughlan and Dr Colm Hanratty", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "In other words, frequent cannabis use in young adulthood only mattered if it continued into midlife and became a disorder.", + "media_hash": "c199675dd5502e625736d826970a3b865209d9be9b26c4c30fe260a5", + "sequence": 48, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 2.884875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "A faint brown line under a fingernail might not seem like a cause for concern.", + "media_hash": "ac666b6fb7c5bdb4ebd3e0bcbfef071211acfebbd3a824ba1c5f14df", + "sequence": 3, + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 3.15833 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", + "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", + "sequence": 33, + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6127849999999997, + "scottish_elections": 2.6127849999999997, + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T16:52:41", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "It was found that he had written 14 messages for his family and friends in his notes apps to say 'farewell' and 'I love you'.", + "media_hash": "e7d14832b67f4491f87e0be869cbd32667e9d6fee0ca5f38deb4edca", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 0.0 + }, + "fullfact-policy": { + "social_media_misinformation_": 2.61247 + } + } + } +}, +{ + "title": "Emmerdale\u2019s Jacob shattered in hospital heart attack drama as he makes huge mistake", + "publication_date": "2026-03-31T21:00:00", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/emmerdales-jacob-shattered-hospital-heart-attack-drama-makes-huge-mistake-27708637/", + "media_type": "news_article", + "sentence": { + "text": "Kerry is stunned to hear how bad things are, and she's made everything 10 times worse.", + "media_hash": "49d1117995a0888ceef79c4ae10c04c6de201722802ea4bb0d493476", + "sequence": 32, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Kerry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Researchers then counted how many of those waves a person engaged in heavy use, such as daily smoking, binge drinking or using cannabis 20 or more times a month.", + "media_hash": "8fed3729c9fd3647bcf32a175103a21188fa1c6402b6e2ceceaccce3", + "sequence": 23, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.61247 + }, + "demo": { + "health": 2.61247 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "The UK is lagging behind the latest recommendations from countries such as the US, where new guidelines say people should start getting their cholesterol levels tested from the age of 30 (Photo: fcafotodigital/E+/Getty)", + "media_hash": "651f01b7bafc5b1bdede0e12ddbd4e1fc386a83e4f0212d96b5095c0", + "sequence": 18, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6046199999999997 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 2.6046199999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", + "publication_date": "2026-03-31T10:45:43", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", + "media_type": "news_article", + "sentence": { + "text": "In some areas, patients have reported waiting over a year for routine treatment - while others cannot register with an NHS dentist at all.", + "media_hash": "a4dff2c2b9380b94b74cb2e1b68604be2380b7fb0a82ff7ae5cbe286", + "sequence": 11, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6046199999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "Disabled people get a lot of abuse online.", + "media_hash": "cc3ce90ad50bdd61a3415cf0a372d8f00baf4e2e1997725edfe35567", + "sequence": 156, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.6042500000000004 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6042500000000004 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "It's worth checking the side effects of any medicine you are currently taking.", + "media_hash": "ac450ba411bbc4ac91ae08fe39597e7ac08d3889cb8427f3fca79054", + "sequence": 44, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.59917 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": { + "health": 2.59917 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "The pain from a hysteroscopy - used to examine the womb for polyps or causes of infertility - usually happens as the camera (typically less than 4mm) enters the womb and saline solution is injected to dilate it and make it easier to see inside.", + "media_hash": "7b0bfc0bb6e679b3b3beceefa7814278e1cfa4c91cdd86d1f7836184", + "sequence": 127, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 2.598275 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:00:46", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Some users were enraged at the amount of chocolate Gemma had bought her children and called it 'greedy' and 'unhealthy'.", + "media_hash": "49ce3bda786369dd6f11ff4dbe242e957279e02fb52545c9a5ed98f8", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 4.598275 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", + "publication_date": "2026-03-31T16:13:33", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", + "media_type": "news_article", + "sentence": { + "text": "Scientists say the variant called cicada - technical name BA.3.2 - appears to spread faster than other variants and one of the UK's top microbiologists has told of emerging evidence that it could disproportionately affect children.", + "media_hash": "ee44987e0fafc4994a53d705ef69da14961da11997273fd17a2c071d", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Health officials", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK's top microbiologists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 2.56732 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.598275 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "'They said it's melanoma, stage 1A meaning it's invasive but not hugely,' she said.", + "media_hash": "20dd651f205ed4fc63b4830e77b5ab101825b804adb054a11920ac6b", + "sequence": 33, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 2.598275 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "'In people with existing health conditions, replacing blood pressure and cholesterol measurement with self-reported walking pace improved the model's ability to predict mortality, meaning people were reclassified into a more-appropriate risk category.", + "media_hash": "6d1f347b53a2a09ac3e0b1648417ea779128a983ea15ecf26e7bac2a", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Professor Tom Yates", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "University of Leicester", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "nutrition_": 4.400095, + "health": 4.400095 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.598275 + } + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "Nice said that evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", + "media_hash": "882962f297f962b094eeb2af665ecce69d5c143fd1b6fed42a728d64", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "National Institute for Health and Care Excellence", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.598275 + } + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "His wound became infected and he now has permanently limited use of his hand, restricting what jobs he can do and how much he can work.", + "media_hash": "361b83f910e43005e8594a50528cdf42a9d08e874f72cad3ab978c97", + "sequence": 38, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.598275 + }, + "demo": { + "health": 2.598275 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "Helen Williams, national clinical director for cardiovascular disease prevention at NHS England, added: \"For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health.", + "media_hash": "ca233be8fa0add90b59e6e80e8856afef9c46ff87f6019c61ca68169", + "sequence": 20, + "claim_type": [ + "quantity", + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5893050000000004 + }, + "demo": { + "health": 4.589305, + "nutrition_": 4.589305 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.589305 + } + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "All of which can trigger pain.", + "media_hash": "e3820b93accd8db5a3e73a907c7c3d48f4679d08f0ca8b35780c29ba", + "sequence": 10, + "checkworthiness": { + "fullfact": { + "clinical_health": 2.58644 + }, + "demo": { + "health": 2.73922 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "And also partly maybe can explain some difficulties that these families face with their children.", + "media_hash": "b4a2207982c51d84af9556001ecf2225cc96608ad74f02b101420971", + "sequence": 552, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.58644, + "clinical_health": 2.58644 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "You know, there is a percentage of kids who cannot sit still, who cannot concentrate, or impulsive.", + "media_hash": "7982bd406b5dcc05e4d6c887baa9e0965af93c7849542b84ffe7c70d", + "sequence": 513, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.586125, + "clinical_health": 2.586125 + } + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Because the nail-producing cells sit in the nail bed, removing this tissue usually means the nail will not grow back normally.", + "media_hash": "bce242e815921f2b4ffc6c61122b0650d618803ae848390e494d90ab", + "sequence": 25, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.58383 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "Some people also experience gastrointestinal issues like nausea or diarrhoea, according to the CDC.", + "media_hash": "427d41de0a256e0b92d991ed69854148af796609f442a32ddc8305e7", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "US Centers for Disease Control and Prevention (CDC)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.58268 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.73546 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", + "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", + "sequence": 30, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.579765, + "scottish_elections": 2.579765, + "clinical_health": 2.579765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.579765 + } + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "Some of the screenshots show the 55-year-old had ordered 16 items over a five-day period, totalling \u00a380.", + "media_hash": "b95dbb7483dab99a8809c67c561ab53ebc2f803e11c141700c359a30", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Around 45,000 coils are fitted every year in the UK.", + "media_hash": "7b23974d810796e835835b0380030b880d9717c0ef00a71472e0f9ae", + "sequence": 88, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "health": 2.5315000000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Indeed, one study from the 1990s at the University of Bristol on the bowel patterns of nearly 1,900 people found that the most common time of day to poo is between 7am and 9am, with a second peak after about 6pm (when people eat what is typically the largest meal of the day).", + "media_hash": "d91edd7cb288d38af563df0556dc7afa6f9e34cd8db90aa3bd087779", + "sequence": 63, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "University of Bristol", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "nutrition_": 2.5769, + "health": 2.5769 + }, + "pa-media": { + "health": 2.5769 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "The next closest strain managed only about 18 percent", + "media_hash": "386720a7213bdf64090621cdbdf1d87d2da563aaabbc7efadb14f3f3", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "politics_of_food": 3.09725, + "environment": 3.09725, + "nutrition_": 3.09725, + "health": 3.09725 + }, + "pa-media": { + "health": 2.5769 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5769 + } + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "There are the two standard scans at 12 weeks and 20 weeks, but women are obviously all assessed and there are a lot more that are deemed high risk, so they come in and they need growth scans further in the pregnancy.", + "media_hash": "4db62c6d1adc712e1fd5ff41200f66b628f3aef570abee1830a01927", + "sequence": 366, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "In the UK, the target is 2.0 mm/L.", + "media_hash": "6962ab730f1f4c9dc11b5290de0a5ff5f76523e93d2ca4d8ad09689c", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "pa-media": { + "health": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Some 33,976 of these were due to a primary diagnosis of tooth decay, marking an increase of 11 per cent.", + "media_hash": "03ef4ba836668d8c9a790d1b74d0f50c05dcdf818f8ebe33d4d6df9f", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS hospitals", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Swansea Bay and Cumtaf Morgano Health Board have the least number of people taking part in screening at 64%.", + "media_hash": "8e1e6c78c2dcc704fcebf0fffc847e1b189827fe48a932e809a641a6", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + } + } + } +}, +{ + "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", + "publication_date": "2026-03-31T09:45:26", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", + "media_type": "news_article", + "sentence": { + "text": "By her first daughter's birth in 1996, she was a 38DD and by her second daughter's birth in 2000, a 40EE", + "media_hash": "910b397d9b8c51d0cac06ae9ca06d1f0bce5db5e23c4a0519de940c4", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "That's the latest, more on the roads just after nine.", + "media_hash": "f848ed7953eec660378653a7b1729a88ea92655e51cb73a21886837b", + "sequence": 912, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5769, + "senedd_election": 2.5769 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Fibre helps maintain healthy habits because it ensures we retain more water in our faeces as it passes through our system, making it easier to pass.", + "media_hash": "9b16d4cc48dbafc46a36c8e44348a49ee91221d778d4b5f3eeaa0bb7", + "sequence": 117, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5686799999999996 + }, + "demo": { + "nutrition_": 4.56868, + "health": 4.56868 + }, + "pa-media": { + "health": 2.5686799999999996 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "That's why Tesco is committed to helping the nation get more of its 5-a-day.", + "media_hash": "4b59a37b68a67f7c32195fbd55e59982c1141c898cee9a1cdfb6db27", + "sequence": 7, + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5686799999999996 + }, + "demo": { + "health": 2.5686799999999996, + "nutrition_": 2.5686799999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5686799999999996 + } + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "\"The evidence from the clinical trial is compelling. It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.\"", + "media_hash": "a2220b197d23b25a80cf405b0af3ba78afba4211fee7c2119d606e07", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Knight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.56732 + }, + "demo": { + "nutrition_": 2.56732 + }, + "pa-media": { + "health": 2.56732 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.56732 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T14:58:56", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "Amyotrophic lateral sclerosis (ALS) is the most common form of motor neurone disease, a muscle wasting condition progressively damages parts of the nervous system and is incurable.", + "media_hash": "696e4af5094c46712d4182412fde6108a7da4c9a5b7927eab8afb1d7", + "sequence": 3, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5633350000000004 + }, + "demo": { + "health": 2.5528750000000002 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Prop Gupta, of the Cambridge Immunology Network, said: \"The immunocompromised and the elderly are at the biggest risk but vaccines should prevent some of the most severe complications in most people.", + "media_hash": "653b00e4e57e7038f3efccb168c4a65a2e2048b1a8460b81b003daf3", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Prof Ravi Gupta", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cambridge University", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5633350000000004 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5633350000000004 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "media_hash": "213dc2258abfab18a5119ac6f3be932d91e01c896e21c493f05efcba", + "sequence": 1, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.563275 + }, + "demo": {}, + "aapfactcheck": { + "health": 4.53232 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\"Wash. Your. A\u2014.\" \u2014\u00a0Medical Professionals Are Begging Patients To Remember These Basic Hygiene Tips, And I'm Actually Aghast", + "publication_date": "2026-03-31T13:31:02", + "publication": "buzzfeed", + "url": "https://www.buzzfeed.com/scarymouse/medical-professionals-begging-patients-hygiene", + "media_type": "news_article", + "sentence": { + "text": "Their privates will smell like rotting fish, I'm not joking.", + "media_hash": "34757d6f2123832107b4dc782ea79f87f2599e1ac8aeb8312119f325", + "sequence": 25, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.563275 + }, + "demo": { + "health": 2.716055 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The charity looked at the latest screening data from 2024 and found that Pales Teaching Health Board and Holza Health Board have the joint highest uptake for screening at 67%.", + "media_hash": "0e63d5c5976e33037a24ac7a615a45c7f024ea4b5bd281ab9ce6a672", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.556405 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", + "media_hash": "4cfcab5b6c35f455f8719d6a8980249ae08660c6d4dd870d364ed749", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.556405, + "clinical_health": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\"Wash. Your. A\u2014.\" \u2014\u00a0Medical Professionals Are Begging Patients To Remember These Basic Hygiene Tips, And I'm Actually Aghast", + "publication_date": "2026-03-31T13:31:02", + "publication": "buzzfeed", + "url": "https://www.buzzfeed.com/scarymouse/medical-professionals-begging-patients-hygiene", + "media_type": "news_article", + "sentence": { + "text": "9. \"Uncircumcised men have to retract their foreskin to wash their penises properly. Not doing so can cause recurrent yeast and bacterial infections in their partner's vagina. Not washing properly is also a cause of UTIs for men.\"", + "media_hash": "4aeb42d84e920fb0a145fe8638d0d60d9b6365bc46c55f99e61263d0", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Medical Professionals", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "BuzzFeed Community", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "media_hash": "f7c81d311de98fd4bfac8ef746a8c860688e8ee8b96320c87bbf88c8", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5219199999999997, + "nutrition_": 2.5219199999999997 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "Cholera is an acute, severe diarrhoeal illness triggered by consuming food or water tainted with the Vibrio cholerae bacterium.", + "media_hash": "74498b21a7ec69a9192830b926892c52471757a1270e218b97b791f3", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "It leads to rapid, serious dehydration and vomiting, which can prove deadly within hours without treatment, although many instances are mild.", + "media_hash": "175f840a380d95c8619fc2f3b5ba47d4bec3846a3386dc74e76770ea", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "The disease flourishes in locations with poor sanitation.", + "media_hash": "aa94dc62e9aa369aa312ae17fab28242e92bf5491217cce256dbef2c", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.6735499999999996 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "They include sudden onset of severe, painless, watery diarrhoea, vomiting, and rapid dehydration.", + "media_hash": "903b91809b0b3f784dde83b6c11687d4644b75cf4162089bb4e59545", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", + "publication_date": "2026-03-31T09:33:13", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", + "media_type": "news_article", + "sentence": { + "text": "This is thought to be because T-cells - the 'killer' cells released by the immune system - can become over-stimulated by a tumour's presence, which weakens their ability to attack effectively.", + "media_hash": "6e1e84d69d1fc4637bc5413909b746032a44ca7e69039dabd9c5a8ca", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", + "publication_date": "2026-03-31T03:18:54", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", + "media_type": "news_article", + "sentence": { + "text": "The agency said the schemes often involve \"nonexistent, exploitative, substandard, or unnecessary medical care,\" with fraudsters illicitly obtaining the names and identification numbers of beneficiaries and using \"kickbacks and bribes to complicit medical professionals\" to secure federal payments.", + "media_hash": "bafe0c9bff7d667b29caa59bc5a2e045eb90b83287f5cc10c0148bb9", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "FinCEN", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "These particles have built up in the environment as well as the human body since the plastic boom of the last century, where their continued presence is increasingly linked to adverse health effects.", + "media_hash": "ea8c2556b8a6e2caa6b27a2ec756d20a6605ef07a3648e466d00618d", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "politics_of_food": 4.552875, + "environment": 4.552875, + "nutrition_": 4.552875, + "health": 4.552875 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.552875 + } + } + } +}, +{ + "title": "PM", + "publication_date": "2026-03-31T16:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404361", + "media_type": "transcript", + "sentence": { + "text": "The book is called Art Cure, the Science of How the Arts Transform Our Health.", + "media_hash": "7b2aa814cfcc3829355774e03aa6d577f5e158ccb8ec5ee4031b8145", + "sequence": 218, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + } + } + } +}, +{ + "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", + "publication_date": "2026-03-31T15:20:44", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", + "media_type": "news_article", + "sentence": { + "text": "Experts warn that tamoxifen also raises the risk of life-threatening complications.", + "media_hash": "f1e85237689197a60c0e241f4b1fd9c04cd2bcca710f5ef01da5bff6", + "sequence": 37, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5219199999999997 + }, + "aapfactcheck": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "'We can often treat it locally, but if it's very thick, we have to amputate the whole finger.", + "media_hash": "8f6477d437a304112ef585828ee3d9c946f429d89be64b788079d751", + "sequence": 64, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.598275 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Yau said this is because fungi damage keratin - 'a protein that helps form the cells for your hair, nails and skin' - leaving nails weakened and discoloured.", + "media_hash": "76f6416efe96a986e42600cf6a31d769ae53bbfbcdb092810ebfa7a4", + "sequence": 88, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Marion Yau", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ms Yau", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "The most common NTM infection, MAC, is known as Lady Windermere Syndrome because it's associated with elderly, white, underweight women with suppressed coughs.", + "media_hash": "1121352ad8f668c27ba803f4ae1fa02b13c32c16a21b59ed99e54ad5", + "sequence": 51, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 4.400095 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "Vibrio cholerae bacteria spreads via the faecal-oral pathway, typically through contaminated water sources, ice, or food.", + "media_hash": "d3959db0f1012a6c3bf8d0b7483add8f00af4969f8f11ed19b677d63", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "The agency added: \"Cholera is an acute diarrhoeal disease caused by ingestion of food or water contaminated with toxigenic strains of V. cholerae.", + "media_hash": "ad6e9d6dd7091cc03b7f8f27031e8690e2975ebde6b5504e830b585a", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Doctors issue stay at home warning to one group as new COVID variant surges", + "publication_date": "2026-03-31T09:17:09", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", + "media_type": "news_article", + "sentence": { + "text": "Dr Khan said: \"The vaccine still is effective, boosters can be effective. At least some of the data suggest the virus is obviously mutating, and that's how it's going to dodge some of the immunity from the vaccines.\"", + "media_hash": "27bd4c5a236d281b1fa62113e95be2623fe67939986b0bde53b192e5", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Talal Khan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", + "publication_date": "2026-03-31T08:54:16", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", + "media_type": "news_article", + "sentence": { + "text": "Meningitis is inflammation of the membranes that surround and protect the brain and spinal cord.", + "media_hash": "a06d74366875ef93b18d9cecd23112b96afd3667d78097e7c09c6cf2", + "sequence": 50, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", + "publication_date": "2026-03-31T08:46:35", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", + "media_type": "news_article", + "sentence": { + "text": "Rett syndrome is a rare genetic disorder that affects brain development, resulting in severe mental and physical disability.", + "media_hash": "755ce9de071fd74c0ba43b6ae67371b78beec6f0e5033dd6be1f35f9", + "sequence": 33, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "This can lead to what's known as a 'visceral' reaction, triggering nausea or labour-like cramps.", + "media_hash": "e647b685f694c941feca1c994d8b93f66fc837556c24c260e3a17cf9", + "sequence": 97, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", + "media_hash": "0ed85b9ec2c3c2264f789df882b9c87e8a9264bb75fb0db8b161b667", + "sequence": 944, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sam Davis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002, + "senedd_election": 2.5528750000000002 + } + } + } +}, +{ + "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", + "publication_date": "2026-03-31T23:05:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", + "media_type": "news_article", + "sentence": { + "text": "\"As stroke survivors live with the worrying threat of further strokes, it's vital they have options to help prevent that from happening, which suit their own circumstances.", + "media_hash": "af8ac30a9f741d4b3749521b6dee44646802c0a3b4138712146927f6", + "sequence": 28, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Stroke Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "'As stroke survivors live with the worrying risk of further strokes, it's vital they have options to help prevent that from happening,' she said.", + "media_hash": "f84f5d39062e434cb6db1d78c114baa184b1b1fa99f6f24c78689bca", + "sequence": 44, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Stroke Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.53726 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "The bacterium, Leuconostoc mesenteroides, relied on a surface binding process that trapped nanoplastics before they infiltrated human tissue.", + "media_hash": "7975dc5b7d12a8cebb2e8a7b340a04cf0816f68613d05c8775a426ef", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "politics_of_food": 0.0, + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Studies have shown these particles can cross the blood-brain barrier, raising concerns about potential long-term neurological harm (stock)", + "media_hash": "0da6a6c50edb33b82a7c67bae8e37f00bcfe4f0fcab7e9537098ce83", + "sequence": 13, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "politics_of_food": 2.5528750000000002, + "environment": 2.5528750000000002, + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "For binge drinking and cannabis, the harm to memory was indirect: heavy use in young adulthood raised the odds of developing a substance use disorder by midlife, and that disorder directly damaged cognitive health.", + "media_hash": "91d2ca0a387cc97660445cec7e2149a8b1dc27f6fbeeb235e40cbbec", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "University of Michigan researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "Bonning stresses these research peptides are not approved for human use, and people could be getting \"something that's very dangerous\" because they carry unknown toxicity profiles.", + "media_hash": "6fb61bf619f0218ad6c64e7fc35001bd37576a84589e96c16edb81a0", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.799985 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Specialists say the key warning sign is a single dark line running from the base of the nail to the tip that does not fade or grow out.", + "media_hash": "e976c5f9becdfd73b3b961e5701404aa531780c8fcd781f31dcf660d", + "sequence": 71, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Specialists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Nails that widen and curve around the fingertip may be a sign of low oxygen levels in the blood.", + "media_hash": "80b4e76a62e6016e1a0374dc84937bb49206c16c66d73c1ed0024836", + "sequence": 94, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nails", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "This can be linked to lung disease or heart problems.", + "media_hash": "3af6e9c8c4d9046bffe09a08ebb3d47ec848fb988f3303691a24b2b0", + "sequence": 95, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "This", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", + "publication_date": "2026-03-31T11:56:06", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", + "media_type": "news_article", + "sentence": { + "text": "The organisms are found in soil and water and cause opportunistic infections in people with pre-existing lung conditions or weakened immunity.", + "media_hash": "16b9e62ee6ff5f7ab034a3b05701269cc62529fb28419c4ce2902be1", + "sequence": 55, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "\"Symptoms include acute, profuse watery diarrhoea 'rice water stools' and vomiting, and can lead rapidly to severe dehydration.", + "media_hash": "03eaf55b7669c50a5aebc09fa31062277536a3fefd34419796e9e757", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "Cholera is an acute, severe diarrhoeal infection caused by ingesting food or water contaminated with the bacterium Vibrio cholerae.", + "media_hash": "29b0b1b1d5005abbcec531e71ebe1333c481559bfce00cc89ed3c406", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "It causes rapid, severe dehydration and vomiting, which can be fatal within hours if untreated, though many cases are mild.", + "media_hash": "224716b1bff93ed07c0f77e21eb982a611420eedf0f9ba2d81d4cfb8", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", + "publication_date": "2026-03-31T10:07:21", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", + "media_type": "news_article", + "sentence": { + "text": "Vibrio cholerae bacteria spread through the faecal-oral route, usually via contaminated water supplies, ice, or food.", + "media_hash": "74e3d07ccc5490dd14ae16d2c247995a0ee69f50239d17ec02ce4877", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", + "media_type": "news_article", + "sentence": { + "text": "'Chia seeds are also packed full of antioxidants, including compounds such as caffeic acid and kaempferol, which have powerful anti-ageing properties,' she said.", + "media_hash": "d916996b8721eda64206e21aef7cc4158a8506314dd2add535e9751c", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Helen Johnston", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0, + "popular_media": 0.0 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "It gradually stops patients being able to move, talk, swallow and even eat.", + "media_hash": "b1cb509eaae4dc86b5c9449d5f53aba36d9922ae1adb20ed3fb5a478", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", + "publication_date": "2026-03-31T08:46:35", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", + "media_type": "news_article", + "sentence": { + "text": "There's no cure for Rett syndrome, so treatment focuses on managing the symptoms.", + "media_hash": "3079ce0b8d5f89ff9fe1d07c1eea4258893972c169a4d4b8a4749b4d", + "sequence": 36, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "(We noted that stomach ulcers, as well as being aggravated by stress, are prevented by dopamine, the very chemical that is depleted in the brains of people with Parkinson's.)", + "media_hash": "ecb9d373fb80cb7b54bd49566c004bc45ed15b6d7b109188a0758c5d", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "People whose meals included the emulsifier experienced increased abdominal discomfort after eating.", + "media_hash": "7f58c1f23332052d48b088616f00edfd009f9249b50e65258fa5f80c", + "sequence": 80, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "An obvious one is red or black, which can indicate bleeding.", + "media_hash": "539ca511cdcec95f4208096857455616b61ba65fecaa7c3c58da932b", + "sequence": 110, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "Symptoms include tiredness, shortness of breath, headaches, bleeding from the nose or gums, and infections.", + "media_hash": "c2638dd4a154e8b6a094a81c31d196571ccffb1d2e240eb1f2bc835a", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "New research points to the effects someone's risky behavior in their 20s has on their cognitive health in their 50s and beyond.", + "media_hash": "591f404b0f015961caa57ed4d37d39856c3140c7629ca1640dd9f11b", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "In other words, the damage from cigarettes appears to come from cumulative exposure in young adulthood itself, not from whether the habit continued into midlife.", + "media_hash": "f576f19d91dc950dc6ddac811ccabf2cdf80ee49169bb349ebc91c60", + "sequence": 57, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", + "publication_date": "2026-03-31T14:12:33", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", + "media_type": "news_article", + "sentence": { + "text": "Occasional experimentation, over repeated exposure, strengthens neural pathways that reinforce compulsive use, making it harder to stop even as consequences mount.", + "media_hash": "490f9078d349728b352dafb25d1da0368eb3a06a1d703fe91e3cf39e", + "sequence": 61, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "The people spruiking peptides are \"often the same people who are telling you to not trust the milk you drink or the bread you buy,\" citing health and safety concerns, he says.", + "media_hash": "5f01434162c957f4d698bbb248d8218235fb0b0c901fb4b77311e1ca", + "sequence": 27, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 4.128005 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.552875 + }, + "mediacorp": {} + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "Evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", + "media_hash": "7ce28833137aa22704141e91c2019f73b893f06b8f060217e5d433eb", + "sequence": 9, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5207699999999997 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "In a 2017 study titled: \"Terry's Nails: A Sign of Systemic Disease\", researchers stated: \"Although the abnormality can occur with normal aging, Terry's nails can also be an indication of an underlying medical condition, most notably, cirrhosis, chronic renal failure, and congestive heart failure.\"", + "media_hash": "0391052e4db358bdb730b7a15fd3ae0428c079b45d2fe50c80073daf", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", + "publication_date": "2026-03-31T11:18:19", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", + "media_type": "news_article", + "sentence": { + "text": "These include sudden onset of severe, painless, watery diarrhoea, vomiting, and swift dehydration.", + "media_hash": "9df5261e2eb24165cc2d537cd4547205f8271d416703d36ced376383", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "environment": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "\"Grip strength is a well-established biomarker of overall health and is strongly associated with lower all-cause mortality,\" says Aaron Deere, health and performance director at Hooke Fitness (where my longevity fitness parameters were assessed).", + "media_hash": "e8edc711374e1d1a30e93f9e92468ce2b1854c2ff331c4ee7f0b30b6", + "sequence": 84, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Aaron Deere", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hooke Fitness", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 4.552875, + "health": 4.552875 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.552875 + } + } + } +}, +{ + "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", + "media_type": "news_article", + "sentence": { + "text": "\"Balance training improves neuromuscular co-ordination and proprioception, which are critical for preventing falls - one of the leading causes of morbidity and loss of independence in older adults,\" Deere explains.", + "media_hash": "80f1fc2d38727ae742524eeb3c4c3e6c50769591d0eee6215a382bbc", + "sequence": 95, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Aaron Deere", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5219199999999997, + "health": 2.5219199999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", + "publication_date": "2026-03-31T08:46:35", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", + "media_type": "news_article", + "sentence": { + "text": "There's also a risk of epileptic seizures, there's breathing difficulties.", + "media_hash": "81f8be05c33e4660c978bee4ea15edb53c17f058604e599de1375610", + "sequence": 27, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Cesar Garcia Torres", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T08:27:22", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Lucy Hooper says endometriosis can affect how nerve endings sense pain", + "media_hash": "6e9a1ff8618d2d8ec1ba0bd377d68500ec7d93fe5aedc45b8a80fc96", + "sequence": 112, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "It's this idea that has led to wellness detoxes, enemas and colon cleanses.", + "media_hash": "7dbe3e2d5272cb949ed0043c4fc94fb0981ae752504a793691c7e0ac", + "sequence": 70, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.83094, + "health": 2.83094 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "However, there are some colours that are concerning, and demand medical attention.", + "media_hash": "ac17d26219496a0934d1df05b191502c6917e0aecde76fcc470787bf", + "sequence": 109, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5528750000000002, + "health": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "Silver poo - highly rare - is a medical emergency, as it is the result of a blocked bile duct and bleeding from your upper gastrointestinal tract.", + "media_hash": "99779d71642f77f2b8d301276be50863fa3ba009ceeaea177e13ae7e", + "sequence": 113, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5219199999999997, + "health": 2.5219199999999997 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "This is because the anal area is highly sensitive - dense with nerve endings and is not meant to be scrubbed harshly.", + "media_hash": "91cb97e7eb6fa146d090c772a396762e5973dfed1282c934898d85d6", + "sequence": 128, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.73546, + "health": 2.73546 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "\"It is different enough from the JN.1 strains that the vaccine may not do as good a job of priming the immune system against it, allowing it to evade detection.\"", + "media_hash": "9ab430f8364529eccbfde6cc6d69e4b7460f781015e5615305a60bbf", + "sequence": 27, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "US scientists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Professor Kyle Enfield", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 17910, + "score": 0.2338 + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "And among the new measures, walking speed was the 'strongest predictor of death.'", + "media_hash": "09416e116176092af4a5890430ba2be29ee1e43bd1ba1b4ffe9c323e", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "nutrition_": 2.5219199999999997, + "health": 2.5219199999999997 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Symptoms seem to appear similar to other recent variants, and include a sore throat, cough, congestion, fatigue, headache and fever.", + "media_hash": "f5536589562a08301fbf69c574b53366af4298bb77ab934714ca6fed", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5528750000000002, + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Full list of new Covid strain symptoms including unusual signs", + "publication_date": "2026-03-31T14:58:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", + "media_type": "news_article", + "sentence": { + "text": "The SARS-CoV-2 variant BA.3.2, nicknamed Cicada, is a highly mutated strain that could be very contagious and cases are continuing to rise across the world.", + "media_hash": "af82026df4ca2a9050743c072a0fe8def778ac4c945837b71de13280", + "sequence": 3, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "\"Even if someone did have data - you can't be sure what you are getting in your little vial is actually what they say it is, firstly, and secondly, that it's made to a standard that is safe to put in your body.\"", + "media_hash": "6a6c9e9852fce2ca0a0efe2624ca72ca12f1c1e7a4e4be92aa09f909", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + }, + "mediacorp": {} + } + } +}, +{ + "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", + "publication_date": "2026-03-31T23:05:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", + "media_type": "news_article", + "sentence": { + "text": "This causes a type of white blood cell that is essential for fighting bacterial infections to become abnormally low.", + "media_hash": "797d2fb8bce19cb8b3e3d61c9862a2b07ee2f8f080a424a0383d668c", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Laura", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Typically, subungual melanoma is first detected when someone visits their doctor after noticing what they believe is a bruise under the nail that isn't going away.", + "media_hash": "f526b148075985d54ba23df58a2cfb6a97726b19e06551041c7452f5", + "sequence": 54, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Richard Wain", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "In younger people, they can sometimes signal illness or nutritional deficiencies.", + "media_hash": "2fbd7a3e701945e9f42ac46a915c61d50fbb74600d50ac0601e2bfb5", + "sequence": 92, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Alterations in shape, ridges, bumps and discolouration can all indicate underlying conditions.", + "media_hash": "8b5afe10dcd2cb95690303b015b6383873c23359e45ced0575f7a833", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.6735499999999996, + "nutrition_": 2.6735499999999996 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, in the early stages, cirrhosis usually doesn't present many symptoms, or sometimes none at all.", + "media_hash": "d0a5f8d3e05dbfbabef339f27be0c2b9c9c5a683b84cc700639122a8", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002, + "nutrition_": 2.5528750000000002 + }, + "pa-media": { + "health": 2.5528750000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "People told to check symbol on back of common skincare product before use", + "publication_date": "2026-03-31T09:52:06", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", + "media_type": "news_article", + "sentence": { + "text": "The NHS backs the idea that people need to exercise particular care between 11am and 3pm.", + "media_hash": "ecd386e4c1c7c2898f96ab73ea05187136d72ee569a7f0087739b7d6", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "However, she underscored how it is not a replacement for good diet and exercise.", + "media_hash": "9259cb4fd2d12bf1e8fa7c1979817149b0b00324f5b168885ecb0dbb", + "sequence": 24, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Josie Porter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 4.67355 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Oh, without a doubt, you know, it can, can't emphasize enough how much tests save your life potentially, that's the purpose of them.", + "media_hash": "ed1f782fdbbf1b45ff499a63f76ff01d2e41f5663e343298bca6f359", + "sequence": 713, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Woodland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002, + "leo_s_topic": 2.5528750000000002 + } + } + } +}, +{ + "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", + "publication_date": "2026-03-31T05:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", + "media_type": "news_article", + "sentence": { + "text": "\"We know that many of the symptoms and signs of heart failure are non-specific, and may go unrecognised as potentially being due to heart failure for a long time.", + "media_hash": "50a032831693d9b0de01b4a034ba931bc977796abfe79f66abb2d057", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + } + } + } +}, +{ + "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", + "publication_date": "2026-03-31T14:00:02", + "publication": "guardian", + "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", + "media_type": "news_article", + "sentence": { + "text": "\"There is no safe dosing or amount that someone can take, because we just don't know what's in there,\" Bonning says.", + "media_hash": "96b3da05a8d7eb5e76476398c1bf8b3c63bec9ecff777da30c14b5e9", + "sequence": 26, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5528750000000002 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + }, + "mediacorp": {} + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "On Tuesday health experts took part in a discussion with Ireland's Covid-19 Evaluation Panel, set up to examine the planning for and handling of the pandemic in Ireland.", + "media_hash": "7b53b043e09f3c302507bf767bed569a27eb6a9302801647e6bddab3", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5503549999999997 + }, + "demo": { + "health": 3.5503549999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.975225 + } + } + } +}, +{ + "title": "Stephen Lewis, former Canadian politician and lifelong...", + "publication_date": "2026-03-31T20:11:10", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", + "media_type": "news_article", + "sentence": { + "text": "Lewis spent a lifetime fighting for causes close to his heart - including human rights, equality for women and the plight of African families decimated by AIDS.", + "media_hash": "491ad038650ea856c424a4f579ccde3845e4645309635a1786d527fa", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", + "publication_date": "2026-03-31T11:40:56", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", + "media_type": "news_article", + "sentence": { + "text": "To begin with, two bags would last a week, costing \u00a330, so it was significantly cheaper than my old wine habit.", + "media_hash": "b2c15e98e3410c2f44ce6bde713ae95a577086b4939a7ab70263380f", + "sequence": 58, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Victoria Vigors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", + "publication_date": "2026-03-31T11:05:08", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", + "media_type": "news_article", + "sentence": { + "text": "Compared to this time last year, sales for lamb liver have spiked by 33 per cent, lamb kidneys by 25 per cent, lamb hearts by 91 per cent, and beef rump heart steak by 88 per cent.", + "media_hash": "96fb2baab48a3b647162c923303f79c03758873e112dc01fa240ca07", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "ethics": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "It lowered their cholesterol levels by a further 50 per cent, compared with those who got placebo treatment.", + "media_hash": "1c254d5e2fae48301525fa915255db96c0806acd8a65a6d7916c1edf", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.970815, + "health": 2.970815 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "Another showed 15 items ordered over a three-day period and totalling \u00a367.", + "media_hash": "18ba9eaf8ed5bd36a749e57a16e764eb2257a2803086abfca7472bcd", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Loveden's video of the eggs has racked up more than nearly 2,000 comments and 25,000 likes.", + "media_hash": "69130458bc004b59643e2738a4b72fe0df6a0dbdc3ce1226b9defab4", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", + "publication_date": "2026-03-31T04:55:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", + "media_type": "news_article", + "sentence": { + "text": "Weekly figures from the UK Health Security Agency show that, among positive cases analysed in England between February and March, only 2.13% were identified as the BA.3 strain.", + "media_hash": "d315d0b042a1edef616f02e703bf4dd9bbd875f8bdf75453e9bb3fe1", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Health Security Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.545945 + } + } + } +}, +{ + "title": "How one family's bipolar disorder experience led to...", + "publication_date": "2026-03-31T04:06:51", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", + "media_type": "news_article", + "sentence": { + "text": "The Stanley Family Foundation announced another $280 million for the Stanley Center for Psychiatric Research at Broad Institute earlier this month, bringing its total contributions to the Massachusetts-based nonprofit over $1 billion.", + "media_hash": "35bdffa45f6cfeb2c6dbc34f5bef957459bc6b426789920f5ed8d842", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Stanley Family Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "But lesser-spotted in the government's flagship workers' rights reforms is that the rate has not actually gone above inflation.", + "media_hash": "b749130a8eaf7fdf61aa7fc2dbd33d4dbc52bb30b10b546c37bfb091", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", + "publication_date": "2026-03-31T03:18:54", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", + "media_type": "news_article", + "sentence": { + "text": "He said the government can pay whistleblowers \"up to a 30% reward for the recovered funds.\"", + "media_hash": "5d724d4c6ead974a5e782c55a2daddb56870cbe950dc1b00c3331e68", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Treasury Secretary Scott Bessent", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "publication_date": "2026-03-31T01:46:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", + "media_type": "news_article", + "sentence": { + "text": "A further 18 people were admitted to hospital.", + "media_hash": "780877a4a893c63bb4a4034c1e6fbb9a7960ced0d12c5ed056b0c0ff", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.89907 + }, + "aapfactcheck": { + "health": 2.89907 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "Like around 60,000 women in the UK each year, Dawn underwent a hysteroscopy in May 2023 - a procedure to look inside the womb, which the NHS generally regards as routine and low risk.", + "media_hash": "d7b0cb8a3188694611a6e28cd815335703510320f5e956fafd48344e", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", + "publication_date": "2026-03-31T00:17:27", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", + "media_type": "news_article", + "sentence": { + "text": "A YouGov survey last year of 3,000 women found 42 per cent found it painful.", + "media_hash": "889d7a33163275c2bee50058fb6168e03b0b484524419773a99f9129", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", + "publication_date": "2026-03-31T15:41:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", + "media_type": "news_article", + "sentence": { + "text": "Now, after a period of dormancy, Cicada has spread to 23 countries and is spreading across the US, with detections in wastewater systems in 29 states.", + "media_hash": "a5f027ce98e77a728adf76d7111c70b8b1328c5354592078da69c6ed", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "This is below the SNP's pledged 95% target which has not been met since 2012.", + "media_hash": "e19762e5395ca1b4762fb77efb21a55e534ca24cb86ec19212a1f619", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "The jabs can cost between \u00a375 and \u00a3100.", + "media_hash": "3ce8c840e4ab59393d8d56a997ee8b84fa10bdfbef87018571f60813", + "sequence": 46, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", + "publication_date": "2026-03-31T11:05:08", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", + "media_type": "news_article", + "sentence": { + "text": "Waitrose has seen a 91 per cent increase in sales of heart, a 33 per cent increase in liver, and a 25 per cent increase in kidneys, compared to this time last year.", + "media_hash": "2fcfb2e2a57669d02c04c44c813ead9a091f7a3f5fe26316ec185696", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Waitrose", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "ethics": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Army veteran who stopped in car park for medical episode fined \u00a3120", + "publication_date": "2026-03-31T09:22:26", + "publication": "mirror-weird", + "url": "https://www.mirror.co.uk/news/health/army-veteran-who-stopped-car-36947549", + "media_type": "news_article", + "sentence": { + "text": "But, a few days later, he received an email with a \u00a3120 fine, but if he paid within 24 hours would be reduced to \u00a370.", + "media_hash": "e21e1cbd58be35ab9a24e43671cb6b8ee39574ad4659818424c35c70", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "A third of people who are eligible for screenings here in Wales don't take their tests.", + "media_hash": "d1147eea29bece101aec09417594a13f3231cc7449de48ec2b8aaaad", + "sequence": 671, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Continued delayed cancer treatment waits...", + "publication_date": "2026-03-31T18:59:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", + "media_type": "news_article", + "sentence": { + "text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", + "media_hash": "1866d6ad2e12f563725133a04e3b3250b7d5c421998c5df8d121b843", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "The new study, published earlier this month in the journal Mayo Clinic Proceedings, looked at 407,569 adults from the database UK Biobank ages 40 to 69.", + "media_hash": "0f3536ce7be6199557f6d76f1a6ee46bfffbe1a0d9e5f1a9298072d2", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", + "media_hash": "76f780ecf7fa964d3d1e413f03310dc2ce5fb44c0976a1d204f6d672", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "More than a million heart disease patients to get weight loss jabs", + "publication_date": "2026-03-31T10:12:00", + "publication": "skynews", + "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", + "media_type": "news_article", + "sentence": { + "text": "NICE said clinical trials have also indicated the drug works directly on the heart and blood vessels - and it expects that 1.2 million people across England could benefit.", + "media_hash": "8ce1d34c8fd194ba9f73a9f2bb2c83a6f2f07772d7f0a36068f3376a", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Institute for Health and Care Excellence", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.6987249999999996 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "About 80,000 people in the UK are thought to be in receipt of a private prescription.", + "media_hash": "c30ae546a4c5e7b739b35938b15374cf0cd79608cf85bd8c00312884", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5315000000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "So far, clinical studies have demonstrated its safety and efficacy with data from more than 1,600 patients, some of which have received active treatment for seven years.", + "media_hash": "52ef34bb2ba7ac5ddd8696a168f2f9fa23f2309b32c86ad1b04cfdbc", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", + "publication_date": "2026-03-31T06:04:18", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", + "media_type": "news_article", + "sentence": { + "text": "'At the moment they have seven each but it may go up to about nine plus each.", + "media_hash": "5ff38c81bd6963d7801e3954cf11da39f97a421db5176597f130fa92", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "We found 66 per cent of the participants used their smartphones while pooing.", + "media_hash": "06ba33c03a2c1ddb4917030ca2ad469eeb2981890c1db14c33ea48d6", + "sequence": 47, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 0.0, + "health": 0.0 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low sick pay is making Britain sicker", + "publication_date": "2026-03-31T03:45:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", + "media_type": "news_article", + "sentence": { + "text": "No, he admitted to a Question Time audience, he could not live on statutory sick pay, which was \u00a394 a week at the time.", + "media_hash": "47e2d6dab3774414144eb3f4fbc11dd2190364857861dd26fb5dbae6", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Matt Hancock", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", + "publication_date": "2026-03-31T23:01:52", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", + "media_type": "news_article", + "sentence": { + "text": "Those on the drug were 20 per cent less likely to suffer a major heart event, such as a heart attack or stroke, than those given a placebo.", + "media_hash": "bee0767fe6bc5616dffa5a5d28a88a3effa0346803a70b17822c722a", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 3.5163599999999997 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "\"It allows kids to pick up a free piece of fruit in store during the school holidays, and we've given away more than four million apples so far.", + "media_hash": "7f8c7d9dd915aa9a049774be4d0698951c29f2c168ebc9beae34c208", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Oonagh Turnbull", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "The team found that replacing blood pressure and cholesterol metrics with the five new measures improved mortality risk classification by 10 percent for women and 19 percent for men.", + "media_hash": "826cbe1525cc004ef8515156c83717c49a612dff9072205da4ed0a2a", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "nutrition_": 3.3956850000000003, + "health": 3.3956850000000003 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.545945 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", + "media_hash": "b3bb98b7a1995903de750a6e20560045eea78ab3729c226969b7fe89", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "It follows the impact of Storm Theresa, which hit the region hard, generating upwards of 700 litres of rain per square metre in some spots.", + "media_hash": "b6f6ca0986c8aa0e3806bea6aac12b12a13f381ca2a981d554b570c4", + "sequence": 24, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "environment": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", + "publication_date": "2026-03-31T13:51:11", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", + "media_type": "news_article", + "sentence": { + "text": "More than 13,000 adults in England were enrolled on the 800-calorie-a-day plan in 2024.", + "media_hash": "1d07328921ca5d370b45824e87d9c7f48df174c14381597d001b93d3", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.970815, + "nutrition_": 2.970815 + }, + "pa-media": { + "health": 2.5459449999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", + "publication_date": "2026-03-31T12:51:22", + "publication": "guardian-science", + "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", + "media_type": "news_article", + "sentence": { + "text": "The government reported about 5,000 NHS prescriptions for licensed CBMPs in 2023.", + "media_hash": "9187853ed0f103e858d514a7cfbb47ca239f71f9e1484c6d23e79532", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.772635 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How one family's bipolar disorder experience led to...", + "publication_date": "2026-03-31T12:11:24", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", + "media_type": "news_article", + "sentence": { + "text": "His father devoted $825 million altogether.", + "media_hash": "86e369afbfe1d455478fb2f15524ab6e3af676332d750aa3aa2276b7", + "sequence": 46, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", + "publication_date": "2026-03-31T11:05:08", + "publication": "dailymail-tech", + "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", + "media_type": "news_article", + "sentence": { + "text": "Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", + "media_hash": "1eb2572e7275f1413fe266b89dde8788bdfbfc0a855cc3ae859d1d37", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "ethics": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "It warns that one in four NHS sonographer job posts are vacant in England.", + "media_hash": "3ec8f7ebd2e2de061519049bfe5d76ae89a5c789ec89cf0916f69be6", + "sequence": 53, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "The highest number of reported cases occurred in early December, marking a turning point in its spread.", + "media_hash": "9462499608cbfcbf6f78854565a44a17afa629705d45132e7c733657", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Wales has the lowest average screening uptake compared to all of the UK nations, they say.", + "media_hash": "9e25048375fcfecbc8768463fa9a4f295b3bc09fb58c2afaf5d33ddd", + "sequence": 673, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "They're now \u00a3170.", + "media_hash": "8e5137c51cf6dc127581c2f82d8448673bdc8f04ee647081725b2065", + "sequence": 76, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "It's much better when I can go out with my powered wheelchair, which was \u00a32,000.", + "media_hash": "a006cf19fc83af3e795e1afeeae6cca500e3798482bae244dab66d2e", + "sequence": 119, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", + "publication_date": "2026-03-31T15:50:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", + "media_type": "news_article", + "sentence": { + "text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", + "media_hash": "912309722bf504fb5e56c4073548e8c832ca5d39ff7af8fda21872bb", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + } + } + } +}, +{ + "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", + "publication_date": "2026-03-31T11:36:33", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", + "media_type": "news_article", + "sentence": { + "text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", + "media_hash": "3f7e8ca7052fb5e5bd2e3372b22cbf08f12db9849e32bf9e38158611", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "Yet it wasn't until September 2025 that worldwide detections started climbing substantially.", + "media_hash": "d8ef6959069f37c77c5e7de67a4e7c762463b550c3028464dc34d1d6", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", + "publication_date": "2026-03-31T08:45:36", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", + "media_type": "news_article", + "sentence": { + "text": "While confirmed UK case numbers stay relatively small, the variant's identification amongst international travellers and its appearance throughout Europe indicates it is probably already spreading at modest levels within Britain.", + "media_hash": "99f81dba9d6b7c5a2e87a2f119e80070d731602b1633c0cc5abb5392", + "sequence": 12, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", + "media_hash": "41787f2644ba253a4f2e7f857310aeee8178ba57c4086071edeed42c", + "sequence": 212, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "AD FEATURE: How to eat healthily without breaking the bank", + "publication_date": "2026-03-31T16:39:30", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", + "media_type": "news_article", + "sentence": { + "text": "Matching the prices of selected Tesco products against comparable or identical branded products at Aldi - two thirds of which are deemed healthy.", + "media_hash": "72742a5cc853c0f828648aac65eac279cff8349869cc9c3696540197", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Tesco", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 4.545945, + "nutrition_": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.545945 + } + } + } +}, +{ + "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", + "publication_date": "2026-03-31T14:52:48", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", + "media_type": "news_article", + "sentence": { + "text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", + "media_hash": "2f8f5edd62264970131328b073ad68cb5ba6c8a3f145c6eec92bf37b", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Public Health Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", + "publication_date": "2026-03-31T13:59:55", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", + "media_type": "news_article", + "sentence": { + "text": "The family raised over \u00a38,000 for the charity Meningitis Now over the weekend.", + "media_hash": "c1635472d265ca1ec8c3666da2ca3ba461b8b2edbb4bb63c4b1c4656", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Meningitis Now", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "measles": 2.5459449999999997 + } + } + } +}, +{ + "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", + "publication_date": "2026-03-31T13:59:55", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", + "media_type": "news_article", + "sentence": { + "text": "The mother is now warning other parents be vigilant and react quickly if they notice symptoms following the recent outbreak of the infection in Kent - which killed two young people.", + "media_hash": "a1f8563b003b2b34b5b88f213eb4df38f41ec52007fe5ca145693d6d", + "sequence": 10, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.54548 + }, + "demo": { + "health": 2.54548 + }, + "pa-media": {}, + "fullfact-policy": { + "measles": 2.54548 + } + } + } +}, +{ + "title": "If you have high cholesterol, there are alternatives to statins", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", + "media_type": "news_article", + "sentence": { + "text": "The injections are more expensive, so NHS guidelines say they should be reserved for people who have already had a heart attack or stroke, and cannot tolerate statins because of side effects, or for whom statins aren't reducing their cholesterol enough.", + "media_hash": "26d3aa2b2ab16ed742303fb3b548a23d8c02dd253cb41bdd0edc3440", + "sequence": 14, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5438549999999998 + }, + "demo": { + "nutrition_": 2.968725, + "health": 2.968725 + }, + "pa-media": { + "health": 2.5438549999999998 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Mother's distress after late adorable toddler daughter was buried without her HEART", + "publication_date": "2026-03-31T17:02:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694493/louisiana-baby-buried-without-heart-legislation.html", + "media_type": "news_article", + "sentence": { + "text": "State coroners and pathologists warn the new rules could bog them down with paperwork and cause more trouble than help, insisting their existing standards protect families well enough, the outlet reported.", + "media_hash": "bafb482335141988e491e70f7d1a6e035ff78905d8a4051ce9068cdd", + "sequence": 30, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "State coroners and pathologists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5438549999999998 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "measles": 2.5438549999999998 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "Issues affecting your liver, lungs, and heart can all show up in your nails, so it's beneficial to keep an eye on them regularly.", + "media_hash": "069f34591b788a45c907973a45a277d961c68ebd096d622c39e23ba9", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 4.53726, + "nutrition_": 4.53726 + }, + "pa-media": { + "health": 2.53726 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "However, certain warning signs could imply you have early-stage heart failure or liver disease, and necessitate a visit to your GP.", + "media_hash": "1e8f50771cee2c8749f6d3984704dc221d730361a5031d34f8ccd6b1", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 0.0, + "nutrition_": 0.0 + }, + "pa-media": { + "health": 2.53726 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "With MS, it's really important to keep your body moving.", + "media_hash": "0eabb663fe86e40e77e509ed0b25345a0e48a0bc45b9ad3c75a04b10", + "sequence": 58, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.53726 + } + } + } +}, +{ + "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", + "publication_date": "2026-03-31T14:00:59", + "publication": "mirror", + "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", + "media_type": "news_article", + "sentence": { + "text": "Health authorities have urged people to refrain from staying outside for extended periods, keep windows shut, and steer clear of heavy physical exertion outside.", + "media_hash": "b071db0818074953af78e1b71d4896fe3732c9da2d1a897e4bdd922e", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Canary Islands Health Department", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "General Directorate of Public Health of the Canary Islands Health Service", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "environment": 4.53726, + "health": 4.53726 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 4.53726 + } + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "People are being encouraged to look out for specific warning signs on their nails that could suggest early-stage heart failure or liver disease, including cirrhosis.", + "media_hash": "a3b85973fc01fba3e45c3b7520c7219ca48fefe3b2e4fb7c8b0f7273", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 2.53726, + "nutrition_": 2.53726 + }, + "pa-media": { + "health": 2.6735499999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", + "publication_date": "2026-03-31T13:00:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", + "media_type": "news_article", + "sentence": { + "text": "It's worth examining the side effects of any medication you're currently on.", + "media_hash": "cee3a2f9030351ab6d294ad78236893be977b3837f90eac50102ae34", + "sequence": 49, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 2.53726, + "nutrition_": 2.53726 + }, + "pa-media": { + "health": 2.53726 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "However, certain warning signs could suggest you have early-stage heart failure or liver disease, and warrant a visit to your GP.", + "media_hash": "4b1936b06f3e14796209ee174a0cd0151c4d78501d0ec60292187a71", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": { + "health": 2.53726 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", + "publication_date": "2026-03-31T09:50:31", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Yau said: 'If you suspect white patches are due to a vitamin or mineral deficiency, you should get a blood test to be sure.", + "media_hash": "c80b507fd17e76e4be5e16d2972d9117243ac3ccf02655dc96e882fa", + "sequence": 84, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Elizabeth Misselbrook", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Marion Yau", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ms Yau", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", + "publication_date": "2026-03-31T20:03:41", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Hanratty says if you have been diagnosed with a heart issue and you feel that the treatment you have been receiving hasn't been working for you, then it is worth asking for a second opinion, particularly if your quality of life has been badly affected.", + "media_hash": "3e6601c02530cefcbc37cf30ab9ab6bdcd83b6866aaa5ace32448dd8", + "sequence": 47, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.53726 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lamar Odom Netflix documentary title explained as fans left 'so confused'", + "publication_date": "2026-03-31T16:06:12", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/is-lamar-odom-dead-netflix-36950506", + "media_type": "news_article", + "sentence": { + "text": "10 years ago, the 46-year-old had a near-fatal overdose and suffered kidney failure, 12 strokes and six heart attacks.", + "media_hash": "a88ccbdaabd68c77ca0c32f8a53f0e362a7d4b1080f576f8aecaaed8", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5326649999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", + "publication_date": "2026-03-31T08:35:19", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", + "media_type": "news_article", + "sentence": { + "text": "Glenn Perkins died after spending up to \u00a360 a day having alcohol delivered to his home", + "media_hash": "5978339c8d6c823f330d0a86e5a48fafa943f1805253f5941bd94d08", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5326649999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "publication_date": "2026-03-31T01:46:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", + "media_type": "news_article", + "sentence": { + "text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "media_hash": "b053b1b9e13b96574be30fe5fdb4ff6757e891caaa1260b83d06f465", + "sequence": 0, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5323200000000003 + }, + "demo": { + "health": 2.5323200000000003 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T01:15:34+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038787251081982267", + "media_type": "social_post", + "sentence": { + "text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning https://t.co/oFoTjDDeyj", + "media_hash": "4d8167825241a1e412ec94fe13280a5dc1d7376d360e1400bdb47a7d", + "sequence": 0, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Nightclub", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5323200000000003 + } + } + } +}, +{ + "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", + "publication_date": "2026-03-31T05:38:52", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", + "media_type": "news_article", + "sentence": { + "text": "In 2024, I found that Parkinson's disease could be predicted by gut problems decades before people developed tremors.", + "media_hash": "a6ea338d264d0fce4717143396e8698caf378be70c6f00d6a8a3944a", + "sequence": 19, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Dr Trisha Pasricha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5323200000000003 + }, + "demo": { + "nutrition_": 2.5323200000000003, + "health": 2.5323200000000003 + }, + "pa-media": { + "health": 0.0 + }, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", + "publication_date": "2026-03-31T01:46:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", + "media_type": "news_article", + "sentence": { + "text": "Club Chemistry, where the meningitis outbreak began, will reopen its doors this Thursday with a kissing warning", + "media_hash": "7db27d93b4639672801f094e3e5b2719eec03aaf7272136fa954a294", + "sequence": 15, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5323200000000003 + }, + "demo": { + "health": 2.5323200000000003 + }, + "aapfactcheck": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T10:00:05", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "'We have continued to improve ChatGPT's training to recognise and respond to signs of mental or emotional distress, de-escalate conversations, and guide people toward real-world support.", + "media_hash": "b205ff91afdea1de6f04131f1ff91949d55b9cf52cb244d308c46633", + "sequence": 68, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "ChatGPT", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "OpenAI spokesman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 0.0 + }, + "fullfact-policy": { + "climate_change": 2.5219199999999997 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "It is not fully understood why MND occurs and there are currently no treatments to halt its cruel march - instead doctors focus on alleviating the worst of the symptoms.", + "media_hash": "27276b47a45fb667c3979c640ab79813f2e841be899a2de30d4aaedf", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", + "media_hash": "53e476109777e393fe8c484ecc8d69c8d79804c00cddfb880ae741dd", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5219199999999997, + "clinical_health": 2.5219199999999997 + }, + "demo": { + "health": 4.52192 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.7201 + } + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "media_hash": "960204d0a5d8399cf434c2a483b2a15def014f38d9d1373586e581d9", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": { + "health": 2.5219199999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", + "publication_date": "2026-03-31T12:50:09", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", + "media_type": "news_article", + "sentence": { + "text": "People are being urged to watch for specific warning signs on their nails that could indicate early-stage heart failure or liver disease, including cirrhosis.", + "media_hash": "fc86819321078624d717b11663b9ee5d852f1381eb0c2deaf715e2cb", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": { + "health": 2.5219199999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The simple measure that can predict your lifespan better than invasive tests", + "publication_date": "2026-03-31T16:28:28", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", + "media_type": "news_article", + "sentence": { + "text": "'Our analysis found that walking pace was the strongest single predictor of death,' Professor Tom Yates, paper author and physical activity researcher at the University of Leicester in the UK, said.", + "media_hash": "9f0a287be23987974edfb96512747343ebf580eefdc91919eb328672", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "researchers", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Professor Tom Yates", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "University of Leicester", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": { + "nutrition_": 2.5219199999999997, + "health": 2.5219199999999997 + }, + "pa-media": { + "health": 2.5219199999999997 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5219199999999997 + } + } + } +}, +{ + "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", + "publication_date": "2026-03-31T16:27:58", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", + "media_type": "news_article", + "sentence": { + "text": "An expanding body of scientific research has linked nanoplastics in the brain to cause a range of pathological changes, including inflammation, oxidative stress, an accumulation of Alzheimer's-associated amyloid plaques, as well as Parkinson's-linked Alpha-synuclein proteins.", + "media_hash": "7150c8ad3f7f46f910ab317c2dc91afd4ba8618113286ef327256004", + "sequence": 50, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5219199999999997 + }, + "demo": { + "politics_of_food": 2.5219199999999997, + "environment": 2.5219199999999997, + "nutrition_": 2.5219199999999997, + "health": 2.5219199999999997 + }, + "pa-media": { + "health": 4.52192 + }, + "maldita": {}, + "fullfact-policy": { + "climate_change": 2.5219199999999997 + } + } + } +}, +{ + "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", + "publication_date": "2026-03-31T09:33:10", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", + "media_type": "news_article", + "sentence": { + "text": "ALS claimed the life of Grey's Anatomy star Eric Danes at just 53-years-old earlier this year and the acclaimed scientist Stephen Hawking famously suffered from it.", + "media_hash": "adcd67cf282cd05e560c98352b02c59834e479a45a0f31af1d1d8b94", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5207699999999997 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", + "publication_date": "2026-03-31T16:29:18", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", + "media_type": "news_article", + "sentence": { + "text": "Tiger Woods had two loose opioid pills in his pocket when he was arrested for DUI in Florida on Friday.", + "media_hash": "c780ade322189987891765437870f3bf58b1be5cacbd3fcb3d6df6ee", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5207699999999997 + }, + "demo": { + "health": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK households urged 'do not ignore' this symbol on popular item", + "publication_date": "2026-03-31T08:20:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", + "media_type": "news_article", + "sentence": { + "text": "The NHS claims that people need to be most vigilant between 11am and 3pm.", + "media_hash": "9faa7b3410f38a4bf81bcd0f08ba2661648d292e622d20dacb9bde39", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "NHS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5207699999999997 + }, + "demo": { + "health": 2.6735499999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Mother's distress after late adorable toddler daughter was buried without her HEART", + "publication_date": "2026-03-31T17:02:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694493/louisiana-baby-buried-without-heart-legislation.html", + "media_type": "news_article", + "sentence": { + "text": "Romero said her two-year-old was buried without her heart and is now behind new legislative change", + "media_hash": "f01f7c7aaf91f4b96945709b84f03d8c27bee4be842c664afc905f87", + "sequence": 13, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "Krystal Romero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5146300000000004 + }, + "demo": {}, + "aapfactcheck": { + "women": 2.5146300000000004 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "measles": 2.5146300000000004 + } + } + } +}, +{ + "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", + "publication_date": "2026-03-31T07:51:50", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", + "media_type": "news_article", + "sentence": { + "text": "However, it was not until September 2025 that global detections began to rise significantly.", + "media_hash": "5931f6af461844e77b5fc9ec51a09410f96b398c96335342e128ad6b", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "My week on PIP, from swollen feet in a cold house to exhaustion", + "publication_date": "2026-03-31T05:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", + "media_type": "news_article", + "sentence": { + "text": "'MS symptoms can change from one day to the next, one week to the next, and that makes it really frustrating', says Georgina", + "media_hash": "283750259f8e03b0655812ac0c6feaed4ce0fd2cf897ac2144da0591", + "sequence": 45, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Georgina Colman", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.500545 + }, + "demo": { + "health": 2.500545 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.500545 + } + } + } +}, +{ + "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", + "publication_date": "2026-03-31T06:00:55", + "publication": "dailymail-health", + "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", + "media_type": "news_article", + "sentence": { + "text": "The body produces collagen naturally from protein rich foods such as chicken, fish, eggs and dairy, but millions of people have begun supplementing it on top of their regular diet following studies suggesting it can slow the visible signs of ageing.", + "media_hash": "3d451e6781f7c18bd246b4244bab8e0b10875a2651520a78264b2191", + "sequence": 14, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.500545 + }, + "demo": { + "health": 4.500545 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Health Secretary Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", + "media_hash": "cb95b6b72de14ec9a2cb0bc1286d4087609bbb8ff2f2526d72ddf494", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28741, + "score": 0.13490000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "health": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a34bn NHS investment, \u00a32 bus fares and 100,000 new homes: Welsh Labour\u2019s manifesto summarised", + "publication_date": "2026-03-31T05:00:09", + "publication": "labourlist", + "url": "https://labourlist.org/2026/03/welsh-labour-senedd-manifesto-2026-summarised/", + "media_type": "news_article", + "sentence": { + "text": "A new deal for the NHS with \u00a34 billion to build new hospitals, same-day mental health support and a new focus on women's health", + "media_hash": "a2275a88c7b74671013dd2aa708519fbe2879bb920c9bd6bf556b56f", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "First Minister Eluned Morgan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Welsh Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.970815 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Health Secretary Wes Streeting said it meant that 'for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000'.", + "media_hash": "c47d7126cfca470a87be80e8b0e80a4dea3ca1785351d2aefc04d8af", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Health Secretary Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.970815, + "health": 4.970815, + "leo_s_topic": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "The PM has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year.", + "media_hash": "b2232e74907f36738acaf2e6abeceff6d171cde94c0af32123074088", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 39593, + "score": 0.3891 + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "health": 4.970815, + "starmer": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", + "media_hash": "afde05da79416c3a4056d8f69a2d80422df9e65712db2099d2e60a10", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.970815, + "health": 4.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Over it's costing that the government even more money because now because of the staffing gaps that they have, they need to employ temporary staff that will be at higher rates, whether they're consultants, whether there's resident doctors, they're higher rates and of course when the strikes go ahead, they the rates are higher as well for doctors to step in and to make sure the staff are at safe, um, at a safe number.", + "media_hash": "33d08fa5d657b35186010c28e25cc1aa66ee07086bb2d134420d3b4c", + "sequence": 1411, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "health": 4.970815 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Because I, I fully accept that that resident doctors have lost out over the past 17 years.", + "media_hash": "cf47b29aeb27d1697529e631b7cfe1def2c911da860ae90355caedcd", + "sequence": 1423, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.772635, + "health": 4.772635 + } + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "The union said this was not enough, given inflation is expected to rise, and that pay for resident doctors has not kept pace with inflation since 2008.", + "media_hash": "baa0f4401cea0e52d6f351ed6a2c3dacd1bbc9708ac8dcf9f6645824", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.698725, + "health": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Resident doctors make up nearly half of medics working in the NHS - two thirds of them are BMA members.", + "media_hash": "a2dbb2e7d4d61d9dfe2c5ac7c0a266b2f1fa345c6026b45794283bde", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.698725, + "health": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I, I don't think resident doctors should be striking at all, but if they are, I mean, six days really is far too long, isn't it?", + "media_hash": "1ca13348c8bea6db3fb2999bc52246b7c09687897e2ba92d3e3c52af", + "sequence": 1420, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.658185, + "health": 4.658185 + } + } + } +}, +{ + "title": "\u00a34bn NHS investment, \u00a32 bus fares and 100,000 new homes: Welsh Labour\u2019s manifesto summarised", + "publication_date": "2026-03-31T05:00:09", + "publication": "labourlist", + "url": "https://labourlist.org/2026/03/welsh-labour-senedd-manifesto-2026-summarised/", + "media_type": "news_article", + "sentence": { + "text": "Invest \u00a34 billion in a Hospitals of the Future Fund to build state-of-the-art new hospitals, including replacing Wrexham Maelor Hospital and University Hospital Wales, and a major hospital development in West Wales", + "media_hash": "1a79a5f6aa41882871a239c271de882722dd5b626cd46ccc607ab0c8", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.636345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "That means resident doctors have to, when this short staffing, they have to look after more patients that they probably wouldn't have if the it was well staffed, more acutely unwell patients, could be probably complex medical patients, where they miss their breaks, miss their lunch, and have to stay overtime.", + "media_hash": "7cd79b5e09eb48d3eb49bc9ac9a4731df08980fc2d62d91c0a5df692", + "sequence": 1378, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.598275, + "health": 4.598275 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", + "media_hash": "579099884d4c68a64ea4805872cc92ae909f47d701aec1d53178d5d5", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 45085, + "score": 0.06908734046502547 + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.552875, + "clinical_health": 4.552875 + }, + "demo": { + "health": 2.5219199999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5528750000000002 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", + "media_hash": "08c7e3840f71fb499c0e9e93fc1ea0a9ccd37fa87ac622ed9e272937", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Full Fact", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "health": 4.545945 + } + } + } +}, +{ + "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", + "publication_date": "2026-03-31T07:46:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer gave the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics given a pay rise of 35% over three years.", + "media_hash": "c1abb6458c022c1c26162d5d8f9f11a0b8faa03c988d8c9be5489adc", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", + "media_hash": "77fd166baef910f3f07dc4b4c3454cbcdbdec780b0af03dd0eb2e55a", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "publication_date": "2026-03-31T16:03:46", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "media_hash": "51d848bd3ab6b95edfa75d2a2e1e5e8bf68eb410b4492e07a444a6b0", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 4.545945, + "starmer": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How did we get to another NHS doctors' strike?", + "publication_date": "2026-03-31T12:15:00", + "publication": "skynews", + "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer accused the BMA of rejecting a \"historic deal\" that would have delivered \"another above-inflation pay rise this year\" of 3.5% to bring their total pay rise since 2023 to 25.5%.", + "media_hash": "788a5c0adc05f9788b7f559d49192a5c8daac74766ba56e3c0053931", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Out-of-pocket expenses for things like exam fees were also to be covered, while progression through the five resident doctors pay bands was to be speeded up.", + "media_hash": "a6c386ec1fd5eed932cbd1141b33d64dae4d27b8a25e7965d8eb2cb1", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "It will be the joint longest since the dispute began - only once before have resident doctors taken part in a six-day walkout.", + "media_hash": "7cb0e97aa9c37a8cc6a1cc5411325bf7ddc51bef24caf2d69f71fc44", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "The deal also included a commitment to create at least 4,000 new specialty training posts in the NHS, for which resident doctors - previously known as junior doctors - can apply after their first two years of training.", + "media_hash": "092ae8b6228c64ebe1607ba5771a1bbbfe31448909aae0bb0ae37d78", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "health": 4.545945, + "leo_s_topic": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Resident doctors in the final stages of speciality training, who now earn \u00a373,992 in basic pay, would earn \u00a377,348.", + "media_hash": "49279982d27bbb46fc2c5a269e84df4bdcbc4cbcf3d05513c74251d8", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "health": 4.545945, + "leo_s_topic": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", + "media_hash": "42d0adc8d3f341c013f99fc4f36a6d2243f8c7abd60aa666d92dc163", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "health": 4.545945 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Last week, the BMA's resident doctors' committee rejected an offer worth up to 7.1 per cent for this year without even putting it to members for a vote.", + "media_hash": "56090652272aad166738751e4a72b4137e4e48e21804d68a45ffd104", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "BMA's resident doctors' committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.545945, + "health": 4.545945, + "leo_s_topic": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has given the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year", + "media_hash": "c8888b8944747b0ea7dd2bbfda63ce5ba16cf0b6b045877bce6e61ef", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "health": 4.545945, + "starmer": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "He said that the deal meant \"for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000\".", + "media_hash": "913451903f800239828576184413f6752d421a4dcb8e0b6a294bbf92", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "The BMA argues that, despite the pay rises of the last three years, resident doctors' pay is still a fifth lower than it was in 2008, once inflation is taken into account.", + "media_hash": "8251249836ede13206108772a27803850335ff1d40158512b2a32372", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 39545, + "score": 0.18520000000000003 + }, + { + "tracked_claim_id": 39593, + "score": 0.2733 + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.545945, + "health": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "We're seeing waiting lists coming down slightly, we're seeing urgent and emergency care improving, we're seeing the NHS hitting its financial targets for the first time in nearly 10 years.", + "media_hash": "40ab70146b45237d2ca9852a19d972f0e8d1eddd886e2031cfe988ee", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS Providers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.545945 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Resident doctors will be worse off.", + "media_hash": "de999245474b7596ea87d6d7a8f329ea01b09a7144bf28a121375c6e", + "sequence": 18, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.489365, + "health": 4.489365, + "leo_s_topic": 4.489365 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", + "media_hash": "2adfdc7e49415afec074f7f64afbe9c23dc2951cf0284cccaf1bb491", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.486035, + "health": 4.486035 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:48:25+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/SkyNews/status/2038916315310694760", + "media_type": "social_post", + "sentence": { + "text": "Sir Keir Starmer has threatened to withdraw an offer of thousands more NHS jobs should resident doctors go ahead with strike action next week", + "media_hash": "a8512b38461187416434692abcb90e42a4ad43ff4a4841fc21473998", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.486035, + "starmer": 4.486035, + "health": 4.486035 + } + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T11:39:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the deal, which currently includes an offer of thousands of extra NHS training posts.", + "media_hash": "7603ec4e2bf1540fff5a06f711b808947d47370d46324103186f77cd", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.486035, + "health": 4.486035, + "leo_s_topic": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So with the thousand places that Keir Starmer is saying, it's a step in the right direction, but when you have 18,000, over 18,000 doctors waiting to get into GP training, these are applicants that have passed the exam, are on the waiting list to get into GP training.", + "media_hash": "23bca404d7822a9ae67a53f7a7aa29dcad11ec033f2cde464ebf0419", + "sequence": 1369, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.486035, + "health": 4.486035, + "starmer": 4.486035 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Here Keir Starmer has accused junior doctors of being reckless after they rejected a deal which would have paid some of them more than 100,000 pounds a year.", + "media_hash": "cbf2de95418e0d9a46315b555520bda3b756016451d9894c3e3cc80a", + "sequence": 26, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.486035, + "health": 4.486035, + "leo_s_topic": 4.486035 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T21:14:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "The walkout, which is due to run from 7am on April 7 until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", + "media_hash": "695625660ad1fe8c642e670dc4b8faed5f5e5ea6f2e3d7a2ceb8a3a2", + "sequence": 21, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.451035, + "health": 4.451035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "The walk out, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", + "media_hash": "bcb1d3713d5989e6403e51c5a37d09fd840378376dd6d03e60d1deb0", + "sequence": 23, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.451035, + "health": 4.451035, + "starmer": 4.451035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, it is happening under a Labour government, from April the 7th, there will be no resident doctors working in our hospitals for six whole days.", + "media_hash": "7f7f2c9373b36dd92e57cde1a0cb229e685514b856d0b3f02a636c14", + "sequence": 1418, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.451035, + "health": 4.451035, + "starmer": 4.451035 + } + } + } +}, +{ + "title": "Resident doctors\u2019 training posts at risk unless they call off strike", + "publication_date": "2026-03-31T14:11:37", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has threatened to withdraw the offer of thousands of new training positions for resident doctors if the British Medical Association (BMA) doesn't call off strike action within 48 hours.", + "media_hash": "c2428df7c10cbb5bb071bbc0eb38f842921c2dee21f5bd51cac24dd1", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.41429, + "health": 4.41429 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", + "media_hash": "06b97deea0fcf270783faff33af386a35a7393efaf7c471d5f1b7536", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 4.409655, + "leo_s_topic": 4.409655, + "health": 4.409655 + } + } + } +}, +{ + "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", + "publication_date": "2026-03-31T17:51:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", + "media_type": "news_article", + "sentence": { + "text": "The BMA said the ballot raises the prospect of all secondary care doctors in England taking industrial action during the same period in a major blow to patients and Labour's pledge to tackle long waiting lists.", + "media_hash": "333de8add10fa38f24efe34230f5e755b3c8c3288e595812635c8a83", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.400095 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "And I think that's a signature pledge, uh, in our manifesto that is not present in others, building three new hospitals across Wales.", + "media_hash": "f1caea26a31f244ce4f7386eff8c3162ace2f0ffbbb40bc2fb050c52", + "sequence": 1009, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.347765 + } + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", + "publication_date": "2026-03-31T06:45:27", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has threatened to withdraw an offer of thousands of extra NHS training posts if resident doctors do not call off a six-day strike after Easter.", + "media_hash": "73dc7776fbccc8f44ab5dc8080358c0f6649036c18c53cd2e571b872", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 4.287855, + "starmer": 4.287855 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I think resident doctors need to be a special case because it's a long-term investment in the NHS.", + "media_hash": "1ffedd8df4ce5da54220c13afd7f50bd5f0df23084750c0ced6b1bbc", + "sequence": 1407, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.187915, + "health": 4.187915 + } + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "\"Because the truth is this: no one benefits from rejecting this deal. Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", + "media_hash": "b395496fc973b713e1f81d5fbb96897a12560b2767f61a5ea86be226", + "sequence": 19, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40306, + "score": 0.1533 + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.182605000000001, + "health": 4.182605000000001, + "starmer": 4.182605000000001 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "You look at Plaid, for example, they they're saying, well, we don't expect waiting lists to drop in the first three months of of a Plaid led government, whereas we know already under Labour, that they are dropping.", + "media_hash": "48585ed8b298ffd860ec5f1917ba5086e1cb61e5b57b948ba2c93a1c", + "sequence": 1000, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.173405 + } + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", + "publication_date": "2026-03-31T06:45:27", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", + "media_hash": "adb0d14af015ff77d020832fb939b06d2430618996dce035e41a5e93", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 4.16355, + "starmer": 4.16355 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", + "media_hash": "6a797f10d01ef26a8b1b0c886084ac8c48dfe775acefc0118a7a7806", + "sequence": 318, + "claim_type": [ + "correlation", + "rules", + "support" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.132820000000001, + "health": 4.132820000000001, + "leo_s_topic": 4.132820000000001 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T21:14:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Jack Fletcher, chairman of the resident doctors committee of the union, said: \"It is wrong for Government to withhold desperately-needed jobs as part of negotiating tactics.", + "media_hash": "296b5ebe75d2c2787f9ea9a774e5f8a8ab31f359108f99cae8b16110", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "resident doctors committee of the British Medical Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.128005, + "health": 4.128005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "The people of Scotland deserve better from their cancer strategy.", + "media_hash": "e672ba027054e1045da9133d710b4bf83941bf1488b254f450a82198", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.128005, + "health": 4.128005 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "He said waiting lists have built up since the pandemic and if they are not tackled they will become \"our starting point for the next big crisis\".", + "media_hash": "430921e0281e56740f331dfb747f044794f9df27909ee74292a7887f", + "sequence": 23, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Steve Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.128005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T18:19:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Addressing resident doctors, Prime Minister Sir Keir Starmer wrote in The Times: \"The truth is this: no-one benefits from rejecting this deal.", + "media_hash": "b07f4dd7d77e9c61699f171c9f5d9dfd653d8199ec624ef71c5f38b7", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.128005, + "health": 4.128005, + "starmer": 4.128005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", + "publication_date": "2026-03-31T07:46:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer claimed \"patients will pay the price\" if resident doctors go ahead with \"reckless\" strikes, as a furious row erupted with union bosses.", + "media_hash": "407cbec9edd1bb67f2de4df6cf6db29ed7f9bda0166e8159b9e899b7", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.10166, + "health": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I feel like the Prime Minister Keir Starmer's statement seems quite threatening in nature.", + "media_hash": "1432bf260fe4fbb106b2cd443671c70d8865fdc60d92100f89a49e20", + "sequence": 1363, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.10166, + "health": 4.10166, + "starmer": 4.10166 + } + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T11:39:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "It comes after the Prime Minister accused resident doctors of \"recklessly\" walking away from the deal without putting it to members for a vote.", + "media_hash": "958661f9b84e833b45de9a4a72399f892d896df47526190cec6b93bf", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.10166, + "leo_s_topic": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T06:57:08+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/BBCr4today/status/2038873211043971223", + "media_type": "social_post", + "sentence": { + "text": "@bbcnickrobinson presses Dr Jack Fletcher, from the BMA, on previous pay increases and the planned industrial action by resident doctors over a pay dispute with the government.", + "media_hash": "6f34c749eaff6742dc53fb6afa25a0a92d53c3275c1c19bf09ccd030", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Jack Fletcher, from the BMA", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "BMA", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.10166, + "leo_s_topic": 4.10166 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "The bitter war erupting between Keir Starmer and the British Medical Association (BMA) means patients are once again caught squarely in the crossfire.", + "media_hash": "c3a4a0c6d17e13ed31e3a8c3b96b6048c59b9d9d4525b86e2587f9da", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.10166, + "health": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", + "media_hash": "7b174f2126a3771613e30b8f6ffc8a4673a308afa6f4ca81046daa7a", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "health": 4.061165 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T18:19:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a deadline to reconsider a deal on pay and jobs which includes an offer of thousands of extra NHS training posts.", + "media_hash": "514ed802093960b5412a6406ed616b89f4ff1b3dd668b96b98d0881e", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.061165, + "health": 4.061165, + "starmer": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And yet you look at other people in the NHS, you look at nurses, for example, or ancillary workers, they haven't anywhere near caught up, and their pay is far, far less than resident doctors.", + "media_hash": "6e7be5e7bebfa5f88fe13bf61433defdf14c1e8992f4ed4143a3b0dc", + "sequence": 1395, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.061165, + "health": 4.061165 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than \u00a3100,000 a year - and given them 48 hours to call off their planned strike.", + "media_hash": "27a1017174e79064c172e5f40e58e51623b3436e7dea5be1af22569e", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.061165, + "health": 4.061165, + "leo_s_topic": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Sir Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than \u00a3100,000 a year - and given them 48 hours to call off their planned strike", + "media_hash": "2bb21cabf3531d655b0ff151f010de515bc51a14298c61d4a682c589", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Prime Minister Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.061165, + "health": 4.061165, + "leo_s_topic": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", + "media_hash": "a57a83439d4b8f3a3cc370dca4b86aa6c09bd6d643ea6c8a2ea715bd", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.061165, + "scottish_elections": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "And doing so without even giving resident doctors the chance to vote on it makes it worse.", + "media_hash": "74ff2483ea85bb222b43ccd58ce307514fc58378540f510734f1237c", + "sequence": 18, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.035135, + "health": 4.035135, + "starmer": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "And doing so without even giving resident doctors themselves the chance to vote on it makes it even worse.", + "media_hash": "578f09061c32a8e52eadade0cd8fca07ed4d72e41bba1f94f479c85d", + "sequence": 23, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.035135, + "health": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", + "publication_date": "2026-03-31T09:42:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", + "media_type": "news_article", + "sentence": { + "text": "The BMA then announced that resident doctors would go on strike after Easter.", + "media_hash": "ec70d13ba7d824fdbd44c2552f43d3f93fb8451bc1eba597cdd5308f", + "sequence": 3, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 4.035135, + "leo_s_topic": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T12:34:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "The walkout, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", + "media_hash": "39bd43bd9e303d239c0bb11c5d723c6c2921519053b4e0f086e04070", + "sequence": 40, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.026165, + "health": 4.026165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Resident doctors are in the front line working hard and if you're losing these doctors, and they're leaving the NHS, they're going to countries like Australia, Canada, America, this short staffing, that means that it's affecting patient care overall.", + "media_hash": "82654d9d8d9ab6e4b0ac4b122f83ecdaaa722c12a8e27accd1639755", + "sequence": 1408, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.0067, + "health": 4.0067 + } + } + } +}, +{ + "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", + "publication_date": "2026-03-31T09:42:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", + "media_type": "news_article", + "sentence": { + "text": "The prime minister has now given the doctors' union an ultimatum, demanding that they cancel the resident doctors' strike action within 48 hours.", + "media_hash": "f0e2f90e14048c8d8b9dd7963d7037a4236dfff520c6a9ff58bd4f0d", + "sequence": 4, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.98733, + "leo_s_topic": 3.98733 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:01:20+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Alison_S_Taylor/status/2039040361977233737", + "media_type": "social_post", + "sentence": { + "text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", + "media_hash": "829c335a01bdca0183fa9d4f012164e2ca50f51079aa150aa6d15ed5", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.975225, + "scottish_elections": 3.975225 + } + } + } +}, +{ + "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", + "publication_date": "2026-03-31T06:00:33", + "publication": "guardian", + "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", + "media_type": "news_article", + "sentence": { + "text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", + "media_hash": "fdadcd84453316bce89ca177b924febe4f145fd9f129d6b9eda560ac", + "sequence": 33, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "health": 3.975225, + "leo_s_topic": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", + "media_hash": "40b62d3dd90fb00582deb34f91d733adbadf22864589622925ab6182", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Susan Murray MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I'm not sure Keir Starmer ever envisaged him being in a position after 18 months as Prime Minister where he'd essentially have to issue threats to resident doctors.", + "media_hash": "e874449266a1353aa1069064a4961333fd2c0d3a6c517fc70c38d02b", + "sequence": 1339, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.975225, + "health": 3.975225 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "There's a staffing pressure because this staffing pressure when you're not retaining doctors, and doctors are leaning towards leaving the NHS or going to these different countries, there's a lot of pressure on resident doctors on the shop floor.", + "media_hash": "ca40531f7dbb089ac7aba748dcbd930bb315d11c41e02c81855f2cf7", + "sequence": 1377, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.975225, + "health": 3.975225 + } + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", + "media_hash": "a66223f695f36f48b9f06602809d961cf15ed180ebeead16c1ab64c3", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "World Health Organisation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.975225, + "health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", + "publication_date": "2026-03-31T17:51:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer said it would be 'reckless' for resident doctors to walk away from the offer.", + "media_hash": "ff7131386ac900a758f6ebe638a2993d0a1d5d0de55fb79365037465", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.975225, + "health": 3.975225 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ireland `no better prepared\u00b4 for pandemic than six...", + "publication_date": "2026-03-31T14:04:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", + "media_type": "news_article", + "sentence": { + "text": "Steve Thomas, a public health professor at Trinity College Dublin, warned that waiting lists and healthcare staff morale need to be tackled.", + "media_hash": "043b365bc98b93b38c26c9f5dfaa48bda1db328cf9573cf418dc67c1", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steve Thomas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.975225 + }, + "demo": { + "health": 3.975225 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.975225 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer marched into the 2024 general election campaign vowing to end the NHS strikes that brought misery to millions of patients under the Conservatives.", + "media_hash": "377214962a8e2239406ce23d0d6f35edd40518815307697e2fef62c8", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.975225, + "health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I mean if I had a pot of money and I was going to dole it out, having seen that the the resident doctors have had such a big pay rise last year, they would not be first in the queue.", + "media_hash": "2e87aeaf3ab04175ca7e0d415170f29776578b18eeac192ffba923fb", + "sequence": 1527, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.922175, + "health": 3.922175 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "If the strike goes ahead, it will be the 15th round of action by resident doctors since 2023.", + "media_hash": "6c2c7ead996d78038f02d5520c4af268cb40fdafc5fc189b021cb977", + "sequence": 29, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.911715, + "health": 3.911715, + "leo_s_topic": 3.911715 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "The British Medical Association has dared Sir Keir Starmer to follow through on his threat to ditch thousands of training places if the union refuses to agree a pay deal.", + "media_hash": "785f551577de7811dac335256a81949e0515a5e9e15255d216b28116", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 3.862985, + "starmer": 3.862985 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T18:19:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "\"Resident doctors will be worse off. Instead of improved pay, progression and support, they will receive the standard pay award this year, with none of the reforms that would have strengthened their working lives.\"", + "media_hash": "2b4ef901f8ea2cae65b28bdc2fd367be613a2beb87f4605a1964a5e0", + "sequence": 15, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.851805, + "health": 3.851805, + "starmer": 3.851805 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "It seems like it will have a negative impact on the NHS in the future, because he's, um, he's threatening to remove the extra training posts he wanted to give when he knows that there's a big job crisis in the NHS with resident doctors.", + "media_hash": "0881cec9c9038ab4e890c05c804e3135663acefcf75908b0ae743508", + "sequence": 1364, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.851805, + "health": 3.851805 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", + "media_hash": "48fdf07dfdf02242ff686315577f42532a9048c4ff29d403432d0bbb", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Gregor Poynton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "health": 3.748535 + } + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T12:34:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about.", + "media_hash": "6b1eca66f7ef39ecb021fee58a223e1d323779d8703df5a9f8bc7284", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.748535, + "health": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about. Ministers effectively moved the goalposts on the deal at the last minute.\"", + "media_hash": "26520f72d375d5b46c27663f83a8e44f557fff15f8b82e5db2f05de8", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.748535, + "health": 3.748535, + "starmer": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T21:14:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Crunch talks between resident doctors and the Government are set to continue in a bid to avert strike action.", + "media_hash": "2303cee4d1742a265762c02b5bb85472e2e271034dc97ba2d0632790", + "sequence": 2, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.7135350000000003, + "health": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I think that that resident doctors are underpaid.", + "media_hash": "501753f6e2c90da0c019213a9def09cf332f761a9ea8a917e6ebde81", + "sequence": 1523, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.703135, + "health": 3.703135 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Um, I would say that he needs to take this seriously, Keir Starmer, and Lisa, actually understand that there's a big job crisis, it's causing unemployment, and it's causing a lack of job security as well.", + "media_hash": "52d4cf63e298d8c64a96c624bc031496af4e415257c93f23e3e5854e", + "sequence": 1370, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.6886, + "health": 3.6886, + "starmer": 3.6886 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", + "media_hash": "a49f7bcc45c19245eb94bbee8fb52ad5f0a2f9198e1c331930bffad7", + "sequence": 19, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.635935, + "health": 3.635935 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", + "media_hash": "dd176e5ada44b4001da5152b79c4dd099e7d90cf283d7100f41e672a", + "sequence": 10, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.635935, + "health": 3.635935 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", + "media_hash": "cc910ff7bf1539d885997a759d22140e10964188ed277bbbec0d1e80", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", + "media_hash": "a36c466ad1ad5179c22f8bc96d7a50c47ded9163e5c203a2276c5eac", + "sequence": 1015, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "James Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "senedd_election": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T12:34:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "Crunch talks are to take place between resident doctors and the Government after ministers threatened to remove a key element of the deal currently on the table.", + "media_hash": "43e4e7add2ce67e8933237fc3ef59ca816003ba84a8fef7e03c65594", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", + "media_hash": "3671056854f967d53285a39691be240f4dbfa67a2a893b7e05804806", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", + "publication_date": "2026-03-31T09:42:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", + "media_type": "news_article", + "sentence": { + "text": "The British Medical Association has hit back at Keir Starmer's call for the union to cancel next week's strikes or risk losing the current deal.", + "media_hash": "abc6402ccda0ab44982e65fbf0b053f8f09d00583bb69fbb9532d35a", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "health": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has accused resident doctors of \"recklessly\" walking away from a Government pay deal without putting it to members for a vote.", + "media_hash": "7bf8538336396fdd49240da1f6a609ad57816c962abd7e927d24eece", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "health": 3.5503549999999997, + "starmer": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives 48-hour deadline to resident doctors...", + "publication_date": "2026-03-31T05:49:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer has issued an ultimatum to resident doctors to call off their strikes or lose the deal on the table.", + "media_hash": "9ae4d8eb1d2b486f11624f535eb1aa33a4a3bbd8e8f1c06e6660a4dc", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T19:50:49+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/SkyNews/status/2039067915241050352", + "media_type": "social_post", + "sentence": { + "text": "Sir Keir Starmer is \"ramping up the war of words\" with the doctors' union by giving resident doctors 48 hours to reconsider their upcoming strike, reports @ashishskynews.", + "media_hash": "34d12f9cd720f1d60610eab3feee02c387fb09a0b7cba4d58dc9222d", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "health": 3.5503549999999997, + "starmer": 3.5503549999999997 + } + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", + "media_hash": "f57a0718e8725e4d6c754a5b495a6754c818ffb0b525e28b2d4d4ae2", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", + "media_hash": "037f80d72150856bb52dab37bc9a5ac73a7f29fe0900201608e5ca41", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.3982 + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "publication_date": "2026-03-31T16:03:46", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer has criticised resident doctors for \"recklessly\" abandoning a government pay deal without presenting it to members for a vote.", + "media_hash": "6109cd562f1c86b8301d3bd30fb5b8eb0baa8b65648c941e71b155e7", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 3.5503549999999997, + "starmer": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", + "publication_date": "2026-03-31T13:22:23", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", + "media_type": "news_article", + "sentence": { + "text": "And Scotland is paying the price for it.", + "media_hash": "06e483bf0abb4c0eb8f6a692e206a2af32553bf3250494c786e24de0", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "health": 3.5503549999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But with the junior doctors, resident doctors, there's never an element of that conversation where it feels like actually they do understand that there is another side to this.", + "media_hash": "6fb0c13cd481aa6e68b8f8edae1c4cad8851be495169386d13e39ab4", + "sequence": 252, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997 + } + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Writing in the Times, Sir Keir Starmer said the decision to announce the 15th walkout of the long-running dispute was \"reckless\".", + "media_hash": "82796b7a5c5c32eb866ce92c4064fe6c8972cba02a5fa1ac016d6410", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives 48-hour deadline to resident doctors...", + "publication_date": "2026-03-31T05:49:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer gives 48-hour deadline to resident doctors to call off strikes", + "media_hash": "9710d4e901d7e852116e5bbbf269ed7b0c40e097103bdbff217e7683", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "health": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T12:34:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "It is understood that the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in an ongoing row over jobs and pay.", + "media_hash": "7140eb94121b593b03b6043821e4312a54fef3f1168f03da48b8d0b4", + "sequence": 4, + "claim_type": [ + "correlation", + "rules", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.539295, + "health": 3.539295 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "Addressing the resident doctors, he added: \"There are still 48 hours left to choose a better path. For patients, the NHS, and our doctors - I urge you to take it.\"", + "media_hash": "67d4889e6163e8340affa3c17a032fdaf928c3615c7aa2d186a9e636", + "sequence": 21, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.499645, + "health": 3.499645, + "starmer": 3.499645 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T11:39:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "He added: \"So I say this to the BMA's resident doctors' committee: reconsider.", + "media_hash": "117baccf53d9efbec8fef83646419a247fadef4455dd54b24072149a", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.414065, + "health": 3.414065, + "leo_s_topic": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "It says Sir Keir Starmer warns resident doctors to call off next week's walkout within 48 hours or risk losing new NHS training posts.", + "media_hash": "b0bc535eba88fa1b6190e01a76529dec7362b3a55c2faaa50419681e", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.414065, + "health": 3.414065 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Their last six-day walkout cost the NHS a staggering \u00a3250 million, but it's the human cost that is sparking the biggest fear.", + "media_hash": "6eaa9fea3c06c01ea82cfca6df7a03dde80e127bcf3dbae2a5110b18", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.4061450000000004, + "health": 3.4061450000000004 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", + "publication_date": "2026-03-31T07:46:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", + "media_type": "news_article", + "sentence": { + "text": "He said resident doctors, the NHS and patients will be \"worse off\", highlighting that each strike costs the health service \u00a3250 million.", + "media_hash": "db52f1c2998c15ce4e784f3623665d77980cbec0f715392a1d6b7eb5", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "'There are patients right now being treated in corridors in A&E and yet we are turning tens of thousands of resident doctors away from training places in the NHS.", + "media_hash": "7836a6506279e0a139529ba6a603e045d8b9045e2965918cecc358ab", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.3956850000000003, + "starmer": 3.3956850000000003 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.548465 + }, + "pa-media": {}, + "maldita": { + "health": 3.548465 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T07:41:13", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Each strike costs the NHS \u00a3250million in paying for cover.", + "media_hash": "81e414ab5693b1d84aaa1be9457bc9efc36d9d6abbe66e4ac7cd655e", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.3956850000000003 + }, + "demo": { + "health": 2.6987249999999996 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "But I think that leaders are really really keen to get back to the business of driving down waiting lists of improving emergency care and of transforming the NHS.", + "media_hash": "45967271ed02c2cad617c9e47e5602c1a253ea9c4ef55a3782ef965c", + "sequence": 342, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 3.363845 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Millions face fresh misery as a new six-day strike looms from April 7, threatening cancelled operations and stretched hospital corridors already at breaking point.", + "media_hash": "5fc4a29be8ab2c1c5c0f751097d7df9d8281ab66cbf133498eb27eab", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.31818, + "health": 3.31818 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So the working conditions are getting worse for them, this grueling hours, this overtime, this mis-breaks, this causing them fatigue, causing them to burn out.", + "media_hash": "cf2e1916bb068b3cca96ea1581f11c9e2088bab4294ee8475e9a8c6e", + "sequence": 1402, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.235835, + "health": 3.235835 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", + "media_hash": "48619f156727eabc70da3070db5b5b5a542825a1bda1f2a5789cec82", + "sequence": 14, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.228755, + "scottish_elections": 3.228755 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T14:16:07+00:00", + "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", + "url": "https://x.com/sinnfeinireland/status/2038983683206492416", + "media_type": "social_post", + "sentence": { + "text": "\"It is completely unacceptable that vulnerable individuals are left waiting months, in some cases nearly two years, for appropriate mental health care.\"", + "media_hash": "daf5bfbcab86ca0f8d66056a5323313542bad7e205644636a60826ff", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Sorca Clarke TD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.18436 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We are an under doctored country compared to the rest of the OECD.", + "media_hash": "66747bd798f7da3f6501a326e581e8700ad0a3be9301445ebd5377f9", + "sequence": 1645, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 3.123595 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "In terms of the pay, like you mentioned, I think it's really important and I think sometimes people sort of forget that doctors have faced the largest pay erosion in the public sector over the last decade and a bit.", + "media_hash": "b1ea8d3c7bd5e3abb93e93670cfacc229607e961deb5d6ba6611b278", + "sequence": 1679, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 3.123595 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T18:19:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "It is understood the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in a row over jobs and pay.", + "media_hash": "494e69888f9557868a9719f6f5f720f979660faa12928b85873e0187", + "sequence": 4, + "claim_type": [ + "correlation", + "rules", + "predictions", + "other" + ], + "claimer": [ + { + "name": "resident doctors committee of the British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.1144249999999998, + "health": 3.1144249999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", + "publication_date": "2026-03-31T09:18:22", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", + "media_type": "news_article", + "sentence": { + "text": "Of these jobs, 1,000 would have opened for applications this month, but the PM has now warned they \"will be gone if this deal isn't put to a vote on Thursday\".", + "media_hash": "41af1feac2632357e0a0b070f8462f505b61ca0222262d168319b2a0", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.09725, + "health": 3.09725, + "starmer": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "As we'll be discussing after 9 o'clock this evening, Sir Keir Starmer has told the British Medical Association that it needs to come to an agreement on resident doctors pay by tomorrow night, or see the current offer withdrawn.", + "media_hash": "89bf5a0401417f1aea5feffd87e14a90ae5da89cbbc34c1b5c9d0843", + "sequence": 807, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.092465, + "health": 3.092465 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", + "media_hash": "2d96af65d00637e2c8f45d9d22e7116bd28156d393ee419116c3b175", + "sequence": 27, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Susan Murray MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.037655, + "scottish_elections": 3.037655 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T06:04:10", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/snp-plan-for-nhs-is-working-says-swinney", + "media_type": "news_article", + "sentence": { + "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service, you will find decay.", + "media_hash": "107efd4c59cf5ac08c50e3d0a6e619f27610d34cf45c25df75bf07f9", + "sequence": 23, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Susan Murray MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 3.037655 + } + } + } +}, +{ + "title": "How did we get to another NHS doctors' strike?", + "publication_date": "2026-03-31T12:15:00", + "publication": "skynews", + "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", + "media_type": "news_article", + "sentence": { + "text": "2024: January 2024 saw the longest strike in NHS history at the time - six days - over their pay erosion, and another in February.", + "media_hash": "c17bcea082d0f9b1c2b66021abbb670593a7716abea8b95c88a8af9f", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "doctors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.981275 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "The prime minister has accused resident doctors of 'recklessly' walking away from an offer that would have seen some earn more than \u00a3100,000 a year.", + "media_hash": "5e098a7a3d37ce8c496a76391def1496d546c58bdf0e95e7390100c1", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815, + "starmer": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir yesterday gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", + "media_hash": "064e7bfe8344d0f3283be2c2cbc20e516fcabb02d59ca6c10b7a75da", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815, + "starmer": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "93% of them are telling doctors to stay at work.", + "media_hash": "e8ea0ab7170b09b903ee25d2a258b9cbd3b9adcad26c013d7576cd83", + "sequence": 2515, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T06:04:10", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/snp-plan-for-nhs-is-working-says-swinney", + "media_type": "news_article", + "sentence": { + "text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", + "media_hash": "331cb8ca39ab5230c1407e0de0c9f232b6052b150398255632410ab7", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dame Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Nobody else has seen a pay increase like that over the last...", + "media_hash": "84780f144242e631c7aaf55766f0978cf2004cefbd73b7f914cb623e", + "sequence": 1697, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Although I seem to remember a massive pay rise for resident doctors that restating almost as soon as the election was over.", + "media_hash": "8122c2c3b4c7e64779d2bfcec2ec0d8fb2fdd9b59db24a5f61cfdf98", + "sequence": 1298, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", + "publication_date": "2026-03-31T09:42:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", + "media_type": "news_article", + "sentence": { + "text": "Starmer says that if the BMA doesn't cancel the strikes, the government will withdraw the extra 1,000 speciality training posts it has promised.", + "media_hash": "6953d57c2c09675e326b3fc9c1fe124a9394fd2a522324ccca0fb4d0", + "sequence": 5, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.970815, + "health": 2.970815, + "leo_s_topic": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "Some doctors are set to lose more than \u00a32,000 from their retirement pots as a result of the strikes that have been taking place since the start of last summer, calculations for The i Paper show.", + "media_hash": "10f08ffd7e8548cb8d8823bd238c3767ee2e237b9dd2c6fc05acef74", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The i Paper", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "The BMA is demanding that consultants who cover for striking junior doctors get paid up to \u00a32,500 per shift to do so.", + "media_hash": "497ffa021be2d36ee5f0c61143a6c61bbc41e809bfcbd7753f9b6f6c", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.970815, + "health": 2.970815, + "leo_s_topic": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", + "publication_date": "2026-03-31T05:08:53", + "publication": "bbc-health", + "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", + "media_type": "news_article", + "sentence": { + "text": "The prime minister has given the British Medical Association 48 hours to call off the six-day doctor strike after Easter in England or face losing 1,000 extra training places.", + "media_hash": "0a92df9d914ec1ea95d21f10784938b60220a0e4fcf1b764a76f3d28", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.970815 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", + "media_hash": "27d3523d82bf99d4d959077e4d892e473c95daf935e5ff47a90d3085", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.970815, + "health": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "little prediction that by 2048 would be 11 to 15,000 consultants short based on population I think the media was talking about the fact they're being paid as they just want more money but actually the jobs is quite an important part too", + "media_hash": "a8a64c3d9224f04697c0d5e93a1fc125cbd989a057db5cf28424c0e8", + "sequence": 420, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I understand from the news that these junior doctors, these student doctors, they get only 18 pounds something an hour.", + "media_hash": "3de31e8df408077a662bd4ff12ba8175b58dc399e1597b00299db0a8", + "sequence": 1586, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "Health secretary Wes Streeting said the pay offer meant that 'for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000'.", + "media_hash": "57107f1603d3d61cad62e93b61338bd815cf30c8c3c325566b5f8379", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815, + "starmer": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", + "publication_date": "2026-03-31T17:51:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", + "media_type": "news_article", + "sentence": { + "text": "On Monday, Sir Keir gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", + "media_hash": "afeca7e8c394a3e9b3d1af536dc1ca353dba42abaafb2aa309290a64", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Now, the Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor's strike in England after Easter, or face losing 1,000 extra training places.", + "media_hash": "54b38d857d72c4607a43b78f0e0969917efdf83c59e1722e58d9f9f5", + "sequence": 1293, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Oh, well let's let's give every doctor 100,000 pounds a year then.", + "media_hash": "d8104ab8086d12392f153ed3cb0aba3cdd4c989c80cdf0d8da6ccda0", + "sequence": 1598, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.970815 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We've seen the largest pay erosion in the public sector.", + "media_hash": "97f19ed6eae7547439403dcee4e57711301f8930ec27436628990ecb", + "sequence": 1710, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.9358750000000002 + } + } + } +}, +{ + "title": "Crunch talks between resident doctors and ministers set...", + "publication_date": "2026-03-31T21:14:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", + "media_type": "news_article", + "sentence": { + "text": "\"Anyone who works in the NHS knows that patients need these 4,000 jobs created as soon as possible.", + "media_hash": "cf17421917498e3838924d8b001ff33b044c622a39ae2e2fd7bfce08", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "resident doctors committee of the British Medical Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.925415, + "health": 2.925415 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So if Jack Fletcher, the, uh, head of the resident doctors' committee, the BMA rang you up today and said, look, um, Rida, I want your advice, I'm not sure what to do here, I don't want to put these training posts at risk.", + "media_hash": "a447df0dc03c9c1ef082e0330da4819f6d91825fe0a45357149e1b9f", + "sequence": 1366, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.922625, + "health": 2.922625 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "and I I fail to see why it is always the resident doctors who should get a better deal than any other group.", + "media_hash": "b1cc27f106f67a7cb8f619544af5fe3876ae5204df66753cf5fd8f52", + "sequence": 1525, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.922625, + "health": 2.922625 + } + } + } +}, +{ + "publication_date": "2026-03-31T19:50:49+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/SkyNews/status/2039067915241050352", + "media_type": "social_post", + "sentence": { + "text": "The Prime Minister has threatened to withdraw an offer of thousands more NHS jobs if the strike goes ahead.", + "media_hash": "a056daaa6840c8986e99f177f1d99984c45c78e60f0c04c690c67790", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.910905 + } + } + } +}, +{ + "title": "Year-long treatment waits will be gone in `short number...", + "publication_date": "2026-03-31T13:19:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"He promised to end year-long waits in the NHS by the end of this month, but tens of thousands of Scots are still suffering these outrageous delays on his watch.", + "media_hash": "416ced07b902cabc0b93ba6c598a82d1d4a97189f31dbfbbec0311ff", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.910905 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", + "media_hash": "81411d2b8f853321c762f0866264201711598d35a2ba8f03faaf03cc", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.910905, + "scottish_elections": 2.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", + "media_hash": "e32518c650b30323c84b14e3df63455fa8958cd352d4d9ae79457449", + "sequence": 314, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905, + "health": 2.910905, + "leo_s_topic": 2.910905 + } + } + } +}, +{ + "title": "Communities not trusted enough during pandemic,...", + "publication_date": "2026-03-31T11:24:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", + "media_type": "news_article", + "sentence": { + "text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", + "media_hash": "0ae215e5eea20faf31960bed36ef9636499978ffcae105c20cf24ae2", + "sequence": 6, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Dr Michael J Ryan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.901365, + "health": 2.901365 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", + "publication_date": "2026-03-31T06:45:27", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", + "media_type": "news_article", + "sentence": { + "text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the prime minister said.", + "media_hash": "2b52a8bc9fb1641c43d067553e41717678f7fb2f4881e9fd913b446c", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.89907, + "starmer": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", + "media_hash": "5cce868ca8efd9b41db9d24d21054529319376fbb89b1ded771d6269", + "sequence": 292, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.885515, + "health": 2.885515, + "leo_s_topic": 2.885515 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So without having any, uh, surgical skills by just having letters signed by by other people or from other departments, for example, and so essentially you don't act you don't actually have to have any surgical skill to be appointed as a surgeon.", + "media_hash": "0a1c25d6201c294e9b30d5cd1d9b0acf2f53d0a9ee6f39ef00e4548a", + "sequence": 1684, + "checkworthiness": { + "fullfact": { + "health": 2.884875 + } + } + } +}, +{ + "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "publication_date": "2026-03-31T16:03:46", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", + "media_type": "news_article", + "sentence": { + "text": "The Prime Minister has issued the resident doctors committee of the British Medical Association (BMA) a 48-hour ultimatum to reconsider the offer, which would have granted medics a pay increase of up to 7.1 per cent this year.", + "media_hash": "21d258fbd89e6baa186b4dbca3017bdf80625a98ecee400bc0db01d0", + "sequence": 3, + "claim_type": [ + "quantity", + "rules" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.856485 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, everyone's facing cost of living pressures, I also know that MPs got a 3% pay rise.", + "media_hash": "c0c9878cdb2c866ee2ba215a24d6bb98c7260e7d79ba72f19f54c9fb", + "sequence": 822, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.8194, + "health": 2.8194 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "I just don't think that it's, it's valuable or useful to be making threats in the media to withdraw jobs from doctors because ultimately that's bad for doctors and bad for patients.", + "media_hash": "ece970230f15721fb5fb896c17405d43039fb965b5e19968ec0ff8b6", + "sequence": 1678, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.805745 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant short based on population.", + "media_hash": "b6e42e78d0b6b62d0bc8b78e79bdc5ddca1cb27f1c59528859e3685b", + "sequence": 268, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.801995, + "leo_s_topic": 2.801995 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant shortfall based on population.", + "media_hash": "f92410cc3858d498f57260a36a16943fac17ca910643aaea22077883", + "sequence": 311, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.801995 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "We're running a poll in the article online now, do you support the BMA resident doctors strike and subscribers are having their say, Hugo, more than 16,000 votes in so far.", + "media_hash": "454e939d3301c443c9f164c6fd3af3867aa91a4add05690c2cfd1e5a", + "sequence": 2514, + "claim_type": [ + "voting" + ], + "checkworthiness": { + "fullfact": { + "health": 2.7846200000000003 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I don't recall the conservative government indulging in this sort of thing because he's essentially saying to them, unless you agree by the end of Thursday to the terms of the offer that you've already got, we are going to abolish 4 and a half thousand training places for resident doctors.", + "media_hash": "9431c16d46af81289c7b4b2acbc2cd79946693342cb9da79cfc40507", + "sequence": 1254, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.77565 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, I think that's, that's all true, but the fact is, if he delivers on this threat, you're going to be a thousand, I think 1500 worse off this year, and four and a half thousand all together if he then repeats it for the next two years.", + "media_hash": "ef783c8ed70211d2694b46dfe77214fe66cc4998a2b9173ed973a7a2", + "sequence": 1371, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.77565, + "health": 2.77565 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "He's given them a deadline of Thursday evening, think that's right, to accept the terms of this new offer, or he will withdraw more than a thousand training places.", + "media_hash": "5b8e7f12014c7e3370ea6f3522210f02591db548cfaa8c3846858952", + "sequence": 1453, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.77565 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "The BMA's resident doctor committee hasn't barged on the plan six day strike planned between April the 7th and April the 13th.", + "media_hash": "023ad142207582a208f387c72c97a7874456c3a50a907a8117d38b6a", + "sequence": 325, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.772635 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Completely, because it's 26% pay increase they've asked for, because they've not got that, they've got an they had a very good offer, they're going to go out on strike. That's so irresponsible.", + "media_hash": "0ce54c0dc1ac1ab0285383b713feab0d2f7bcd36145047d8da847fa7", + "sequence": 844, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "health": 2.75796 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So the issue is, you're not going to retain doctors.", + "media_hash": "873577d49189f826b97498f1ef091f8ed83c8acd5fc5112c8c132ca5", + "sequence": 1376, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.73922, + "health": 2.73922 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "FSCS protection for your savings and current accounts has risen to 120,000 pounds per eligible person at UK authorized banks, building societies and credit unions.", + "media_hash": "8014e788dd99d5b530d2a87f75c0ad394ff52b675ff219b8806596d1", + "sequence": 422, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.72853 + } + } + } +}, +{ + "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", + "publication_date": "2026-03-31T18:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", + "media_type": "news_article", + "sentence": { + "text": "Dr Leyla Hannbeck, chief executive of the Independent Pharmacies Association, said medicine shortages pose a 'serious and growing threat to patients'.", + "media_hash": "d9607379be0f048ba951092d70a5bbcee2b528a2751d74839a391ccb", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Leyla Hannbeck", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Independent Pharmacies Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.7201 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.751055 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", + "media_hash": "fb4c9100ddd507fb12b6af7ff17a02659187b75b57e30c072bc217af", + "sequence": 27, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Macmillan Cancer Support", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.712725, + "health": 2.712725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.712725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "Every time doctors strike, they lose pay, with those who have taken part in each strike day losing thousands of pounds overall.", + "media_hash": "87360bfa3da63017f0e02f561b5652ef03d5b1fa3965293ee836bf0c", + "sequence": 4, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "and at the moment there basically aren't enough specialty training jobs to match the number of doctors.", + "media_hash": "6b835b96833b670970b7c5fd933e68cfc352b7d0146819f4f89abf41", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996, + "leo_s_topic": 2.6987249999999996 + } + } + } +}, +{ + "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", + "publication_date": "2026-03-31T18:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", + "media_type": "news_article", + "sentence": { + "text": "The UK imports about three quarters of its drugs and many others made from materials that are shipped from the likes of China and India.", + "media_hash": "f55beb2036407a3725168cb7c365f7459ce58123d75c521c39a9f431", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "Every year, they accrue 1/54th of their salary as an income each year in retirement, and this is uprated every year by inflation plus an additional 1.5 per cent.", + "media_hash": "9ef64d6868536095ffc1f7e8362d630453f0bda02d752077c4c52742", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T19:00:48+00:00", + "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", + "url": "https://x.com/theSNP/status/2039055327723766076", + "media_type": "social_post", + "sentence": { + "text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", + "media_hash": "e202f9a265e3e544a46a557204abdd5a4504f3872dd50bfa45facf8c", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Also on the table are thousands of extra NHS training posts.", + "media_hash": "13a14ed7dfcb4362962c4e89b7c10f7589639fd26fd6d3b608763af6", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.6987249999999996, + "health": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "The British Medical Association says they're unhappy with the government's proposed 3.5% pay rise.", + "media_hash": "a54389b2dcc2b7ca1e23366c0e5bb1f55a5b354d6e16558f64930d27", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.6975749999999996 + } + } + } +}, +{ + "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "publication_date": "2026-03-31T16:03:46", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", + "media_type": "news_article", + "sentence": { + "text": "\"Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", + "media_hash": "2e81d91f001bb07f8fb510b9d4bd60853d6416ef798532ebe1648e64", + "sequence": 11, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.6746749999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", + "publication_date": "2026-03-31T12:02:18", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", + "media_type": "news_article", + "sentence": { + "text": "Covid nearly broke NHS - 'never again can nursing and the public be failed like this'", + "media_hash": "31a452a7dcac2e1cdebca2bec1083ccbcbd030b608bb3ade7648c634", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6735499999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I mean, just speaking for myself, but I think a lot of my colleagues, there's there's all of these targets that are being imposed on us, mean that, for example, if I want to schedule patients for surgery, sometimes I have to prioritize patients who've been waiting, um, a long time over patients who have been waiting less time, but who have cancer or more urgent conditions, um, just because, uh, a certain target or patient would breach a target.", + "media_hash": "96e991e18f6e732a5af73dbbeeb471c9674de7a135e66a24f1c7e8b8", + "sequence": 1694, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "health": 2.658185 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "So all of this is costing the NHS way more money than it would if they actually just negotiate.", + "media_hash": "a00bada2e8641731ac4d2cae64d9735faf3eb8707e381f620cc48480", + "sequence": 1412, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.658185, + "health": 2.658185 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "They have to apply to positions, very slim chance of getting it and right now universities offers are going out and we're probably turning back three out of every four people who could become doctors are probably going to be rejected because we don't have enough training places, which we should be making more.", + "media_hash": "29a366fe52e409fd389ed553d6c89843bcd6e7476439568cc02df549", + "sequence": 1165, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.649215 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T07:41:13", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "Participating junior doctors will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", + "media_hash": "cf2fc4ba516c1f203bf60d27a193ae0d129b2ca07daae0cf5b79422e", + "sequence": 12, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.649215 + }, + "demo": { + "health": 2.649215 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.649215 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "The medics will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", + "media_hash": "aed7fa94ec86af4edc81a1023cf90c08a589c78b357e5f1559f35ef5", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.649215, + "health": 2.649215, + "leo_s_topic": 2.649215 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.649215 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", + "publication_date": "2026-03-31T12:36:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", + "media_type": "news_article", + "sentence": { + "text": "This is more than many NHS staff in other roles will earn at the peak of their career.", + "media_hash": "ba3b77a151db54af6322748b2fb41775d57eb1b1cde16da57adde6c8", + "sequence": 21, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.649215, + "starmer": 2.649215 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.649215 + }, + "pa-media": {}, + "maldita": { + "health": 2.649215 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "Or the suggestion is he'll withdraw the offer of thousands more places for doctor training.", + "media_hash": "aa02a56c84fc742cae8babdd8ef1568f0b59e6dddde96ab216d5f26a", + "sequence": 223, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.649215 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Now, the union said this was not enough, given inflation is expected to rise and that pay for resident doctors has not kept pace with inflation since 2008.", + "media_hash": "2ac31b42f17c9451b0ba3c8a43acc19dc7ea3316b9618b8e681bd5c6", + "sequence": 1297, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "health": 2.631525 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "But the the net effect will be a significant loss.", + "media_hash": "2f889347dc94aaefb7b5fff8b566cfde3ac4c9647163bb62fb0d4437", + "sequence": 374, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6158 + } + } + } +}, +{ + "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", + "publication_date": "2026-03-31T18:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", + "media_type": "news_article", + "sentence": { + "text": "The blockade of the Strait has already pushed up oil prices and is expected to have a major knock-on effect on the rate of inflation.", + "media_hash": "520686700d12012e2a50a549fc5a67c51d08f5e57027044b60f61145", + "sequence": 5, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6158 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.6158 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", + "publication_date": "2026-03-31T18:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", + "media_type": "news_article", + "sentence": { + "text": "'Medicine shortages pose a serious and growing threat to patients across the UK, and the Government must act now to ensure people are not left without the vital treatments they depend on.", + "media_hash": "2d1d2639ae66759eb9cfb066a251636bc8af9988427ce0204a84f077", + "sequence": 26, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.6147650000000002 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5838099999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And this is really, really over the years going to affect the NHS.", + "media_hash": "af6ee5b24c633beafb6cccdde7de2a2aa9296eca8519113637740510", + "sequence": 1380, + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6127849999999997, + "health": 2.6127849999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And if he doesn't win, and in a sense, everyone's a loser.", + "media_hash": "1bf2f79ccdb8ebaf8519b22c9d327065bedcee840ff59f72162915ba", + "sequence": 1416, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6127849999999997, + "health": 2.6127849999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Seastrums threatening to withdraw thousands of specialty training places if the strike is not called off within 48 hours.", + "media_hash": "9f3fe31a7b9b8080d60c6d55309a10bdf763b93b1df5609f889e24ff", + "sequence": 302, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.61247 + } + } + } +}, +{ + "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", + "publication_date": "2026-03-31T05:08:53", + "publication": "bbc-health", + "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", + "media_type": "news_article", + "sentence": { + "text": "The union said this was not enough given inflation is expected to rise because of the war with Iran and the fact the pay of resident doctors, who used to be called junior doctors, has not kept pace with inflation since 2008.", + "media_hash": "c9c784f98addd7678a8205484c2a83d17d3baecc24fba2cf84a21e12", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.61247 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Suggesting that Simon's threatening to withdraw thousands of specialty training places is that the stoppage is not called off within 48 hours.", + "media_hash": "a59df6b1c70db6d6ea1701eb6d56cb0a3c2a5811e37a23313e6f969c", + "sequence": 1021, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.61247 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Not just that, he's saying that he'll abolish 4 and a half thousand training places for doctors, which Zoe, it it's brinkmanship, which I wouldn't have necessarily expected from someone like Kier Starmer.", + "media_hash": "1666bf73437c64a2fe7853848674c8edf47959ce71e78de852c6811c", + "sequence": 808, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.61247, + "health": 2.61247 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "So Thomas is threatening to withdraw thousands of specialty training places if the stoppage is not called off within 48 hours.", + "media_hash": "35a6f8b43a410171251998a1d34ac41fddc504c52fd0ae3f448ebd99", + "sequence": 590, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.61247 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Given the increase that you've already seen from the government, and given the context that we're talking to you in right now, is your position really morally justifiable?", + "media_hash": "e9e8cf45c019f3fe05933b9a960d80931212cdae0aaac8cd1c458e8f", + "sequence": 1690, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "health": 2.58644 + } + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "I think the Prime Minister is one of them.", + "media_hash": "1abc315298a2384f5f979500398d11ef3bb13ee1925bb54588baa883", + "sequence": 242, + "checkworthiness": { + "fullfact": { + "health": 2.58644 + } + } + } +}, +{ + "title": "How did we get to another NHS doctors' strike?", + "publication_date": "2026-03-31T12:15:00", + "publication": "skynews", + "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", + "media_type": "news_article", + "sentence": { + "text": "The BMA said global events such as the Iran war, plus the rising cost of living, mean doctors are facing further pay erosion, causing them to leave the UK to work elsewhere.", + "media_hash": "b5197bc6a3aaff187d309fa4867d0df4f4429fcd1a3aec6042c1c5f6", + "sequence": 29, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "BMA", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.58644 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives 48-hour deadline to resident doctors...", + "publication_date": "2026-03-31T05:49:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", + "media_type": "news_article", + "sentence": { + "text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the Prime Minister said.", + "media_hash": "3a1a2897b2bdaabcb8d1fddefe07b0ad6d58e54913264ecc83f7edb7", + "sequence": 12, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.57747, + "health": 2.57747 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "but it does progress up to 40, 50, 60, 70,000.", + "media_hash": "83d0624fff7e55dc529ea587c4aaa32542ffe7ccade58a7d3361751a", + "sequence": 1585, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5769 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well I'd give them a minimum of 20 pounds.", + "media_hash": "3bc85ed6d4ff7fbf7b83c401003a589bbe6a8436120d40ed34bc6c48", + "sequence": 1587, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5769 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And for consultants, a 2% pay rise.", + "media_hash": "574325da78522f6189c88431f5178a2aac6ad615ee402b73a4307337", + "sequence": 1706, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5769 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "My, my point is that last year, there was, I can't remember whether it was 22 or 29%.", + "media_hash": "af82c7994b34111567c106959426b7c93494a8e809ea3aeed43f502d", + "sequence": 1393, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5769, + "health": 2.5769 + } + } + } +}, +{ + "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", + "publication_date": "2026-03-31T05:08:53", + "publication": "bbc-health", + "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", + "media_type": "news_article", + "sentence": { + "text": "The 1,000 extra training places, which were to be created this year, were part of a package of measures that would see a total of at least 4,000 extra speciality posts created over the next three years under the deal put forward by the government.", + "media_hash": "1eb7d15ca7668491dd518cd4c8e92f7b3c3be3cb5b776ec82b82fa16", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5769 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "This included 2,159 exceeding two years, which was down 45 compared to January.", + "media_hash": "0bb757b57ee197cf8e8b91c0075f2403e3dcf9a947b07198555112f6", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5769, + "health": 2.5769 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Um, Sham, I could talk to you for the rest of the program, but we have only got 10 and a half minutes left.", + "media_hash": "0e9c03e9e5f8187461b16d03f926afa4b49488ef11fa05534e0315f7", + "sequence": 1697, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5769 + } + } + } +}, +{ + "title": "More doctors could strike as row between BMA and...", + "publication_date": "2026-03-31T14:24:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", + "media_type": "news_article", + "sentence": { + "text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure is clearly bad for patients.", + "media_hash": "1d5d8045d0247806144e837b8d90fe6a4aef0d316d1dec72398b989b", + "sequence": 24, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors: crunch talks to take place as...", + "publication_date": "2026-03-31T11:39:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", + "media_type": "news_article", + "sentence": { + "text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure, is clearly bad for patients.", + "media_hash": "153cd816be6ff4a4e337a85d56cb8d5c21358ae8c79d7dbdd1f84bd7", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Medical Association (BMA)", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Jack Fletcher", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5528750000000002, + "leo_s_topic": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "We've now seen threats to withdraw jobs for doctors at a time when we are seeing corridor care rife as the norm in A&E in a lot of places, as well as seeing patients this morning who were trying to get a GP appointment, calling their GPs and facing hold music because there aren't enough of them, and yet we've got the government saying that they're going to cut training places for resident doctors even further.", + "media_hash": "2c37f62d83e1b5e1253e5c1cf55ea11a8e799555cd4c50bcb0dbe59e", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Hugo Rifkind", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5528750000000002 + } + } + } +}, +{ + "title": "Year-long treatment waits will be gone in `short number...", + "publication_date": "2026-03-31T13:19:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"We know that these intolerable waits, which were virtually eradicated by the previous UK Conservative government, have a devastating impact on patients' physical and mental health.", + "media_hash": "d313d737d926d951549a0cc0d383d8fccc8dc00b2630bb50d1071a2f", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Conservative government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5528750000000002 + }, + "demo": { + "health": 4.552875 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "This overtime causes burnout, causes fatigue, causes them to be demoralized, low morale, and then they drop out of medicine or they want to just completely move to a different country.", + "media_hash": "812c8cd14c10324a49672b08e1a83fdeb27b91a825b1875d07ddbd4a", + "sequence": 1379, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5528750000000002, + "health": 2.5528750000000002 + } + } + } +}, +{ + "publication_date": "2026-03-31T11:50:02+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/spectator/status/2038946920127689183", + "media_type": "social_post", + "sentence": { + "text": "On the table is an above-inflation pay rise, along with government funding for postgraduate exams that doctors have historically paid for themselves, and an offer of 4,500 additional specialty training places.", + "media_hash": "271df3e8dc8c320af15cb8881e151d777639ebcfcb36e653cb114c40", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T11:03:40", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "First-year doctors fresh out of medical school would earn on average \u00a352,000 a year, \u00a312,000 more than three years ago.", + "media_hash": "8fdb3cb7eb3523b38e8e6f8430b70d2e9cbdcaed1d3f492cf800c5ba", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain is still paying a heavy price for Covid lockdowns", + "publication_date": "2026-03-31T09:26:02", + "publication": "cityam", + "url": "https://www.cityam.com/britain-is-still-paying-a-heavy-price-for-covid-lockdowns/", + "media_type": "news_article", + "sentence": { + "text": "In the NHS, the waiting list in England was 7.29m in December 2025, even after the NHS delivered a record 18.4m treatments and operations in 2025.", + "media_hash": "cb16d83d7fb089369933c149ff673951619a10244968188526f6d4cb", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alex Pugh", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 43603, + "score": 0.1814357236439175 + }, + { + "tracked_claim_id": 44362, + "score": 0.19342697902437114 + }, + { + "tracked_claim_id": 45085, + "score": 0.17981192326116746 + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", + "publication_date": "2026-03-31T07:41:13", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", + "media_type": "news_article", + "sentence": { + "text": "As medics also earn on average an extra \u00a320,500 a year for overtime, weekends and night shifts, the highest earners could take home more than \u00a3100,000 a year.", + "media_hash": "86359f7e0d67f3c5b59f328181757f92f5a478893f392912b95cfc46", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": { + "health": 2.5459449999999997 + }, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "People are still waiting more than two years, way more than the situation in England.", + "media_hash": "efd0405217c352d29e1c16e31a8de9522e825acfec9fba4996d8d92d", + "sequence": 993, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "Quilter's calculations suggest that a first-year foundation doctor - those just out of medical school - would lose around \u00a32,230 of pay if they were involved in all 21 days of strike action, while the most experienced resident doctors could lose around \u00a34,260.", + "media_hash": "0efb09e8e939b641a4d8c93df443cb02678cffeafb6f33f5e75c7739", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Quilter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir said union leaders had rejected a \"historic\" offer - including another above-inflation pay rise of 3.5% this year.", + "media_hash": "501301d65456322009c60f2ef2860a2be57a64c72efcc65a8809543e", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "I think 95% of appointments were managed and kept during the last period of strike action.", + "media_hash": "b3c1ca61d89bff32bd8872ba993817f00df806a4d83751b5f1e25a72", + "sequence": 383, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "More doctors could strike as row between BMA and...", + "publication_date": "2026-03-31T14:24:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", + "media_type": "news_article", + "sentence": { + "text": "Consultants and other senior doctors are to be balloted on industrial action after ministers announced they would be getting a 3.5% pay award.", + "media_hash": "e0758daf87cd5c6632808ef029bd0fe62561713a1df5b55607e465a0", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More doctors could strike as row between BMA and...", + "publication_date": "2026-03-31T14:24:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", + "media_type": "news_article", + "sentence": { + "text": "The deal sets out a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", + "media_hash": "cb8cc4be08979b55cc89f1c8eeb455f541dfab80d42d920401aa8e2d", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors\u2019 training posts at risk unless they call off strike", + "publication_date": "2026-03-31T14:11:37", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", + "media_type": "news_article", + "sentence": { + "text": "Among the elements of his offer was a 4.9% uplift to average basic pay between 2026 and 2027, which would make them an average of 35.2% better off compared to four years ago.", + "media_hash": "bfe6eb0d918b9ef344d4ccfb4eab2bb1bc0b9dcb0945b1d4cc741db2", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Resident doctors\u2019 training posts at risk unless they call off strike", + "publication_date": "2026-03-31T14:11:37", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", + "media_type": "news_article", + "sentence": { + "text": "Of course, what Streeting fails to do is put that \"35.2% better off\" into proper context:", + "media_hash": "9a5e70e1a8e7dccc65b2852572874e859e8fe7d8b75665c79392b895", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", + "media_hash": "d7f56059f6910a84610a932e2c60808109c3dae3f100b683e61eed12", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But I've talked about those 1,000 extra jobs, the 1,000 extra jobs is part of a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", + "media_hash": "13dfd95817d95c09569b24ff3a2930d323733384fa5397cc7edc59eb", + "sequence": 1324, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, at the moment, for example, for GP, there's over 18,000, um, trainee doctors that are waiting to get into GP training with over 4,000, probably just over 4,000 places.", + "media_hash": "b6b1205af6e426a37b9c5b5d702f898d2893fae7abcd706a6016d75c", + "sequence": 1368, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, I mean doctors are paid far more than the average of anybody in the UK, admittedly in their first year they they're not paid a huge amount, it's about 38,000 I think.", + "media_hash": "3ceb5947723674632be806387594d903f4dd5350b93c3049f24114ef", + "sequence": 1584, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "We had a 65% turnout and 83% of residents rejected.", + "media_hash": "fc36cb3c150347c72683c3424276f4d909aa6402fca39dd7aab3f958", + "sequence": 226, + "claim_type": [ + "quantity", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "How did we get to another NHS doctors' strike?", + "publication_date": "2026-03-31T12:15:00", + "publication": "skynews", + "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", + "media_type": "news_article", + "sentence": { + "text": "Labour won the general election in July, and the new government offered a 22% pay rise over two years, which junior doctors accepted two months later, ending the strikes.", + "media_hash": "6b929f308ce2c556a4db82997f0a43877cc8381e8e5185c4a7855b98", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain is still paying a heavy price for Covid lockdowns", + "publication_date": "2026-03-31T09:26:02", + "publication": "cityam", + "url": "https://www.cityam.com/britain-is-still-paying-a-heavy-price-for-covid-lockdowns/", + "media_type": "news_article", + "sentence": { + "text": "By December 2024, only 71.1 per cent of A&E patients were admitted, transferred or discharged within four hours, far below the NHS standard of 95 per cent.", + "media_hash": "9c3fc03a4f329815f764878e7e8e9e95a4afcc1629c0ada8e0ed254a", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alex Pugh", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 17916, + "score": 0.17589999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "The union has rejected a pay rise of up to 7.1% this year without putting it to members, but says it's keen to attend fresh talks.", + "media_hash": "42bff7d52f08ba008af3367aec4fb238c25a125454947b1b465df4c9", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Hugo Rifkind", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "The 3.5% rise that is coming to them in April was recommended by the independent pay review body and covers all doctors.", + "media_hash": "cdd6ee38fa0e8d30aba622c7be36b7bbea9c17971a9e83db27c46666", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "It will be the fourth strike by members of the British Medical Association (BMA) since last July, with 21 days of industrial action having taken place since then.", + "media_hash": "31e72e8eedc09c448eee4b84bc6f130953ca23b1bc16a553336b2783", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It's a 10% pay rise for doctors in their first year.", + "media_hash": "eb9543790ad127175b9e58baf26b07bc36f6f990cca921649318aff2", + "sequence": 1704, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", + "media_hash": "a9911af16022cf11c16997958d7a6bc524fed8156ccdd07259c05e4d", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "The goalposts were changed at the last minute by the government where the investment offer was reduced and stretched to over three years.", + "media_hash": "5bcdbef3b89f54d1a36cc6b9990494822fde796915ab92a0dd598032", + "sequence": 1330, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And on the face of it, it's a reasonable offer, three and a half percent pay rise this year, that's slightly more than inflation.", + "media_hash": "4dbd0ae5e53b0a9564fe81a938e6f228ecd0a8cd852b0507064e7262", + "sequence": 1572, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", + "publication_date": "2026-03-31T17:51:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", + "media_type": "news_article", + "sentence": { + "text": "The Department of Health and Social Care said basic pay for new senior doctors has increased by 28.5 per cent over the past four years.", + "media_hash": "6edd8f91ef5493645cf23a4513cceeff9b7e22b8a3168988a69a36ed", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "We had a 65% turnout and 83% of residents rejected it, just did we been telling the government and therefore we've not put this to members because we don't think it's a good deal on pay.", + "media_hash": "a56fd502a231463bb3e09239e0b19d66eba9b2ed4469c84b735ded43", + "sequence": 329, + "claim_type": [ + "quantity", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "BMA to ballot senior doctors in England over strikes as pay dispute escalates", + "publication_date": "2026-03-31T13:13:44", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/society/2026/mar/31/bma-ballot-senior-doctors-england-strikes-pay-dispute-escalates", + "media_type": "news_article", + "sentence": { + "text": "Last week the government announced that doctors would get a 3.5% pay rise after agreeing a recommendation from the pay review body.", + "media_hash": "fd3df2538f8469fa9fcaae22868204ed2c140fd25ca2a3818a6ebd61", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Last summer there were 30,000 applicants for around 10,000 jobs, although some of those were doctors applying from abroad.", + "media_hash": "bb751c69670bdbfc8616f650093d0ffc1d0571ba52ad838c433996c2", + "sequence": 38, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "media_hash": "09d4546560871b113b16b4f0ce60bc179b4cb9a9e9d098eba4051a52", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "But they also lose entitlement to some of their generous defined benefit pensions, with calculations by wealth manager Quilter suggesting this could total over \u00a32,000 for many doctors over a 20-year retirement.", + "media_hash": "cfa05d50448a70a75b59d829a3448d5a2f98234fbcf1b620e879742c", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Quilter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", + "publication_date": "2026-03-31T05:08:53", + "publication": "bbc-health", + "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", + "media_type": "news_article", + "sentence": { + "text": "The BMA announced the strike as it emerged doctors were to be given a 3.5% pay rise this year.", + "media_hash": "e3ec11529f64bd1d46496091f4b7504a817fd80d4286b65a2ce28480", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "In the same way that inflation between January 2022 and January 2026 was around 28%.", + "media_hash": "0ecc3bbe9d94422f9a36f378ef81fcb1c91035fc1f6344ca61dffe2f", + "sequence": 1692, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But a six-day strike, and the previous strikes weren't six days.", + "media_hash": "6bc64ed2c84d26bcc8d1f081802872a7a4586b3477fa7a7e8c3c0ca8", + "sequence": 1354, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And when you when you put it in an hourly rate like that, it doesn't sound very much but if you multiply 20 pounds an hour by 52 weeks of the year, um, it's a reasonably sizable sum.", + "media_hash": "8966e000c63590996d9b658c47b86971083e5800096ea69522f6141b", + "sequence": 1591, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", + "publication_date": "2026-03-31T16:03:46", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", + "media_type": "news_article", + "sentence": { + "text": "Of these positions, 1,000 would have been available for applications this month, but the PM has now cautioned they \"will be gone if this deal isn't put to a vote on Thursday\".", + "media_hash": "7eef2cd22c952df6b837d554f70319e1e208e65c799854044b702983", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "And I think that we've had a much more constructive set of discussions over the last six months or so, certainly over the last three months or so, much more conciliatory and really trying to find a solution.", + "media_hash": "32e14b58ca25dae66fa53310d2e859ec97d0d4e9e970ca0a299fc7d0", + "sequence": 367, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Year-long treatment waits will be gone in `short number...", + "publication_date": "2026-03-31T13:19:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Figures released on Tuesday confirmed the pledge had been missed, with 44,000 waits of a year or more still ongoing.", + "media_hash": "1cf587dfa71793821bfaeee179790c548c2080bca96b894583fdb4c4", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": { + "health": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", + "publication_date": "2026-03-31T09:42:13", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", + "media_type": "news_article", + "sentence": { + "text": "The government pledged to create 4,000 extra training places over three years, including 1,000 places this year.", + "media_hash": "2c092090f83bc6d8415e9f47350ebc21f01741dcaacf845f90e72fce", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woman\u2019s Hour", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403939", + "media_type": "transcript", + "sentence": { + "text": "It warns that one in four NHS sonographer job posts are vacant in England.", + "media_hash": "3ec8f7ebd2e2de061519049bfe5d76ae89a5c789ec89cf0916f69be6", + "sequence": 53, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "clinical_health": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "We had a 65% turnout and 83% of residents rejected it.", + "media_hash": "6ee6be4dce862931bcd3e3975a3f91f4379a1d58cbf5fcbf603c9d8e", + "sequence": 594, + "claim_type": [ + "quantity", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "The deal, which was rejected last week by the union's leadership without consulting members, would see a pay rise of up to 7.1% this year and the creation of 4,000 specialty training posts.", + "media_hash": "55f9baa55f8c640db2be54610154d48b153560534543e34e285fed0d", + "sequence": 1157, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", + "publication_date": "2026-03-31T06:45:27", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", + "media_type": "news_article", + "sentence": { + "text": "The union, which is to stage a walkout from 7 April to 13 April, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", + "media_hash": "ff304e826bb1354c9d51b8ca618150fa74b81f82fa88bd8233b5e153", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "starmer": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "For 21 days of strike action, the most experienced resident doctors could lose \u00a378.83 per year; over 25 years, because of the way pensions are uprated, that could be worth \u00a3114.38, adjusted for inflation.Over a 20 year retirement, that is worth \u00a32,280 before tax.", + "media_hash": "e1ce234c2a342312dee7e7d73e814ceed38e9243f0214b78d4f5d4de", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Quilter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives 48-hour deadline to resident doctors...", + "publication_date": "2026-03-31T05:49:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", + "media_type": "news_article", + "sentence": { + "text": "Last week, the BMA resident doctors' committee rejected an offer that would have given doctors a pay rise of up to 7.1% this year, without putting it to members for a vote.", + "media_hash": "fc4ffd7a0b4c2e985153d65118f6dfb03326326620eee51d650d6b2b", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 39593, + "score": 0.38980000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Under a new deal on pay, which the medics have rejected, some of them would have been on over 100,000 pounds a year.", + "media_hash": "a05581ff9fbaf8a2d1a820ca73e526ebf8f17d51941cbd319db0e8b7", + "sequence": 388, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "He's accused them of being reckless for walking away from a pay deal under which at least some would have earned more than \u00a3100,000 a year when overtime and night payments are added.", + "media_hash": "ced315703734c420acd20cd1cc8cfd112da62dd2414f1d85a832339d", + "sequence": 1622, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "You know, a first year doctor, fresh out of medical school would earn \u00a312,000 more than three years ago.", + "media_hash": "86246835c25f227f63684c8f9a7c8bc44947817c2119ee25534fe84e", + "sequence": 1696, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And for those in their second to fifth year, a 3.5% pay rise.", + "media_hash": "d939a493b45b4de93056b14dfc73adc7dfafdaa14573225fc8908659", + "sequence": 1705, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And frankly, with the current inflation rates, we think that is about 20%.", + "media_hash": "7cfd1057771dcc0da25c7ef83ae43d7962a3067c8064955174ff3c66", + "sequence": 1715, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So the government's offer of 10% for junior doctors and 2% for consultants is significantly below that.", + "media_hash": "169e56e67aef2097e6b8af22fe1f263ebaa8cdbdd366550e2f79ab93", + "sequence": 1716, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "SNP plan for NHS is working, says Swinney", + "publication_date": "2026-03-31T00:19:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", + "media_hash": "c3613fb9e8972d80077a7fcd5899314ddf020f9d8b93b6f0cda79f2f", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "After entering No10, Starmer agreed to pay rises worth 22% over two years, with further increases following last year.", + "media_hash": "1ccdc2fb371e7604c98a02a00061783243979bae5e4f1a85989bc08d", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 28741, + "score": 0.45030000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", + "media_hash": "d890ddea0a76a50b14701aad4ced28675909d7311f94cafc9555937b", + "sequence": 461, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "defence": 2.5459449999999997 + } + } + } +}, +{ + "title": "Resident doctors\u2019 training posts at risk unless they call off strike", + "publication_date": "2026-03-31T14:11:37", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", + "media_type": "news_article", + "sentence": { + "text": "The PM went on to reiterate the terms of the rejected deal, mentioning a total pay rise of 35% over three years, reimbursements for Royal College exams, and 4,500 new speciality training posts over three years.", + "media_hash": "3343d7951b14a6bdcb760c847473cc6e5efaba1039950ae2ce040833", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Although a figure of 4,000 has been mentioned, but I think that's over three years.", + "media_hash": "9c7641a735cc947d5989f5cd204f51aa91364230c895e537e8c2c824", + "sequence": 1294, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "They have budgeted the government 250 million pounds for these jobs, which is about a week's worth of strike action, which is what seems to be going ahead next month.", + "media_hash": "6e40b0793f8d3ee43fb1fc3622eb047fce39c1188613b86041ab6e2c", + "sequence": 1307, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Year-long treatment waits will be gone in `short number...", + "publication_date": "2026-03-31T13:19:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", + "media_type": "news_article", + "sentence": { + "text": "\"But what I think we should be looking at today is that we've got nine months of continuous reductions in long waits for outpatient and inpatient treatment - that's thousands and thousands of people receiving the healthcare treatment they require and more and more people getting treatment within the 12-week period.", + "media_hash": "1242de2aaf9a74ccaad8a247be837a047782ce2b2ecd817fed66e610", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": { + "health": 4.562435 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "The union's rejected a pay rise of up to 7.1% this year but says it's keen to attend fresh talks.", + "media_hash": "b748c104e42b6a2bad5d1bedf3a815711e66991cd3570c81844affc6", + "sequence": 301, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "I'm not sure anybody knows anybody who's been given a pay rise of what 28%.", + "media_hash": "cade365a2aa7998d7a849b405a86b8750920efbf2dea93d10d085e66", + "sequence": 1160, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Last week the BMA called the strike after rejecting a deal which would see doctors receive a 3.5% pay rise this year, some expenses including exam fees paid for, and an increase in the number of training posts.", + "media_hash": "2958ccf214e83b8d707b9211970df98970c1e5f73f2a3e049d8f71c3", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", + "publication_date": "2026-03-31T06:50:04", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c23909pge35o", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, he said, new graduates entering the profession would earn on average \u00a312,000 more annually than three years ago.", + "media_hash": "889370806fbf93fcd91999380b14ee756c624fb64a2553511e566eb2", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wes Streeting", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer gives 48-hour deadline to resident doctors...", + "publication_date": "2026-03-31T05:49:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", + "media_type": "news_article", + "sentence": { + "text": "The union, which is set to stage a walkout from April 7 to April 13, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", + "media_hash": "3e7c884c674969fab6c09544a0b081cca40a2507057e821644578a81", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Medical Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", + "publication_date": "2026-03-31T05:08:53", + "publication": "bbc-health", + "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", + "media_type": "news_article", + "sentence": { + "text": "The walkout, which is due to begin at 07:00 BST on Tuesday, will be the joint longest of the dispute - only once before have resident doctors taken part in a six-day strike.", + "media_hash": "6ec17778e43ecf3495716dd521495e8be1f47a6e3016e7565e791065", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So the government have offered to create an extra 4,000 training posts.", + "media_hash": "17e21eee8d2403138e6904a5317fe836d21182d1752ae3986160932e", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Yet last year, there were 13 fully qualified doctors who were applying for every job in NHS to train to be an any.", + "media_hash": "713c1b95458877ff39b5344ae1f646a99304c7c90a4777d0b161f0c2", + "sequence": 1647, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And that's why it's only 10% for those in their first year.", + "media_hash": "1713b9bd17faef2087de09af9d807be243ed1b53b179d3376f767219", + "sequence": 1713, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", + "publication_date": "2026-03-31T16:00:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", + "media_type": "news_article", + "sentence": { + "text": "Labour leader hopeful Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", + "media_hash": "7c431ab34c4d6c621ef05bf865df2d7079b6549c94721abf04a2d246", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 28741, + "score": 0.15190000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", + "publication_date": "2026-03-31T20:40:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", + "media_type": "news_article", + "sentence": { + "text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", + "media_hash": "e2c1b487d20fbe6a88086b41c4816070fead6e309bb89bbfba701e47", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "health": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Now, last week the BMA called the strike over a deal which would see doctors receive a 3.5 percent pay rise this year, so slightly above inflation.", + "media_hash": "5aab87e449c9c08e3c46666b73122c1782757396a7ceb127710b57f6", + "sequence": 1295, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Some expenses, including exam fees paid for, and an increase in the number of training posts.", + "media_hash": "8a2a5aa8a0bcde9a166b109bdefe52a656d47e79dbfc77a84f551262", + "sequence": 1296, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And also in terms of those jobs existing in the first place, those 1,000 extra jobs, which is part of the deal.", + "media_hash": "d33c07864fa192c33458ce9716c23c94bfddfc509c8b5964c3f9ea1e", + "sequence": 1306, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Can you tell us what the settlement was after the election that West Streeter came to, because we were told something like 22%.", + "media_hash": "b3252ae3760e37e421432fa95dd294c7a91b9c3e6b60e25fda323259", + "sequence": 1385, + "claim_type": [ + "quantity", + "voting", + "opinion" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Pienaar and Friends", + "publication_date": "2026-03-31T17:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404387", + "media_type": "transcript", + "sentence": { + "text": "And I think that we've had a much more constructive set of discussions over the last six months or so, or certainly over the last three months or so, much more conciliatory, um, and and really trying to find a solution.", + "media_hash": "0f7825dac28fa530069e965e16adf8b3c2b8e7957fc1982d04da21c0", + "sequence": 235, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997 + } + } + } +}, +{ + "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", + "publication_date": "2026-03-31T06:00:00", + "publication": "inews", + "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", + "media_type": "news_article", + "sentence": { + "text": "\"In the 2015 structure, any reduction in pensionable pay creates a gap that compounds because each year's accrual is uprated.\"", + "media_hash": "e26358778346b4176c719bff762cdd303293508ea339cdcb6bae5bdc", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Graham Crossley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.5315000000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "And a dog owner has been convicted after his XL bully attacked and killed an elderly man in Cheshire.", + "media_hash": "9792bfec5a975e39c537229c9304418c377175c9ab3ff0aedfbc0b89", + "sequence": 255, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5207699999999997 + } + } + } +}, +{ + "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", + "publication_date": "2026-03-31T18:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", + "media_type": "news_article", + "sentence": { + "text": "We've already had a couple of supply shocks in the last 12,18, months or so.", + "media_hash": "f42bdaa77baf9743cdc0d00d143c8dab716d7fa6c5cf2e1c0d335bb3", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NHS England", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "health": 2.500545 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "health": 3.05185 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And at the point might be made that, well, the 4,000 specialty jobs, we all need them.", + "media_hash": "1c0d30263e7ef5a2334b7d51b8af8186b89145143daf9adb8d1d8633", + "sequence": 254, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.500545, + "leo_s_topic": 2.500545 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So, you know, those numbers do sound large because they're taken over a number of years, inflation peaks and troughs during that time.", + "media_hash": "89b6c7e66118fcd168e55bf99de5da1f0706f25da870ece1898d5aa1", + "sequence": 1693, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.500545 + } + } + } +}, +{ + "title": "Parents told impact of kids' behaviour on lessons - as private schools perform better", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/parents-told-impact-kids-behaviour-36949335", + "media_type": "news_article", + "sentence": { + "text": "Just 8% said it \"rarely\" or \"never\" has an impact on classrooms - compared to almost a third of teachers (31%) in private schools, according to a major survey by the National Education Union.", + "media_hash": "eea06e4969bd8145cbc53b8a8b56ad2e8724a636febb59f559bf44c6", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Teachers in private schools", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "education": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "publication_date": "2026-03-31T10:00:05", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", + "media_type": "news_article", + "sentence": { + "text": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", + "media_hash": "cc0499549a7aa455ebcba4e2f3af457a3c08c4b903a7a4252319e443", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "education": 4.36914 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "education": 4.6220099999999995 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Parents told impact of kids' behaviour on lessons - as private schools perform better", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/parents-told-impact-kids-behaviour-36949335", + "media_type": "news_article", + "sentence": { + "text": "The NEU said the different outcomes between state and private schools showed \"the roles that resourcing, class size and pupil to adult ratios play in behaviour\".", + "media_hash": "e12cc3350e2d22ac490afb42f4151395faa4164734103bdf556e912d", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "National Education Union", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "education": 3.901315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", + "publication_date": "2026-03-31T13:42:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", + "media_type": "news_article", + "sentence": { + "text": "Plans by Spain's socialist prime minister to hit British expats with a tax of up to 100% of the value of their holiday home purchases have stalled.", + "media_hash": "6299c6fab1725c5d117462a9724cfc47792af4b1777e57fbc9495591", + "sequence": 2, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "education": 3.3956850000000003 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Fake landlord lied that his dad had died to scam my deposit'", + "publication_date": "2026-03-31T04:57:39", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/clyvv713y3no", + "media_type": "news_article", + "sentence": { + "text": "According to the National Fraud Intelligence Bureau, 4,441 cases of rental scams were reported in the past year across England, Wales and Northern Ireland, with people aged between 20 and 29 years old proving the most likely to fall prey.", + "media_hash": "b56d3ad8575c89ba4726d9804a4e349db19231bcefc8aa96efb5368c", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Fraud Intelligence Bureau", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "education": 3.3647299999999998 + }, + "demo": {}, + "dev": { + "blah": 3.3647299999999998 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", + "publication_date": "2026-03-31T13:42:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", + "media_type": "news_article", + "sentence": { + "text": "The world's second-most visited country after France is also among the European nations where public anger is most acute over affordable housing shortages, with rental supply halving since the pandemic.", + "media_hash": "15a15f58e5b150661968b56db524b0ed1a60374ec88dceae970538fa", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "education": 3.123595 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Fake landlord lied that his dad had died to scam my deposit'", + "publication_date": "2026-03-31T04:57:39", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/clyvv713y3no", + "media_type": "news_article", + "sentence": { + "text": "As part of our investigation, we have spoken to four other people who say they lost more than \u00a36,000 between them in the same scam.", + "media_hash": "4286c8042baa932b956f751c1c931bb2a0a603df152163eb521c9076", + "sequence": 61, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "education": 3.09725 + }, + "demo": {}, + "dev": { + "blah": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", + "publication_date": "2026-03-31T13:42:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", + "media_type": "news_article", + "sentence": { + "text": "Foreigners made up 20% of all buyers last year, unchanged from a year earlier.", + "media_hash": "c485b756daf2b6a49c32d06b88359563ccd9e310dcc51d9824271826", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "education": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", + "publication_date": "2026-03-31T13:42:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", + "media_type": "news_article", + "sentence": { + "text": "This represents a 15% increase from 2020 while there are thought to be many more that operate without an official licence.", + "media_hash": "6ee7e4f71e8bff9b895b84d9428ecf46f4453c401044b7c8eee24392", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "education": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", + "publication_date": "2026-03-31T13:42:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", + "media_type": "news_article", + "sentence": { + "text": "Brits remained the largest group of foreign purchasers, at around 8%, preliminary official data showed.", + "media_hash": "5d2d616378b9ff2ae282185d8629fe5b256924517e2af16606da9125", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "education": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "media_hash": "930d4b60dbd4cbf0d49d9dab31be61add2c58be09c57aa0eec84168a", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Sadiq Khan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 5.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 5.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", + "publication_date": "2026-03-31T15:44:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", + "media_type": "news_article", + "sentence": { + "text": "Latest figures show nearly 190 London police officers were sacked and barred from returning to the service in 2025.", + "media_hash": "74f14c7cfe3e1b8f1f3369ecf2f789e03155375e493c45da15307a65", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Metropolitan Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", + "publication_date": "2026-03-31T01:06:32", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Anthony Albanese has warned of a growing threat from extremist ideologies as he declared he felt 'no sympathy' for self-proclaimed sovereign citizen Dezi Freeman, who killed two Victorian police officers.", + "media_hash": "bd722afb886f6837c07e14ba2938e60773aafc50f0f58a785895236f", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Anthony Albanese", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.965595 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 4.965595 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "The \u00a365 million inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded.", + "media_hash": "8de9324a827e63d46ad1e9b4d8db35c21f8d7bf4b63d08871c50d6ed", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.89907, + "crime": 4.89907 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", + "publication_date": "2026-03-31T00:25:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Hurst also raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers.", + "media_hash": "b614d85a61d88ef2e4fbe3acf223a6395ad5ce48ac728c71fdbd1793", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reality TV star Joseph Duggar posts $600,000 bond in...", + "publication_date": "2026-03-31T21:26:42", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695673/Reality-TV-star-Joseph-Duggar-held-600-000-bond-child-molestation-case.html", + "media_type": "news_article", + "sentence": { + "text": "Duggar, who starred with his parents and siblings in TLC's \"19 Kids and Counting,\" was arrested March 18 in Tontitown, Arkansas, after police officers interviewed a 14-year-old girl who told them Duggar had molested her several times during a family trip to Panama City Beach, Florida, when she was 9.", + "media_hash": "74039aeba85bfc55aa2c98959d322dfe80fcb09002df9821e176dfe5", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Joseph Duggar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The real guide to North London: Influencer sparks backlash with rundown of posh bakeries, wine bars, and Pilates studios - as residents share 'pretty nasty' reality", + "publication_date": "2026-03-31T15:01:26", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/lifestyle/article-15693883/The-real-guide-North-London-Influencer-sparks-backlash-rundown-posh-bakeries-wine-bars-Pilates-studios-residents-share-pretty-nasty-reality.html", + "media_type": "news_article", + "sentence": { + "text": "Residents have described 'people sitting on the stairs, smoking crack cocaine' and a rampant issue with knife crime.", + "media_hash": "fec3e112a9899092ceda0e0ba99a738c6e15f162d2cbc5383d53d8f1", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Residents", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with \u00a36.1million in dirty cash uncovered in a money laundering probe.", + "media_hash": "886030accad256797c9fbf799d0cbc53bfe44b72c5f1261118599d61", + "sequence": 30, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "EU Agency for Criminal Justice Cooperation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.61247, + "crime": 4.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owner of XL bully that 'savaged' 84-year-old man found guilty", + "publication_date": "2026-03-31T14:00:00", + "publication": "skynews", + "url": "https://news.sky.com/story/owner-of-xl-bully-that-savaged-84-year-old-man-found-guilty-13524972", + "media_type": "news_article", + "sentence": { + "text": "The animal had to be shot 10 times by police officers who were called to the scene.", + "media_hash": "744ff406a2d8fbea6d703e15e9f132a95c0c670c627a206bce0e18cc", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T16:54:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Video shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand in the middle.", + "media_hash": "6410c0c3e7b7874d21264b639ae20fb7f37ab4e6e6c0e0bcf39de571", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.61247 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", + "media_hash": "0394d2a438e55d77c935963434df6a27c982e1f33ec53377b8a33efd", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "1919 magazine", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "crime": 4.545945 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Revealed: The truth about the remote compound where Dezi Freeman made his last stand in a shootout with cops", + "publication_date": "2026-03-31T05:00:04", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693293/dezi-freeman-farmer-denies-harbouring-victoria.html", + "media_type": "news_article", + "sentence": { + "text": "Dezi Freeman murdered two police officers and fled", + "media_hash": "1c672da3e63374529a9afb392e3b59623d4abf3ff48fd556bee3ff07", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.540725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Slain fugitive could become sovereign citizen 'martyr'", + "publication_date": "2026-03-31T05:15:40", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693593/Slain-fugitive-sovereign-citizen-martyr.html", + "media_type": "news_article", + "sentence": { + "text": "He had been on the run for seven months after killing police officers Neal Thompson and Vadim de Waart-Hottart as they served a warrant related to alleged child sex offences.", + "media_hash": "3eee2773d1c1b66b2b338ed8ee6215c842d32575c84a50f29e8c5dbb", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", + "media_hash": "3ff650a586805fd9d9eb88ba98b49d6388bedd0e5e1371dfa2a552db", + "sequence": 10, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.540725, + "crime": 4.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", + "publication_date": "2026-03-31T06:50:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", + "media_type": "news_article", + "sentence": { + "text": "Christine Hurst raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers", + "media_hash": "09e00a0ed09696a028effc16385ca8b3bae2cceed54b722edfa96c63", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Mr Ainsworth", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Bea Ainsworth", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Mrs Ainsworth", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.4703800000000005 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "'(It) will be laser focused on grooming gangs and will explicitly examine the role of ethnicity, religion and culture of the offenders and in the response of institutions.", + "media_hash": "268cd98c2b61ed519eed8079ddd4a213ca609e0dc26bcb49b04aa58b", + "sequence": 74, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Home Secretary Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.41762, + "leo_s_topic": 4.41762, + "crime": 4.41762 + }, + "demo": { + "race__ethinicy__religion": 4.26484 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Woodhouse, who was targeted, groomed and abused as a teenager, was part of Restore Britain MP Rupert Lowe's private investigation into grooming gangs, which has claimed to have found child sexual exploitation in 85 local authorities in the UK.", + "media_hash": "9795fda1b53e30a76dd2d89a89b508fcc693e8f01dc8cf2d7adcd912", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Restore Britain", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.41429, + "crime": 4.41429 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Alpine town desperate to move on from Freeman's crimes", + "publication_date": "2026-03-31T03:55:38", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693451/Alpine-town-desperate-Freemans-crimes.html", + "media_type": "news_article", + "sentence": { + "text": "Dezi Freeman, wanted for shooting dead two police officers on a property near the town, was killed on Monday roughly 150km away in Thologolong, after seven months on the run.", + "media_hash": "9939747da281203755c129962eb79c31cfb4f0226a75350e09639d57", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.41429 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", + "media_hash": "272411c20dabb6e93f34343bb819c561d9574c643d13f77acf4438db", + "sequence": 13, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.331365, + "crime": 4.331365 + }, + "demo": {}, + "aapfactcheck": { + "queer-trans-sexuality": 4.331365 + }, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", + "publication_date": "2026-03-31T01:06:32", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", + "media_type": "news_article", + "sentence": { + "text": "'He made the decision to murder two police officers.", + "media_hash": "392f9a646204e181067d3f2e9a7d59e22d011938553210e5892bdd84", + "sequence": 12, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.300755 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 4.300755 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Conservative Party leader Kemi Badenoch said: 'This appears to be a significantly strengthened terms of reference for the national grooming gangs inquiry.", + "media_hash": "b017cb223cb6681dafb0490eb3e06f749954df0ea9d1420421a31f3a", + "sequence": 58, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Grooming gang inquiry", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Conservative Party leader Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.29984, + "leo_s_topic": 4.29984 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 4.29984 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "Conservative Party leader Kemi Badenoch said the terms of reference appeared to have been \"significantly strengthened\", but Reform UK leader Nigel Farage said he has \"absolutely no faith\" that the grooming gangs inquiry will get justice for victims.", + "media_hash": "befafac333b203a088f59afd79df78bd7df196127446a2c4ee19c867", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.29984, + "leo_s_topic": 4.29984, + "crime": 4.29984 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Husband of woman, 61, who was killed by 'drunk' motorist in Turkey tells of trying 'with all my strength' to stop her from being run over a second time", + "publication_date": "2026-03-31T15:20:24", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694999/Husband-tells-wife-run-drunk-driver-Turkey.html", + "media_type": "news_article", + "sentence": { + "text": "A photo from the scene shows three police officers taking a suspect, who was allegedly under the influence, into custody", + "media_hash": "4f884ecbc73c5488d24a103d250d48375af6933df790ccef16e371d5", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.287855 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "In each area, the inquiry will conduct 'local investigations' into 'serious failures identified in response to child sexual exploitation by grooming gangs'.", + "media_hash": "642c1546eac8ca512715a59c80e1b81677c5927e8baef0e4871ef37f", + "sequence": 10, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Grooming gang inquiry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.26484, + "leo_s_topic": 4.26484 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 4.41762 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", + "media_hash": "3bef971223bf0779f87941fff65ae27737ed8730d549135bbc8868e3", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.263805, + "crime": 4.263805 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "\"The problem is any third party inquiry is a waste of space unless you can subpoena police officers, social services, civil servants, who were all part of of turning the collective blind eye, and I think everything this Government has done on this issue is an attempt to literally kick the can down the road, to not fully open this up.", + "media_hash": "d7c16ca1c4cb9984864a1f9a92ddbe1bce119fc26de789e4313864dc", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.25444, + "crime": 4.25444 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "The audit found systemic failures and institutional paralysis had enabled grooming gangs to operate for many years.", + "media_hash": "76da6d1f62aca8c45819c92fe516d322827a6a0b27922f64f76293cb", + "sequence": 80, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Baroness Louise Casey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.25444, + "leo_s_topic": 4.25444, + "crime": 4.25444 + }, + "demo": { + "race__ethinicy__religion": 2.7747900000000003 + }, + "pa-media": {}, + "maldita": { + "trending": 4.25444 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Delivery driver threatened at gunpoint in attack on police station", + "publication_date": "2026-03-31T11:51:32", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", + "media_type": "news_article", + "sentence": { + "text": "\"The people behind this showed absolutely no regard for the driver, the local community or police officers, whose lives could have been put at risk,\" she said.", + "media_hash": "4ebc41510f058c16f51703618dd2a23b7a2bfd9944fef4b8473bdb06", + "sequence": 51, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Claire Hanna", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.228095 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Farage said: \"I've wanted a national grooming gangs inquiry, I've done everything I can to try and push the Government into it.", + "media_hash": "123d9463957dce2ea61bb36acd8a4197997b7f121d4cb69a38ac4f38", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fugitive Freeman 'unlikely' to have been taken alive", + "publication_date": "2026-03-31T00:15:38", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15692191/Fresh-shooting-details-Dezi-Freeman-identified.html", + "media_type": "news_article", + "sentence": { + "text": "Police officers and vehicles continued to surround the property on Tuesday, 24 hours after Freeman was killed in a hail of bullets after refusing to surrender.", + "media_hash": "ad2c158cca4318834d06a1f8d4ccdc00f59ff17c91dccf7c32f69aa2", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Victoria Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "In its 'terms of reference' published this morning, the inquiry said it would 'investigate how grooming gangs operated and how institutions, including police, local authorities, health services, social care services, and schools, responded to abuse'.", + "media_hash": "74c53745e28cb5c99cac35a72cc8ff1ab21d619ca675ba7d52eeb7a7", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 4.10166, + "leo_s_topic": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ex-SNP candidate under investigation over alleged sexual offences", + "publication_date": "2026-03-31T11:15:31", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983585.stefan-hoggan-faces-police-probe-alleged-sexual-offences/", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", + "media_hash": "f119ef7581a322aec8188c5d4efc169dceec171ca39b9bc6372b84fa", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + } + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Marcus Johnstone, managing director of PCD Solicitors, said: 'Grooming gangs have not disappeared, but simply evolved their tactics to largely escape detection.", + "media_hash": "f37a685f42697692645a80dc60360d786a95899e973c389bd3387b68", + "sequence": 62, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Marcus Johnstone", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.10166, + "leo_s_topic": 4.10166, + "crime": 4.10166 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", + "media_hash": "8d882f7790685ab42df5d3c1acbe8682c377185d1cc7a0d325efe63c", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man shot dead outside Euston Station pictured as killer remains on the loose", + "publication_date": "2026-03-31T17:43:10", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-man-shot-dead-outside-36951245", + "media_type": "news_article", + "sentence": { + "text": "Nahom Medhanie was shot dead in a car outside Euston Station in London - Metropolitan Police officers were called to reports of gunshots at 11pm on Saturday", + "media_hash": "ea4fe62499f19d354ae19ac80792a3966e117b7bf76524a88b77820f", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police investigating former SNP Holyrood candidate over...", + "publication_date": "2026-03-31T17:34:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", + "media_hash": "81e1fa29e1e255c5a9a56876cdd6c4ed53684116f135ccb74a1b43d0", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.10166, + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "The grooming gangs inquiry was set up in response to a recommendation from Baroness Louise Casey's National Audit on Group-based Child Sexual Exploitation and Abuse.", + "media_hash": "b313cc19ef2df8cc8b94f4d85ed610fedf93d779be88e518522803d1", + "sequence": 79, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 4.10166, + "leo_s_topic": 4.10166, + "crime": 4.10166 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "maldita": { + "trending": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Families 'are barricaded inside high street stores' as mobs of youths storm Clapham AGAIN", + "publication_date": "2026-03-31T19:58:53", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695845/Families-barricaded-inside-high-street-stores-mobs-youths-storm-Clapham-AGAIN.html", + "media_type": "news_article", + "sentence": { + "text": "Footage posted on social media showed police officers watching on as an army of feral youngsters stormed through the supermarket.", + "media_hash": "772f2d89abfe56256caafc6050d605bc67d031b8564989cf657facb8", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reality TV star Joseph Duggar held on $600,000 bond in...", + "publication_date": "2026-03-31T17:26:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695673/Reality-TV-star-Joseph-Duggar-held-600-000-bond-child-molestation-case.html", + "media_type": "news_article", + "sentence": { + "text": "Police officers in Tontitown had the father call Duggar with a detective on the line, and he again admitted to the actions, according to the affidavit.", + "media_hash": "2d3f9d3f5197986ff36769a5d07b4c2228c2ed56f80d377962bdc870", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Joseph Duggar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Indonesia arrests Scottish man sought by Spain in...", + "publication_date": "2026-03-31T16:56:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695585/Indonesia-arrests-Scottish-man-sought-Spain-connection-international-crime-syndicate.html", + "media_type": "news_article", + "sentence": { + "text": "A Scottish man identified as Steven Lyons, who is described as a senior figure in an international crime syndicate, center, is escorted by police officers at the regional police headquarters in Denpasar, Bali, Indonesia, Tuesday, March 31, 2026.", + "media_hash": "6b4355c792358641e72218ae5598f90b41e1dfc503b3cb8338eb680d", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Delivery driver threatened at gunpoint in attack on police station", + "publication_date": "2026-03-31T11:51:32", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", + "media_type": "news_article", + "sentence": { + "text": "He described it as a reckless attack, which could have endangered local people and police officers.", + "media_hash": "f78a9ce1c8485e3cb64b59ae4829f89191fc4aacf28e5e981a26903f", + "sequence": 41, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jon Burrows", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Home Secretary Shabana Mahmood said: 'The grooming gangs scandal is one of the darkest moments in our country's history - where the most vulnerable people were abused and exploited at the hands of evil child rapists.", + "media_hash": "79974af8654ad12dfddedcc245c03dc73d46db0b982e3f67f11e4030", + "sequence": 55, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Home Secretary Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166, + "leo_s_topic": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 4.25444 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", + "publication_date": "2026-03-31T16:57:04", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", + "media_type": "news_article", + "sentence": { + "text": "According to reports, Brueckner has repeatedly tested police officers' patience in the period since - especially when drinking alcohol.", + "media_hash": "bfadb4004432a3a89cda86214e95432fdb71122bf63fa32eafd6e545", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T16:54:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "New footage shows the moment an army of youths caused chaos in a Marks and Spencer shop in London as police officers watched.", + "media_hash": "cd74cd00b98358f9efeecd073d8ec0025f77da059d7766fcc6b278d6", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "A child sexual exploitation survivor has urged the grooming gangs inquiry to investigate every council and police force in the UK after the probe outlined its terms of reference.", + "media_hash": "b40477ef210ddbae7ac4316cafa1101715ac34478352aa2c7df5616d", + "sequence": 2, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.98733, + "crime": 3.98733 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:09:48+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/Telegraph/status/2038891496129077403", + "media_type": "social_post", + "sentence": { + "text": "\ud83d\udd34 Police officers who failed to investigate Asian grooming gangs will be held to account by the public inquiry into the scandal, its head has pledged.", + "media_hash": "5b5ec76290d04e311b13f8c5c61079e77c8ced7ea1e2a303ecff439e", + "sequence": 0, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Baroness Longfield", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.98733 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Uh, well, the national inquiry into grooming gangs, Hugo, will not flinch from uncomfortable truths, its chair has announced as a three-year investigation begins.", + "media_hash": "4db9af50feed6efc6334c43381a6c45cd3df08d6f8c068b45ea2d484", + "sequence": 2478, + "claim_type": [ + "correlation", + "predictions", + "support" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.9255500000000003, + "leo_s_topic": 3.9255500000000003 + } + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T11:54:31", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Met Police officers then swooped on the scene, with hundreds of children sent fleeing through Soho after the sound of sirens brought the stunt to an abrupt close.", + "media_hash": "030f501ad617cbf52881410c0e19f17309339e04b8e91f3eda160316", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.862985 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.862985 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "The inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded to abuse.", + "media_hash": "5abc5c399733a5dd6345c00db3a75eb7b931cd557d853d3f238893c7", + "sequence": 50, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Grooming gang inquiry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.7800599999999998, + "leo_s_topic": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 3.7800599999999998 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "'I have full confidence that the National Crime Agency will expose and prosecute the grooming gangs.", + "media_hash": "5ec7654a6e40c291c1e3b669f8760dc25a036ec410c40c8f37db6b8e", + "sequence": 59, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Sarah Champion", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.7800599999999998, + "leo_s_topic": 3.7800599999999998, + "crime": 3.7800599999999998 + }, + "demo": { + "race__ethinicy__religion": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", + "media_hash": "e7a3146e65a33ae931a15041ba0a62198d284507e12bb8864ac1cff7", + "sequence": 1, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.7800599999999998, + "crime": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "Local investigations will be carried out in areas where serious failures have been identified in response to child sexual exploitation by grooming gangs.", + "media_hash": "32291e7ffa0e303065278101180195da6c94c8b48b4c7c9b67d2c7a1", + "sequence": 5, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.7800599999999998, + "crime": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "Tory leader Kemi Badenoch said the terms of reference of the inquiry had been 'significantly strengthened \u0301 (Yui Mok/PA)", + "media_hash": "46df338b5cad731c148488bc3fe61177b39b9c04fc23222c9b183a23", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.748535, + "leo_s_topic": 3.748535, + "crime": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T11:54:31", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Footage shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand helpless in the middle.", + "media_hash": "cfc3307a32607c49aeb12832c3bb206fba55629bc878783799bf19e6", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 4.29984 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", + "publication_date": "2026-03-31T16:48:39", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", + "media_type": "news_article", + "sentence": { + "text": "'Members of the public are entitled to accept the highest standards from police officers and to ensure they do not abuse their power and position.", + "media_hash": "bb9926905c88e7b605a65afae4ff1f7b88a0cb174696cf81f1995cf0", + "sequence": 41, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Judge Nicola Talbot-Hadley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.7404349999999997 + }, + "demo": {}, + "aapfactcheck": { + "women": 0.0 + }, + "pa-media": {}, + "maldita": { + "crime": 3.70948 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dezi Freeman's final moments to be revealed in inquest", + "publication_date": "2026-03-31T16:37:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15695555/Dezi-Freemans-final-moments-revealed-inquest.html", + "media_type": "news_article", + "sentence": { + "text": "For the families of the police officers and also Freeman's, they will get a clear outline on what occurred through the coronial process.", + "media_hash": "1265ee2b5ff13846ad22f3e45dd2c89fb001c2bb37da92eeaeb0c231", + "sequence": 17, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", + "media_hash": "e8010740956593f59364f297e55c4c3f588ee2c17dd1ae0cf584a843", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "crime": 3.703135 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", + "media_hash": "7100c011b1055c79ac87f787a38bb80410cc71d65200cf519d05f4d4", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "crime": 3.703135 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", + "media_hash": "6658be1562fca05b50ab85e47c96a447f717cb65be4fd4d13ae8d27b", + "sequence": 1, + "claim_type": [ + "rules", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.66573, + "crime": 3.66573 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Spring Break trend 'turns cities into The Purge' as stampedes and fights overwhelm police", + "publication_date": "2026-03-31T11:40:57", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/spring-break-trend-turns-cities-36947147", + "media_type": "news_article", + "sentence": { + "text": "A dangerous social media trend is turning US cities \"into The Purge\" with police officers overwhelmed after already dealing with Spring Break.", + "media_hash": "dfdd2dce3ed123b9a580236fe856566485761291971d528866523e5e", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", + "publication_date": "2026-03-31T01:06:32", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", + "media_type": "news_article", + "sentence": { + "text": "'That ideology led him to murder two police officers in cold blood,' Albanese said.", + "media_hash": "53ca168d077d936de5462414bf13a4199e3db23a980b969412dbc7c9", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Anthony Albanese", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.563255 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 4.228095 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", + "publication_date": "2026-03-31T10:13:51", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", + "media_type": "news_article", + "sentence": { + "text": "The reward was one of the largest ever offered in Australia, and came amid a search involving 450 police officers and members of the defence force", + "media_hash": "7464b642aef1492d5f900cf6a16afd343553db76fad2b5ebf54eae75", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.556405 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.556405 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T11:54:31", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Met Police officers appear to try and control the group by gently pushing a few of the teens, which has little impact", + "media_hash": "651a56fc5b52ab641e28f8e897b5cd60b3a48db50c5ced357b7201e2", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police investigating former SNP Holyrood candidate over...", + "publication_date": "2026-03-31T17:34:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", + "media_hash": "b482a75e855d18922197af3adb1189ba95d3866e30faa297c290aec5", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", + "publication_date": "2026-03-31T13:23:56", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", + "media_hash": "b0984601cf8c309e7f5f1ea321e1ce18e0daa4e07567d9d1215527e7", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland has previously said it will continue with its current policy.", + "media_hash": "28e703e2ff069434c235fcab2dfca6c6adcc76b1c6ac12a8260a7ec2", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Its findings are calamitous for London's transport and policing bodies and for Mayor of London Sadiq Khan: the committee's chair, Marina Ahmad, said that while she expected 'to find a problem, what we found was a crisis'.", + "media_hash": "b0fce0cdc0daceff4231eb7c99c08a20c592cb5baf3b95237232c8c1", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", + "publication_date": "2026-03-31T10:14:38", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", + "media_type": "news_article", + "sentence": { + "text": "Greater Manchester Police officers are currently responding to a concern for welfare on Barton Bridge on the M60, reported at around 9:40am this morning.", + "media_hash": "ff8999b537fd88e3e708d32c7668da818afcc4f2eb99abed664a9251", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Greater Manchester Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", + "publication_date": "2026-03-31T10:14:38", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", + "media_type": "news_article", + "sentence": { + "text": "Police officers are at the scene responding to a concern for welfare.", + "media_hash": "46949ef8ac4da7c8ea0e852b5e8a3b37152f65ea71949dd2a13a0632", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Greater Manchester Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.975225 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", + "media_hash": "f8d3a4c92e59f62006be5cdca6367b18b0661350a3c3607074aadd2e", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", + "media_hash": "78e07e46d212bd0cd5e21f1d4cfa6b194306773895b0edd66947af91", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T16:54:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Met Police officers then swooped in on the scene, with hundreds of children sent fleeing through the streets after the sound of sirens brought the stunt to an abrupt stop.", + "media_hash": "25e9d3ba4338bf079fdf56555a5363cea99919c97f71b5c7b79d7993", + "sequence": 22, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Funfair worker started devastating fire then faked seizure when arrested", + "publication_date": "2026-03-31T16:06:33", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/funfair-worker-started-devastating-fire-33692400", + "media_type": "news_article", + "sentence": { + "text": "Police officers were joined by an ambulance crew and they managed to get Gornall to safety.", + "media_hash": "d467044a9662f7aaa901ebefde3462f902be5dd65913d561e6c1e5e2", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "'Brutal' crime drama soars up Netflix chart as fans 'drop everything to watch'", + "publication_date": "2026-03-31T15:38:06", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/brutal-crime-drama-soars-up-36950587", + "media_type": "news_article", + "sentence": { + "text": "\"Underneath the surface, this series is a nuanced character drama about two police officers - and supposed colleagues - operating on opposite sides of the law. Throughout the season, Harry goes head-to-head with his long-time adversary and corrupt detective Tom Waaler,\" reports the Express.", + "media_hash": "192be3865ae1abf457e16b92b3c570e4a7eb824e538c6118a88679f9", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Boy, 12, among trio arrested after bomb and knife attack hoax shuts down UK schools", + "publication_date": "2026-03-31T12:55:22", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/boy-12-among-trio-arrested-36949343", + "media_type": "news_article", + "sentence": { + "text": "Police officers were spotted at both schools on the Monday and armed officers were photographed at Eastern High in Trowbridge.", + "media_hash": "cd89e0351361fff743e72e48dd08a947bd6930b2e612d3d2df5ccea2", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", + "media_hash": "74f292618f0c059f2e657ba424aa4f2bd7d85b6ef6040c9e0e310cff", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Steven Lyons", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Amanda", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", + "media_hash": "5870605429121f95ba5a5e437d9441e8607a45271379abe867dd40d3", + "sequence": 22, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Woods to 'step away and seek treatment' after crash", + "publication_date": "2026-03-31T23:44:19", + "publication": "bbc", + "url": "https://www.bbc.com/sport/golf/articles/c87wjj424vro", + "media_type": "news_article", + "sentence": { + "text": "That came after police officers found Woods slumped at the wheel of his car near his home.", + "media_hash": "f6353a8bca23f352c88f57414c820f728445de022a0e849a93f86bb3", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", + "media_hash": "c8010e05506ef0df19188606dfc2b242e9a89867bb810270a3229b43", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", + "publication_date": "2026-03-31T15:21:22", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland were called to the address after concerns were raised about the occupant.", + "media_hash": "2ef55cffda923da1dfadb60ebb60c1596d17d916550a785ab2e43e36", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", + "publication_date": "2026-03-31T13:23:56", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", + "media_type": "news_article", + "sentence": { + "text": "Officers from Police Scotland say his death is currently being treated as unexplained.", + "media_hash": "4b4d52218bed3bc6d74ab0f6a54f0baae34682d5c05b069c00cf26d8", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", + "publication_date": "2026-03-31T10:14:38", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", + "media_type": "news_article", + "sentence": { + "text": "Greater Manchester Police officers are responding to the incident at the scene.", + "media_hash": "0d3df745bca453ad073669b6dbed2aca30eb95ef306d52edb052df92", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", + "media_hash": "4de07c284139b1bffa489a0527b8d1f62ebdd808f2372c3bf52f959c", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Boy, 12, arrested in connection with threats to Cardiff schools", + "publication_date": "2026-03-31T10:55:14", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/boy-12-arrested-connection-threats-33690188", + "media_type": "news_article", + "sentence": { + "text": "Police officers were seen at both schools on the Monday and armed officers were pictured at Eastern High in Trowbridge.", + "media_hash": "4d8b1489365b5ecc0ccba3ae251440a2fe326570b66bdb6b8f7ff926", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", + "media_hash": "4eed64d849cddd4f921f27c111f1b5b605953a97bb6eb68a81884403", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "international law enforcement", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Norman Silvester", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police officers in Lanarkshire issue advice to residents over keyless car theft", + "publication_date": "2026-03-31T10:04:02", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/police-officers-lanarkshire-issue-advice-36947991", + "media_type": "news_article", + "sentence": { + "text": "Police officers in Lanarkshire have issued advice to residents over keyless car theft.", + "media_hash": "7d2e9d58da448c35dc125b195a3983e8086d980211a7572eecaae721", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Princes Street incident: Boy, 15, arrested after car chase in Edinburgh city centre", + "publication_date": "2026-03-31T08:23:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/boy-15-arrested-after-early-hours-car-chase-on-princes-street-6529563", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", + "media_hash": "932144d920312a346138f7c3fcf63bc8b4ebf9665ae1d9b668d6295a", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man charged with attempted murder after woman \u2018stabbed\u2019 near Perth roundabout", + "publication_date": "2026-03-31T08:08:55", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/5462094/perth-attempted-murder-charge/", + "media_type": "news_article", + "sentence": { + "text": "Police officers search the area.", + "media_hash": "1124bf780c768dca0c72b9f18e34fbff927cbca4a9b8e645995266ec", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + } + } + } +}, +{ + "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", + "publication_date": "2026-03-31T15:21:22", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", + "media_type": "news_article", + "sentence": { + "text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", + "media_hash": "a5928758ecdf0493a55f46e7e1a8eafde9068ca7b3ec71a933cf7222", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + } + } + } +}, +{ + "title": "Vicky McClure 'heartbroken' over grim murder as famous husband makes major promise", + "publication_date": "2026-03-31T15:03:30", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/3am/celebrity-news/britains-murder-map-vicky-mcclure-36950079", + "media_type": "news_article", + "sentence": { + "text": "Their Sky History show examines unsolved murders, miscarriages of justice and milestone cases that have changed the law, and the co-hosts speak to historians, police officers, victims' families and a number of other contributors along the way.", + "media_hash": "8ec2896ae8e7890aed72d7e681956344adc265460724ae7311e17be5", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment woman escapes police car in cuffs by wiggling her body out of the window and running away", + "publication_date": "2026-03-31T20:57:54", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695265/woman-escapes-police-car-michigan.html", + "media_type": "news_article", + "sentence": { + "text": "Just a few seconds later, police officers in the parking lot walked back to the car and realized their suspect had fled.", + "media_hash": "223eec7d08d3102fa8aa9ce2c21b1c552c74f26c1676102bf732dc1c", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T11:54:31", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "New video shows the moment an army of youths caused chaos in a Marks and Spencer store in London as police officers watched on powerless.", + "media_hash": "981e4757d0b336586a37810c1a8eacc8b5f8a97980ca22e3044f3b63", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.5194 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.5194 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Former Inverness youth worker jailed over indecent images of children", + "publication_date": "2026-03-31T16:32:06", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6987559/former-inverness-youth-worker-jailed-over-indecent-images-of-children/", + "media_type": "news_article", + "sentence": { + "text": "Devices were seized, and analysis discovered 64 \"child sexual abuse material files\" which were deemed to be category C.", + "media_hash": "0b6e0cdc88df64a73b0720230149615bc82410047e2d9711363e0f27", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.450375 + } + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "'The initial draft did not, amongst other things, examine ethnicity and religion, nor did it ensure those in positions of authority like politicians or police officers would be investigated.", + "media_hash": "9ed6476ca90deaaaf6243c97d93cc2f378a442a04c1a01ecfbacb968", + "sequence": 59, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Grooming gang inquiry", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Conservative Party leader Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.436025, + "leo_s_topic": 3.436025 + }, + "demo": { + "race__ethinicy__religion": 3.436025 + }, + "pa-media": {}, + "maldita": { + "trending": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Oldham is the only area that has been confirmed, it means that local investigations won't begin until at least a year after Sir Keir Starmer announced this national inquiry, that itself came after his U-turn because he previously insisted that a national inquiry into abuse was not necessary.", + "media_hash": "a8c7834a02c2b1968cd977e0b64beba108fd1a0deda074656edd6d10", + "sequence": 2487, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.436025, + "crime": 3.436025, + "leo_s_topic": 3.436025, + "culture-wars": 3.436025 + } + } + } +}, +{ + "title": "The bombshell connection Dezi Freeman had to his secret lair - and exactly why he narrowed down his escape to one small town", + "publication_date": "2026-03-31T13:42:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693635/Dezi-Freeman-hideout-escaped-Victoria-police.html", + "media_type": "news_article", + "sentence": { + "text": "He had been on the run since August 26 after killing two Victorian police officers and injuring another when cops raided his remote Porepunkah property over historic sex offence allegations.", + "media_hash": "b4a92ec6fa0126b6a44c1227e4f39cac95ef262330d930c215a65699", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.4142900000000003 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", + "media_hash": "393a931a9a6085fd9209116b4867174d584df29766536993536dada4", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065, + "crime": 3.414065 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Police who failed to investigate child sex grooming gangs will be held to account, the new independent inquiry's head pledged today - as she promised issues of ethnicity, culture and religion will also be scrutinised.", + "media_hash": "8cb7e87acbae56fd4227017a883237b8711e68250f72e69e59915dcf", + "sequence": 2, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.40507, + "leo_s_topic": 3.40507 + }, + "demo": { + "race__ethinicy__religion": 3.956375 + }, + "pa-media": {}, + "maldita": { + "trending": 3.98733 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Criminal said 'I just have to do it to earn a living' in desperate plea to police after arrest", + "publication_date": "2026-03-31T15:18:55", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/criminal-said-i-just-earn-33691428", + "media_type": "news_article", + "sentence": { + "text": "The total value of drugs seized is estimated to have potential street value of \u00a31,460.", + "media_hash": "2851d37774f2ef32e9159581778fc241bfe81d336587160496e0221b", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.3956850000000003 + } + } + } +}, +{ + "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", + "publication_date": "2026-03-31T11:34:58", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", + "media_type": "news_article", + "sentence": { + "text": "The street value of the retrieved cocaine was estimated between \u00a3719,040 and \u00a3898,000.", + "media_hash": "8ffce2df96cc6431b483cb179451edbfc0e6645a7e6f579ce021685d", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "William Paterson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", + "media_type": "news_article", + "sentence": { + "text": "Stats out in 2024 show Black men were 2.4 times as likely to be arrested as white men and Black people were 3.7 times more likely to be stopped and searched compared to white people.", + "media_hash": "473a91233267fd1eb7aee092d388172229cfa000efdd24033aac658e", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T10:25:11", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "Across no less than a third of the country, not a single case of this devastating crime was cracked by constabularies.", + "media_hash": "8c1f8720a0eb9cfb8358600571bee69b9ab37d64096afde096296bda", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.2500299999999998 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Excesses are regularly in the thousands.", + "media_hash": "c2fefa66f3ab30a850e28508ab0b5cb4ae41d920321cf940491e0bf4", + "sequence": 52, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", + "publication_date": "2026-03-31T08:45:06", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", + "media_type": "news_article", + "sentence": { + "text": "Ten police officers had attended his property he shared with his wife, Mali and their two children, to serve a warrant on August 26 2025.", + "media_hash": "3b5821fb4e95579a4f9776b7bf1fc0f366cf2ca2ea94f985bf2711aa", + "sequence": 19, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.2291 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.1981450000000002 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Longfield said that the inquiry will examine cases in which public officials and police officers were reluctant to investigate allegations because of concerns about how it may look.", + "media_hash": "5e4b61495ca979133a790088b3e8a546be98145be22c8beec676a67e", + "sequence": 2483, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.228755, + "leo_s_topic": 3.228755 + } + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "And Sarah Champion, Labour MP for Rotherham, who first called for action on grooming gangs, has criticised the amount of time the inquiry has taken to get going and believes its budget would be better spent on supporting the National Crime Agency bringing gangs to justice.", + "media_hash": "92d23966f6e9ceda9be9d72a5bbfe7ad18419d959d890e8b022244f4", + "sequence": 10, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Sarah Champion", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.211065, + "leo_s_topic": 3.211065, + "crime": 3.211065 + }, + "demo": { + "race__ethinicy__religion": 3.7623699999999998 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", + "publication_date": "2026-03-31T09:35:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", + "media_type": "news_article", + "sentence": { + "text": "The 13-year-old girl from the Bayside area was charged with 52 offences including reckless conduct endanger serious injury, multiple counts of theft, multiple counts of theft of motor vehicle, burglary, handle stolen goods, and threaten physical harm or property damage on ground of a protected attribute.", + "media_hash": "4a782a4929cf3c37d0994f3a4082f01628326946dcf0900a96d10d46", + "sequence": 23, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.1637750000000002 + }, + "demo": { + "race__ethinicy__religion": 2.738905 + }, + "aapfactcheck": { + "crisis": 2.965595 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T11:45:03", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "The \u00a365m inquiry, to conclude no later than March 2029, 'will examine why children were so often disbelieved, dismissed, or blamed for their own abuse'.", + "media_hash": "c668ac57dd681ec2774bf9e4029b5a5b91969ddf5693a62dc812b633", + "sequence": 5, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Grooming gang inquiry", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09782, + "leo_s_topic": 3.09782 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 2.57747 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Overall crime on the network has risen almost eight percent in the last three years alone.", + "media_hash": "481504079ff397a9a68c9793586f2e4ee83715be2ec44d056263c4b6", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Of all public transport crime reports in 2025 almost a fifth, 4,593, related to VAWG and another 1,724 were incidents of hate crime.", + "media_hash": "603daea4be500c23634eaed47066f67922da2543735a3b51e23ec80d", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Only a handful of incidents ever led to a charge, and a suspect was not identified in 58 per cent and 66 per cent of VAWG and hate crime incidents respectively.", + "media_hash": "20c9b8554fc44a00ac646fc04e76785aad894f137f2a9f2a9e7a5cfc", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Almost half of travellers - 45 per cent - say they're either 'very' or 'fairly' worried about being harassed while commuting, and more than half say they have little to no confidence in TfL, the Met and the BTP to take action.", + "media_hash": "419fad03094948877ae48084f31aea213bbf8adfd44e90f2a704de72", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T10:25:11", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "Just 1 per cent of these disgusting robberies leads to anyone being punished.", + "media_hash": "4511fde3a3045fca77b23cd55a58c358f2f3f54f6833f5aa4d8e315c", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Thought police' are ordered to stop wasting time on online squabbles", + "publication_date": "2026-03-31T05:28:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691995/End-thought-police-Shake-non-crime-hate-incidents-crack-officers-sent-mediate-online-debates.html", + "media_type": "news_article", + "sentence": { + "text": "NCHIs were introduced in 2014 by the College of Policing, and saw a 400% increase in police recorded hate crimes in the decade from 2012, based on analysis of force figures.", + "media_hash": "c232c7b56fc02eeed23493c621a942abcf842810e66a6350f53aff11", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", + "media_type": "news_article", + "sentence": { + "text": "In its report, the Independent Scrutiny and Oversight Board (ISOB) said just six of the 44 forces covered by the PRAP have publicly acknowledged institutional racism.", + "media_hash": "c6dddf9cf5fdd5258b4664a643901d47c770caab04149bb188d143e0", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Independent Scrutiny and Oversight Board", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", + "publication_date": "2026-03-31T16:43:39", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", + "media_type": "news_article", + "sentence": { + "text": "With a further 240 RSOs either in custody or in hospital.", + "media_hash": "a8c3141845d3910c5f390e1b96dab0c9a0438b2ad4ec9ad060cd3e71", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + } + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Crime on London's public transport network has risen by almost 50 per cent since the pandemic - with 'unacceptable' levels of violence against women and girls, according to a devastating new report.", + "media_hash": "c94da3b934773c05da0aa39de797e540c387bc54b4397a5bc3840643", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40329, + "score": 0.45320000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "crime": 3.09725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scott Mills 'is not taking calls from his worried friends' after being sacked by the BBC", + "publication_date": "2026-03-31T19:39:19", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695421/Scott-Mills-not-taking-calls-worried-friends-sacked-BBC.html", + "media_type": "news_article", + "sentence": { + "text": "The disgraced BBC News presenter Huw was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", + "media_hash": "4dfc1a0e64936c3ebbc2d6ececa85b7ff6fd9425d5a42048658e4bfd", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.08627 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", + "publication_date": "2026-03-31T09:35:26", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", + "media_type": "news_article", + "sentence": { + "text": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", + "media_hash": "8df8f7514deae6dabc4843e658dc7e7b9d13b04070fc4e0b5210d6ad", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 3.03734 + }, + "demo": { + "race__ethinicy__religion": 3.1637750000000002 + }, + "aapfactcheck": { + "crisis": 2.61247 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Put cops on the streets, not on tweets, Tories demand", + "publication_date": "2026-03-31T20:47:18", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", + "media_type": "news_article", + "sentence": { + "text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", + "media_hash": "db80b90ea4e3d9d575b907a1dcfc3e8ab1040a8b3f8048639dc01b4f", + "sequence": 29, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.023415, + "crime": 3.023415 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.89698 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", + "publication_date": "2026-03-31T16:57:04", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", + "media_type": "news_article", + "sentence": { + "text": "The expert warned that if he were set free, his probability of committing another serious offence within two years could be between 30 and 50 per cent.", + "media_hash": "2c6d758ba6adf3c7394b19f45de6808c7c60da635f29d4011b21f178", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "psychological expert", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.983715 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", + "publication_date": "2026-03-31T23:04:00", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", + "media_type": "news_article", + "sentence": { + "text": "A modern day Fagin ran gangs of teenage robbers who stole more than \u00a3100,000 worth of mobile phones in two weeks, a court heard.", + "media_hash": "089bd8f33dcd02bba297e61d26fc8d43aec8e7fbf7d88ba4a3ba95a1", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", + "publication_date": "2026-03-31T11:04:00", + "publication": "skynews", + "url": "https://news.sky.com/story/glasgow-drugs-courier-who-dumped-nearly-1631m-of-cocaine-during-police-chase-ordered-to-repay-thousands-13526383", + "media_type": "news_article", + "sentence": { + "text": "COPFS said the street value of the cocaine was estimated to be between \u00a3719,040 and \u00a3898,000.", + "media_hash": "2acbc0aa6c9a7f7d980efc2b6730d2ca6929539c3d6e082b799c84a1", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Crown Office and Procurator Fiscal Service", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Of 562 investigations into alleged sex offences reported in 2025 involving CCTV evidence, 250 either had no CCTV available, or was of unusable quality.", + "media_hash": "2a57bd4e2291b654e1031f1da37c46dcaf8a948d25a9b550e83cabfe", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", + "publication_date": "2026-03-31T06:55:17", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", + "media_type": "news_article", + "sentence": { + "text": "Arrow MORE: Thieves steal \u00a38,000,000 worth of paintings in just three minutes", + "media_hash": "9190786dbedfc949d864f2e81f5f9da2b413306e37a3c22cbe3ed275", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "The cost of living crisis has made food and beverages an increasingly attractive target, with thefts rising as much as 79% in 2024 according to one report.", + "media_hash": "910f0fd2f25dba05147bfbca6d574dba50daf319c1227cc8b8e8e44e", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T00:17:49", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "Shockingly, out of 185,000 cases of forced entry where an investigation occurred last year, the police were unable to identify a suspect in 143,000 of them.", + "media_hash": "dea8bf885294b53226c14c1c55eb09005ad5c30a8a5822f71221e181", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "ANTHONY STANSFELD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "London TravelWatch estimates as many as 80 per cent of incidents go unreported.", + "media_hash": "fcba26a312af190fba6a00746ed08e03574a8f1bd11aedba23602b90", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London TravelWatch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death", + "publication_date": "2026-03-31T08:48:34", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "Three teenagers charged with murder of girl, 16, who was stabbed to death", + "media_hash": "4eecd11ea1f577fa15a8803d1e66a340b83da1bd3c1a04e8c1e394c9", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.965595 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 2.965595 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Toxic 'manosphere' linked to worrying rise in young people radicalised online, posing new extremist threat to 'ill-prepared' UK, MPs warn", + "publication_date": "2026-03-31T23:01:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694249/Toxic-manosphere-linked-worrying-rise-young-people-radicalised-online-posing-new-extremist-threat-ill-prepared-UK-MPs-warn.html", + "media_type": "news_article", + "sentence": { + "text": "Southport killer Axel Rudakubana, who murdered three schoolgirls at a dance class in Southport in 2024, is alleged to have launched his horror knife rampage out of an incel hatred of women.", + "media_hash": "e062b95fd828f69bdb41ca360a725bce97cd22b46f05e04986d46d4c", + "sequence": 25, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.965595 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.965595 + } + } + } +}, +{ + "title": "Tuesday court round-up \u2014 Perth attempted murder charge and drunken knifeman", + "publication_date": "2026-03-31T15:45:11", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/courts/5460247/tuesday-court-round-up-perth-attempted-murder/", + "media_type": "news_article", + "sentence": { + "text": "A Perth prisoner has been put on the sex offenders register after he was heard shouting rape threats at visiting children, aged between one and eight to one.", + "media_hash": "811d8ffb96c19c7464aa635f7e3a56ff212721d33521100130f2613a", + "sequence": 44, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Frank Wakefield", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.965595 + } + } + } +}, +{ + "title": "Prince Harry now wants UK return - but the Royal Family's answer is going to hurt", + "publication_date": "2026-03-31T04:26:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/royal/2188035/prince-harry-now-wants-uk", + "media_type": "news_article", + "sentence": { + "text": "So why does a Californian-based non-working royal, raking in \u00a375m from Netflix and \u00a320m from his book Spare, think a nation facing a cost-of-living crisis should fork out for his security detail, let alone police protection officers?", + "media_hash": "30b43218831a88171e5ad373724db28dea3458a13dc28fd179da0948", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.93986 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", + "publication_date": "2026-03-31T13:25:47", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", + "media_type": "news_article", + "sentence": { + "text": "'It is a terrible truth that violence, abuse, assault and in the worst cases, murder, can often come at the hands of a partner.", + "media_hash": "ca9f9379e2d6e6dd64926fd333042feddc547411d1f27c5ec675411e", + "sequence": 31, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Detective Sergeant Heather Kenwright", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.9264200000000002 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", + "publication_date": "2026-03-31T16:43:39", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", + "media_type": "news_article", + "sentence": { + "text": "\"We can never eliminate risk entirely, but sexual reoffending rates of RSOs remain very low.", + "media_hash": "850a687c90b563ace9293660cd121bc667b62ca7139b1d0242fae26e", + "sequence": 23, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.925415 + } + } + } +}, +{ + "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", + "publication_date": "2026-03-31T16:57:04", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", + "media_type": "news_article", + "sentence": { + "text": "Brueckner has repeatedly tested police officers' patience since being released from jail, including one incident when he is said to have briefly managed to escape them on a bicycle", + "media_hash": "f3a90a632f19d93c0ccaf643f17c8acd088335b59fc7245cb8f913a4", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.91647 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", + "publication_date": "2026-03-31T12:31:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", + "media_type": "news_article", + "sentence": { + "text": "Ashley Warren, 41, has been jailed for more than 10 years after owning one of two XL bully dogs that mauled 68-year-old Esther Martin to death at his home in Jaywick, Essex", + "media_hash": "f66e796d92efbaba4639e8f0c6163a18de77bd23fd4908f29a376cc5", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Suspect arrested in 30-year-old Donna Keogh murder mystery", + "publication_date": "2026-03-31T09:50:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188641/suspect-arrested-30yearold-donna-keogh", + "media_type": "news_article", + "sentence": { + "text": "A \u00a320,000 reward from Crimestoppers remains in place in connection with the murder of Donna.", + "media_hash": "fef7abbbc28bbf2705439083313101dc5bc5312f4ff032b6e843a8e9", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Crimestoppers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", + "publication_date": "2026-03-31T16:43:39", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", + "media_type": "news_article", + "sentence": { + "text": "It is also revealed that across the north-east, there are 469 registered sex offenders in the community.", + "media_hash": "69d87f34e2d5374360a93a3df7fbdfca33a72512d710ef9dced72b53", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.89907 + } + } + } +}, +{ + "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", + "publication_date": "2026-03-31T12:31:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", + "media_type": "news_article", + "sentence": { + "text": "The law makes it a criminal offence to own or possess an XL bully dog in England and Wales without a certificate of exemption.", + "media_hash": "0e71c89d151a8fa5d43601127ce3015dbf9981effcd9616b50834856", + "sequence": 7, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.8912199999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", + "publication_date": "2026-03-31T09:01:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", + "media_type": "news_article", + "sentence": { + "text": "Steven Lyons is escorted by police officers at the Bali police headquarters", + "media_hash": "a695bb5ede66a818b4fb4332689fcd2c65520e5aadd87bc45c23c8f2", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.885515 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Dog breeder guilty after XL bully 'savages' pensioner before being shot ten times", + "publication_date": "2026-03-31T15:26:18", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/dog-breeder-guilty-after-xl-36950463", + "media_type": "news_article", + "sentence": { + "text": "But the first police officers, who were unarmed, could not get to Mr McColl.", + "media_hash": "b2511700280e14e31a43ccb54a628d0cbb28904fb8742c89ac8b9672", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "David Birrell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.885515 + } + } + } +}, +{ + "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", + "publication_date": "2026-03-31T12:31:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", + "media_type": "news_article", + "sentence": { + "text": "An aspiring rapper has been jailed for more than 10 years after he was found guilty of owning an XL bully dog that mauled a pensioner to death.", + "media_hash": "7ff2e2d13448364d0e09f9b4af374f98b807a7717f90413065743ce4", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.87995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", + "media_hash": "12ebeb8b8006ad21fa2b481f3fc934b00020ee1734ac320d945462d7", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Police Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.862985, + "crime": 2.862985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Delay for teen accused of businessman's fatal stabbing", + "publication_date": "2026-03-31T05:10:40", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693251/Delay-teen-accused-businessmans-fatal-stabbing.html", + "media_type": "news_article", + "sentence": { + "text": "He is the first juvenile to be charged with murder after the passage of Queensland's controversial \"adult crime, adult time\" laws, mandating he will face a life sentence if found guilty.", + "media_hash": "53ce11eefd45879735cd0c4bd4d0b2146613931c706a7716c214bd8a", + "sequence": 5, + "claim_type": [ + "quantity", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.8512649999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "measles": 0.0 + } + } + } +}, +{ + "title": "Search on for \u2018abducted\u2019 girl, 14, after man and woman arrested", + "publication_date": "2026-03-31T12:56:42", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/search-abducted-girl-14-man-woman-arrested-27784953/", + "media_type": "news_article", + "sentence": { + "text": "Arrow MORE: Rapper whose XL bully mauled gran to death is sentenced to 10 years in prison", + "media_hash": "450611e7b173020e9cce807386bb7cff6a9badfc5cb259440f536a69", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Jeremy Vine says Scott Mills\u2019 sacking from BBC Radio 2 was \u2018unfair\u2019", + "publication_date": "2026-03-31T14:17:36", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/jeremy-vine-says-scott-mills-sacking-bbc-radio-2-unfair-27784612/", + "media_type": "news_article", + "sentence": { + "text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children two years ago.", + "media_hash": "c1d839bb9bf488b5a2b7dcec596d8ba9342f6e04a785b2ac3b9e45a3", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.8334 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", + "publication_date": "2026-03-31T15:44:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", + "media_type": "news_article", + "sentence": { + "text": "A Metropolitan Police detective has been sacked after using sex workers and class A drugs while on trips aboard over a seven-year period.", + "media_hash": "cd26c2a4cf90229a6ea678d4ab98fbd2ca934abe25af16e89d1aca25", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.8334 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Former Inverness youth worker jailed over indecent images of children", + "publication_date": "2026-03-31T16:32:06", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6987559/former-inverness-youth-worker-jailed-over-indecent-images-of-children/", + "media_type": "news_article", + "sentence": { + "text": "A former Merkinch youth worker caught with indecent images of children has been jailed for 14 months.", + "media_hash": "8810df3fb273e53d962434f81b9bc174827c785a5a1067dc69d9fb96", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.8334 + } + } + } +}, +{ + "title": "Spring Break trend 'turns cities into The Purge' as stampedes and fights overwhelm police", + "publication_date": "2026-03-31T11:40:57", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/us-news/spring-break-trend-turns-cities-36947147", + "media_type": "news_article", + "sentence": { + "text": "He warns they can often grow into \"altercations that turn into gunplay with potential fatalities\".", + "media_hash": "4fdd95a2adc70ce4aa6ea660a768753c322c272a4ded2ef1cda0c753", + "sequence": 28, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Chesterfield County Police Department", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.805745 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "'The biggest development in child abuse happens on encrypted web sites, social media and apps, where the police are hopeless at investigating.", + "media_hash": "ec518428b83cf0f2bd2ddfdf2192cc6e30f0c8e0044444fbb34d653a", + "sequence": 63, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Marcus Johnstone", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 2.78525, + "leo_s_topic": 2.78525, + "crime": 2.78525 + }, + "demo": { + "race__ethinicy__religion": 2.78525 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man caught with knife in jacket he claimed belonged to a friend", + "publication_date": "2026-03-31T15:32:08", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25985328.man-jailed-knife-found-jacket-claimed-belonged-friend/", + "media_type": "news_article", + "sentence": { + "text": "Two women feared for their life after thug put knife to their faces during Glasgow attack", + "media_hash": "f29fd61fc76026c482c75c956a9bec2c8ad2b700b6bd8b7037e72459", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.7736400000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", + "publication_date": "2026-03-31T23:04:00", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", + "media_type": "news_article", + "sentence": { + "text": "In just one raid on the Three store in Woolwich, southeast London, the gang snatched \u00a330,000 worth of goods.", + "media_hash": "c8eafe551f64a65088a78d5aa9f19139f21f6d2e48575aaaa00b0fea", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.772635 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", + "media_hash": "375bb9c9d8fab907da770ab5766606d9a0e967b87984eb206f698170", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.748535, + "crime": 2.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "About 80% of trucks on the road, estimate the RHA, are from firms with six trucks or fewer.", + "media_hash": "965a7ef8c88ca5fecc4321703731f57d59d1850afb0ec91a7c51088a", + "sequence": 265, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Road Haulage Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "By most estimates, there are twice as many trucks on UK roads than there are places for them to pull up.", + "media_hash": "2ab7f81a77f8ca43ae8a018b38bd6f3ac324824ec758e57b05610334", + "sequence": 145, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Extra MSA", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Moment aspiring drill rapper tells police 'poodles are more aggressive' days before his XL Bullies mauled grandmother to death", + "publication_date": "2026-03-31T15:41:27", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694663/Aspiring-rapper-left-pensioner-charge-XL-Bullies-mauled-death-jailed-10-years.html", + "media_type": "news_article", + "sentence": { + "text": "Footage shows the moment Ashley Warren (left) told police poodles are 'more aggressive' than XL Bullies days before his dogs mauled a grandmother to death", + "media_hash": "a02bb509dce1616cf9c72782e7b46c6153a1cdc8c96340b27540cfcb", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.72471 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC confirms it knew about Scott Mills allegations almost a year ago - as it is claimed Radio 2 star 'was accused of sex offences against boy under 16'", + "publication_date": "2026-03-31T18:51:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695709/BBC-Scott-Mills-allegations-Radio-2-sex-offences.html", + "media_type": "news_article", + "sentence": { + "text": "The teenage boy who accused Mills of serious sexual offences in the 1990s was under 16, it was claimed today.", + "media_hash": "2afc39af82d35e70ed25136b57a0754bbad6a241affb5b42a5afaf5a", + "sequence": 25, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man, 36, is charged with nine offences after seven people were injured when a car ploughed into crowds in Derby city centre", + "publication_date": "2026-03-31T23:45:06", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15696263/Man-36-charged-nine-offences-seven-people-injured-car-ploughed-crowds-Derby.html", + "media_type": "news_article", + "sentence": { + "text": "Seven people suffered serious injuries when a Suzuki Swift mounted a pavement and mowed down pedestrians at 9.30pm in Friar Gate on Saturday 28 March", + "media_hash": "4e1f88afc2634ae1c67b1c9ab715d2b0c3a28459a2495e62a123b358", + "sequence": 12, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Jeremy Vine calls Radio 2 colleague Scott Mills' sacking 'unfair' because 'there's been no crime' after police probe was dropped - as he questions why DJ didn't get same mental health considerations as Huw Edwards", + "publication_date": "2026-03-31T12:59:15", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15694393/Scott-Mills-Radio-2-colleague-Jeremy-Vine-forced-address-sacking-live-air-says-lot-people-confused-revealed-sexual-offence-accuser-16.html", + "media_type": "news_article", + "sentence": { + "text": "The disgraced BBC News presenter was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children.", + "media_hash": "eb94ed81f77ece96e791ee34c5667bf3d7a9e79804ff6392235e738f", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Teenage killer is caught out after his 'thoughtless act' at crime scene", + "publication_date": "2026-03-31T00:36:55", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/teenage-killer-caught-out-after-36946380", + "media_type": "news_article", + "sentence": { + "text": "\"The wound quickly proved fatal and he bled to death on the driveway of the house where he had collapsed. For four of the five men in the BMW those thoughtlessly discarded cigarette butts were to prove their undoing. Each had left traces of DNA on one of more of the cigarette butts.\"", + "media_hash": "af5039cfcdf3c7eaf3dac2e727c2ead234851c1ef70b1c0fde436a9e", + "sequence": 15, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Crispin Aylett, KC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", + "publication_date": "2026-03-31T16:48:39", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", + "media_type": "news_article", + "sentence": { + "text": "PC David Wren, 57, who had been investigating 13 incidents of domestic violence inflicted on the woman ended up exchanging hundreds of personal messages with her.", + "media_hash": "d4fea9694339df35b97b7e93220d31c315ea31f1beb2c88020b5f253", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + }, + "demo": {}, + "aapfactcheck": { + "women": 2.965595 + }, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tuesday court round-up \u2014 Perth attempted murder charge and drunken knifeman", + "publication_date": "2026-03-31T15:45:11", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/courts/5460247/tuesday-court-round-up-perth-attempted-murder/", + "media_type": "news_article", + "sentence": { + "text": "A Perth jewellery maker bit his wife's face in a drunken attack, forcing her to spend \u00a3400 on reparative skin treatment to remove his teeth marks.", + "media_hash": "519237e2ed1eb722adb4222dae773ecd6cedd2836e5c6e3690dc019e", + "sequence": 40, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Sacheera Acharige", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.712725 + } + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "The chains can be five or six deep, the profit margins getting smaller each time.", + "media_hash": "a0b797eb2fc25cdecee569bbe63f62a5965faebfbd116c83824ef599", + "sequence": 262, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "About a quarter of all the theft Dawber sees comes from curtain-slashing.", + "media_hash": "bca04396c0afda0a183fbda2ea74e140b160acebe3894826bf640d8f", + "sequence": 74, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Insurance premiums rise with every claim.", + "media_hash": "2a559fb7067c141a436519488fee3764a4d1c16c780de4ec7a4226c1", + "sequence": 51, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.6831300000000002 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "A drug dealer fled police in his underwear while his accomplice flooded a bathroom in a bid to flush \u00a310,000 worth of heroin down a toilet.", + "media_hash": "6e70378c058f83e4a84629016dd2f2b455d6009bc591ba178a123035", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.68177 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shoot her': Woman recalls terrifying moment masked men threatened her life during home invasion in Brisbane", + "publication_date": "2026-03-31T01:16:42", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692845/home-invasion-brisbane-rochedale-south.html", + "media_type": "news_article", + "sentence": { + "text": "A woman was held at knife point when four armed men ransacked her Brisbane home, breaking her finger while attempting to call the cops", + "media_hash": "265cf0e52185a5ee090ed3fbed7fd98166a4d9f97729d3f5d9ff9afd", + "sequence": 12, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.68177 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "On the anniversary of Valerie Forde\u2019s death, we must deliver the change Black women need", + "publication_date": "2026-03-31T10:31:00", + "publication": "politicshome-house", + "url": "https://www.politicshome.com/opinion/article/anniversary-valerie-fordes-death-deliver-change-black-women-need", + "media_type": "news_article", + "sentence": { + "text": "If we are serious about ending violence against women and girls, the system has to work for those who currently trust it least.", + "media_hash": "1494b9ee3e08582da86fa5034aba8489b62cb6da296eb6d0f6554006", + "sequence": 41, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Abena Oppong-Asare", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.671075 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T00:17:49", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "We are sliding towards becoming a society in which we suffer some of the worst aspects of a police state - above all, an insidious and dangerous erosion of our freedom of speech - with none of the more tolerable aspects of authoritarianism, specifically its stern punishment of petty offenders.", + "media_hash": "008da20bcd7eb632963d31fd4f8b5a62da9e02cfe5b553d71d503021", + "sequence": 41, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "ANTHONY STANSFELD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.664635 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "He quietly watched his victim before walking up to his home and stabbing him", + "publication_date": "2026-03-31T11:15:06", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/quietly-watched-victim-before-walking-33690193", + "media_type": "news_article", + "sentence": { + "text": "He quietly watched his victim before walking up to his home and stabbing him", + "media_hash": "e69bf940e7e6b14913b014730846d1978be7f798cd7665de7193b01c", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + } + } + } +}, +{ + "title": "Madeleine McCann suspect \u2018chased out of town\u2019 as locals launch furious protest", + "publication_date": "2026-03-31T09:29:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188599/madeleine-mccann-suspect-chased-out-of-town", + "media_type": "news_article", + "sentence": { + "text": "In addition to raping the woman, who has since died, Brueckner has convictions for child abuse and drug trafficking.", + "media_hash": "b593d1d56a53dd53de8f6da3e9d9e8fe09e95c75be97a4af3044e226", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "`Crude but viable\u00b4 explosive device deployed in attack...", + "publication_date": "2026-03-31T13:39:29", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694929/Crude-viable-explosive-device-deployed-attack-Lurgan-police-station.html", + "media_type": "news_article", + "sentence": { + "text": "Those responsible for the hijacking of a delivery driver and the attack on the PSNI station in Lurgan have nothing to offer our communities but harm, fear, and disruption.", + "media_hash": "835025b2923745542a39e1e7c43efca282fc6b82899624f8b9af55ca", + "sequence": 6, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Police Service of Northern Ireland (PSNI)", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Teenager stabbed at McDonald's as boy, 15, arrested", + "publication_date": "2026-03-31T19:52:59", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/teenager-stabbed-mcdonalds-boy-15-33694224", + "media_type": "news_article", + "sentence": { + "text": "\"A teenage boy was taken to hospital with a stab wound to his lower back.", + "media_hash": "cdddcdcb0b3263286e1539e407185519d968d580a080db198e973c2d", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Staffordshire Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + } + } + } +}, +{ + "title": "Delivery driver threatened at gunpoint in attack on police station", + "publication_date": "2026-03-31T11:51:32", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", + "media_type": "news_article", + "sentence": { + "text": "Delivery driver threatened at gunpoint in attack on police station", + "media_hash": "bafd12caf24981503fef349e1e0bdcb4156fdda4cac670149640e4d9", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", + "publication_date": "2026-03-31T09:03:09", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died on Saturday morning after suffering stab wounds", + "media_hash": "3f3a5db15722ea794ab23135b578f24e22e1854b0fd7b5712c8c9c09", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", + "publication_date": "2026-03-31T05:32:45", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692673/Family-girl-16-stabbed-death-row-boy-pay-tribute-world-Murder-police-arrest-fifth-teen.html", + "media_type": "news_article", + "sentence": { + "text": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", + "media_hash": "d4bb83a6cc0d160661b8c7cfef70c96dbcadd706a35c56565f9df3e3", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.62201 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "media_hash": "41e4ef1c41f17c6f276e2ccb87380b7382dc7e2f3f6b89548ddb350a", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Baroness Anne Longfield", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 2.652965, + "leo_s_topic": 2.652965, + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Teenager stabbed inside Birmingham McDonald's boy, 15, arrested", + "publication_date": "2026-03-31T19:12:29", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/teenager-stabbed-inside-birmingham-mcdonalds-36951524", + "media_type": "news_article", + "sentence": { + "text": "Just before 8.30pm yesterday, were called to a report of a stabbing inside McDonald's on Elmhurst Drive.", + "media_hash": "4b166a5af01f4a0df34f489d3a118e4c5dfa3ac674020a480e75463e", + "sequence": 15, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scott Mills' former BBC Radio colleague bluntly asked 'did you hear rumours?' - after it emerges that police probed the DJ for 'serious sex offences against teenage boy' in 2016", + "publication_date": "2026-03-31T12:56:00", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tv/article-15694123/Scott-Mills-former-BBC-Radio-colleague-bluntly-asked-did-you-hear-rumours-emerges-police-probed-DJ-sex-offences-against-teenage-boy-2016.html", + "media_type": "news_article", + "sentence": { + "text": "The investigation related to allegations of serious sexual offences against a teenage boy.", + "media_hash": "673b8b616ee8796cada44fcc4524ef1381b078564bdc4f69dd1048aa", + "sequence": 34, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", + "publication_date": "2026-03-31T10:13:51", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", + "media_type": "news_article", + "sentence": { + "text": "Double cop-killer Freeman was shot dead by an elite specialist police crew after he was tracked down to his rural lair, before firing on cops with a gun he stole from one of his victims.", + "media_hash": "1cc8e0eade4e84c3daff06499443860ae68589b220fddb1f953828e7", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teenagers charged with murdering 16-year-old girl", + "publication_date": "2026-03-31T09:09:21", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694025/Three-teenagers-charged-murdering-16-year-old-girl.html", + "media_type": "news_article", + "sentence": { + "text": "Three teenagers charged with murdering 16-year-old girl", + "media_hash": "4e43f87dd39f1b716a113c51cd169f74bf749e4fc1071a5858abaccd", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shoot her': Woman recalls terrifying moment masked men threatened her life during home invasion in Brisbane", + "publication_date": "2026-03-31T03:35:02", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692845/home-invasion-brisbane-rochedale-south.html", + "media_type": "news_article", + "sentence": { + "text": "'Shoot her, shoot her,' another man urged.", + "media_hash": "e57b52cbdac0165f123ad5e6249c0e007304f94ef1b27f13db554f41", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T11:11:44+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/TheSun/status/2038937281260585139", + "media_type": "social_post", + "sentence": { + "text": "Teen among three people charged with murder of girl found 'stabbed in back' https://t.co/9jUMuBDXYs", + "media_hash": "e0336b5fb65eb3e1258e7b3196304c0d6b6d79e3703df2954a8986fb", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Teen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + } + } + } +}, +{ + "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", + "publication_date": "2026-03-31T09:03:09", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died at the weekend after suffering stab wounds 'in her back' following an alleged 'row over a boy'.", + "media_hash": "45bbbc6e1baea1d5c7fcef2ce474095dd101fa493d50ccaab5fb00bb", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", + "publication_date": "2026-03-31T09:03:09", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "She had been stabbed in the back and there was quite a bit of blood.", + "media_hash": "560cede5349951e47ec2d491a396950a862cd09cead1568a363ef4fa", + "sequence": 85, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Wayne Mallows", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sides make closing arguments in the trial over the 2024...", + "publication_date": "2026-03-31T21:27:43", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696247/Sides-make-closing-arguments-trial-2024-killing-New-York-City-police-officer.html", + "media_type": "news_article", + "sentence": { + "text": "The 36-year-old also faces other charges, including attempted murder.", + "media_hash": "a7a4f0abd27fc3df3b114a75d051e3acdf4924464225c9c0489486b2", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pervert caused innocent woman to be arrested in sick shower clips probe", + "publication_date": "2026-03-31T15:56:11", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25985500.glasgow-pervert-appears-court-sick-shower-clips/", + "media_type": "news_article", + "sentence": { + "text": "Mould - posing as the woman, but using a fake name for her - went on to send the sick clips to a fellow paedophile, who was later snared with the videos.", + "media_hash": "e16e6391d35d96c21667f428e10216d9bee8acbb939526fc1a1dfe44", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Timeline of Scott Mills' career and police probe after BBC sack Radio 2 star", + "publication_date": "2026-03-31T13:06:02", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/entertainment/celebrity/timeline-scott-mills-career-police-36948752", + "media_type": "news_article", + "sentence": { + "text": "It is understood that Mills' departure relates to a historic police investigation into alleged \"serious sexual offences\" against a teenage boy.", + "media_hash": "34cd8a48302908862e647a3927000525bc52944852bb33abf4672657", + "sequence": 7, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + } + } + } +}, +{ + "title": "He quietly watched his victim before walking up to his home and stabbing him", + "publication_date": "2026-03-31T11:15:06", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/quietly-watched-victim-before-walking-33690193", + "media_type": "news_article", + "sentence": { + "text": "He brandished a kitchen knife and swung at the victim, and caused a piercing wound to his chest.", + "media_hash": "9af7d59b59198eac403dd3a6a04e414e00be51523221a8a112d76289", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Walter Kanhukamwe", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + } + } + } +}, +{ + "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", + "publication_date": "2026-03-31T08:45:06", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", + "media_type": "news_article", + "sentence": { + "text": "Cop killer Dezi Freeman was shot dead by an elite specialist police crew on Monday", + "media_hash": "94932e8b0ee5dc79c3e90c7be0c5f857da66ac558b4b0ec4f1e071e4", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", + "publication_date": "2026-03-31T08:45:06", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", + "media_type": "news_article", + "sentence": { + "text": "The hour-long standoff ended in bloody chaos after Freeman shot two officers dead as they attempted to pry open his door.", + "media_hash": "6db82fb8be6c63e411b1d75591be3b38be1fa35e31b99421e0c44ec4", + "sequence": 20, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Revealed: The truth about the remote compound where Dezi Freeman made his last stand in a shootout with cops", + "publication_date": "2026-03-31T05:00:04", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693293/dezi-freeman-farmer-denies-harbouring-victoria.html", + "media_type": "news_article", + "sentence": { + "text": "Sen Const Vadim De Waart-Hottart and Det Leading Sen Const Neal Thompson were murdered by Freeman", + "media_hash": "caf87e53238e8db4969eef4ba32a5ba48c955ddd7dd25b0e58dd6a5a", + "sequence": 48, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New police taskforce to investigate Epstein's alleged UK sex ring", + "publication_date": "2026-03-31T16:59:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694299/New-police-taskforce-investigate-UK-exploitation-sexual-abuse-linked-Jeffrey-Epstein.html", + "media_type": "news_article", + "sentence": { + "text": "Detectives poring over the welter of material released by the US Department of Justice have set up a Gold Group of specialists to look into allegations of sexual offending, including abuse, exploitation and trafficking carried out in the UK.", + "media_hash": "e6b20c13fd7129ff7abf99e83019796f2bab18d078b3e135159b2187", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New police taskforce to investigate Epstein's alleged UK sex ring", + "publication_date": "2026-03-31T16:59:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694299/New-police-taskforce-investigate-UK-exploitation-sexual-abuse-linked-Jeffrey-Epstein.html", + "media_type": "news_article", + "sentence": { + "text": "He died in prison in 2019 after being found hanged in his cell while awaiting trial for child trafficking offences.", + "media_hash": "4edeaa7c5056435815ff886d70950a4ad29957c42b685d7ff664457f", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", + "publication_date": "2026-03-31T14:54:34", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", + "media_type": "news_article", + "sentence": { + "text": "The device, which was placed in the boot of the car, has been described as \"about the size of a briefcase\" and was said to have \"carried a huge amount of danger\", putting both the driver of the car and those in the station at risk.", + "media_hash": "b0f2474b7d851eef410ebc3e5838ea6f07438f5bfbaf26aff7f8c4fe", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", + "publication_date": "2026-03-31T14:54:34", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", + "media_type": "news_article", + "sentence": { + "text": "The assessed threat level for dissident republican attacks in Northern Ireland remains substantial.", + "media_hash": "10303f5d07658cf589ea4451257404982a8f78a4eb587f0617108d7f", + "sequence": 15, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "PSNI", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Girl, 8, kept uncle's sperm in order to prove she was raped after family dismissed her", + "publication_date": "2026-03-31T19:05:16", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/crime/girl-8-kept-uncles-sperm-36951490", + "media_type": "news_article", + "sentence": { + "text": "After her uncle forced her into oral sex, she collected his biological material and presented it to other family members, who subsequently reported the crimes to the police.", + "media_hash": "33f313cba0bf34c70324b9f35589f5f049f97990455b146f89f40fa7", + "sequence": 9, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Respectful' BBC drama on murder of Sarah Everard to air", + "publication_date": "2026-03-31T15:55:37", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cql72rqr73ko", + "media_type": "news_article", + "sentence": { + "text": "Everard was abducted, raped and killed by serving Metropolitan Police officer Wayne Couzens in south London on 3 March 2021.", + "media_hash": "ad4c2b754171d9093b451ce2bb9d0e2a1f7ff1a272d0db0f0ba3e334", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "dev": { + "blah": 2.62201 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", + "publication_date": "2026-03-31T06:50:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", + "media_type": "news_article", + "sentence": { + "text": "She was hit on the head and face, strangled then stabbed in the neck.", + "media_hash": "ff841f544cb2ddaf70a8d47d94fa27af92b99669234580225abcd31d", + "sequence": 96, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Stanley Wilson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peggie Wilson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "It's rare for drivers to be assaulted, though people within the industry told me stories of drivers being threatened with knives, machetes, baseball bats and, on one occasion, a gun.", + "media_hash": "74f751dc4adef21b082a52993c2873135532833690f99a51bb0f5b7e", + "sequence": 196, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Delivery driver forced at gunpoint to take object to...", + "publication_date": "2026-03-31T11:49:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694011/Delivery-driver-forced-gunpoint-object-police-station.html", + "media_type": "news_article", + "sentence": { + "text": "I utterly condemn the reckless act of violence overnight in Lurgan directed at the police, which forced dozens of families from their homes and put people's lives at risk.", + "media_hash": "6344b9944f7f2a9cd887f3edea6cfcdbde28a23e7855881aca0b5e24", + "sequence": 10, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Hilary Benn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Teenage killer is caught out after his 'thoughtless act' at crime scene", + "publication_date": "2026-03-31T00:36:55", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/teenage-killer-caught-out-after-36946380", + "media_type": "news_article", + "sentence": { + "text": "Police say pregnant mum, 18, shot dead by 29-year-old boyfriend in Philadelphia", + "media_hash": "a53f1239573b8d0bc65b5f875e8a05e42159d26d9a3676ee4f909d25", + "sequence": 13, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", + "publication_date": "2026-03-31T13:25:47", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", + "media_type": "news_article", + "sentence": { + "text": "This is the moment a man who smothered his ex to death with blue tape the day after they broke up confessed to police 'I've killed my girlfriend' on the side of a motorway.", + "media_hash": "b33c31c8ddb93359cc386628164e243202a52ed8b2d7f5cb39f29dc5", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", + "publication_date": "2026-03-31T06:55:17", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", + "media_type": "news_article", + "sentence": { + "text": "Neighbour Wayne Mallows described how he tried to save the girl but she had been stabbed in the back.", + "media_hash": "407e65976f5dd4365607567593f66b9eb7865dee00a547d7d8b9879b", + "sequence": 29, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "Baroness Anne Longfield, a former children's commissioner for England, who is chairing the inquiry, said: 'Children across England and Wales were and are sexually abused and exploited.", + "media_hash": "05a1d1409b4568876d59dc75732e40d8060baf0a29eb3e1e49af81ad", + "sequence": 15, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Baroness Anne Longfield", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 2.62201, + "leo_s_topic": 2.62201, + "crime": 2.62201 + }, + "demo": { + "race__ethinicy__religion": 2.7747900000000003 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The young faces of Chloe Watson Dransfield stabbing accused as they're pictured for first time", + "publication_date": "2026-03-31T16:07:36", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/faces-chloe-watson-dransfield-stabbing-36950853", + "media_type": "news_article", + "sentence": { + "text": "Chloe Watson was attacked after a party in Austhorpe, Leeds, at 5.55am on Saturday before being rushed to hospital where she was sadly pronounced dead.", + "media_hash": "a2e4a9f45bb8cb292377eebb980b18d6656d9ee1c323d5a40805bbc5", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + } + } + } +}, +{ + "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", + "publication_date": "2026-03-31T14:29:44", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", + "media_type": "news_article", + "sentence": { + "text": "Footage showed the stolen Hyundai sedan making a right-hand turn from the wrong lane and female occupants appearing to yell 'f*** Jews' at the group of Jewish men.", + "media_hash": "ee2585fcb3e38e94d65284b8a71ef333d48ae9e7584c91dc641a1a14", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": { + "race__ethinicy__religion": 2.62201 + }, + "aapfactcheck": { + "crisis": 4.6220099999999995 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", + "publication_date": "2026-03-31T23:01:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", + "media_type": "news_article", + "sentence": { + "text": "The report into the racist murder of the 18-year-old in 1993 found the Metropolitan Police had been incompetent and was institutionally racist.", + "media_hash": "cdc0f3fb7a3de62250e008d1625ee43bbc3cf855fb076999eaf1addb", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", + "publication_date": "2026-03-31T13:25:47", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", + "media_type": "news_article", + "sentence": { + "text": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", + "media_hash": "6911c4c90175ea9b2d25d52de078ab5789ee9c54ba111a19d7761d65", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Leeds teen 'stabbed over boy' sent desperate last message to friend as 3 charged", + "publication_date": "2026-03-31T08:19:39", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/leeds-teen-stabbed-over-boy-36946974", + "media_type": "news_article", + "sentence": { + "text": "A teenage girl \"stabbed in the back over a boy\" reportedly messaged a friend asking to be picked up from an \"out of hand\" house party moments before.", + "media_hash": "0b7e5fd9234d26d0004df24e90fcd52b7ee2c0f276e34ff9c7a8abc0", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Chloe Watson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "The Met police has said the former BBC Radio 2 presenter Scott Mills was investigated in 2016 in relation to allegations of his stanoic serious sexual offenses against a teenage boy.", + "media_hash": "43dea9eb2521fe7c308ff7b4d5de4b49f341f2de479b9f30e2961695", + "sequence": 811, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + } + } + } +}, +{ + "title": "The young faces of Chloe Watson Dransfield stabbing accused as they're pictured for first time", + "publication_date": "2026-03-31T16:07:36", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/faces-chloe-watson-dransfield-stabbing-36950853", + "media_type": "news_article", + "sentence": { + "text": "A teenage girl and boy accused of stabbing a 16-year-old girl to death have been pictured for the first time.", + "media_hash": "67663cdd0ed434a16ebfe3704856e1b5b5a5ea9181eca83432110c98", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + } + } + } +}, +{ + "title": "Delivery driver held at gunpoint and forced to take suspicious object to police station", + "publication_date": "2026-03-31T08:58:48", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/delivery-driver-held-gunpoint-forced-36947265", + "media_type": "news_article", + "sentence": { + "text": "Delivery driver held at gunpoint and forced to take suspicious object to police station", + "media_hash": "35312153a2ab81779a8e3a654d3ba4b1d1efc5d26f4a0d13901c7770", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", + "publication_date": "2026-03-31T23:38:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", + "media_type": "news_article", + "sentence": { + "text": "And the father of another Rotherham grooming gang victim said police and officials who turned a blind eye or covered up the abuse of girls by Asian gangs should be jailed and forfeit their pensions.", + "media_hash": "e7154c70200c292578a8e93beed41415b15ea8f0bc5282ec6489472b", + "sequence": 47, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Father of another Rotherham grooming gang victim", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 2.62201, + "leo_s_topic": 2.62201, + "crime": 2.62201 + }, + "demo": { + "race__ethinicy__religion": 2.62201 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "A striking thing about the cargo crime crisis is that the firms most affected are doing little to alleviate it.", + "media_hash": "214c6546986f4c70eef754bf0b44280d11d0dd0cb8acad1f229c2696", + "sequence": 284, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.6127849999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", + "media_hash": "fe5392c18430df8ead347a4a1f48e2f535a42890e1974abebee7a12a", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.61247, + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "A fifth arrest has been made after a 16-year-old girl died after being stabbed in Leeds.", + "media_hash": "3b55ab72bbc1ecdb888885f2ce0be7aebe1886b010e1d767f0246930", + "sequence": 117, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + } + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "This is where truck parking is most oversubscribed and where regional crime gangs in Leeds, Liverpool and Birmingham overlap.", + "media_hash": "78148c8cb91ccf40dfb1b0998d45be7b26655ab88565e9fd5a275f69", + "sequence": 218, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", + "publication_date": "2026-03-31T11:34:58", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", + "media_type": "news_article", + "sentence": { + "text": "Paterson dumped nine kilos of the class A drug concealed in a black box beside a housing estate near Hogganfield Loch in the city's East End.", + "media_hash": "fab45234e557e0a7c22045bf647d91f0600b5d8fbcfb1d7d53dabf69", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "William Paterson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "Following Wheeler-Spink's arrest, officers discovered two lock knives, a dagger and a knife in a sheath alongside almost \u00a312,000 worth of cocaine and cannabis.", + "media_hash": "d507ec94b94158febc2c615d009c7bbe8ffa0b67284048bc68f3ea27", + "sequence": 25, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Lurgan police station targeted in 'serious' security alert as town on lockdown", + "publication_date": "2026-03-31T07:15:50", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-lurgan-police-station-targeted-36946680", + "media_type": "news_article", + "sentence": { + "text": "She added about 100 homes have been evacuated as a result of the incident and that a controlled explosion has taken place.", + "media_hash": "20bcd06d27c7f18c152315fde0a2e38127260be5a2489ca451ea6264", + "sequence": 7, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Carla Lockhart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", + "publication_date": "2026-03-31T16:48:39", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", + "media_type": "news_article", + "sentence": { + "text": "But Judge Talbot-Hedley said there was 'a clear power imbalance' in their relationship with him being a police officer and her being a victim of domestic violence involving 16 cases of abuse in 2021.", + "media_hash": "eb53249e711c4e63757d5e4c8a04610679393ab6de5e84d2c1557c8e", + "sequence": 39, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Judge Nicola Talbot-Hadley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "aapfactcheck": { + "women": 2.61247 + }, + "pa-media": {}, + "maldita": { + "crime": 2.61247 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teens and man charged after 'armed gangs clash' at Edinburgh Asda car park", + "publication_date": "2026-03-31T16:41:41", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/three-teens-man-charged-after-36950874", + "media_type": "news_article", + "sentence": { + "text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", + "media_hash": "8396cc78831f783b6122529d651a82b24dfec458229190f68d8ad67c", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.61247, + "crime": 2.61247 + } + } + } +}, +{ + "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", + "publication_date": "2026-03-31T23:04:00", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", + "media_type": "news_article", + "sentence": { + "text": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", + "media_hash": "859e8e38061a7f115a310c9d6fc683f3610835c1be3559ea6dc10293", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", + "publication_date": "2026-03-31T11:34:58", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", + "media_type": "news_article", + "sentence": { + "text": "At a previous hearing, the court heard how Paterson had thrown a box of cocaine worth hundreds of thousands of pounds from a car window into the street during a police pursuit in March 2023.", + "media_hash": "5e2531383ccd44288ad33f9f9d0aeff633a9b199f4a9ce6fdbbaf37d", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "William Paterson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "Another of McGowan's phones was confiscated which held a video displaying what seemed to be 11kg blocks of cocaine and heroin.", + "media_hash": "e3ec0b1d640d0f65334340bbf77d2caea41f4dd50f057e1f896d1640", + "sequence": 20, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", + "publication_date": "2026-03-31T06:55:17", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", + "media_type": "news_article", + "sentence": { + "text": "A fifth teenager, a 17-year-old boy, was arrested on suspicion of murder on Monday after four others were held over the weekend.", + "media_hash": "878da2067226cd1d5b50928cc3bbb97bfb81547b532f5e9124066027", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "He preyed on a young colleague for months yet his anonymity is protected by police", + "publication_date": "2026-03-31T15:25:54", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/preyed-young-colleague-months-yet-33692494", + "media_type": "news_article", + "sentence": { + "text": "During the one-and-a-half day hearing the panel heard that the senior officer sent sexually inappropriate messages to his younger, more junior, colleague whilst on and off duty, over several months.", + "media_hash": "cc578a6bcbb950441b7e4032e80341d508a537ff168a5846c4a5888a", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Officer Y", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.598275 + } + } + } +}, +{ + "title": "He preyed on a young colleague for months yet his anonymity is protected by police", + "publication_date": "2026-03-31T15:25:54", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/preyed-young-colleague-months-yet-33692494", + "media_type": "news_article", + "sentence": { + "text": "A senior South Wales Police officer who \"should have been a role model\" preyed on a younger, more junior colleague for months with \"malign intent for sexual gratification\".", + "media_hash": "a30061c71bbc94d757c848879d9f31fceaeb85ea969e9b0ca0a32dcb", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.598275 + } + } + } +}, +{ + "title": "Girl, 8, kept uncle's sperm in order to prove she was raped after family dismissed her", + "publication_date": "2026-03-31T19:05:16", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/crime/girl-8-kept-uncles-sperm-36951490", + "media_type": "news_article", + "sentence": { + "text": "Given the seriousness of the allegations and the risk of the suspect fleeing, the DPCA requested preventive detention, along with additional measures including a search of his property and access to his digital data.", + "media_hash": "c3299aaa6d442ecb556f64b47cd25dda4039e837667e4e1fe9b38131", + "sequence": 15, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.58644 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 2024 killing of an NYPD officer once caught Trump's...", + "publication_date": "2026-03-31T23:16:53", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696247/Sides-make-closing-arguments-trial-2024-killing-New-York-City-police-officer.html", + "media_type": "news_article", + "sentence": { + "text": "The bullet struck the officer below his bulletproof vest, mortally wounding him.", + "media_hash": "935f8e8a2aa122eae1ab522b7a6a44386152ca665c99f32a9fef9fab", + "sequence": 27, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.58268 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", + "publication_date": "2026-03-31T14:54:34", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", + "media_type": "news_article", + "sentence": { + "text": "If carried out by dissidents, it would be one of the most serious attacks since the shooting of senior detective John Caldwell in Omagh in February 2023.", + "media_hash": "4a3246224d9b78248d152a408457f7c34d2933dc43a405455c7bc711", + "sequence": 8, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.57747 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Major update after teen stabbed to death in UK city as devastated mum pays tribute", + "publication_date": "2026-03-31T08:31:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188614/major-update-chloe-dransfield-stabbed-death-leeds", + "media_type": "news_article", + "sentence": { + "text": "The online appeal had raised more than \u00a313,000 by Monday evening.", + "media_hash": "dc992e34c44fbbb60f3f2bd62298b7dbd67875789417b46e4b62a266", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "He travels about 30,000 miles a year and brings his own sandwiches.", + "media_hash": "a159e2ab9a38826c287f110ada1c40595d4e59be4f10951bced5606f", + "sequence": 81, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Moment aspiring drill rapper tells police 'poodles are more aggressive' days before his XL Bullies mauled grandmother to death", + "publication_date": "2026-03-31T15:41:27", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694663/Aspiring-rapper-left-pensioner-charge-XL-Bullies-mauled-death-jailed-10-years.html", + "media_type": "news_article", + "sentence": { + "text": "Footage shows the moment an aspiring drill rapper told police poodles are 'more aggressive' than XL Bullies just days before his dogs mauled a pensioner to death.", + "media_hash": "eb5892343de2a890f8ca7e1382f5f4b680417a9f76900bb19cbef371", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.56732 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", + "publication_date": "2026-03-31T15:44:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", + "media_type": "news_article", + "sentence": { + "text": "The Met, with a workforce of 33,293, had the highest number of dismissals, followed by Greater Manchester, Thames Valley and West Midlands forces.", + "media_hash": "64b246b37d716d6bf23a47ea17ed7dec816cc9ff91e86461c4c9dee3", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Absolute chaos' at crisis-hit BBC as Scott Mills becomes ANOTHER scandal-hit presenter to be sacked - as it's revealed he was probed by police in 2016 over 'serious sex offences against teenage boy'", + "publication_date": "2026-03-31T00:27:53", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15692897/chaos-BBC-Scott-Mills-sacked-sex-offences-teenage.html", + "media_type": "news_article", + "sentence": { + "text": "The biggest breakfast show in the country currently brings in a weekly audience of some 6.5million, after listeners lost under Mills' predecessor Zoe Ball returned.", + "media_hash": "c08ca6d8eb77dc8b10046e907a2c59e9e59a17b5985edef1e182a6d7", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.556405 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", + "media_hash": "35bd5c83dbd7a93284ceef661c43ba2b5c15a8203e95e66da1babfd6", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997, + "crime": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EU voices concern over reports of violence during...", + "publication_date": "2026-03-31T13:07:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15694833/EU-voices-concern-reports-violence-Serbia-elections-urges-action.html", + "media_type": "news_article", + "sentence": { + "text": "People clash with Serbian police officers during a local election, in Crvenka, small town located in the municipality of Kula, Serbia, Sunday, March 29, 2026.", + "media_hash": "3c40609a7bc7bc73c54d53bc7d162a64183e963347894f43543907f5", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", + "publication_date": "2026-03-31T13:50:52", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", + "media_type": "news_article", + "sentence": { + "text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", + "media_hash": "a153fc2ac7b82fa57fc3a86af99525f97e7a529a42c0c5ebcaad8816", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Interpol", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5503549999999997, + "crime": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Crime dipped three percent on buses, 2.7 per cent on the Docklands Light Railway and 40 per cent on Trams in the same time period.", + "media_hash": "ee448f1196842bd3dca8d5ef519cd577b6c0cafec42cb3314322af18", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "'Last year we received a 20 per cent increase in reports, showing us that more passengers know how to report crime to us and have the confidence to do so, knowing they will be believed and taken seriously.", + "media_hash": "8f3de04209f19e8e9e3dab20a18c78ac149abbad1e1258ef6d378eab", + "sequence": 45, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Transport Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", + "publication_date": "2026-03-31T10:42:38", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", + "media_type": "news_article", + "sentence": { + "text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", + "media_hash": "7264fa2229fb76c6edfe61ce3c53c50d7f951a1a336d66894a56a06b", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.5459449999999997, + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "Phone records reveal that on one instance, 70 messages were dispatched to numerous contacts within a 10-minute timeframe.", + "media_hash": "9f33fc4d785376e697b88bbec8ab481d465d3359b0055aff6147fd2f", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "Nottinghamshire Police detectives confiscated assets belonging to McGowan including \u00a328,186 in cryptocurrency and bank holdings.", + "media_hash": "c8a3cc1bca5040d52e42f1a3ac3a6f0ef2b167bab30333bf4d687644", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Since 2017, when Dawber joined Navcis, the number of cases that reach him have more than tripled, to about 5,000 each year.", + "media_hash": "6b6c72166df36a02b08c4c526eb305cf1534ed14a8f524fc62aabf16", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Drivers can reach it from the ports at Dover and Felixstowe; drivers departing Leicester with goods can reach 95% of the country in their allotted driving time.", + "media_hash": "6674ff084a727fcf6f07f935468f8d2fba1e82f96f3716d4171ca89c", + "sequence": 222, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", + "publication_date": "2026-03-31T15:44:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", + "media_type": "news_article", + "sentence": { + "text": "According to the College of Policing, the Metropolitan Police had 183 of the 735 UK-wide dismissed in the year to March 31, 2025 - about one in four.", + "media_hash": "fad6cf29af67d5eae23d7e56e9adac711882ef8c9a5745ebf46356fd", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Metropolitan Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teenagers appear in court charged with murder of Chloe Watson Dransfield", + "publication_date": "2026-03-31T12:33:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/three-teenagers-appear-court-charged-36949038", + "media_type": "news_article", + "sentence": { + "text": "A relative of Chloe's has launched an online fundraising appeal which had accumulated nearly \u00a315,000 by Tuesday morning.", + "media_hash": "bb690ba842a44c0bf5bc15e3966ca70c98a7a526064c2d86374fadb3", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "A relative of Chloe's", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "Teens accused of murdering Chloe Watson Dransfield appear in court as family weep", + "publication_date": "2026-03-31T11:26:00", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-teens-accused-murdering-chloe-36948422", + "media_type": "news_article", + "sentence": { + "text": "One of Chloe's relatives has set up an online fundraising page which had raised nearly \u00a315,000 by Tuesday morning.", + "media_hash": "4eb4c21c1e6403359a7a55ef62f1bd352051f1da51d8dedeca642afd", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Between 2023 and 2025, crimes on the Underground rose 12.5 per cent, while they rose 60.4 on the newest part of the network, the Elizabeth Line, and rose 15 per cent on the Overground.", + "media_hash": "7ada424afdb3b64e582e0b44429bf11db8485196a6338062f63ecbf6", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "London Assembly's Police and Crime Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T10:25:11", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "Research published this week shows British police forces failed to solve 92 per cent of burglaries in a year ending last March.", + "media_hash": "f93baef3dca6ec6abf2b750fff7f5e3786d2f642da994ed6bf6baea7", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC's Scott Mills sacked following 2016 police probe into 'serious sexual offences'", + "publication_date": "2026-03-31T06:25:19", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/bbcs-scott-mills-sacked-following-33688007", + "media_type": "news_article", + "sentence": { + "text": "Mills receives between \u00a3355,000 and \u00a3359,999 per year for his BBC duties, based on the 2024-2025 remuneration report.", + "media_hash": "a42f6f1ff983472c7aac614f7c23ebe89dd3765c985cf5004abceb0a", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "When accounting for lost revenues, VAT and insurance costs, cargo crime is estimated to cost the UK economy about \u00a3700m a year.", + "media_hash": "eca4fb9c541ff70e7073ec5e295e073f02f617755051aa9007cd3035", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Ever since, about 70 or so companies pay an annual fee (from \u00a3700 to \u00a32,500 depending on turnover) for access to the one-man cargo-crime department that is Mike Dawber.", + "media_hash": "b9569574086797e21f886149e1a01c1d948d6bfa28e6783f32473dc8", + "sequence": 161, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Of the 5,000 cases that Dawber deals with each year, only 300 or so result in arrests.", + "media_hash": "eb4b3338a5be2846d07121ca19d381ca107f4724f7caad2f8e9d8f4b", + "sequence": 247, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40329, + "score": 0.22529999999999994 + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", + "media_type": "news_article", + "sentence": { + "text": "Among the 500,000 present, there were just 25 arrests reported, two of which were for protesters attempting to climb columns at the National Gallery, and 18 of which were due to alleged support for Palestine Action.", + "media_hash": "308f6ce5e9468c789d248d7b70798ddf4b624e3d7f58246f09766006", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", + "publication_date": "2026-03-31T00:17:49", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", + "media_type": "news_article", + "sentence": { + "text": "British police forces failed to solve more than nine in ten burglaries in a year ending last March", + "media_hash": "0b37fd162032d9336c00833506f1009913630b22977355fc5335d589", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "ANTHONY STANSFELD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Man, 36, is charged with nine offences after seven people were injured when a car ploughed into crowds in Derby city centre", + "publication_date": "2026-03-31T23:45:06", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15696263/Man-36-charged-nine-offences-seven-people-injured-car-ploughed-crowds-Derby.html", + "media_type": "news_article", + "sentence": { + "text": "Four of the seven victims - four men and three women aged between 36 and 52 - have been discharged from hospital, police confirmed.", + "media_hash": "dbec99380e59ca97226f98c64332d3c373d3b5350fd66a9b1147e032", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Timeline of Scott Mills' career and police probe after BBC sack Radio 2 star", + "publication_date": "2026-03-31T13:06:02", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/entertainment/celebrity/timeline-scott-mills-career-police-36948752", + "media_type": "news_article", + "sentence": { + "text": "Mills, who earned between \u00a3355,000 and \u00a3359,999 annually for his work at the BBC, according to the 2024-2025 pay report, was reportedly sacked over the weekend.", + "media_hash": "2911b6f1fe2ef7b8c9f2aa6aee4d4f93e382636a781adc3950c2a821", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "Armed cops storm Wrexham hotel in major operation as officers seen with battering rams", + "publication_date": "2026-03-31T07:46:38", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/armed-cops-storm-wrexham-hotel-36946811", + "media_type": "news_article", + "sentence": { + "text": "Witnesses reported seeing more than 10 police vehicles at the hotel on Monday evening.", + "media_hash": "958fb06500dba28f251216c1ca19fe1abc69e94c1abb6e133397bd46", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Dawber didn't know what eyelash technology was, exactly, but he later learned that a pallet of it was worth more than \u00a3500,000.", + "media_hash": "20d6606bf80b58edd2b5091e9aef9b7581fcbb844efb4e8b4e2242ca", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "One supermarket chain fired 75 drivers last year on suspicion of collusion with thieves, yet the firm only reported seven of those to the police.", + "media_hash": "afa3c20b3ba9f3f304984337732fea21d030ae14653d8469dd247062", + "sequence": 191, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", + "media_type": "news_article", + "sentence": { + "text": "When they did, they substantially downplayed the size of the protest, quoting a Metropolitan Police figure suggesting 50,000 attendees - around 10% of what was reported almost everywhere else.", + "media_hash": "d92b2bde4c583e983a5f326f0c75488f9f889f00e0211742454b8419", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "BBC", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Metropolitan Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", + "publication_date": "2026-03-31T15:44:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", + "media_type": "news_article", + "sentence": { + "text": "City of London Police had six - taking the total across the capital to 189.", + "media_hash": "79e328f99ca245e7886c568d110d8360a6a6e8ce4e7153de0809b37c", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC's Scott Mills sacked following 2016 police probe into 'serious sexual offences'", + "publication_date": "2026-03-31T06:25:19", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/bbcs-scott-mills-sacked-following-33688007", + "media_type": "news_article", + "sentence": { + "text": "After dedicating over 25 years to BBC radio and television output, he stands as the broadcaster's 11th highest-earning presenter.", + "media_hash": "118a13352350ec05696c7be87e44aac54f3e90f79c077752dbdebbb2", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "When I first spoke with him last spring, he was investigating a case of stolen plastic drinking cups worth about \u00a370,000, and laptops worth \u00a3250,000.", + "media_hash": "6c2174825278da0c2ca9b7d614b3e3e6ccb826f028154a0ce6ae6a08", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mike Dawber", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "This was on top of the 1,300 investigations each year he assisted, the 300 or so arrests in which he played a key role, and the 50 or so police operations, from stakeouts to searches, he took part in.", + "media_hash": "165ed413d555bb04c8d654758c8272bded7027343ffb4b5741acd500", + "sequence": 168, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Of those, only about 10% result in convictions.", + "media_hash": "03065cb88c2151a3d566a8588a2ebec86c2f4bc8d3040d9f81eec3b0", + "sequence": 248, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 40329, + "score": 0.30689999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", + "publication_date": "2026-03-31T16:43:39", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", + "media_type": "news_article", + "sentence": { + "text": "About 20 officers were in attendance on Well Road on the day.", + "media_hash": "465470abcdff454d29fe73909f786a64df3b0bc46f174f3c7a3e8026", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "Grooming gangs inquiry should probe every UK council...", + "publication_date": "2026-03-31T11:59:26", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", + "media_type": "news_article", + "sentence": { + "text": "The inquiry has a maximum duration of three years, to conclude no later than March 2029, and has a budget of \u00a365 million.", + "media_hash": "04a109a0194cb37a77c1b85346ea5c509cf3d4b82c93897af4ab7404", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", + "publication_date": "2026-03-31T11:04:00", + "publication": "skynews", + "url": "https://news.sky.com/story/glasgow-drugs-courier-who-dumped-nearly-1631m-of-cocaine-during-police-chase-ordered-to-repay-thousands-13526383", + "media_type": "news_article", + "sentence": { + "text": "Glasgow drugs courier who dumped nearly \u00a31m of cocaine during police chase ordered to repay thousands", + "media_hash": "fb750cee63006367f5b1eb76e54eda2c95569caa7e2a5920d8bc93cf", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", + "publication_date": "2026-03-31T11:00:05", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", + "media_type": "news_article", + "sentence": { + "text": "Around 48,000 crimes were reported across Transport for London (TfL) services in 2025 - up 46 per cent against a pre-pandemic average of 16,544.", + "media_hash": "e05a3fee3cdc0e966eae1ea103d57bc4079d481c10b71c51c0983d62", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 40329, + "score": 0.25739999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "crime": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "Among the members of Yarword's company, there were more than 400 losses of this type in 2024, compared with a handful of thefts from truck stops.", + "media_hash": "047f8e5969a4d92e95229cd27a1190204469843bf653904a48ca31b9", + "sequence": 143, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", + "media_type": "news_article", + "sentence": { + "text": "Given the most recent statistics indicate 11.2 arrests annually per 1000 people in England and Wales overall, for 0.005% of march attendees to have been arrested on any charge shows that Saturday's march was extremely safe and peaceful, and claims or predictions of \"unrest\" were nothing short of anti-leftist scaremongering", + "media_hash": "7357d03d85a3e9819876a7f9951f6d6f99af139b1cb55854fe112341", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + } + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T16:54:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "'This proactive approach saw a 44 per cent increase in arrests last year, while shoplifting across London fell by four per cent.", + "media_hash": "b7295795ecbe4b110dbf8c99107f31a4488609bca52949e6492fa110", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Met Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Brutal' crime drama soars up Netflix chart as fans 'drop everything to watch'", + "publication_date": "2026-03-31T15:38:06", + "publication": "mirror", + "url": "https://www.mirror.co.uk/tv/tv-news/brutal-crime-drama-soars-up-36950587", + "media_type": "news_article", + "sentence": { + "text": "It currently sits as the fifth most-watched TV programme, and presently maintains a 90% score on review aggregator Rotten Tomatoes.", + "media_hash": "4507911021e5be3342b12672028944d6779d42100dcc70eeb0da7ddc", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three charged with murder over death of girl, 16", + "publication_date": "2026-03-31T08:32:14", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cn0w50dwd2jo", + "media_type": "news_article", + "sentence": { + "text": "Three people have been charged with murder over the fatal stabbing of a 16-year-old girl in Leeds.", + "media_hash": "e76aafe462f5933e08aa273ee0c909111b42ef8d79d52aca37ec6de4", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "West Yorkshire Police", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "dev": {}, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Three charged with murder of 16-year-old Chloe Watson Dransfield in Leeds", + "publication_date": "2026-03-31T08:17:14", + "publication": "mirror", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-chloe-watson-dransfield-charged-36947067", + "media_type": "news_article", + "sentence": { + "text": "Three teenagers have been charged with the murder of a 16-year-old girl who was found stabbed in the back in the street.", + "media_hash": "a7a76c872d87ba995563e4c8c2a798539c4e05f931970aa781248c4a", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", + "publication_date": "2026-03-31T11:54:31", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", + "media_type": "news_article", + "sentence": { + "text": "Two members of the group remained outside, one sitting on a bike and the other patrolling the pavement, waving a huge machete to ward off any intervention.", + "media_hash": "953bc24f04d795e1c8743232fa3fba3c2e0f63fa3082a97e99f9dcba", + "sequence": 41, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 2.540725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", + "publication_date": "2026-03-31T09:03:09", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "Three people were charged with murder today", + "media_hash": "2b4305cb78514d418de5b315d41bd77678b7b13f615625c271268382", + "sequence": 28, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Four charged after armed police descend on Asda car park after \u2018knife incident\u2019 in Edinburgh", + "publication_date": "2026-03-31T14:50:13", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/east-central/four-charged-after-armed-police-descend-on-asda-car-park-after-knife-incident-in-edinburgh", + "media_type": "news_article", + "sentence": { + "text": "Two males, aged 17 and 18, have been arrested and charged in connection with assault to endangerment of life, breach of the peace and weapons offences.", + "media_hash": "8db43dab4b38574b18ace1fa5dea039f588376f4a56bb831ce285a83", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + } + } + } +}, +{ + "title": "Gunmen force delivery driver to take suspected bomb to County Armagh police station", + "publication_date": "2026-03-31T10:26:26", + "publication": "guardian-news", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/lurgan-county-armagh-gunmen-delivery-driver-suspected-bomb", + "media_type": "news_article", + "sentence": { + "text": "Gunmen hijacked a car, placed a device inside and forced the occupant to drive the vehicle to a police station in Northern Ireland on Monday, prompting a security alert and the evacuation of about 100 homes.", + "media_hash": "e4759256c19f550f00d8c13ed854ee46dabb570f58358d7c17ba23ba", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", + "publication_date": "2026-03-31T23:04:00", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", + "media_type": "news_article", + "sentence": { + "text": "For six of the raids, teenagers wearing gloves, balaclavas and hoodies stormed into the shops threatening violence to staff as they stuffed their bags with phones.", + "media_hash": "b94fc2e58e28668ab51a370cc0a5d0de8f438289a33437ef97f1f7be", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", + "publication_date": "2026-03-31T04:00:30", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", + "media_type": "news_article", + "sentence": { + "text": "The man in question had a \u00a31,000-a-week crack habit.", + "media_hash": "c8c6b626d2e679aafe466593c9e905f32fcd7b844c89a76133674e96", + "sequence": 243, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5326649999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Delivery driver threatened at gunpoint in attack on police station", + "publication_date": "2026-03-31T11:51:32", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", + "media_type": "news_article", + "sentence": { + "text": "\"We're describing this as a viable device so yes, we would say lives were at risk,\" he said.", + "media_hash": "d990d06ff93455e1eddbaf2a39b2cfef7fdf177061b9ed45dc65716f", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Bobby Singleton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.52653 + }, + "demo": {}, + "dev": { + "blah": 2.52653 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", + "publication_date": "2026-03-31T10:16:38", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/showbiz/breaking-scott-mills-questioned-over-36948099", + "media_type": "news_article", + "sentence": { + "text": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", + "media_hash": "aba4de005d7b5bcad93895cd3129010b6916327de038e449b38a7acf", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.52653 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scott Mills \u2018probed by police over serious sex offences against teenage boy\u2019", + "publication_date": "2026-03-31T06:48:37", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/scott-mills-probed-police-serious-sex-offences-teenage-boy-27779065/", + "media_type": "news_article", + "sentence": { + "text": "Scott Mills 'probed by police over serious sex offences against teenage boy'", + "media_hash": "6295e6a3861c065fe8a5fe765ecd17e7b509d2e57cb25d6859383c5b", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.52653 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "crime": 2.62201 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pictured: Beautician and man accused of stabbing girl, 16, to death in 'row over a boy' - as they appear in court accused of murder alongside teenager", + "publication_date": "2026-03-31T14:59:43", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", + "media_type": "news_article", + "sentence": { + "text": "The schoolgirl later died in hospital from knife wounds to her back.", + "media_hash": "cfcac94acc509614f237fbc6e0b08b095369abc5749abeb5d6cec4da", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.52653 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", + "publication_date": "2026-03-31T08:30:56", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", + "media_type": "news_article", + "sentence": { + "text": "The text alerted users that the line was actively accepting orders and customers would call the Vic Line number to purchase drugs.", + "media_hash": "5b2cfa26fba50cabae60ed4e019744a2619e64a0ccf5b66125b28f08", + "sequence": 19, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.52653 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", + "publication_date": "2026-03-31T12:31:49", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", + "media_type": "news_article", + "sentence": { + "text": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", + "media_hash": "32d4febdb1bd760912d3f4e3a6caa348525373c55ea87010dc99460d", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5207699999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bar staff laughed in face of machete robber thinking he was \u2018prankster neighbour\u2019", + "publication_date": "2026-03-31T16:27:44", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/bar-staff-laughed-face-machete-robber-thinking-prankster-neighbour-27787616/", + "media_type": "news_article", + "sentence": { + "text": "Bar staff laughed in face of machete robber thinking he was 'prankster neighbour'", + "media_hash": "b8f6e086a9e0d9f1aaa17f56a7f2ef12520c12c2447758484e28321a", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5207699999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Jeremy Vine calls Radio 2 colleague Scott Mills' sacking 'unfair' because 'there's been no crime' after police probe was dropped - as he questions why DJ didn't get same mental health considerations as Huw Edwards", + "publication_date": "2026-03-31T16:52:57", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/tvshowbiz/article-15694393/Scott-Mills-Radio-2-colleague-Jeremy-Vine-forced-address-sacking-live-air-says-lot-people-confused-revealed-sexual-offence-accuser-16.html", + "media_type": "news_article", + "sentence": { + "text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", + "media_hash": "8f8acdeb03a606a3986ce30a94cec5ecaa73f231177ce5b2b8973f38", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Huw Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "crime": 2.5207699999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "media_hash": "950a043cb4355cadeb6289dd2e05e8db90141aa9e0c85fcca5f2e412", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.66914 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 5.66914 + }, + "fullfact-policy": { + "climate_misinformation": 3.6691399999999996 + } + } + } +}, +{ + "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", + "publication_date": "2026-03-31T12:05:09", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", + "media_type": "news_article", + "sentence": { + "text": "Read more: Energy bills predicted to surge by nearly \u00a3300 a year from July", + "media_hash": "728e84c844f685c031f51b9dad911562bba840a3dae0f7275177ce4f", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.66914 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil nears highest price since start of Iran war", + "publication_date": "2026-03-31T16:48:16", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c17vrd0pj95o", + "media_type": "news_article", + "sentence": { + "text": "Average energy bills in the UK are also forecast to rise an average of \u00a3288 a year from July for a typical dual-fuel household.", + "media_hash": "2e7c000113b355f39ddce54a02a6551857e14c4d1b5269d716a9390b", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.51636 + }, + "demo": {}, + "dev": { + "blah": 3.5163599999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", + "media_hash": "6554b5bde2af8c5ddb7e290750c470b6a7ab3b127797bb26c36e2d91", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.395685, + "scottish_elections": 5.395685 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump tells UK to secure Strait of Hormuz and `go get...", + "publication_date": "2026-03-31T11:59:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Average energy bills are forecast to rise by almost \u00a3300 from July while motorists are already counting the cost of the war, with drivers paying \u00a3544 million extra for fuel since the US-Israeli bombing campaign began.", + "media_hash": "04ef1cdf3f81963285625e15dd37bd99f1c17552960d69bf0791f039", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.36473 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:47:09+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2039051890114035759", + "media_type": "social_post", + "sentence": { + "text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills https://t.co/JvIVvWPeg9", + "media_hash": "3de7b3d8fd39ab53f577f03151fc501675ce32c9484619d9b2d8dce0", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "California homeowner", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 5.36473 + } + } + } +}, +{ + "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", + "publication_date": "2026-03-31T18:12:52", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", + "media_type": "news_article", + "sentence": { + "text": "Energy bills are predicted to surge by nearly \u00a3300 starting from July.", + "media_hash": "a9d0118840cac5d8453b00697599c9f083d9619e51c13a1ce262219b", + "sequence": 16, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.1947600000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Energy bills are predicted to surge by \u00a3288 in July because of the ongoing Middle East war, households have been warned.", + "media_hash": "d7ceb476036c16b12b3c3e5854a89ae28a11cda5319913a82837bca4", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 5.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "Of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict (Yui Mok/PA)", + "media_hash": "b50992c51cdb3d44e893d214a48d32b3530a45449490a951ae376f16", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills are expected to soar by \u00a3288 a year from July after Donald Trump's war in Iran sent wholesale costs rocketing.", + "media_hash": "f475f4ce30aa1f04dfd56c032e74bf20e140cdff48e6fc15141bee61", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 5.09725 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.09725 + }, + "pa-media": {}, + "maldita": { + "energy": 5.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", + "publication_date": "2026-03-31T08:59:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", + "media_type": "news_article", + "sentence": { + "text": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", + "media_hash": "00ac7dd3a2721522da9e5b2421ef348c977cd9d0fbd17552e83bb574", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T08:54:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Energy bills predicted to surge by \u00a3288 a year from July as rise 'unavoidable \u0301", + "media_hash": "92609fca9d1707cd684d7811fee5167be5016380720bacd5472bd686", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "Energy bills 'to rise by almost a fifth' in just three months", + "media_hash": "a986560c2940c72117f283de3a734dcce527370be021fc73657ee2a4", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.970815, + "energy": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 5.123595 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "It's a mad mechanism that in 2023 added 43 billion pounds to our energy bills unnecessarily.", + "media_hash": "9cd6ba246fc269e2a890b0d2b65a3e830caba8856bc9935b744fa35a", + "sequence": 1279, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.970815 + } + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "This caused people's energy bills to drastically increase - although the Conservative Government provided financial support to all households.", + "media_hash": "c220b54e0f980a10d2006cef674126818d04f749e7376383f04643cc", + "sequence": 26, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "The forecast hike is \u00a3288 a year higher than the \u00a31,641 cap on energy bills set for April to June after the Iran war pushed the UK's gas market past three-year highs in recent weeks.", + "media_hash": "3d4b40aa1d3d94d70709160cb63b9667371970c9ab81999599a42fd3", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:33:36+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/MetroUK/status/2038897485993644284", + "media_type": "social_post", + "sentence": { + "text": "Energy bills 'to rise by almost a fifth' in just three months https://t.co/Mf6hLucbfI", + "media_hash": "373d801fc9539e0ced0c4031c5c41c5836676fd0e0b5d0913757d6d2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Energy bills", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.9398599999999995 + } + } + } +}, +{ + "publication_date": "2026-03-31T09:09:48+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/TheScotsman/status/2038906596739203430", + "media_type": "social_post", + "sentence": { + "text": "Energy bills predicted to surge by nearly \u00a3300 a year from July https://t.co/h8bqxvMjCj", + "media_hash": "7ebee42d073d0d9ff31cabd7df6f697ecb90e693049462e11311c961", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Energy bills", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.9398599999999995 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "5 million people in our country can't afford to pay their energy bills, why are they paying VAT on top of that?", + "media_hash": "d10a4e387b8b05d05ac8deb42f9b23aa03c9a9e3a7ba9e2d9b5c05ba", + "sequence": 1294, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.925415 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "Cheap Power Plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", + "media_hash": "2b9c92f183dc22f5b97d041467f42111268da326770799abca032a2b", + "sequence": 27, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.90684 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.0905750000000003 + }, + "pa-media": {}, + "maldita": { + "energy": 3.889875 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", + "media_hash": "336a6928d49b7a82ebe9c693a9da906b56d671aaa44de361836ad840", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.801995, + "economy": 4.801995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF Energy customers can earn up to 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/edf-energy-customers-can-earn-33685834", + "media_type": "news_article", + "sentence": { + "text": "Millions of households are being offered the chance to slash their energy bills", + "media_hash": "a6e490871d690bc39fc4301ea3c9a3bbf192221a9fae13357248976c", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.698725 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The Prime Minister pointed to the reduction of energy bills by \u00a3117 a year for the average household, a rise in the national minimum wage to \u00a310.85 and in the national living wage to \u00a312.71, the start of the \u00a31 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", + "media_hash": "e04699637004eba1e06da6b8f0a00e449370f9a255fbe16bbe299280", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.698725, + "energy": 4.698725, + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "Millions of households are being handed the opportunity to cut their energy bills by nearly \u00a3100 annually - with a simple change.", + "media_hash": "0518f3021574f7af83fb5e7655d670d7134b23ef493b5dd31201decb", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "media_hash": "0516a5548d9624ef4cdb20faa4aee613444548f340562213523a92f1", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.66777 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "media_hash": "d37eb87dec681c62841bb58be10044dd68cd2b7174c069765dfc409a", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.66662 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "media_hash": "d38c86a6c3ca9381a9e7e85dea830e46c4558e09891d30db9f24aee2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.66662, + "energy": 4.66662 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be \u00a3300 a year.", + "media_hash": "857a5fd4df5a27b91cf0eba8bd13aa23521a406b1293bd98125f823e", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.649215, + "energy": 4.649215, + "economy": 4.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "And of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be by \u00a3288 a year.", + "media_hash": "7a98de4f9461947f8bdd012b5c22556207898b3553b6a8072c76a610", + "sequence": 32, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", + "publication_date": "2026-03-31T08:46:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", + "media_type": "news_article", + "sentence": { + "text": "The Institute of Grocery Distribution has warned that a shock spike in energy bills could heap an extra \u00a3150 on the average household's annual grocery bill.", + "media_hash": "5dfb4cef1a91a837f145482ccb044e71290e58f03659440a80e5761b", + "sequence": 24, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Institute of Grocery Distribution", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.44689999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "It already has the highest inflation in the G7, and investors also fear it could embark on a borrowing splurge to protect households from surging energy bills.", + "media_hash": "ce693b457a5dfccd2aa6a26c072e8a9ae7efddb741a3a401c486b997", + "sequence": 14, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.641985 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.641985 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Energy bills is forecast to jump in July after a three month reprieve following an April cut", + "media_hash": "875f6f8fbbda603833bef934b8e1b9698fba906c422c77c77d3569c2", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.62122 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", + "publication_date": "2026-03-31T18:59:36", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", + "media_type": "news_article", + "sentence": { + "text": "Lorraine Hammer, 79, was thrilled to get solar panels attached to the roof of her Ontario house so her costly energy bills would drop in price, but instead she's been left shelling out more cash for nothing in return.", + "media_hash": "4e306b663a7dd4969cc150382427bda592c484bb08a45db3285cd915", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.598275 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "energy": 3.748535 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", + "media_hash": "e8ebadafb2239713c195df95c7995b1a8c1bd4616f4bedcdd55ddb47", + "sequence": 2, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.58644, + "economy": 4.58644 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "The funding comes from \u00a33.8m allocated to Wales by the UK Government earlier this month.", + "media_hash": "1c809ddad81a14516c21b359c702a7f1d785493d28aefb12d24c0690", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.5769, + "senedd_election": 4.5769 + } + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "Millions of households are being offered the chance to slash their energy bills by almost \u00a3100 a year - by shifting when they use electricity.", + "media_hash": "a575aa7c61776a63a9fdd000201de402482f2fce3b523151097d7488", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.2915 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.562435 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", + "media_hash": "f1e1d4d9f387cf9c8ede9bbecb684d29da455b13331303a7cf765f43", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.556405 + } + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "Ofgem has announced that the energy price cap will fall from \u00a31,758 to \u00a31,641 in April for the average household.", + "media_hash": "4f7a0598fc768aae75c473714ee319b077eff6fb6955855700e38077", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", + "media_hash": "50948043fc783903a84982750c7cddd6df24ad197ecf5a2785cbb117", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The average pump price of a litre of unleaded petrol in the UK stood at 148.8p on Monday March 30, up 4.6p week on week and a jump of 16.6p, or 13%, since March 2, according to figures published by the Department for Energy Security & Net Zero (DESNZ).", + "media_hash": "c767265802f32339661933adb85d09b5cc4ff3692439717af1f80ad7", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Back in September 2022, PM Liz Truss tried to shield households by capping average energy bills at \u00a32,500.", + "media_hash": "01306b3285bd87e0a9b7bbbd1bcd2387554c27bec7f2ad32e107d6be", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Liz Truss", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104752, + "score": 0.11648099823180075 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "trending": 4.545945, + "energy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", + "publication_date": "2026-03-31T21:30:00", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", + "media_type": "news_article", + "sentence": { + "text": "This follows further announcements made on March 16 including cutting the energy price cap until the end of June, extending the cut in fuel duty until September, and providing \u00a353 million for households that are most exposed to heating oil rises.", + "media_hash": "c5f71db93319f91c072b57638e35b9fdbe56ee812827cbe5ec1bafa6", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "leo_s_topic": 4.545945 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to \u00a32,394 on average.", + "media_hash": "fe4be61db3841d5188c0df0e5fafa9ea85d14b15fdd17770e576daf3", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Hundreds queue at Costco petrol station amid rising fuel prices and empty pumps", + "publication_date": "2026-03-31T13:04:13", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/scotland/hundreds-queue-at-costco-petrol-station-amid-rising-fuel-prices-and-empty-pumps", + "media_type": "news_article", + "sentence": { + "text": "Average energy bills are forecast to rise by almost \u00a3300 from July.", + "media_hash": "70a9fbefe04774d1baac9115778187ba887aee5971ac559028cb76bf", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + } + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "The Government estimates that a typical UK home could save \u00a370 to \u00a3110 a year on their energy bills from plug-in solar, meaning a family could make their money back in around four years.", + "media_hash": "b501b7ce238713ed58571a57c7a1ec4aaca583c333dd9f4fc267b842", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "\"If customers commit to every Sunday Saver challenge and flex their energy use, they could achieve an average of 266 hours of free electricity on Sundays, and \u00a396 on their annual energy bills.\"", + "media_hash": "e0ca2cc060e03882761d8fbf3903a01bd38cd601a56cc07d3ea16753", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Joe Souto", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.18689999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", + "publication_date": "2026-03-31T19:25:00", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills could also increase by \u00a3288 a year in July, according to latest forecasts from analysts Cornwall Insight.", + "media_hash": "f85a2f45e0d1212b1d86e5766767c830697712d7e341e019a77dd3ee", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", + "media_hash": "1790d24fe6a685c7056e090f0b29a3e1327f49fcbf9f3d3d45fc35b4", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Some \u00a34.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional \u00a35.4m.", + "media_hash": "930a886ee8c0000fe195223b32259aa786ec034a1b8aa96c95458bbb", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40373, + "score": 0.5368999999999999 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "They talk about average household energy bills falling by over 100 pounds from tomorrow.", + "media_hash": "ddf27d6f61194f2bad9d3c637cd6ea9ddda174000dc41da3d0020db9", + "sequence": 85, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + } + } + } +}, +{ + "publication_date": "2026-03-31T08:34:18+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/GuidoFawkes/status/2038897661353279907", + "media_type": "social_post", + "sentence": { + "text": "Cornwall Insights estimates revised July energy price cap at \u00a31,929, a rise of \u00a3288 on April's price cap.", + "media_hash": "008c92e0ae484e11ee4e46a7144a5a40a2cab3454b123cfeaa389604", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insights", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "leo_s_topic": 4.545945 + } + } + } +}, +{ + "title": "Households can get free electricity on four days next month", + "publication_date": "2026-03-31T07:50:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", + "media_type": "news_article", + "sentence": { + "text": "Those who completed every challenge throughout 2025 built up an average of 266 hours of free electricity across the year - worth around \u00a396 off their annual energy bills.", + "media_hash": "833ba13040cb14c84a7d31ad1730bdbad0d08e83f5607477402b2b81", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", + "media_hash": "42e722b19c950ef9105c8ed1f347c6130eb1dabc2dce14f62e315a80", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "In a post on social media, they pointed out that the Ofgem energy price cap is dropping on Wednesday by 6.7%, and this means your bills may drop too.", + "media_hash": "2a892ece02b9b5db7c954078d3c04af859e70bc3f19dcbc7e9925a18", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "MoneySavingExpert", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "The latest forecast by Cornwall Insight is a slight fall from its forecast earlier this month, which had seen the energy price cap surging to \u00a31,973 in July.", + "media_hash": "2372c3874e6185a6973307cabb99e5356124074b4b3319d0b96c6318", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "When it comes to the energy needed to operate machinery or equipment, 78% of small businesses said they were affected by rising energy prices, with 41% of respondents saying they would have to pay more than \u00a31,000 extra a month to cover energy bills.", + "media_hash": "4a7ac09a6a721639478525fca038c556c4408f15075ee579534d442a", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.545945 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "publication_date": "2026-03-31T12:49:04+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/tomhfh/status/2038961779326193917", + "media_type": "social_post", + "sentence": { + "text": "The government changed the law so that wind farms no longer have to provide expensive and time consuming like for like compensation for the birds they kill.", + "media_hash": "cc93c6e3546cc309016401524856fceda4efc4e586c16e55f44c3e18", + "sequence": 1, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.543855 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The average council tax for a typical band D property in England is currently \u00a32,280.", + "media_hash": "5cf1f9cec337b8614f702e818bdd412846965bd1f581b09265c0a8b3", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.53035, + "economy": 4.53035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T11:42:35", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "The typical household will spend \u00a31,641 a year on gas and electricity bills, according to the regulator Ofgem's energy price cap.", + "media_hash": "d64825e102eb14ccfd401e40c546f709777a49e56423c1b6afdcfbd1", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:48:34+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", + "media_type": "social_post", + "sentence": { + "text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", + "media_hash": "44040b133caca303abc5f1a268e4de1fcd62070a4d507d4a96adae92", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "the SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.500545, + "scottish_elections": 4.500545 + } + } + } +}, +{ + "title": "Jury can't reach verdict in corruption trial of 2...", + "publication_date": "2026-03-31T17:06:38", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695347/Jury-reach-verdict-corruption-trial-2-ex-FirstEnergy-executives-60M-bribery-scandal.html", + "media_type": "news_article", + "sentence": { + "text": "Prosecutors had argued that Jones and Dowling bribed Public Utilities Commission of Ohio chair-to-be Sam Randazzo for legislative and regulatory favors, most notably his work championing House Bill 6, a $1 billion bailout for two aging FirstEnergy-affiliated nuclear plants at the center of the bribery scheme.", + "media_hash": "4c95b68156e400af591017db22512a891ed200bd8b64cfa7d7f226e6", + "sequence": 15, + "claim_type": [ + "quantity", + "rules", + "other" + ], + "claimer": [ + { + "name": "Prosecutors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.49814 + }, + "demo": { + "politics": 0.0 + }, + "pa-media": { + "media_literacy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "A typical home with rooftop solar panels could save around \u00a3500 a year on its energy bills, according to Government figures.", + "media_hash": "5caf1e73db962f4c406cd36367fd631d4b73184d454d125f84d17245", + "sequence": 8, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.4978 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "Nine in 10 Brits browse Rightmove and Zoopla for design tips rather than homes", + "publication_date": "2026-03-31T09:36:50", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/nine-10-brits-browse-rightmove-36947663", + "media_type": "news_article", + "sentence": { + "text": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "media_hash": "fe6a2ddbd10c1696483d5928ab80482e32106001105b5c30cca4fc30", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.491165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T11:42:35", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "There are fears that the conflict in the Middle East will trigger a crippling hike in energy bills in Britain this winter.", + "media_hash": "436264fdbc183342074c411b9c16d14bd323a6cf48226e699525aa5b", + "sequence": 13, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.46302 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", + "media_hash": "ea098b53ff1fe0586375c7e47d65ae44770e3dafa9feb4190b1b6a15", + "sequence": 69, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.46302, + "economy": 4.46302 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tories call for more drilling in North Sea with new draft law", + "publication_date": "2026-03-31T05:45:45", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", + "media_type": "news_article", + "sentence": { + "text": "As part of its local elections campaign, the Conservative Party have also called for a cut in VAT on domestic energy bills and the scrapping of green taxes on power generation, saying these measures will cut bills by \u00a3200.", + "media_hash": "dc8534c66b8c8a7f32526db3412a5c3bf60f8fe83a8465b53639fc82", + "sequence": 11, + "claim_type": [ + "quantity", + "rules" + ], + "claimer": [ + { + "name": "Tories", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Conservative Party", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.431615 + } + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "Millions of EDF Energy customers can cut their energy bills by up to \u00a396 a year with a simple change", + "media_hash": "3d03978134ece2a494956446a52e4baca7c154302de1e29e42c0a335", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.409655 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "The Conservatives are urging Ms Reeves to slash household energy costs by \u00a3200 immediately by taking VAT, taxes and levies off energy bills.", + "media_hash": "ac8aacaf49aa18f08f011a84e87d07c909924f057423268b9149ba60", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.409655 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 4.409655 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "\"The Government must adopt the Conservatives' Cheap Power Plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny. We would cut bills for everyone rather than taxing working people to fund yet another bailout for people on benefits.\"", + "media_hash": "7a13912c7aa3f141e5b3c281a6e87c2905e8963032b178206d333dab", + "sequence": 28, + "claim_type": [ + "quantity", + "rules", + "predictions" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104555, + "score": 0.11150000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.398595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "The energy price cap is the maximum amount of energy suppliers can charge you for each unit of gas and electricity, as well as the standing charge to have your home connected to the energy grid if you're on a standard variable tariff.", + "media_hash": "2fbfa653de820473bfd46b0764fbd7b1a40ccf83dddf40cbf6be2ce0", + "sequence": 25, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.386215, + "leo_s_topic": 4.386215 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.386215 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", + "media_hash": "20d4a148d4e8c3057db0350353d67309d370b44c9ae6a208806ff023", + "sequence": 1393, + "checkworthiness": { + "fullfact": { + "energy": 4.386095, + "economy": 4.386095 + } + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills will increase by almost a fifth when the price cap is next updated in July, according to energy market experts.", + "media_hash": "7545ae8a5cdebce811ef3d52af5ddea0e056a1ce30c7272754df01a5", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.377125, + "energy": 4.377125 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.377125 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "The Ofgem energy price cap is expected to leap by 18 per cent after June as households brace for the impact of spiralling oil and gas prices.", + "media_hash": "9ed24563d19ab28391ef340a75f45c25f7bde485b5e92fb3b18a287e", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.377125 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Presenter Accuses Minister Of 'Patronising' Response To Growing Energy Fears", + "publication_date": "2026-03-31T08:18:32", + "publication": "huffingtonpost", + "url": "https://www.huffingtonpost.co.uk/entry/justin-webb-bbc-minister-energy-iran_uk_69cb752de4b0128a9ef9d16a", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills are not yet increasing in line with the crisis in the Middle East but are expected to go up later in the year as a result.", + "media_hash": "2f1a2df531bf08f3521f7b2d5f862bbd66b57ecce38909088381a891", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.377125 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "Energy bills expected to rise again in July, with forecasts predicting an 18% increase", + "media_hash": "abb160180169b6b65925faa98cdc916be205ffecee71127446301304", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.377125 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.377125 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The Treasury is set to rake in billions from higher VAT on fuel and the windfall tax on oil and gas.", + "media_hash": "21af3328f7ef5a652ea5caff89bbbbf310d7aa1e972d88837d419cb4", + "sequence": 30, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 4.377125, + "energy": 4.377125 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:39:28+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/LBC/status/2038898965626634660", + "media_type": "social_post", + "sentence": { + "text": "Energy bills 'set to soar by \u00a3288 more a year' due to Iran war https://t.co/68uq6ZPRQm", + "media_hash": "ec638c41c2f87a52b462d202ad1ed638a91c597606e2729cf61d198d", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Energy bills", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.36473 + } + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills could increase by \u00a3288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem's price cap, according to the latest forecasts.", + "media_hash": "b762a26dbdfbdc2150c00e09149584d3742e83383d0f8a37d7a08fbb", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.36473 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills could increase by nearly \u00a3300 a year in July due to the Iran war, experts have warned.", + "media_hash": "0562d6c20d6456c32720852f890093c33cdc02441b2a2ac2556be323", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.36473 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Shadow energy secretary Claire Coutinho said: \"The Government must adopt the Conservatives' cheap power plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", + "media_hash": "48df0604dc5af34571ac50055466b4cf86c109d28fc4d894d1b2ab57", + "sequence": 21, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.349745 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Thousands in Wales to get \u00a3200 boost as prices rise", + "media_hash": "9e6938159d503cdf718fa61857220ce2ee9c12db1a824303ca77e96f", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.347765, + "senedd_election": 4.347765 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "Latest forecasts by experts at Cornwall Insight predicted that Ofgem's energy price cap from July to September will be \u00a31,929 for a typical dual fuel household.", + "media_hash": "29560df41ecac5abbe931e27b3e13bc0da0f28da5c0b9a029a77aaed", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.347765 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 4.347765 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", + "publication_date": "2026-03-31T18:59:36", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", + "media_type": "news_article", + "sentence": { + "text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", + "media_hash": "1859262297d2a8c896a650d22992813f01f488cc8f71a409abfb7324", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.347765 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "energy": 4.347765 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tories call for more drilling in North Sea with new draft law", + "publication_date": "2026-03-31T05:45:45", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", + "media_type": "news_article", + "sentence": { + "text": "This Bill would stop the lawfare and free our oil and gas industry to start drilling, creating new jobs and bringing in revenue to get energy bills down.", + "media_hash": "ad09faacc2fd26f9d16ea56c0030b54859e70afd08309f973d6acf01", + "sequence": 9, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Tories", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.33582 + } + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "The government is under mounting pressure to announce what help it will provide with energy bills from the summer onwards as households are facing a huge surge due to the Middle East war", + "media_hash": "09d5e42344203e330a8258e68ecb7cf381649978d454d59c45d00795", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.26870000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.29984 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Howard, a former deputy governor at the Bank of England, warned that 'splurging' money on a big energy bills bailout could panic international investors and send borrowing rates even higher.", + "media_hash": "8045966ec018bc856c821fb9e1def733adfafc9c136b3c94bb13f43c", + "sequence": 36, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Sir Howard Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.276675 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.97824 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", + "media_hash": "e8971f18e2f4e5337d3b9cc53a27cd2f72431be62150b90abdc1991d", + "sequence": 1343, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.26484, + "economy": 4.26484, + "trending": 4.26484 + } + } + } +}, +{ + "title": "EDF Energy customers can earn up to 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/edf-energy-customers-can-earn-33685834", + "media_type": "news_article", + "sentence": { + "text": "Millions of households are being given the opportunity to reduce their energy bills by nearly \u00a3100 annually - by adjusting when they use electricity.", + "media_hash": "1b30a68ec6d4dcf05abe2e30e24cb0d02ac7c737df6a4663a1f7c73b", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.240835 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", + "media_hash": "162427decdce3e89de25776d85b4787b6ab6333ddceb57f4c6a86b16", + "sequence": 2, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.233315, + "senedd_election": 4.233315 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "\"Today, millions of people up and down the country will see energy bills go down by \u00a3117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this Government has taken.", + "media_hash": "35bde3922a8963312cd9cfdd8199e7ef5401fc744354c7b1cfdf2aed", + "sequence": 7, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.224345, + "energy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "The energy price cap that governs most people's bills could be less than previously feared from July, according to a respected forecaster.", + "media_hash": "2fb545c4c1a7c64334f4d2864e67dc8503663d2eaf47d505454bcd9a", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.224345, + "energy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight has published its latest forecast for the energy price cap, and claims household energy bills will increase by almost a fifth in July.", + "media_hash": "6cb0a33b3ed36ccf2feb4e62014e371045cc3cc2e1c3eb932de4048f", + "sequence": 44, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 4.224345 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", + "publication_date": "2026-03-31T21:30:00", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", + "media_type": "news_article", + "sentence": { + "text": "The cut to the energy price cap comes on top of the \u00a3150 Warm Home Discount that around six million families will have received this winter following its expansion last year.", + "media_hash": "f329375329d2884f53dea20a40d3efc77bbd5f0121bcc50ce7ee26b0", + "sequence": 11, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "leo_s_topic": 4.224345 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The energy bills price cap is expected to increase in the summer by \u00a3332 to \u00a31,963 annually", + "media_hash": "4110f23e44f33924c32f2e0dee818b29281e298ccdf0ebd90d970a80", + "sequence": 63, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "While Ofgem's latest price cap will reduce energy bills by \u00a3117 on average, this saving will be more than cancelled out by increases elsewhere.", + "media_hash": "02304a7d73b46d20880fa161ebf2e8252a67ae167c662d4f4db35044", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 4.377125 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T14:53:37+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Dan4Barnet/status/2038993121069904024", + "media_type": "social_post", + "sentence": { + "text": "From tomorrow, the new energy price cap kicks in and will save the typical working family around \u00a3117 a year off their energy bills.", + "media_hash": "7cedf80830c7c75c1bce5448f31061e90da560ea5e9d27990a841cf8", + "sequence": 1, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104752, + "score": 0.13084286186479996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "leo_s_topic": 4.224345 + } + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", + "media_hash": "f7d469200b180fd0c1e6048061009a544b7644b73eea38128fe6a6df", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", + "publication_date": "2026-03-31T21:30:00", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", + "media_type": "news_article", + "sentence": { + "text": "\"Today, millions of people up and down the country will see energy bills go down by \u00a3117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this government has taken.", + "media_hash": "921250e86861bd14f89cac5262a7af1f1c869ec21786e93ad4a68e43", + "sequence": 15, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "leo_s_topic": 4.224345 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Council tax bills will rise by as much as 15 per cent on April 1.", + "media_hash": "74cfb48d44176d46dc532ed02c25a2f0432b6c64b15b3054539f0a0b", + "sequence": 9, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "Tomorrow's change to the energy price cap comes alongside a raft of annual rises for households, including hikes to water, broadband and council tax bills.", + "media_hash": "1982dd04ffd663000cf654a945a6212f4408af0e75dffbd561d100ac", + "sequence": 20, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.213945, + "energy": 4.213945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", + "media_hash": "99c5df1ab4c463156554f21683aa56fa8993c5a53ebc2a2031f1fc4d", + "sequence": 66, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.213945, + "economy": 4.213945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", + "media_hash": "f873b7e09186e01a43df2d71d78aa71c88d2714231828b0bbfa55b8f", + "sequence": 1384, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.206655, + "economy": 4.206655 + } + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T15:37:04", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "She believes thrift cuts her energy bills by almost two-thirds.", + "media_hash": "abed233322a2341baa3023778a16c275da00453da8370d87131bc822", + "sequence": 54, + "claim_type": [ + "quantity", + "support" + ], + "claimer": [ + { + "name": "Gloria Batabyal", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.206655 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "Although UK energy bills have not yet risen because the price cap was set beforehand.", + "media_hash": "8650a6aecfb65f02c7474ee2cd6a362add7828999742d2c9924f5fa5", + "sequence": 28, + "checkworthiness": { + "fullfact": { + "energy": 4.186764999999999 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T12:12:02+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/Telegraph/status/2038952458492215586", + "media_type": "social_post", + "sentence": { + "text": "Catch up now on yesterday's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to @ClaireCoutinho the shadow energy secretary, who says the Government could cut your energy bills by drilling more in the North Sea, but chooses not to...", + "media_hash": "fd241ee593f00ec50fdb1865db36fbfbd8d913113e0861a33e8a62e1", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.173405 + } + } + } +}, +{ + "title": "Energy crisis will define Holyrood election, says Flynn", + "publication_date": "2026-03-31T10:40:03", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694311/Energy-crisis-define-Holyrood-election-says-Flynn.html", + "media_type": "news_article", + "sentence": { + "text": "This election will boil down to a straight choice for the people of Scotland - a permanent cost-of-living crisis under Westminster or lower energy bills with independence", + "media_hash": "b64dd06487c2ea4537fc8676371443b9da781b2c4a5ab6de6b179940", + "sequence": 5, + "claim_type": [ + "rules", + "predictions" + ], + "claimer": [ + { + "name": "Stephen Flynn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.150510000000001 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:03:14+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/BBCr4today/status/2038904945479410007", + "media_type": "social_post", + "sentence": { + "text": "\"Are you saying it's likely that energy bills don't rise after July?\"", + "media_hash": "c0e5603f6591c2fad91fcb97c7af391e021aea0199b70102c314cc43", + "sequence": 0, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.1384050000000006 + } + } + } +}, +{ + "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", + "publication_date": "2026-03-31T08:46:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", + "media_type": "news_article", + "sentence": { + "text": "The BRC said the Government could fuel further inflation if it fails to listen to calls for relief from looming costs, including red tape on workers' rights and green levies on energy bills.", + "media_hash": "5539f6a50abff4ef22759a7a84dc166c4801d770537f061095120ace", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "British Retail Consortium", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.128005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", + "media_hash": "701c815f7dd14dd4af6ed552c3aa758c00e430388f99fab3d97534d8", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.10166, + "senedd_election": 4.10166 + } + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Miliband is slamming his foot down on the net zero charge, and driving us into a ditch.", + "media_hash": "4b28fe025f5b173876e482ca16ae96b1c7852e4dabcde81fbf6fb808", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Ed Miliband", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.10166, + "trending": 4.10166, + "energy": 4.10166 + }, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "However, some fixed tariffs can be lower than the energy price cap, so it might be worth shopping around for the best rates, according to Martin Lewis.", + "media_hash": "a8755885b36f7820fd747d019f4e964cc9ba9e72b2f427e847c3c8e8", + "sequence": 30, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Martin Lewis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.088055000000001 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.889875 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a \u00a3500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", + "media_hash": "95f36115ba3a97b86eaf7f0acd6129e21af3f8153590b006af4f14f1", + "sequence": 24, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jackie Dunbar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.071625, + "energy": 4.071625 + } + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "The rise in energy bills is likely to spark fears among economists that inflation will surge in the middle of the year as a chain reaction of higher prices dampens consumer demand and knocks GDP.", + "media_hash": "db154e655efeb211ea110b9d54c30377ffb89222151eda6a4467c3d5", + "sequence": 8, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.064495 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", + "media_hash": "36d0dd517bae33d72a29cd280f0ad918956abb22450ec488b0531e48", + "sequence": 6, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.064495, + "energy": 4.064495 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.064495 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "The exact discount you'll receive on your energy bills will depend on the size of your household and the type of household, as well as the location, building type, how you pay your bills, and how much energy you regularly consume.", + "media_hash": "57cb08c40e30b75f64d51134b736f8fdc7f26aa6fe74007dfda0fbca", + "sequence": 23, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.064495 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.911715 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", + "media_hash": "d1d6ab2c7753827a2517588a9688ce9d98dd550d1f3d778df8d709a6", + "sequence": 10, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.061165, + "energy": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", + "media_hash": "61d964f314636c9e38b36641749439b1d74ec8151d5be87a3fb46294", + "sequence": 20, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.059075, + "scottish_elections": 4.059075 + } + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The Department for Energy Security & Net Zero publishes monthly figures on the average price of heating oil.", + "media_hash": "fd7e9837b5a1c5326bb9a8e2e2cc93e09afeb1912ba0ef128cd7870b", + "sequence": 28, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.0467200000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Recalls yesterday from opposition politicians for the government to remove VAT from household energy bills for the next three years.", + "media_hash": "173c895891ae2e21b4022349a6fd61b00c3056b0f0e6f6309d3ad1c7", + "sequence": 1291, + "checkworthiness": { + "fullfact": { + "energy": 4.035135 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", + "media_hash": "6b10a6165d9529ddf32e96060bd41b1c8fafedd43491fb829521a4d1", + "sequence": 1389, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.035135, + "economy": 4.035135 + } + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", + "media_hash": "0e5292f0da47b8acdac7a32f70b3575fc64ab53a414cd1ebb421ca57", + "sequence": 56, + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.035135, + "economy": 4.035135 + } + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "But people will know that whatever happens over the next three months in the Middle East, energy bills will be lower here.", + "media_hash": "2e12f5e8858b4eb58d03a6673340e8a7253f75c7f32a724d8cd82fc1", + "sequence": 127, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.026165 + } + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for \u00a3300 of support with their bills.", + "media_hash": "9067383b77bb0df353d633e264773cd338b1075a5cd22c2b406ddc3e", + "sequence": 19, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Advice Direct Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.026165, + "scottish_elections": 4.026165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "There is growing pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits", + "media_hash": "e3343960b3160e67cd085b8746161fe373c729196d075ec741f954cf", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.975225 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "Principal consultant Dr Craig Lowrey said a surge in energy bills was \"pretty much unavoidable\" as international market changes will now have been \"baked in\" to forecasts.", + "media_hash": "2d5b6f295e8a9067242e4ee1db7b03e9de7475b37a6e570cf21a2a37", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Craig Lowrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Kemi Badenoch has been talking about this for a few days, but she also keeps saying it's not actually going to reduce bills even if we do drill.", + "media_hash": "27876c41027ec34e3f16491810e0920bef84e0ddff4ff71fd4bc7ec0", + "sequence": 944, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.975225, + "trending": 3.975225 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Rachel Reeves thinks our net zero targets to the answer to the economic crisis.", + "media_hash": "3e3e149579ab1aa7ddd1eee43131f05aa704f2657d051ff9f33dfaf7", + "sequence": 941, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.975225 + } + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Kemi Badenoch has urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", + "media_hash": "801b3f4d6259f33daeb4f82647fc8a5bea35d7410ef3c72b7b868c0b", + "sequence": 26, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 3.975225, + "energy": 3.975225 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "media_hash": "a6207993a9e86c94a9a760fbbea78856ff84d70935a7d1ef24e3e366", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "energy": 4.36473 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:22:52+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038909883718742512", + "media_type": "social_post", + "sentence": { + "text": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn https://t.co/8LhrGd37kQ", + "media_hash": "f0a228a51d07caa1717e8325a5f9414b0068348df8049600d8650b8e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Brits", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.970815 + } + } + } +}, +{ + "title": "Households can get free electricity on four days next month", + "publication_date": "2026-03-31T07:50:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", + "media_type": "news_article", + "sentence": { + "text": "Households looking to cut their energy bills could get free electricity on four days over the coming weeks under a scheme from EDF Energy.", + "media_hash": "4d4b42e194614b9bb70a19aceb144de563813c2b84abec301a464676", + "sequence": 2, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.920805 + } + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "But they can know that from tomorrow, because of the energy price cap, bills will come down rather than going up.", + "media_hash": "f0b90d9134c0a59ebb2af204164dd1040b321270cc68166fb5955109", + "sequence": 125, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", + "media_hash": "2e56e9518645f1b0c47645577a08d7c696096885454881669561610f", + "sequence": 1347, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715, + "economy": 3.911715, + "leo_s_topic": 3.911715 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "This will pile more pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits.", + "media_hash": "b34fa9ab1a984c6cc1940210f628ce5ff04c7e54437c77a15117d394", + "sequence": 6, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 3.911715 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "What I can point to to go back to my original point is, you know, people thinking about what's happening tomorrow, they know that their energy bills will come down.", + "media_hash": "22ebe74cbab6424b62e36bf0c531b633851170051fecf037d6227992", + "sequence": 156, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715 + } + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer will chair a meeting of the Cobra crisis committee to consider the impact on households and the wider economy from soaring energy costs.", + "media_hash": "e0a2ab4f40a166ec7e23e4e82e718f3638abb50c1799e0528ce995df", + "sequence": 12, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715, + "starmer": 3.911715 + } + } + } +}, +{ + "publication_date": "2026-03-31T17:25:24+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/JoStevensLabour/status/2039031317728231465", + "media_type": "social_post", + "sentence": { + "text": "\ud83d\uddd3\ufe0f TOMORROW's energy price cap fall will put more money back into the pockets of families across #CardiffEast.", + "media_hash": "2a7c018c757e5dd09a3663e7bc3461a58101062f98458a94bba67a08", + "sequence": 1, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "UK Labour Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715 + } + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", + "media_hash": "541859e8ca7689c57fae1c202c0a39f16eba65f69e43d8c29f712e44", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + }, + "demo": { + "politics_of_food": 0.0 + }, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", + "media_hash": "25d8357c62b597f7a5af980a82d300bf7f5581f9a8f6a1f8e1927a88", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Record View", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", + "media_hash": "7f13f2a4150e445aaa4e656ea3130781d03bb6184b9d5b2f2e1275f5", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.901315, + "energy": 3.901315 + } + } + } +}, +{ + "publication_date": "2026-03-31T08:48:34+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", + "media_type": "social_post", + "sentence": { + "text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", + "media_hash": "35eaf5d51b900e1aa2a942ecbd2ba82e298fd6f02fdd540df44201c3", + "sequence": 2, + "claimer": [ + { + "name": "the SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.898845, + "scottish_elections": 3.898845 + } + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "MSE shared a warning ahead of April 1, reminding Brits that energy bills are about to change.", + "media_hash": "c1769928052a1776e2117b80ed918baf41c17caf317f676e20afa0e7", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.88572 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.703135 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "But equally, I think if there are big rises in energy bills to come, and we don't yet know if there are, then the government might need to go further in terms of providing targeted support to some households.", + "media_hash": "f2335a4489db632c873582136d88b10b83096d059a483218f213ecf6", + "sequence": 102, + "claim_type": [ + "correlation", + "predictions", + "support" + ], + "claimer": [ + { + "name": "Ruth Curtis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.861005 + } + } + } +}, +{ + "publication_date": "2026-03-31T08:48:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", + "media_type": "social_post", + "sentence": { + "text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", + "media_hash": "f10998e5e2c68043328e774e2c8f5ca176e17069b6ef17d1c7d7c00b", + "sequence": 1, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.860895, + "scottish_elections": 3.860895 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight said a hike in energy bills this summer is 'pretty much unavoidable' - and they warned an even greater hit to household finances could come in October.", + "media_hash": "cc0673d5234fe89ef21fb7021ed283de8e817731c631787cfdf4c6b5", + "sequence": 5, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.851805 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 3.851805 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", + "media_hash": "24196df121e0b1a190caff62d537cc5aee3cda22501b00fbdcad2a04", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Scottish Tory energy spokesman Douglas Lumsden", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.788715, + "energy": 3.788715 + } + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T08:54:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Household energy bills could increase by \u00a3288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem \u0301s price cap, according to the latest forecasts (Jacob King/PA)", + "media_hash": "b8608a58f1a258513bc814c8fad124101ceaeb5f7fb0b993a8af1fea", + "sequence": 11, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.77565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "So I think our tax system needs a whole bunch of reforms and I would start with taking VAT off of energy bills and I would add it to flying to keep it fiscally neutral.", + "media_hash": "74a9c40922508160af6815683e2b5c55af7a2c83b26aa6ba09ff080e", + "sequence": 1296, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7754250000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", + "media_hash": "1dbd00bad4aab01cfcb82c261d291861270e7c52a35f1b50f8d57dd6", + "sequence": 1395, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7577350000000003, + "economy": 3.7577350000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Absolutely, of course, it should be used to alleviate the burden that is being faced by motorists and indeed households right now, but what would be far better for the country would be if they were to remove the windfall tax, remove the energy profits levy from the oil and gas industry so it could generate yet more revenue from the treasury.", + "media_hash": "34e738cbb2da58d01b4a8e0dd85e16e5e0edf5bc36a77bc9cff9d71e", + "sequence": 1028, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7577350000000003 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Greg Marsh, CEO of Nous.co, said: 'This calculator shows how quickly lower energy bills are cancelled out by other rising costs.", + "media_hash": "172882414e0bcbb09665081abcd89f98ec5a9cd721b653d367071cf0", + "sequence": 8, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nous.co", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Greg Marsh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.\"", + "media_hash": "64f11a4e943e04fbf0a81f9487fcc83cfec9ee3d725151ca233983d7", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Joe Souto", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.11470000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535, + "leo_s_topic": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.", + "media_hash": "e2c1ce38b74d2fb21d5470cac5b6375714915d3d3e74db0eac2e3767", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Joe Souto", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.1119 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535, + "leo_s_topic": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "On the environment, both offshore and onshore wind farms encroach far more on the British coastlines and countryside, and the species that live there.", + "media_hash": "69075f2fd1101b6c306141d219cb19bce919cfa65d571ef95e9e5940", + "sequence": 37, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", + "media_hash": "e99add1c9063c7c65566f4d0c3e04a07d3e42d044e79acd88265876e", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anas Sarwar", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.748535, + "scottish_elections": 3.748535, + "energy": 3.748535 + } + } + } +}, +{ + "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", + "publication_date": "2026-03-31T19:25:00", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", + "media_type": "news_article", + "sentence": { + "text": "The increased windfall tax take was based on analysis of Office for Budget Responsibility figures from 2025 by Chris Wheaton, of financial services firm Stifel.", + "media_hash": "b4de8462917f33b8fa3549ef4e3928720aa75eab0c96b5ad4860b586", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Chris Wheaton", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stifel", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:29:49+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/alexburghart/status/2038881437378543698", + "media_type": "social_post", + "sentence": { + "text": "Tune in now to today's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to shadow energy secretary @ClaireCoutinho who says the Government could cut your energy bills by drilling more in the North Sea....", + "media_hash": "7d236d5b7ed1d1a48af6ace087c2f86591d795e72982c4335c15eac8", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.748535 + } + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight has published its latest forecast for the energy price cap, ahead of a fall in gas and electricity bills coming into effect tomorrow.", + "media_hash": "d4a7789edd319e51d43a73c72be760cc282aad969998c6861bc066dd", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.748535, + "energy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", + "publication_date": "2026-03-31T21:52:14", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", + "media_type": "news_article", + "sentence": { + "text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", + "media_hash": "98365704f35fb6c4239da81b113b322ef23ad98adff1116f09805dc3", + "sequence": 19, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scotland's farming industry", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "NFU Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "energy": 3.748535 + }, + "demo": { + "politics_of_food": 0.0 + }, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "general": 0.0, + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "President Donald Trump has apparently told aides he is considering ending his military campaign even if Tehran does not reopen the critical Strait of Hormuz - through which around a fifth of the world's oil supplies normally pass.", + "media_hash": "bf60e2efc9fda1df73da147005ce336825220205687eaa98f6b5f6c1", + "sequence": 8, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "President Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.739565, + "energy": 3.739565 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "A Welsh Conservative spokesperson said \"this one-off payment will only go so far for families already under pressure\", adding that the UK Conservatives had launched an enhanced Cheap Power Plan to cut energy bills by \u00a3200 to help families with the cost of living.", + "media_hash": "01f4a6e163ea6d9578fcb07e5d38a5f52c6de1d729c78a933db2d944", + "sequence": 47, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Welsh Conservative spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.739565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "The energy price cap will fall on April 1 (Picture: Getty Images)", + "media_hash": "c13e57ac0203c1e2adcc5440313eccd59d80124429c228bd2129c17d", + "sequence": 12, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.7135350000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", + "media_hash": "ecfb88a8e6be59febe9decc81c6b6eb1ad4ba564216948d9e880573e", + "sequence": 18, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "scottish_elections": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "And are you saying it is likely then that energy bills don't rise after July?", + "media_hash": "f6c29d8a1943998446b5dc5069d895b69d8d383ee8aed0aac75a8564", + "sequence": 140, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", + "media_hash": "616392e3d2df360f0851e7cd80dae7b149987736acba21efa5e180bc", + "sequence": 1349, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "economy": 3.7135350000000003, + "leo_s_topic": 3.7135350000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", + "media_hash": "24634f680700670725f9281cb717b50edc17f4aa717ee847eab16d04", + "sequence": 1354, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "economy": 3.7135350000000003 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "There should be no mass subsidy of domestic energy bills.", + "media_hash": "69eb7fb9db4d138cb7f0e10266937d543d0efb9948cce4c46e535395", + "sequence": 2505, + "claim_type": [ + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.712335 + } + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", + "media_hash": "a72191d958d6a8b204303a3d8d073db19741884ff7c2fb17bb3c1867", + "sequence": 53, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Patrick Harvie", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Green", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.697825, + "scottish_elections": 3.697825 + }, + "demo": {}, + "pa-media": { + "food_systems": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "You know, I think a lot of people will be seeing the news from the Middle East and will see the instability and the uncertainty and might be worried about what's going to happen to energy bills in the months ahead.", + "media_hash": "e0e9fee26f52934042c802d8e96a2b5be89f295ae5664589d99628c3", + "sequence": 124, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.6825799999999997 + } + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "For example, one thing the government could do that would be short of the probably unaffordable universal support provided in 2022, would be some sort of targeted discount on energy bills for low income households.", + "media_hash": "73a738ed14b73f870d1dbe36923a8f65209b0e02e0af25a493128273", + "sequence": 103, + "claim_type": [ + "rules", + "predictions" + ], + "claimer": [ + { + "name": "Ruth Curtis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.661095 + } + } + } +}, +{ + "title": "Oil and gas prices won't immediately return to normal...", + "publication_date": "2026-03-31T19:02:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", + "media_type": "news_article", + "sentence": { + "text": "J\u00f8rgensen said although he doesn \u0301t foresee a repeat of the 2022 natural gas crisis where companies reaped huge profits from a massive gas price hike, a one-time \"windfall tax\" on such companies \"is a possibility.\"", + "media_hash": "afbf7f32acffc4f53a8326ebf9de6855445cef2e49ed6579a188b554", + "sequence": 11, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "European Union", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dan J\u00f8rgensen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.653625 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fuel for ambulances and emergency speed limits - UK's petrol rationing plan", + "publication_date": "2026-03-31T07:39:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188558/uk-fuel-rationing-plans", + "media_type": "news_article", + "sentence": { + "text": "The National Emergency Plan for Fuel is produced by the Department for Energy Security and Net Zero.", + "media_hash": "20ef6090d7a660f17f49e619bb576fadc0b233c740daa9daca2d6b9c", + "sequence": 10, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Department for Energy Security and Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.61976 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.61976 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T17:25:24+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/JoStevensLabour/status/2039031317728231465", + "media_type": "social_post", + "sentence": { + "text": "\ud83d\udcc9 Our @UKLabour Government is taking decisive action to lower energy bills.", + "media_hash": "dabd7a487cefceadd7b70692055a767e35906e066af0bc98f107c4a5", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.612245 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", + "media_hash": "1000eaf6f4fec5852dc88f3720f6c9083f6ef71f8995a2b47df327fb", + "sequence": 15, + "claim_type": [ + "voting", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "energy": 3.612245 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", + "media_hash": "e8ba0501f33a1ca5f9728b40fc001b175d4b1e4c5c32de20d8b0d702", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Labour finance spokesman Michael Marra", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.612245, + "energy": 3.612245 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Yeah, I don't think we should have VAT on our energy bills at all, because VAT is a luxury tax.", + "media_hash": "004033bbe9a21a40b5f320cfe17a1fada8252cbe3c4fe372d9510a7a", + "sequence": 1293, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5980049999999997 + } + } + } +}, +{ + "title": "Households can get free electricity on four days next month", + "publication_date": "2026-03-31T07:50:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", + "media_type": "news_article", + "sentence": { + "text": "Scots urged to submit meter readings this week to avoid higher energy bills", + "media_hash": "1f020e85d2f0dbcfc89a6841672591da47b347c1555fc6307e205c0d", + "sequence": 7, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.59665 + } + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "But what we can do is to shield people from those prices on their energy bills through the energy price cap that I've talked about, and also by making contingency plans for the future.", + "media_hash": "be928e05849f33be8ba05427de558d2d20f9f469777f807c6a12dfc4", + "sequence": 139, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.566845 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", + "media_hash": "29a18e17320a82af97cbcaec70f86b027174eb5e43a076a1a05f9c93", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.562025, + "scottish_elections": 3.562025 + } + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Unlike households, these businesses are not shielded by an energy price cap and have more energy requirements, according to Novuna.", + "media_hash": "a4e6f13c1e3dfb5a4429c4e72e1151b79baa813c0c264875bdd5c2cb", + "sequence": 4, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Novuna Business Finance", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.562025 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.4092450000000003 + }, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock.", + "media_hash": "d4776924c20647278ae1f81ec4f1d3d1735854e001c51d1d927e1011", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997, + "starmer": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:12:39+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/John2Win/status/2039043207959380422", + "media_type": "social_post", + "sentence": { + "text": "Through its partnership with SGN, they've been handing out energy packs to support people in fuel poverty.", + "media_hash": "eb5c60e145ab4985147d70fb5cb41f9846723aee4b06945c38dd9745", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Newcastleton and District Community Trust", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "The forecast Cornwall insight has raised its forecast for the July energy price cap.", + "media_hash": "dcf91b72e41659724f8fa3dae79a4c72949025c86e92bc5171dddc7a", + "sequence": 303, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997 + } + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "The estimates come as Sir Keir Starmer hosts another Cobra emergency meeting over the looming hit from the Iran crisis, with the Tories insisting he take action instead of holding more talks.", + "media_hash": "3eb3465b2ae0f732fc8dc4da164017d034b6b004f4e888a20049d00f", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer is hosting another Cobra emergency meeting today over the looming hit from the Iran crisis", + "media_hash": "436c433168817c0a0324f078192ca8dbf63dcc1ec96a9514cfed9f8c", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Kemi Badenoch urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", + "media_hash": "a38b0e0a516fa8adfe210c8d71c52df7f83774f688f4f352b316308a", + "sequence": 38, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Energy consultancy Cornwall Insight said a hike in Ofgem's energy price cap was now 'effectively unavoidable'.", + "media_hash": "93d8dbf357fb45033307a52643ca5c675dee99a6f0147cefa4d27b2a", + "sequence": 17, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:51:40+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SEANLWOODCOCK/status/2038886935951798672", + "media_type": "social_post", + "sentence": { + "text": "Energy and Net Zero Secretary Claire Coutinho was questioned on #BBCBreakfast about plans to annually award licences for oil and gas projects in the North Sea", + "media_hash": "749073bba068e68139e7c8687a4d4f5916f6a4951cb0a4197f210a5f", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Energy and Net Zero Secretary", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997 + } + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", + "media_hash": "8a830f711f819356088c50a7630d1c8f02d3cc5e1e952cb0c30bb749", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", + "media_hash": "3c1ef980a35ab4379d9557aa2987f4278ec251e2337c297445183160", + "sequence": 1357, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997, + "economy": 3.5503549999999997 + } + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "Kemi Badenoch and other figures on the right have shouted about exploiting North Sea gas instead.", + "media_hash": "04becf358092b6b7d592b6f78a6209745eba4d9734a202ab78065a12", + "sequence": 27, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997, + "trending": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Reform said Labour had undermined energy security with net zero madness and the Welsh Conservatives said the help would only go so far for families already under pressure.", + "media_hash": "ffd31d91ce1933534c2724563cd2fd73e111834f6e3f606668f2a664", + "sequence": 113, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997 + } + } + } +}, +{ + "title": "Keir Starmer to chair Cobra as costs to households from...", + "publication_date": "2026-03-31T11:09:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", + "media_type": "news_article", + "sentence": { + "text": "Speaking to the Press Association on a visit to Hertfordshire, she said the Tories would cut VAT off energy bills for three years and scrap \"unnecessary\" green levies.", + "media_hash": "4722d7e75bd037f4af6d0a9123baa1e50e5ceeea587e6c6d936a2074", + "sequence": 24, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.541385, + "trending": 3.541385 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "media_hash": "37dd7dcb6b070e29cb5acc8c1ecd7c7b00b7b3335d4491a6a855be72", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5163599999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Separate figures showed the collective debt of two million British households to their energy supplier reached a record high of \u00a34.55bn at the end of last year, according to official data published by Ofgem, after climbing by \u00a37m over the final three months of 2025.", + "media_hash": "fd342e15a03d6a56788788923469b64fbb3d0e014631fa900b8f5de9", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5163600000000006 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", + "media_hash": "bebcb4208b02f29456620f944e2fd8a509c525a3ca23d151f87ec087", + "sequence": 27, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.47393, + "scottish_elections": 3.47393 + } + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "Reform has also announced tax cuts on VAT on domestic fuel and green levies, including the Carbon Price Support and Renewables Obligation, but has not said how it would fund any of these cuts.", + "media_hash": "9b414a6cd102151260d896db4cec876ef7b7a29e0ce171fb7d05f530", + "sequence": 5, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Reform", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.436025 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "Martin McCluskey, the Minister for Energy Consumers, said: 'Action taken by this government on bills will see the energy price cap coming down from tomorrow.", + "media_hash": "b3772627c203314c8c7375e0816cd45653bf252437cd46f566874b66", + "sequence": 11, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Martin McCluskey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.4269350000000003, + "energy": 3.4269350000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 3.4269350000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Martin McCluskey, Minister for Energy Consumers, said: \"Action taken by this government on bills will see the energy price cap coming down from tomorrow.", + "media_hash": "468d189bc476155db1fef0618ed526fccf0833508a24d8656f8b2aa6", + "sequence": 23, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Martin McCluskey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.4269350000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tories call for more drilling in North Sea with new draft law", + "publication_date": "2026-03-31T05:45:45", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", + "media_type": "news_article", + "sentence": { + "text": "The party claims more drilling would secure cheap, reliable energy and cut energy bills - in addition to making Britain more resilient to global energy supply and price shock.", + "media_hash": "50c40d37005667854cff97d875970f6b0eed00ef32d38e9175b2e383", + "sequence": 4, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Tories", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.4269350000000003 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", + "media_hash": "0eec77037a0660c7c69def7a32862548924b924582b4d4d4aa2ac657", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Labour finance spokesman Michael Marra", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.414065, + "energy": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", + "media_hash": "ea4c776071e4e1f3e5a2dd470dd7b71d087993258fdac6352bcc171b", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", + "media_hash": "52573a6944ac3078f1f560c59b0e9b589b1e113c4372e9a47858c692", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", + "media_hash": "e9c1379ac05eab18894ec619fa2bf225fd566c072d7c61170a62a524", + "sequence": 29, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "UK Conservative", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock as he warned: 'The Government can't do it on its own'.", + "media_hash": "565927111c5207201fe4d6b3733390ae6276a107279131b1cb10932a", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.414065, + "energy": 3.414065 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Addressing leading figures from multinationals, including Shell, BP, Centrica and HSBC, the PM acknowledged public fears that the economic impact is 'going to hit them and their families and their households... and I think probably uppermost in their minds at the moment is energy bills, petrol and also food prices.", + "media_hash": "a3d8d6006f7436e8b16d592b7c13be43ccca4c304eead7fe55a135e2", + "sequence": 5, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.4092450000000003, + "energy": 3.4092450000000003 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", + "media_hash": "4294a254b65a41dbe9d2d2d1191ead20bcb627c8bec692b38433256d", + "sequence": 71, + "claim_type": [ + "support", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.20340000000000003 + }, + { + "tracked_claim_id": 104556, + "score": 0.10219999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.4092450000000003, + "economy": 3.4092450000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T15:37:04", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "Traditionally, tumble driers are one of the biggest energy eaters - costing households as much as \u00a3275 in electricity a year, which Katherine is now able to save.", + "media_hash": "fe220fb3b52db48a60f41a9a55fae6dea46dfee4b4b1e870352ab8a9", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.4061450000000004 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.556405 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "According to new data, since the Iran war, 82% of UK small businesses have already felt the impact of rising energy prices.", + "media_hash": "ac35779b2acaa8b30081b020cfb095ed120bb89e6203f874795f2cd2", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": { + "climate_misinformation": 3.3956850000000003 + } + } + } +}, +{ + "title": "Readers' letters: There is no alternative to direct action against Iran", + "publication_date": "2026-03-31T16:59:28", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", + "media_type": "news_article", + "sentence": { + "text": "However, it has twice the power output of the above and will last for twice the time so the real comparison figure is one fourth - \u00a310bn - and, of course, it will kill no wildlife.", + "media_hash": "9e73c8d25e4b33f706ee4c39a6066f0f15167600351fd52ee023a918", + "sequence": 74, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "A McCormick", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "The UK Chancellor earlier this month confirmed that more than \u00a350 million will be provided for low-income families who have to heat their homes with oil.", + "media_hash": "2142858d3cf25b32f55a46b68f3879a75fe2b847e3e6877e6258a309", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Chancellor", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Urgent message every Aussie needs to read before they go to Bali as tourists panic: 'Feel a little stressed'", + "publication_date": "2026-03-31T01:09:27", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690009/Aussies-panic-fuel-Bali.html", + "media_type": "news_article", + "sentence": { + "text": "The closure of the Strait of Hormuz has put pressure on global fuel supplies, with diesel reaching more than $3 a litre in Australia and more than 500 service stations suffering from petrol or fuel shortages in NSW and Victoria.", + "media_hash": "b3b102e04572098c72dbed5e625b9c16b88339fd43b4b6f9bc9b4288", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.3956850000000003 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.09725 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Today Programme: Main interview", + "publication_date": "2026-03-31T07:06:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/403770", + "media_type": "transcript", + "sentence": { + "text": "No, I think people should go about their lives as normal, knowing that the government is taking action to bring energy bills down.", + "media_hash": "74fded5a14a2ad799a0abd206cdce7f3aedd3aa8b15b582ecb2d5abf", + "sequence": 123, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.363845 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "This would be in contrast to the universal support provided by the previous Tory government in 2022, when Russia's invasion of Ukraine caused energy bills to soar.", + "media_hash": "e41a3378558a01c6ad98c0a3c99f7485b282e0959c788f41e08b3b61", + "sequence": 8, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.29984 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 2.748535 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", + "media_hash": "b3eed90ba12fac2b2d244930b333228f4e8a9fa5c47e95232b2bf448", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.29984, + "energy": 3.29984, + "economy": 3.29984 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "Reform used a press conference at Heathrow Airport today to criticise net zero policies and announce their plan to scrap Air Passenger Duty on short-haul flights if they won power.", + "media_hash": "4c08d28ddaf64e8c3dffcad5cb5cddc05b3f3c61029e1886a640f594", + "sequence": 1, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Reform", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.299735 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 0.0 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", + "media_hash": "21efe1aab0ff4a772f97d563de1b0245d56f9eb68446f41421c1dc5a", + "sequence": 25, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jackie Dunbar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.290645, + "energy": 3.290645 + } + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "Reduce by 50% - gain the maximum 16 hours weekly", + "media_hash": "e6625536e7d16aa90490c848c56377e2b381f085c09c940e4acd8aa1", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.2593950000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "He said: \"With around 22 million households on their supplier's Standard Variable Rate, most are paying the maximum allowed by the regulator. Check your current contract, and if you haven't switched in the past year, it's likely you'll be free to leave - and you could save up to \u00a3917.\"", + "media_hash": "163b396bd6a7d61d751a63b2b4b62643b6e8664607ca1de640356322", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "James McCaffrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.2593950000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about \u00a340 from a DIY store, which can be used to water the garden rather than using a hosepipe.", + "media_hash": "2144ac481c0e7c762e77d3cf238ab75f7e3d6f9eb6ff6e46de2ba1be", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.2593950000000005, + "economy": 3.2593950000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's how much energy bills will go up by due to the Iran war", + "publication_date": "2026-03-31T10:29:56", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "THE latest forecasts suggest household energy bills are set to soar as a result of wholesale costs caused by the Iran war.", + "media_hash": "6bd30ed7c397fc5115eec83999615eea458473ef5d8a30d2c4c34601", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.2544399999999998 + } + } + } +}, +{ + "title": "Tories call for more drilling in North Sea with new draft law", + "publication_date": "2026-03-31T05:45:45", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", + "media_type": "news_article", + "sentence": { + "text": "Conservative leader Kemi Badenoch said her party's Get Britain Drilling Now Bill would \"stop the lawfare and free our oil and gas industry\".", + "media_hash": "be847353d18dd7dd12ca49c26f98c1b0289c88a77ebf2615c5f8e79d", + "sequence": 2, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Kemi Badenoch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.228755, + "trending": 3.228755 + } + } + } +}, +{ + "title": "BBC Presenter Accuses Minister Of 'Patronising' Response To Growing Energy Fears", + "publication_date": "2026-03-31T08:18:32", + "publication": "huffingtonpost", + "url": "https://www.huffingtonpost.co.uk/entry/justin-webb-bbc-minister-energy-iran_uk_69cb752de4b0128a9ef9d16a", + "media_type": "news_article", + "sentence": { + "text": "The energy price cap, which was announced by Ofgem before the Iran war began, will see costs fall between April and the end of June - but that will change again in July.", + "media_hash": "194142e133abba078d08be0faec9c77cc9a8bd9729906350844ae0d0", + "sequence": 5, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", + "media_hash": "023e3e63fe3e678041d7fcfaf750c711047f86f44f2b370a0b4c250f", + "sequence": 46, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "economy": 3.211065 + } + } + } +}, +{ + "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", + "publication_date": "2026-03-31T05:01:54", + "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", + "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", + "media_type": "news_article", + "sentence": { + "text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", + "media_hash": "4a2783b6197af9efa0d12701a5e3607ee5da0ef8efa0de3068cc8ba9", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "scottish_elections": 3.211065 + } + } + } +}, +{ + "publication_date": "2026-03-31T08:48:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", + "media_type": "social_post", + "sentence": { + "text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", + "media_hash": "8ec10c3352342495edc697bd098438eec80d5a70bcb4a2738b263378", + "sequence": 2, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "scottish_elections": 3.211065 + } + } + } +}, +{ + "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", + "publication_date": "2026-03-31T08:46:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Dickinson also flagged charges added to businesses' energy bills, echoing criticism from Marks & Spencer boss Stuart Machin last week, who said these were 'just not sustainable'.", + "media_hash": "f458cb28c47063a714e60753389bb5f00c7bf68858ff61e499c504a8", + "sequence": 12, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Marks & Spencer", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stuart Machin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "Indeed, prices have nearly doubled since the start of the war.", + "media_hash": "c48460cec19397e44e947c1407c86a91e0bc78b8f251549a883936d3", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.17364 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 3.17364 + } + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "In addition, more than three in four small business owners said business worries keep them awake at night with concerns over economic volatility and geo-political uncertainty reaching a record high (52%).", + "media_hash": "e06e4508fed9737b6d6ea1ba02769429e74e28a4187d1c627129f097", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.134055 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Respected energy analyst Cornwall Insight has said electricity costs for businesses have increased by between 10% to 30% since the conflict began in late February, while gas prices have soared by between 25% and 80%.", + "media_hash": "16a16b0321a0c1e0fe2f8a55dd77fffcfe0e092852b09b2d0842ad24", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.123595, + "energy": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "The Government's own numbers say that 93 per cent of the oil and gas which could be extracted from the North Sea fields has been extracted.", + "media_hash": "1cd502b3f08161214cfe0995f45c7faf4cc101fb6ad9dff9de307ddf", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", + "publication_date": "2026-03-31T07:14:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", + "media_type": "news_article", + "sentence": { + "text": "The strait usually carries 20% of the world's oil and gas supplies and since it has been closed the global economy has been hit hard with soaring fuel prices.", + "media_hash": "ec6255745ee4b49bff856b30f22579c327f9c814cbd8c5478095d013", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil and gas prices won't immediately return to normal...", + "publication_date": "2026-03-31T19:02:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", + "media_type": "news_article", + "sentence": { + "text": "He said the EU's executive arm is preparing a string of measures designed to help families and businesses weather the huge spike in oil prices that have resulted in about a 70% price hike for gas and 60% for oil in Europe.", + "media_hash": "443502b9539218cff718f7625a98128a097040be8373cf43122203b0", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "European Union", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dan J\u00f8rgensen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", + "publication_date": "2026-03-31T08:46:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", + "media_type": "news_article", + "sentence": { + "text": "'They now make up over half our bill.", + "media_hash": "464fbeb87f13b2b56862e39575024c39d680b93d68e2c272ad3053d9", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran\u2019s Energy War -- Netanyahu: \u2018Only Long\u2011Term Solution to Hormuz Crisis Is Rerouting Pipelines to the Mediterranean\u2019", + "publication_date": "2026-03-31T07:55:40", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/31/irans-energy-war-netanyahu-only-long%e2%80%91term-solution-to-hormuz-crisis-is-rerouting-pipelines-to-the-mediterranean/", + "media_type": "news_article", + "sentence": { + "text": "The Strait of Hormuz, which typically handles roughly one-fifth of global oil supply, has seen traffic collapse by as much as 95 percent since the conflict began, according to maritime intelligence estimates, with shipping severely curtailed amid security threats and mounting restrictions tied to Iran's actions.", + "media_hash": "0234a66036b6a908123d547472b1aa636a233e24678d1f67c809121c", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The impact of the Iran war on Asia", + "publication_date": "2026-03-31T09:11:27", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c1450zj6n48o", + "media_type": "news_article", + "sentence": { + "text": "The impact here of a war more than 7,000km (4,300 miles) away is being felt strongly - with the country's jeepney drivers among the worst affected.", + "media_hash": "a134a2a00d59c78fc1d5e72e7d720bca421c868aac1cd2d4c0511bef", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": { + "politics_of_food": 3.09725 + }, + "dev": { + "blah": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": { + "digi___strait_of_hormuz": 3.09725 + } + } + } +}, +{ + "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", + "publication_date": "2026-03-31T07:14:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", + "media_type": "news_article", + "sentence": { + "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started Feb. 28 when the U.S. and Israel attacked Iran.", + "media_hash": "1861408e2bbd2f24aa405fbf9d247717a2ae524ffbae21c38434a9c9", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Inflation increases to 2.5% in Europe as Iran war...", + "publication_date": "2026-03-31T09:56:06", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", + "media_type": "news_article", + "sentence": { + "text": "FRANKFURT, Germany (AP) - Europe's inflation rate rose to 2.5% in March, according to official figures released Tuesday, as the Iran war sent fuel prices sharply higher.", + "media_hash": "4727fc2470ab94fedf3606b14277526c4419fc7383245215aee8453a", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Eurostat", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "That's only half the job. They left wholesale prices to be driven by global markets and in the last energy crisis, 2022, wholesale prices over took retail and it bankrupted half the players in the energy market.", + "media_hash": "57619ec41b1d99d06235d288ace33b302efe02f19d035fea340f2c00", + "sequence": 1275, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + } + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Its blockage and the disruption to supply, combined with attacks and stoppages at energy infrastructure across the Middle East, has sent gas prices soaring and the cost of crude surging past 100 US dollars a barrel since the conflict started on February 28.", + "media_hash": "711505fe6c3c13d6bcb1b2bad899279acedf82da5ebc1300837e604b", + "sequence": 17, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "The Conservatives have called on the Government to take urgent action to support all households and businesses by cutting VAT, taxes and levies off energy bills.", + "media_hash": "f85a1d105435042e78348614100a3e2993b17a0541d4317d641d3a22", + "sequence": 20, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "The Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.074775 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "He also said that the UK has the most expensive industrial energy prices in the world.", + "media_hash": "0ce024aa930b47fd39241b68d03e0b4b824170075b74a004d0c543a3", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.074145 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 3.074145 + } + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases.", + "media_hash": "75b1ff08b834fbb5a058593b5aa513cdb559fcb5d4a045cb3e0e115e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "Make UK estimate that the average cost to a manufacturer will be \u00a3100,000, rising to \u00a3250,000 by 2030.", + "media_hash": "42eacaf45ff12616e873e1c4870520a1ccb562de50616b4dc1a4be0f", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Make UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "And when it comes to energy, consultancy Cornwall Insight has said that bills could go up by \u00a3332 in July when Ofgem sets the new price cap.", + "media_hash": "14a1ef5727ca936089ae7ea2fd0b8bedfc07362459f12a7f0d4d42e0", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "In the end, the final cost was closer to \u00a327billion, but we can't even afford that today.", + "media_hash": "d4f79ad335a6bd5f7de73ae53ccc6f6467dce6fef25c474593d37484", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "'Even when you look at the means-tested State pension - which is for people who reach that age without having sufficient social insurance contributions to qualify for a contributory pension, so we know those people are on low incomes - only 56 per cent of those qualify for fuel allowance.", + "media_hash": "71a24ebf67f98044c30b1d4e82815bb05d08cd04520def33f605a106", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Age Action Ireland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "\"Shutting down the North Sea means we are losing out on \u00a325 billion in tax receipts that we could use to cut bills and reduce the cost of living.", + "media_hash": "1b4a0510f183c8938a242b3fd3dc32a10d9f1542446cf52d09a35a67", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104555, + "score": 0.14649999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "Filling up: Brent crude has reached nearly $117 a barrel as prices for petrol and diesel continue to climb amid fears of a repeat of the 2022 energy crisis", + "media_hash": "bbcaf9c778d6358e11979b0e9e3b18c981b0d0c52a154f9357970ef3", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", + "media_hash": "7ee60d472340e5a6169d594449470529ec8d11314140dbe43d85c3f7", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.970815, + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Small businesses across the UK say that the estimated hike in energy prices following the war in the Middle East will cost them an average of \u00a32,273.90 a month, coming to a whopping \u00a327,286 over a 12-month period.", + "media_hash": "8431e0e8e9378ecfefb2959be47f4fce45937efe30a5fceb40fd9b56", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104448, + "score": 0.37929999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": { + "climate_misinformation": 2.970815 + } + } + } +}, +{ + "publication_date": "2026-03-31T12:12:02+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/Telegraph/status/2038952458492215586", + "media_type": "social_post", + "sentence": { + "text": "RT @DailyTPodcast: By 2035, we would only need to import 6% of liquified natural gas from abroad if we drilled in the North Sea...", + "media_hash": "113f2547f88604440b13f7baa5e8136c4113ae9390c3f767bae1fa0c", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Daily T", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + } + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Opposition leaders argue the \u20ac250million fuel-relief package announced this week does not go far enough, while one leading economist said wealthy people driving 'big SUVs' will benefit most from the measures.", + "media_hash": "7467cf58b02f3d5cae18f898d60bf11442b3e00fade54d957a7561e9", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Opposition leaders", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "leading economist", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "energy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil and gas prices won't immediately return to normal...", + "publication_date": "2026-03-31T19:02:16", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", + "media_type": "news_article", + "sentence": { + "text": "Since the start of the war, the EU \u0301s bill for imported fossil fuels has jumped by 14 billion euros, according to J\u00f8rgensen.", + "media_hash": "6d493676076f6f5f2c9e829a13647908a2330a30964b983be0ca1606", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "European Union", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dan J\u00f8rgensen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", + "media_hash": "5f76ec41c120474bd2f456d6d80bc5cdbb27746137330400a50a526a", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.970815, + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T12:05:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Diesel went from about \u20ac1.72 per litre to \u20ac2.30 cent per litre, meaning an increase of 11 cent per litre in the 23 per cent VAT take.", + "media_hash": "778c9d1c316edf78df41480020a27b21ea66480ed5a13361f255eb53", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", + "media_hash": "2366f3bcead30a3c69969c3b4d708cce8894eaa831401c1443a8efa3", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", + "media_hash": "41affbdecfc8d59ba66c667c1a04b7cffca63c698680ab64100a134e", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104448, + "score": 0.19320000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "They said rising energy prices mean they will pay an average of \u00a3753.56 more each month for transport, travel and logistics and an average of \u00a3734.42 more each month to heat their office/workplace.", + "media_hash": "1ed559e163c77681d9ec8620ca006ebec33e80a1f44c1f508e28ccf4", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": { + "climate_misinformation": 2.970815 + } + } + } +}, +{ + "title": "Fuel shortage update as drivers given important message on what to do now", + "publication_date": "2026-03-31T12:21:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", + "media_type": "news_article", + "sentence": { + "text": "\"This is why people are now concerned that there's a developing shortage of diesel and jet fuel - jet fuel prices have gone up 50% since the war began and I think they'll go up further.", + "media_hash": "e66e9f6da6467aaf75d7086e543a794405683ca98c717faaaa644aea", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nick Butler", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "energy economist", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "ex-BP head of strategy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "advisor to Gordon Brown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", + "publication_date": "2026-03-31T19:25:00", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", + "media_type": "news_article", + "sentence": { + "text": "The Chancellor can expect a multibillion-pound windfall in tax as the war drives up energy prices at petrol pumps", + "media_hash": "fdd71bca853724f21e763d654692a702e8a9c4743717eadf34777c8c", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The impact of the Iran war on Asia", + "publication_date": "2026-03-31T09:11:27", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c1450zj6n48o", + "media_type": "news_article", + "sentence": { + "text": "In Mumbai - a city of more than 22 million people - as many as a fifth of all hotels and restaurants fully or partially shut in the first weeks of March.", + "media_hash": "701b5892d86e4d1a1ff545be5b67cb3e2546efb82093e59e63520635", + "sequence": 79, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": { + "politics_of_food": 2.970815 + }, + "dev": { + "blah": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": { + "digi___strait_of_hormuz": 2.970815 + } + } + } +}, +{ + "title": "The Greens who want to drill the North Sea", + "publication_date": "2026-03-31T04:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", + "media_type": "news_article", + "sentence": { + "text": "The concept of fracking has the support of 41 per cent to 30 per cent opposed.", + "media_hash": "2311446e6dd8fcfe809229c9aebee10fdff3dcb65c37b95ce4ea3f5d", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Britons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "Farage stated that household bills have been 15-20% higher for \"the best part of two decades\" due to these subsidies.", + "media_hash": "85a8706a7f8451c52373529b5ac88c9d389c1dd58508431f889a27ec", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815 + }, + "demo": {}, + "pa-media": { + "environment": 3.123595 + }, + "fullfact-policy": { + "climate_misinformation": 2.970815 + } + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "Nuclear projects currently face up to eight separate regulators, multi-year planning battles, and a legal environment where any local challenge can derail nationally significant infrastructure for years.", + "media_hash": "f66c82558643ea7235318853c1c2aaeca7de0aaa44644221955ed3f8", + "sequence": 24, + "claim_type": [ + "quantity", + "rules" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.93752 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Because this is the second one of this decade already, you'll probably realize, it's only 2026, this is our second one, there'll probably be a third one for all over.", + "media_hash": "3a3a92ea8df1ede4410657b5774a52dd377f39e8be988fca183e1b6b", + "sequence": 1270, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.89907 + } + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "Nearly everyone in England, Wales and Scotland is benefiting from the cut irrespective of their tariff, although the amounts will vary between households.", + "media_hash": "eaeb5cb7a0c1c26ed5f25c939375aba6550d38340d0765b47281860b", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "A bath typically uses 100 litres of water while taking a four-minute shower with a \u00a320 water-saving shower head uses just 32 litres.", + "media_hash": "e07f5f793a6bd9a27ffa3b60f452568dedef7161680a50bbbd801445", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131, + "economy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T22:56:31+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/TrisOsborneMP/status/2039114646699835893", + "media_type": "social_post", + "sentence": { + "text": "Every kWh delivered by green energy is less use of oil / gas.", + "media_hash": "2baca56d774ac67f6185d149d60b5bc1d72bd7949336566afea2b446", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "user", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131 + } + } + } +}, +{ + "title": "Fuel shortage update as drivers given important message on what to do now", + "publication_date": "2026-03-31T12:21:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", + "media_type": "news_article", + "sentence": { + "text": "He explained: \"If supplies are cut by 20%, then someone is using 20% less.\"", + "media_hash": "b7f03c16764b735c924010e6265589e92097a555794ffd0ac26fac92", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nick Butler", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "energy economist", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "ex-BP head of strategy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "advisor to Gordon Brown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.88131 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "A washing machine requires up to 150 litres of water per wash.", + "media_hash": "0ab511a7b85895b514e7743d810218beac852d340100c2b6f440c672", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131, + "economy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", + "publication_date": "2026-03-31T18:59:36", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", + "media_type": "news_article", + "sentence": { + "text": "Mistreatment or hostility will only slow communication and resolution.", + "media_hash": "4e365517925655e5133751ebef1393b7f5d9d45895dfcc50c2df3a61", + "sequence": 20, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.867685 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5692500000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", + "media_hash": "86a27ceed05145c49e4630b444b17b58075ef42a578d09157195487a", + "sequence": 1407, + "checkworthiness": { + "fullfact": { + "energy": 2.8610100000000003, + "economy": 2.8610100000000003 + } + } + } +}, +{ + "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", + "publication_date": "2026-03-31T07:14:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", + "media_type": "news_article", + "sentence": { + "text": "In the UK petrol stations have already started to run dry, with closures reported from as far as Northern Ireland to Essex at the start of this week.", + "media_hash": "53482abb69b7af5936f0fea3b7b2196bf778adba25b90cd512807a59", + "sequence": 5, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.8334 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Paying the Middle East premium", + "publication_date": "2026-03-31T14:09:14", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", + "media_type": "news_article", + "sentence": { + "text": "From mortgage rates to the price of fuel, cost of living pressures are increasing and there seems to be no signs of relief anytime soon.", + "media_hash": "c62a2add61568fba8f131ea470648eda3cecba274da6caa65340d209", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.8194 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:00:19+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/ClaireCoutinho/status/2038889111088484747", + "media_type": "social_post", + "sentence": { + "text": "At the same time, refusing to fully exploit North Sea oil and gas just forces us to import dirtier energy, lose jobs, and weaken our economy.", + "media_hash": "53699f47d7c21807524323d41de7f48349522e9aab182ece06119567", + "sequence": 1, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "BenGrahamUK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.8109650000000004 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", + "media_hash": "c4145132ba7b006d21f8d80c44b970dfec84e420116506164213a9a5", + "sequence": 1398, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.810965, + "economy": 2.810965 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", + "media_hash": "4fed090c7516038c5440b72410678a5e4a2b89cbc8e8a2c98b815212", + "sequence": 1392, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.810965, + "economy": 2.810965 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Experts fear that Brent crude could reach all-time highs of $150 a barrel if the conflict continues.", + "media_hash": "437b70ac5dd57db6a5f571c66939fd58a6932bbb369186a32ec68f93", + "sequence": 13, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.78611 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", + "media_hash": "8c7a42ff28cf003199ccc9b149756bbf41b9621a223335d4f08b5027", + "sequence": 1404, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.7846200000000003, + "economy": 2.7846200000000003 + } + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "With conflict in the Middle East driving volatility in the energy market, the cheapest tariff is now priced at a similar level to the upcoming cap rather than saving you anything.", + "media_hash": "b731d72144654bc37eeefa1c3a557a6e97d4d164064466d691b68527", + "sequence": 6, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.7846200000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The impact of the Iran war on Asia", + "publication_date": "2026-03-31T09:11:27", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c1450zj6n48o", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, the attacks on energy infrastructure in the region have only served to push prices higher.", + "media_hash": "a40adadf1970aa9ccee53afb1dc47c79f4996f942f7792453d49eb90", + "sequence": 12, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.7846200000000003 + }, + "demo": { + "politics_of_food": 2.7846200000000003 + }, + "dev": { + "blah": 2.7846200000000003 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": { + "digi___strait_of_hormuz": 2.7846200000000003 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "The annual cost of essentials, including council tax and water, will increase by more than \u00a3200 from April even before the economic impact of the Iran war is felt by UK consumers.", + "media_hash": "2a539b79fa1ae6b284e4a95318b501160491e695a55aa979a45121cc", + "sequence": 6, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.77565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "However, there will barely be a chance to enjoy the savings, amounting to around \u00a310 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", + "media_hash": "abc32788f0e2da823cac45fc728a1c4febb7af1173ad2ff11f05cb68", + "sequence": 65, + "claim_type": [ + "quantity", + "predictions" + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.2639 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.77565, + "economy": 2.77565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "South Africa hit by record diesel price hikes despite...", + "publication_date": "2026-03-31T21:11:59", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696213/South-Africa-hit-record-diesel-price-hikes-despite-fuel-levy-cut.html", + "media_type": "news_article", + "sentence": { + "text": "He said that the fuel increases, especially the record increase for diesel, would have a devastating result on the cost of logistics and transportation, with knock-on effects on inflation in coming months.", + "media_hash": "5076e04d8f7f341904ec978ba287e288a36282f07b04b7e2373eaa2e", + "sequence": 14, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Theuns Du Buisson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.7756499999999997 + }, + "demo": { + "politics_of_food": 2.801995 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir said he was focused on 'de-escalation' of the crisis that has led to the blocking of the Strait of Hormuz, which normally carries 20 per cent of the world's oil.", + "media_hash": "75073c749563f3b6e874bcf3c725eef1180b6f32c06a4d029bf67ddd", + "sequence": 43, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.76525, + "starmer": 2.76525 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.76525 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", + "media_hash": "eaa02221fdad37e1e16920f4e8a9357f1d45634069cfa01b48fc4b75", + "sequence": 11, + "claim_type": [ + "predictions", + "support", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.753175, + "energy": 2.753175 + } + } + } +}, +{ + "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", + "publication_date": "2026-03-31T06:06:40", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", + "media_type": "news_article", + "sentence": { + "text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", + "media_hash": "deed62a4ff8fb436ae263ebf718bcf36975cde689cf518d8d8520565", + "sequence": 12, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Greens", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Gillian Mackay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ross Greer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 2.751055, + "energy": 2.751055 + } + } + } +}, +{ + "publication_date": "2026-03-31T11:22:50+00:00", + "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", + "url": "https://x.com/scottishgreens/status/2038940076432892346", + "media_type": "social_post", + "sentence": { + "text": "Green energy is the cleanest and cheapest energy available.", + "media_hash": "2cfb1d3be5211999387f81c93f07495e28ffaae07adddebf282b3f42", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Green energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.751055 + } + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "\"If your provider can't install one, they must offer you an 'assessed charge', which could save you money. Around 2.5 million households are also eligible for social tariffs, with average discounts of around 40%.\"", + "media_hash": "8af17233e63bb5a6a8b581fa7c6ea962e50ea4293367d42fd2e07d4b", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "The average figures quoted for additional monthly costs are national averages that include those not affected by price rises.", + "media_hash": "c40e817efabda719abc00e11a87fa39d3e24f5887eeab1dcf78a5c75", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_misinformation": 2.72968 + } + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "In terms of unit costs under the April cap, the maximum that households on a default tariff are paying is 24.67p/kWh for electricity and 5.74p/kWh for gas, with standing charges of 57.21p and 29.09p respectively.", + "media_hash": "7467607d8f9550f2fa1b93e5c6854d3f6594b4e06277e070a0e76e62", + "sequence": 140, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", + "media_hash": "812b460b7392f5dca5257da1e17967ad0a41f7c07975cb7156c40aa5", + "sequence": 1331, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72968, + "economy": 2.72968 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Water bills in England and Wales are also due to rise, by an average of \u00a333 a household from April, up 5.4% to \u00a3639.", + "media_hash": "c051d844f8af4e1b03fa97c262c96ccf7d6da10c4e6df5340dd5778e", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72853 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Some households could also save costs by installing a water meter - those who switch typically save up to \u00a3100 a year.", + "media_hash": "091f2a9fe79c6cfe00659a0ba615c829a92a00179afaf70169290f98", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72853, + "economy": 2.72853 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "BT, EE, Plusnet and Virgin Media are all hiking broadband prices by \u00a34 a month, Sky by \u00a33, and Vodafone by \u00a33.50 - adding nearly \u00a350 more per year to bills.", + "media_hash": "ac2b32309a9c66b5f95d0980054cb1b5c266cff110da66bcb71ad736", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72853 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "The estimated 22 million households still languishing on their supplier's Standard Variable Rate are paying the maximum allowed by the regulator.", + "media_hash": "5f87b14f62acc394c698ed61ef16604c180f49d11c0f03873e1ec925", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", + "media_hash": "0b3125de9d730baa8e316111bf3e0ef949b8ee04da0bf3d6c4b53824", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + } + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "At around \u00a3400, these panels are much cheaper than traditional rooftop solar and can be put on balconies, in outdoor spaces or fixed to an outside wall that catches the sun.", + "media_hash": "bfefb0358274f3c6f53a30868394e3019609ebb47d7165d99988ecaf", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Inflation increases to 2.5% in Europe as Iran war...", + "publication_date": "2026-03-31T09:56:06", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", + "media_type": "news_article", + "sentence": { + "text": "Food price inflation came in at a relatively moderate 2.4% while services, a broad category ranging from medical care to haircuts, rose 3.2%.", + "media_hash": "ef685035c3cf469702f934d6cb8179d590aa596bb3f29431e762862e", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", + "publication_date": "2026-03-31T08:48:48", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/british-gas-octopus-eon-edf-36947292", + "media_type": "news_article", + "sentence": { + "text": "\"There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", + "media_hash": "8a9f957eeeb536762f63b4fe099aa71ed384fc509569c991df602c66", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Craig Lowrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "Nuclear power's safety record, measured by deaths per unit of energy produced, is better than oil, gas and coal, and comparable to wind and solar.", + "media_hash": "64b748b79d2c465931017e3b2983dcbe32a4b0a69a327c1c25d8ba4d", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "While 16% of businesses said they may need to reduce staff numbers, 34% are looking to automation to cut long-term costs.", + "media_hash": "72cc5be288af197f3091a16c1c98d913b8b226bcd5afdc1fc3b549d3", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "Asia feels the sting of Trump-induced energy crisis", + "publication_date": "2026-03-31T17:27:12", + "publication": "thecanary", + "url": "https://www.thecanary.co/global/2026/03/31/asia-energy-shortages-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "This crucial waterway has global significance for Asia, serving as the gateway for 20% of global Liquified Natural Gas (LNG) and 25% of seaborne oil.", + "media_hash": "9eed97277f1cbcef32676838853a9bbe949b2558e35d0fbec09183d0", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104558, + "score": 0.1654 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "While the UK does have among the highest industrial energy prices in the developed world, this is primarily because the country is more reliant on gas for generating electricity compared to other European countries.", + "media_hash": "09532656fea118e22b02a44e2dc11597329c8abb99d230bb3ca3d11c", + "sequence": 10, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": { + "environment": 2.6987249999999996 + }, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T12:05:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Petrol and diesel combined come to \u20ac1,195,000 a day.", + "media_hash": "0d2eeb7ed6f21681eb2e175b8d8b83d9a739cd03c78210d3c4db8c7e", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fuel support considered for diesel-dependent Pacific", + "publication_date": "2026-03-31T23:40:41", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", + "media_type": "news_article", + "sentence": { + "text": "With 80 per cent of regional energy currently dependent on imported oil, the crisis has accelerated the push for local clean energy generation.", + "media_hash": "1bdc81db22d2b9a9289f1bace289fa6c1ab09e2b414b2358531c638c", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "claims_matched": [ + { + "tracked_claim_id": 104558, + "score": 0.23070000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "The economy barely grew at the end of last year, official figures confirm, leaving it vulnerable to a further downturn triggered by the latest energy price shock.", + "media_hash": "f4f075aa2e953672b2c04ccaf1223f27db0c4576a8f1747cf2300c73", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "It is worth noting that current wholesale costs remain well below the extremes of 2022, which means that, despite the turbulence, the scale of this crisis is not yet comparable to the price shock households faced three years ago.", + "media_hash": "fae5b1f8f580a70819b91d838d34dfc301674a125a60f628e8b995fe", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "'There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", + "media_hash": "dab39f0c5791c4a4ffa6b26024c7387c7b85b152dc5c7d47577c33e4", + "sequence": 22, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Craig Lowrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fuel support considered for diesel-dependent Pacific", + "publication_date": "2026-03-31T23:40:41", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", + "media_type": "news_article", + "sentence": { + "text": "While reducing emissions is a factor, for these nations responsible for just 0.03 per cent of global conditions, the primary driver is energy security.", + "media_hash": "e4e69ae6618b841ecda831b051be4a7fd45936795d2b01aee75b0fc1", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Over two in five said they are likely to raise their prices; 20% said they would reassess their funding arrangements with lenders to free up more working capital; and 17% said now was the time to explore renewable or green energy options to lower costs.", + "media_hash": "35b3656b474e910b3e46983e3fc68c32adf367f4fe3ffc0011f36328", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "On average, those taking part currently secure approximately 18 hours of complimentary electricity monthly, based on company figures.", + "media_hash": "9c719a36ea7c3c5a8d408e4f3df38ad348e6ded0f694a3e5726f96ff", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.22540000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", + "publication_date": "2026-03-31T02:21:07", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", + "media_type": "news_article", + "sentence": { + "text": "It has approximately 1.2 billion barrels of onshore crude inventories, Kpler estimates.", + "media_hash": "d026eb86b0a726ad08ad5742bbaee8eb094868dfc07ffe11a133c438", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kpler", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", + "publication_date": "2026-03-31T19:25:00", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", + "media_type": "news_article", + "sentence": { + "text": "The additional revenue includes billions of pounds levied from North Sea oil and gas profits, power generators and VAT on petrol sales.", + "media_hash": "2414c4c2579449283b09b5feac4bebb83103707f8c025ffad37620b1", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "More than \u00a3130m is spent each year on such schemes.", + "media_hash": "7e0303524cd63bac6650c4cc3e93fe75a79f51183806cc2f80065247", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "senedd_election": 2.6987249999999996 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Gas and electricity bills are set to fall by \u00a3117 a year on average from April 1, to \u00a31,641 a year for a typical household.", + "media_hash": "9fc5bdd0c8a75354fc89bff6373ffa1ba064ec972dafbe15787065ad", + "sequence": 64, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Because back then the amount of goods - not just oil but also fertiliser, aluminium, all sorts of other products - was a lot less than what we are dependent on today.", + "media_hash": "1edd0ff0e142259138215bb5f91cec1bc51d419f0dbf086d335da207", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Lars Jensen", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Gas prices are climbing just as quickly, and with 26million UK homes relying on boilers, we're more exposed than most.", + "media_hash": "f71ab47ecc611f5b117c798e4d88261953a1f6f36a4a25b89260db08", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "'Fewer than 30 per cent of people in receipt of the State pension get fuel allowance.", + "media_hash": "38482eafdbcb633514c6b0f584185f91cb65f5bdf2d44cbe89cb9462", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Age Action Ireland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.72968 + }, + "pa-media": {}, + "maldita": { + "energy": 2.72968 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "Production has been falling for a long time - last year, production was about 20 per cent of what it was in 2000, near its peak.", + "media_hash": "680bab7e71c24da7acf4603d34c5a615916a2aaaf8a10af5c68edd17", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.6987249999999996 + } + } + } +}, +{ + "title": "Households can get free electricity on four days next month", + "publication_date": "2026-03-31T07:50:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", + "media_type": "news_article", + "sentence": { + "text": "On average, customers taking part earn around 18 hours of free electricity per month.", + "media_hash": "762f8989ed086b14b35c90c6d028487ed4b20aa15a28082b351e6c1e", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + } + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "Customers have racked up more than 20.5 million free hours of electricity", + "media_hash": "d98ba5c0af2ae1c7117c83759a23125ddf99fd2c2a41f89323d43d2c", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.3023 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", + "publication_date": "2026-03-31T12:13:11", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", + "media_type": "news_article", + "sentence": { + "text": "\"It's always hard to be 100 percent, but we can detect more than 90 percent of what's happening in real time.\"", + "media_hash": "c352b87c8a2b8d36d6390d19c8370edbe070901567dc9bd0db262417", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kpler", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jean Maynier", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Oil has almost doubled from around $60 a barrel to almost $120.", + "media_hash": "5c9ff7fe672462aea49ec1b943ede7e71263d2cf7362fefd9aa7cf4a", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", + "media_hash": "9e3574c922321a880b23e9f356285ff07ee2913732f20c41250506cf", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996, + "leo_s_topic": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.698725 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "In the US, it takes an average of eight years for a hydroelectricity facility to become fully licensed.", + "media_hash": "cd2bff9e3c7813774fd8dd8a6ed3688ee7dc68f9bb48fa735931b8ad", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Mobile customers can save an average of \u00a3304 switching from a handset contract to a SIM-only contract.", + "media_hash": "215d90b8b45740ee47f8a532d099de8ab25573592bc4447f3942d5e9", + "sequence": 53, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T15:37:04", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "Electricity is measured in kilowatt-hours (kWh) - with one unit equivalent to a 100-watt light bulb running for 10 hours, or a 200-watt fridge for five hours.", + "media_hash": "9204911444626a85d5f27ec13156f8689be03a063835214e3ef5351e", + "sequence": 46, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6831300000000002 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6831300000000002 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "We need far more oil and gas as part of our overall national energy situation.", + "media_hash": "4317202f8da0354918a977b9bb0ffdf233f6ec0901a0b38e6561358e", + "sequence": 967, + "checkworthiness": { + "fullfact": { + "energy": 2.6746749999999997, + "trending": 2.6746749999999997 + } + } + } +}, +{ + "title": "Europe told to 'work from home, drive less and avoid flying' in energy crisis update", + "publication_date": "2026-03-31T22:46:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/world/2189020/europe-told-work-home-energy", + "media_type": "news_article", + "sentence": { + "text": "The Strait of Hormuz, through which about one fifth of all global oil traded passes, has been a contentious point in the conflict.", + "media_hash": "3adfcd8485a0ceafb86a0d93c9c7a4e21abde867624ae6c4f75b2f50", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.67238 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "Um, instead, the first response of the government seemed to be to to whip up a storm about profiteering, which was, you know, extremely unhelpful and, you know, annoyed petrol retailers and actually put some of their staff at risk of, um, verbal and physical assault.", + "media_hash": "9da2a601b05e9ed764899c1c58cee2af9c0f927b48efacae38e759de", + "sequence": 250, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.652965 + } + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T12:05:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "There was no reduction in the home-heating oil tax, which Age Action Ireland has predicted will contribute to a 'significant rise' in poverty amongst elderly people.", + "media_hash": "e9e51db0ef84b192f35e02b813a7a568d758f3dbc455f760d090849f", + "sequence": 7, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Age Action Ireland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.649215 + }, + "pa-media": {}, + "maldita": { + "energy": 2.649215 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "Experts are warning that when the Government's quarterly price cap comes in at the end of June, bills are expected to jump by \u00a3332 to an average of \u00a31,972 a year.", + "media_hash": "1605695c32559f98a4fa7d6dd5dd40832c72da97807365b7ceedd42c", + "sequence": 5, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Experts", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.31699999999999995 + }, + { + "tracked_claim_id": 104752, + "score": 0.06775669193604274 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.649215 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", + "media_hash": "34c35813d5befd06a9e4c04c9711f2e0dc698156a8a9c287a0bdb322", + "sequence": 1325, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215, + "economy": 2.649215 + } + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "What they never add is that they'll rise by almost 300 pounds come July.", + "media_hash": "d9e86fba73e745c8ce01fa232deaf2733de6ca69047e342b01173d30", + "sequence": 86, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215 + } + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "Um, I mean, for example, we had the publication this morning of the latest estimates from Cornwall Insight, a very sensible people who forecast what the off-jam cap might be in July, and they were predicting an 18% rise, which would be clearly very painful, but we're nowhere near as big as the rises that we saw in 2022.", + "media_hash": "8a676fd6d42318426d9641ddaa0837eeeb22981a0b5dbf2862eea6ae", + "sequence": 263, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215 + } + } + } +}, +{ + "title": "Fuel shortage update as drivers given important message on what to do now", + "publication_date": "2026-03-31T12:21:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", + "media_type": "news_article", + "sentence": { + "text": "Iran is blockading the Strait of Hormuz in response to air strikes by Israel and the US, preventing about 20% of the world's oil trade from passing through.", + "media_hash": "c1359cf7475e76f186142b82190c7aa271b82aeceff9846a2131a894", + "sequence": 3, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.648555 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "\"The biggest . challenge] is just the lack of awareness of our solution, but that's really flipped in the last nine months. We still keep our 40-50% tax credit, while wind and solar [equivalents are sunsetting,\" says Davies, referring to the Trump administration eliminating Biden-era federal subsidies for solar and wind energy ventures.", + "media_hash": "9e9c28ae1e52f7c91b8a620304e00e49e4223e7574e1d182eb561ac2", + "sequence": 43, + "claim_type": [ + "quantity", + "support" + ], + "claimer": [ + { + "name": "Ocean Renewable Power Company", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stuart Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.641985 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.641985 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", + "publication_date": "2026-03-31T12:13:11", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", + "media_type": "news_article", + "sentence": { + "text": "\"There is almost no crude oil arriving\" in Asia currently, and no viable alternatives to energy imports from the Middle East while \"inventories are being depleted\", Maynier said.", + "media_hash": "74aa49e8306545f4dddc43beeb184efbe96b2f7d1ea6ab6368848dce", + "sequence": 11, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Kpler", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jean Maynier", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.638815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Fuel support considered for diesel-dependent Pacific", + "publication_date": "2026-03-31T23:40:41", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", + "media_type": "news_article", + "sentence": { + "text": "Zero Carbon Analytics energy transition researcher Amy Kong said small economies were already spending huge proportions of GDP on fuel imports.", + "media_hash": "ace7482f046e9130038b912af169339ebf4c0eff66310f389aa75004", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Zero Carbon Analytics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.638815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "The energy experts warned a rise in Ofgem's price cap in July was 'effectively unavoidable' with rocketing wholesale prices over March now locked into the calculation and little chance that they will fall below pre-war levels in the coming weeks.", + "media_hash": "6fc048d199ac69c129e65069887ea14cc33a03221bfa264d543e9bab", + "sequence": 17, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.638815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Other parts of the world in Asia, they're having four day weeks and rationing and stuff like that already because they depend on the Middle East and Gulf states for their oil supply, we don't.", + "media_hash": "75931974be872b378b927947cf0f4cfaa2914290adad925a10d7c153", + "sequence": 1263, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.638815 + } + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "However, with gas prices soaring once again - before they even had a chance to recover from the spikes generated by the Ukraine war - it is becoming blindingly obvious that solar and wind power are the way to go.", + "media_hash": "7baac23f7d2949a28bd34d5a4e6d5476fbb9878bcaae68fb39c30d90", + "sequence": 25, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6127849999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.6127849999999997 + } + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "Labour may have lost grip of the national spirit.", + "media_hash": "2c201eb3e97d10753762e5dd62013bda64a1ee018c471eea07ec5375", + "sequence": 40, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6127849999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "\u00a3400 plug-in solar panels will quietly change the whole country", + "media_hash": "7f3da22572c0739565f02ee40f3b28d120632ecc7a206db2c7b67206", + "sequence": 0, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.603815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.603815 + } + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "The deal hinges on households cutting their usage during peak weekday hours - typically between 4pm and 7pm - when demand on the grid is highest.", + "media_hash": "1677b568ecd52319190a01ea9b3625996241d2e0c5572564ccc648b6", + "sequence": 3, + "claim_type": [ + "quantity", + "rules" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.012399999999999967 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", + "media_hash": "a0d759d8ce015fd1abcd1cd8c6d5dea694675bdb598d6e4fb4e3371e", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.57747, + "energy": 2.57747 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T11:42:35", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "He now pays just \u00a370 a month on gas and electricity bills.", + "media_hash": "b60d0dea28e812f87d820f41c8616977ac90c0652e3492334a2686ba", + "sequence": 58, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "Over four weeks, that adds up to a maximum of 64 free hours.", + "media_hash": "8a13772da4ae7ab9ce241f9213ab5dde8752d88ae70a45596340012e", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "But if you wash using the eco-mode setting it can be just 50 litres.", + "media_hash": "8a671600aaded2440af66dc6b56ed049783d5e79e8baf9de6459dd31", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "Nearly a third of homes in Ceredigion and Powys are reliant on oil, as well as 24% in Carmarthenshire.", + "media_hash": "3b7ccd4b108fc69bf072eaf4a2246286c9641c0d0a3ef12185932df9", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5769 + } + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "This consists of \u00a3409 million for diesel and \u00a3135 million for petrol.", + "media_hash": "37aadbde22bcf4a25558b2392a337a1c6d5fc9995ea2aa8fa0ed8a8c", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T12:05:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "That amounts to \u20ac1,045,000 per day, based on around 9.5million litres of diesel being sold per day in March 2025.", + "media_hash": "efb880d721024b10e3b3bccd0b8b42f005d4ef362aede07ffe8cbb2a", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "About 7% of households in Wales depend on oil as their primary heat source, but there are much higher proportions in rural communities.", + "media_hash": "f5c82af927f29eb7cb8362b532fe9679297ec7110ee93688185d5899", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.5769 + } + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "This is a 7 per cent drop.", + "media_hash": "4f054ebaaf4a3d813681844a17ac6a9c115825c5bc4e138af77c14c0", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "Through the Discretionary Assistance Fund, the maximum award for heating oil has increased from \u00a3500 to \u00a3750.", + "media_hash": "08b3e27a4eb4965878d6b29c5e2cad875adca8d5aa9d5d533470447d", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.5769 + } + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T15:37:04", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "That is \u00a3148 a month on average - 48 pc more than Gloria.", + "media_hash": "6536067146d9ddb3162a8ef18f57c202bbf2b2886df2d7385c39fece", + "sequence": 44, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5769 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "That equates to roughly \u00a36.6 million in total bill savings", + "media_hash": "03759c3d836f413f2049eb77d09bcc2443b6f80a4a3c81b441d5cf3a", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.054200000000000026 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "The maximum award for heating oil has been increased from \u00a3500 to \u00a3750 and people can now apply up to twice within a 12-month period.", + "media_hash": "25fe9f3524764fbdde96ed14412d4ddde8a70454a61f84c885fa613e", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "senedd_election": 2.5769 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", + "media_hash": "197c498503a7abad2d230377d1eb0902e9914c4a843924d354da4558", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "\"We've just had another stark report out from the UN detailing just how real and urgent the climate crisis is. Ditching green policies that lower bills, reduce pollution and make our communities safer and healthier, is exactly what I'd expect from a party funded by the fossil fuel industry and billionaires.\"", + "media_hash": "a7eeed8db626fffbca46cb724531fa0331136edb07a2e344806feba3", + "sequence": 20, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Green New Deal Rising", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hannah Martin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5649800000000003 + }, + "demo": {}, + "pa-media": { + "environment": 2.5649800000000003 + }, + "fullfact-policy": { + "climate_misinformation": 2.5649800000000003 + } + } + } +}, +{ + "title": "Thousands in Wales to get \u00a3200 boost as prices rise", + "publication_date": "2026-03-31T14:25:11", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", + "media_type": "news_article", + "sentence": { + "text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", + "media_hash": "f595f3379bb6c0c7ec5223b0549b909175def4f2441a6e06f9ff1473", + "sequence": 11, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.563275, + "senedd_election": 2.563275 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Most households in England and Wales will see an increase of about 5% in their council tax, while in Scotland bills will go up by between 4% and 10%.", + "media_hash": "8261f3f26d9b54403b94e0b41daec8ff6026467874d3778dcd6ff17e", + "sequence": 7, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.55971 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Korean Air takes emergency action as fuel prices soar", + "publication_date": "2026-03-31T05:33:56", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c5yvg42kr21o", + "media_type": "news_article", + "sentence": { + "text": "Fuel costs are the airline group's single biggest expense and accounted for around 30% of its spending in recent months, the spokesperson added.", + "media_hash": "3ccf0442cd76e3ef846741a1f19c67239266f7ac9f3807e3265f41d5", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Singapore Airlines", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "This all comes with the price tag of \u00a349bn in today's money, making it the most expensive reactor in the world.", + "media_hash": "11c50743d6e93e2eace5ffc5e3c9b50e3a9739260b2d6e70968b1d79", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "This is nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", + "media_hash": "4051649152a86f6232512d32df9ae3ad9403272b2a703efd3434c67c", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The average price of unleaded petrol in the UK has climbed to its highest level since May 2024 (Simon Belcher/Alamy)", + "media_hash": "76ff746dc9ecf82d1dab9cf88ca4656eefdf6b70fa4ce86e1002f4d2", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", + "media_hash": "c739ce8a295258f71a0dac70bc2128ea66f6848346384d0cdb360725", + "sequence": 1394, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5528750000000002, + "economy": 2.5528750000000002 + } + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "That's why the nuclear Nimby's safety and environmental concerns must be met head-on.On safety, the accidents that shaped public perception involved older designs and, in two cases, catastrophically outdated regulatory cultures.", + "media_hash": "e5d202d2a5eb03622e964e6988552fc50ef20e43c169c6b8813c9c23", + "sequence": 34, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "\"However, the key word is responsible. You can't put something up just for the sake of harnessing the energy, while at the same time doing harm . or potentially doing harm to the environment and the human and non-human life that depend on that environment.\"", + "media_hash": "0972ab04beab748511a80bc6e63530fec5a65dbf51480f4e9c118d97", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Black Rock Riverside Alliance", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Anne KC McCooey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5528750000000002 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Readers' letters: There is no alternative to direct action against Iran", + "publication_date": "2026-03-31T16:59:28", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", + "media_type": "news_article", + "sentence": { + "text": "It is perhaps also worth pointing out to the anti-nuclear zealots like John Swinney that nuclear reactors produce the products required for medical procedures like CT and PET scans and radiotherapy treatment for cancer patients.", + "media_hash": "346570e78032dadf9b68c04330e91f7040b1e466eda64f8db220ae8b", + "sequence": 75, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "A McCormick", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5528750000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "To qualify for the Council Tax Reduction Scheme residents need to be receiving one of the following, and have less than \u00a316,000 in savings and property:", + "media_hash": "8412e9959b2144320d8506b8b786256aad2849b903932f853d9bf98e", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5769 + } + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T11:42:35", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "All in all, her energy saving tricks have cut her monthly bills in half to just \u00a3100, she believes.", + "media_hash": "3f7896ffe10c652314c37b6fc80f745cc07fce3ba4e6897a6015a2ca", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Katherine Twigg", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", + "media_hash": "a6bf5d913f8d41a705a3f50a8c6b319e2e2d18f64ceeb3fea3c3c0e7", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409m for diesel and \u00a3135m for petrol.", + "media_hash": "870f75b691702a90f1f2b80c864ae55060c30334d5956475cc969813", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "They could total around \u00a312billion.", + "media_hash": "5a288f07c1131470fdf31d17db91930f7d800e27de359d85bbed2d22", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996, + "trending": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "That is set to rise by at least \u20ac117million this year, with a new rate for carbon tax to be introduced in May.", + "media_hash": "61590bc14ec38c883fb5096e5a2503bfe2495620f25e0e5ba2f877cd", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "And according to estimates, the Government was taking in more than \u20ac1million extra per day on petrol and diesel VAT alone, ahead of the new relief package, compared to before the Iran crisis.", + "media_hash": "4938332929d8169a0a189c73c8787b47586431123fc48de56b87bec8", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Petrol prices went from about \u20ac1.73 cent per litre to \u20ac2 per litre, meaning a VAT increase of 5 cents per litre, according to UCD energy economist Ciar\u00e1n Mac Domhnaill.", + "media_hash": "f8589af08a8a688dfefa84784312f845e600f47a5d4c6bdfccab28a4", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UCD energy economist", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "That equates to an extra \u20ac150,000 per day, based on the CSO's record of around three million litres of petrol sold per day in March 2025.", + "media_hash": "1c20d6c98a4e1fbe79507cc23f3acc10c77eec69670b0c17765cfecc", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "The CSO's report noted older households benefited the most from temporary supports in 2025.", + "media_hash": "2042bc03b797c41ccd7f6b70fb652e8ed0c39d28f62abd3f593c9550", + "sequence": 36, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "It would represent a \u00a3288 rise from the cap set between April and June.", + "media_hash": "2b4abd942fdbe7572da5d9530c78bdaefd47cb84bc8520b328ef81ac", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "Shadow energy secretary Claire Coutinho urged the government to capitalise on North Sea oil supplies as she suggested it could yield \u00a325bn more in tax receipts, which could be used to support households through the crisis.", + "media_hash": "d3044bd7796284b47fd49d34e300dcb85c766a6811a6c52c64b55aa4", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104558, + "score": 0.1976 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "Analysis in The Times has suggested that the government's levies on energy companies' profits was making the government around \u00a320m more a day.", + "media_hash": "c0bcaa1228ed7381d83dac6be83f5d651095b60999364a0e806dd8fe", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's how much energy bills will go up by due to the Iran war", + "publication_date": "2026-03-31T10:29:56", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight said its prediction for the Ofgem's price cap from July to September now stands at \u00a31929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", + "media_hash": "a6c2e4908527cbdd69629a7ce6184630f994c172d0dfda67182a8f85", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "However, this is less than people were originally promised by the Chancellor, as the cut was expected to be around \u00a3150.", + "media_hash": "cf3c578d9f771048db1e8052f7647cde9971ba1052b8c7fa50f14a1e", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "Octopus Energy, the UK's largest energy supplier, has seen a 54 per cent jump in solar panel sales since the start of the Iran conflict as households look to protect themselves from the scourge of soaring gas prices.", + "media_hash": "1edda6eee0d868152f077a0cdea936c1db915edbb5671dfc94c34586", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Keir Starmer to chair Cobra as costs to households from...", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", + "media_type": "news_article", + "sentence": { + "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409 million for diesel and \u00a3135 million for petrol.", + "media_hash": "04e3f5ffeffa6165f60bfdba7c4f82ce1c5f450418101af753f1b4c1", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "Read more: Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "media_hash": "597a18aad32ee23d520f3a3c687136c1a30316befa802ab4ee0fb37b", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "It's now predicting it will be 1929 pounds, almost 300 more than its previous forecast.", + "media_hash": "8a41be2399c4f1590d9b94124df66d5b23b09b4099f20e1752dc29cd", + "sequence": 304, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "leo_s_topic": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "But their pump prices are slipping like a third higher than they were at the start of the year.", + "media_hash": "4bf3846d216e571020ea792ded7d20a90855d71032cac49f1e565cd5", + "sequence": 951, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", + "publication_date": "2026-03-31T08:59:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", + "media_type": "news_article", + "sentence": { + "text": "Ms Coutinho said: \"Shutting down the North Sea means we are losing out on \u00a325 billion in tax receipts that we could use to cut bills and reduce the cost of living.\"", + "media_hash": "6dc907028f0cca58f6426dfcd3d3e7d93a3020d4e64c9876a065a7ce", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ed Miliband", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Claire Coutinho MP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", + "publication_date": "2026-03-31T08:59:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under the cap fell by 7% from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "a922f9edf653cde148c37464b3b07eea32a9c4c792af6c1472aa9b2e", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran\u2019s Energy War -- Netanyahu: \u2018Only Long\u2011Term Solution to Hormuz Crisis Is Rerouting Pipelines to the Mediterranean\u2019", + "publication_date": "2026-03-31T07:55:40", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/31/irans-energy-war-netanyahu-only-long%e2%80%91term-solution-to-hormuz-crisis-is-rerouting-pipelines-to-the-mediterranean/", + "media_type": "news_article", + "sentence": { + "text": "Shipments from Yanbu have surged to around 5 million barrels per day of crude, along with additional refined products, offering a critical - though incomplete - offset to the disruption of roughly 15 million barrels per day that typically move through the Strait.", + "media_hash": "15ae05635ed20a562c373247fef13b0d34979bcd6d85fc0edee65de6", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million a day boost to revenues.", + "media_hash": "d7c62108ac49a30ea742cb6b3fbb6d54479a7f02a03277eef6256015", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "The RAC has also suggested the Government could earn an extra \u00a32billion from VAT on petrol sales.", + "media_hash": "0a5d6b9a39c50fd193c9455b36dad0b9eddcc5f09ec18d05e7492523", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Industry experts Cornwall Insight hiked its latest forecast for Ofgem's price cap by 18% to \u00a31,929 a year.", + "media_hash": "75f9be664724073a1502aba370b4cf297263af256cd5188dac96adfa", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "The cap is actually due to fall by 7% to an average \u00a31,641 a year from tomorrow thanks to measures taken by Chancellor Rachel Reeves in the autumn Budget.", + "media_hash": "bbf0315c95d6803f594d2d822ffa92f93875cf10424d615e215f268e", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Korean Air takes emergency action as fuel prices soar", + "publication_date": "2026-03-31T05:33:56", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c5yvg42kr21o", + "media_type": "news_article", + "sentence": { + "text": "The average price of jet fuel rose to nearly $200 (\u00a3151.45) a barrel on 20 March, more than double what it was in February, according to the latest International Air Transport Association figures.", + "media_hash": "09f5a99264c2cd7e4a2489f163d30b7785ad9489694e24d963bb196a", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "International Air Transport Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "The study finds that nuclear generation at Torness has been more than \u00a32 billion cheaper than the market baseload price over this period.", + "media_hash": "c36db155f3352e82cf0beeee0cef05286cc722f92be18a95a81c2d70", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nuclear Industry Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The Greens who want to drill the North Sea", + "publication_date": "2026-03-31T04:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", + "media_type": "news_article", + "sentence": { + "text": "On drilling for oil in the North Sea, Britons are supportive by 57 per cent to 15 per cent against.", + "media_hash": "ccb7c63c5aa887337158528a40da14ad8dac76fc37826599a59f336b", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Britons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "On average, participants currently earn about 18 hours of free electricity per month, according to company data.", + "media_hash": "0f4d82367b3928ece758b62c1ff3556a581f29a76022b0ee3de59c97", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.21530000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "Power supplier EDF Energy is launching four \"free electricity\" Sundays this spring through its \"Sunday Saver\" initiative, offering customers the chance to bank up to 64 hours of complimentary power over the coming month.", + "media_hash": "4da08db85c38e4c73f0064255a7950ed72df9df4824c79360bd73b47", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.30269999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "The most engaged participants in 2025 secured an average of 266 hours free throughout the year", + "media_hash": "37db94c67de4625473169a3ec11e6df96ca80a68854ab400680ad345", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.027200000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", + "media_hash": "cc6c4fb943d141a63e262396a7582d6472b4e7c5c5b78ff014c04f4e", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "82% of UK small businesses have already felt the effects of rising energy prices (Image: Getty)", + "media_hash": "85a3e918ef88a2572e20a82cfb0a6120a0713e117255731ca0d08c38", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "The rise in marine power generation is happening at a time when, across the Great Lakes, electricity prices for residential and industrial consumers have surged.", + "media_hash": "0fd9402768abce32cad029b7aefdaad7f047ec1238297444c86f6c16", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "\"The current there gets to about 2.3 to 2.5 knots, which is pretty slow for turbine technologies. But it's very easy for Vivace to harness that power,\" he says.", + "media_hash": "b3962e70d0678db9a003c1d2562bba096ddccae59da834a56de7c65a", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Michael Bernitsas", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "In Northern Ireland rates are due to increase between 1.96% and 4.5%.", + "media_hash": "69dca8aeb1c38c469eb38f9cf1b991d4af4531e5e631f4ea8964d44c", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", + "publication_date": "2026-03-31T14:09:43", + "publication": "leftfootforward", + "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", + "media_type": "news_article", + "sentence": { + "text": "\"Hundreds of licences issued between 2010 and 2024 have delivered the equivalent of just 36 days' extra gas.\"", + "media_hash": "7d5ad5e616570a110124331f12c8ecc2c461eb5c499efd43202767c5", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scientists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hannah Spencer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "environment": 2.5459449999999997 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Keir Starmer to chair Cobra as costs to households from...", + "publication_date": "2026-03-31T11:09:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", + "media_type": "news_article", + "sentence": { + "text": "While predictions have dipped slightly in the past few days - \u00a344 since 19 March - the forecast still represents... pic.twitter.com/Q2hJm3zDz8", + "media_hash": "bc7f7ba387dea981f7ffed766d37c38326c36bca3fc12e94553c0c0e", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", + "media_hash": "5c5c8e803255ce1de3cbb164dbde3bab29eec07ad8ef63aedd10d64c", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a333; Potential savings: \u00a3100", + "media_hash": "f6f9ec05b52ef7d6a593b90368bc3887aab98d88a4df3c7697b2ad0f", + "sequence": 44, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price 'hike': minus \u00a3117; Potential savings: \u00a3338", + "media_hash": "d3f7dd4f99d6ed60b095e6010c151190bc5b8e2b89d69e4cf7dddfd7", + "sequence": 79, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", + "publication_date": "2026-03-31T12:13:11", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", + "media_type": "news_article", + "sentence": { + "text": "Seventeen commodities vessels crossed the the strait over the weekend, 12 of them on Saturday, making it one of the busiest days for crossings since March 1, according to Kpler.", + "media_hash": "960289235d42c339cd99b946cf29cda187701979572246087fc04eac", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kpler", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Last year's energy tax yield breaks down to \u20ac2.737billion in levies for petrol and diesel, as confirmed in response to a parliamentary question from Independent TD Carol Nolan - \u20ac545million in VAT on gas and electricity, Finance Minister Simon Harris said in response to queries from Sinn F\u00e9in TD Pa Daly and \u20ac1.174billion in carbon taxes, according to figures from the Government's Tax Strategy Group (TSG).", + "media_hash": "d5c789f309af6a4448eeb724cf2297e68dd7172c205eae2186a363ac", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Independent TD Carol Nolan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Finance Minister Simon Harris", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Government's Tax Strategy Group", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Inflation increases to 2.5% in Europe as Iran war...", + "publication_date": "2026-03-31T09:56:06", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", + "media_type": "news_article", + "sentence": { + "text": "Energy prices increased 4.9% percent in March compared to a 3.1% decline in February, Eurostat figures showed.", + "media_hash": "42a6b957870f5e75fc077f87307e6a17b79405d52727a1cf169dfbcb", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Eurostat", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "Watching the pennies: Energy prices are set to rise from July - but the forecast has been reduced from what was previously expected", + "media_hash": "d0c9ec395e03f80a45cb56e0ccae5b1f17959e3b355d64b9e15d4629", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "While this would still represent a \u00a3288 or 18 per cent rise from April's cap, it is \u00a344 lower than Cornwall Insight's previous prediction of \u00a31,973 per year, made on 19 March.", + "media_hash": "3f28b07d240f41a75115e6411b277ca6c3d50e9601de217d7bca556b", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under the cap fall by 7 per cent from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "0e9e799ef1c89e7e2c7a5217de4a17391aa00a0181a5c60bfe749170", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "And by the way, it was helping the Tories had decided to jack up the tax rate to something like 75% for North Sea sending a major disincentive.", + "media_hash": "39cb459b45490fe5a74b3d2b42828d4243a6087045e7cc4ff5221138", + "sequence": 963, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "trending": 2.5459449999999997 + } + } + } +}, +{ + "title": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", + "publication_date": "2026-03-31T08:48:48", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/british-gas-octopus-eon-edf-36947292", + "media_type": "news_article", + "sentence": { + "text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to \u00a31,973 in July.", + "media_hash": "b19e854eb12242411951537a675c9bc2bc3da8258601525d47ab1a38", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "media_hash": "677dcb6231a592cc61b019c58ccdcf450b9d33109b35e670207a9f7f", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", + "publication_date": "2026-03-31T02:21:07", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", + "media_type": "news_article", + "sentence": { + "text": "In March, flows were about 3.8 million barrels a day, above February \u0301s 3.2 million but still below the mid-2023 peak of 3.9 million.", + "media_hash": "e09068e57945ee4a09cf5badb58a8853319786b0b9c124e2a5a587ba", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Urgent message every Aussie needs to read before they go to Bali as tourists panic: 'Feel a little stressed'", + "publication_date": "2026-03-31T01:09:27", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15690009/Aussies-panic-fuel-Bali.html", + "media_type": "news_article", + "sentence": { + "text": "He said one day a week of working from home would 'save about a fifth, or around 20 per cent, of fuel consumption'.", + "media_hash": "36bf6e684ce8268ac14f2046f3b3d63c665cd8b73d422942f4069642", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Indonesian Finance Minister Purbaya Yudhi Sadewa", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or \u00a3117 a year, to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "3d68950982c026f689ec3634215de1d6628d81a36d3c0ae95be4068b", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", + "publication_date": "2026-03-31T18:12:52", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", + "media_type": "news_article", + "sentence": { + "text": "However, esteemed energy analyst Cornwall Insight has projected that the regulator's price cap for July to September will now be \u00a31,929 for a typical dual fuel household - a rise of \u00a3288 or 18% on April's cap.", + "media_hash": "734e41274b24c49d0d5192b0ccbdb54cb72131814cd8307704666e97", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Heating is expected to add a further \u00a3734.42 each month (Image: Getty)", + "media_hash": "72f7a6b7cff2396495594eaed67f2ff9210f5928c4b794413f35150c", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "These new findings come at a time when Novuna Business Finance's tracking research revealed the growth outlook of UK small business owners was already fragile, with just 27% predicting growth for the first three months of 2026.", + "media_hash": "4489e1274f7162791216d96b4ef30b5eea1df0ae0171502f34b9f966", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Novuna Business Finance", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "When it came to travel, transportation and logistics costs, 21% of small businesses expected energy costs each month to rise by more than \u00a32,000.", + "media_hash": "0ddb800a473c3c846bda2d357b714e06258386d8f27457a6bac3704e", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.970815 + }, + "fullfact-policy": { + "climate_misinformation": 2.970815 + } + } + } +}, +{ + "title": "Readers' letters: There is no alternative to direct action against Iran", + "publication_date": "2026-03-31T16:59:28", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", + "media_type": "news_article", + "sentence": { + "text": "The much maligned Hinkley Point C nuclear power station is now reckoned to cost near \u00a340bn.", + "media_hash": "2ec62de5a2cc2c24c00b460cfdf4488354961f5d3e5c29c5e18c3ce2", + "sequence": 73, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "The Government has announced a \u00a353 million package of support for heating oil customers.", + "media_hash": "017c1d1958625ae7146a2e5e63ea749445a3827edbd9c72099b88717", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Diesel has climbed to an average of 182.77p a litre, taking the cost of filling a typical 55-litre family car to over \u00a3100 for the first time since early December 2022.", + "media_hash": "5df92f32fedce6d5f5d53ccc6d1f689bc39959d11174837f1deffc8c", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "A full tank of petrol is setting drivers back \u00a384 after pump prices climbed to an average of 152.83p.", + "media_hash": "24791782d52af63e30ac64bb79abea609df90ffbef42b5240c5b72bb", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Petrol prices at supermarket forecourts were an average of 7.6p a litre lower last week than at other sites, the AA said, compared with a price difference of 5.4p before the conflict in the Middle East began late last month.", + "media_hash": "b1497139d44f886dd87af7cdf147a7f0ee2c64a2b3e85ab2b2d53908", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "AA", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "This is the highest price for unleaded petrol since May 2024.", + "media_hash": "e5876b40ea742111632d9cec9c97f1eec94991c4d6d08a01ec68df59", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "Diesel peaked at 199.2p per litre in July 2022.", + "media_hash": "9cfe567d7f168ade4d9b988b57e5a4023502f02343f4e4118b1cff65", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "Motoring research charity the RAC Foundation estimates the increase in road fuel prices have led to motorists paying a cumulative additional \u00a3544 million for petrol and diesel since the start of the conflict.", + "media_hash": "d192957348f5834fc201e0dd91a3ab9690f92b4f264323472aa856e7", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", + "media_hash": "8494762cf9de5b7f594c69a9698aebc635f1d3e09ccdb2a359ae4555", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Switching can save broadband customers an average of \u00a3329, according to Uswitch.", + "media_hash": "530387204f36b9669f40dd2ea490e6eda9675d0607ce0ec637482fe6", + "sequence": 52, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "In some - albeit temporary - good news, the price most households pay for energy will fall by 7% from April 1.", + "media_hash": "4cc4ccb482e3e78856944a668dc6f4e0ff317ca4ca5d3567d937b85f", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "Fixed energy deals that can save you money have been disappearing from the market, with the best fixed tariff at the moment coming in \u00a39 above the April price cap.", + "media_hash": "f08069bf1a8a8a9e9aebdb7b265bb1b5d635144f09dc8a9f5c3bd09b", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "For July, it predicts that the cap will increase from \u00a31,641 to \u00a31,921, but its confidence in this prediction is very low.", + "media_hash": "3f5dd7235450fc4e6ab0212e4ded70eb46b4761f367f21b5d8ae091e", + "sequence": 155, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "This left 22 million households lumbered with variable-rate deals.", + "media_hash": "8e3627555478c7a2b88805c2bc57a91e295320aa47d93de74d3da045", + "sequence": 167, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "The TSG's estimated carbon tax take for this year is \u20ac1.291billion, a rise of \u20ac117million.", + "media_hash": "f391caf2e6284dc4541dd004d1537809239966966c56d73f8bf6e42f", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government's Tax Strategy Group", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "From April 1, the energy regulator's price cap, which controls how much you can be charged, will drop from \u00a31,758 to \u00a31,641, which is a reduction of \u00a3117, fixed until the end of June.", + "media_hash": "11fefd1cb4c24eae19f3f4c8ad99fae85cf63b9654674fbbae4a438b", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "This means that a typical household using electricity and gas will see its bills slashed by \u00a3117 for three months, or around \u00a310 per month.", + "media_hash": "82e310d40ad9aac1873e283ab6c15741023bbb085a8e6aa4f6461ccf", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer to chair Cobra as costs to households from...", + "publication_date": "2026-03-31T09:54:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "f1d625368e39d45c9d68ffec197083274b9baa1ea76b4c313474bcc2", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "However, forecaster Cornwall Insight has reduced its estimate, cutting it to \u00a31,929 per year for a dual-fuel household with average usage.", + "media_hash": "83b0a4e6568bdaccb24ef146b740827785ab94aa6f3ca2d5bdc50288", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", + "publication_date": "2026-03-31T09:44:59", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", + "media_type": "news_article", + "sentence": { + "text": "'The size of the increase depends on the duration of the conflict.", + "media_hash": "76d13abaf2cf82be6a0f1920a5832c92bfc7ea8f92264b60d03098fa", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "They went slower and now we've got about, I don't know, about three billion barrels of equivalent reserves which isn't that much.", + "media_hash": "f934cb71c50a5bce65e7f66f94bf20f2f6cd242f537f89a27d122ce5", + "sequence": 996, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "trending": 2.5459449999999997 + } + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "Yesterday, there was little sign of respite as oil prices surged again, with Brent crude climbing to a high of almost $117 a barrel, before falling back.", + "media_hash": "6611bc45db8cc75bb13a63b76a8652c5c9243f2a9a26419c90ecec34", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "According to Cornwall Insight, that will mean an increase of \u00a3288 or 18% in annual bills.", + "media_hash": "5956606e03ea667f48df51841b4acc978a6e5c889c47a90fc39da90b", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "According to analysis for The Times, the Government is set to get around \u00a33.5billion a year from the energy profits levy on North Sea oil and an extra \u00a32.4billion from gas sales.", + "media_hash": "c122ba792c8b157e572a9e9a010f3a376e3340d3d8d28e34dd01d22b", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18%.", + "media_hash": "8316165c92325c1d84734e3cc00b00719e4def2ee1d8ae1fbe3b363e", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Craig Lowrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "Torness nuclear power station saved Britain's electricity system more than \u00a32 billion since the 2021 energy crisis, according to industry analysis.", + "media_hash": "dce5e04b6ab96df1bed864c76661929a6d412ce18df78f73bff2fbfc", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nuclear Industry Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The Greens who want to drill the North Sea", + "publication_date": "2026-03-31T04:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", + "media_type": "news_article", + "sentence": { + "text": "There is, clearly, a collective exhaustion with the cost of living, such that even local fracking is not a non-starter for more than a third of the country.", + "media_hash": "432f99c091e5b7537e2ac0152038c75a7fb48468af341e1de29f4e22", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "Energy giant EDF Energy is rolling out four \"free electricity\" Sundays this spring under its \"Sunday Saver\" scheme, with customers able to earn up to 64 hours of free power over the next month.", + "media_hash": "b923567eda1b87be94e76abc1743dd74c971ddaa8e5953a41fd207eb", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.28869999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "The most active users in 2025 earned an average of 266 hours free across the year", + "media_hash": "f0c6b63d1a2b0303ec4810c74dd7db33dec0c3c2e3221e246b9b2651", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.03269999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "While the headline offer of \"free electricity\" may sound generous, it requires households to actively shift when they use power - and in some cases cut peak usage by up to 50%.", + "media_hash": "b7884504f38273ec13b044e79b85f763d1f4102e66a68506d7042aee", + "sequence": 35, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "EDF suggests the scheme could slash roughly \u00a396 yearly from bills for the most dedicated participants.", + "media_hash": "77a7725f5104c032bd311576b801155593523330faf5bf5fad3c5ada", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.1734 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", + "publication_date": "2026-03-31T02:21:07", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", + "media_type": "news_article", + "sentence": { + "text": "That is nearly four months of its overall seaborne crude imports, which cushion short term impacts from the war.", + "media_hash": "0d8dc03cad2605da2531554737d4452eb3ee1686b0ee92fb0c106b50", + "sequence": 57, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Despite the PM's stark warnings, last night it emerged that the Government is reportedly raking in an additional \u00a320million a day through taxes and levies linked to oil and gas price rises.", + "media_hash": "b3e10a9e2515fa79645d48e5c0ac07815f5231788a6a72e4999f0e9f", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T01:13:30", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", + "media_hash": "bbafbc7ce5b8eb54ae223fca110a126e3c60bcb740c8059c73e6af71", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "For a household on a tariff governed by regulator Ofgem's price cap, and using a typical amount of gas and electricity, the annual bill will drop to \u00a31,641.", + "media_hash": "a9fbd9e442290105c0a17d95a2f37d97e4255de1974a0a537666cc06", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "The latest forecast by analysts at energy consultancy Cornwall Insight suggests the household with typical energy use will pay \u00a31,929 a year from July, an 18% rise.", + "media_hash": "ef4cd7a35d6abc3c97cdd8f47edc18bd256b2ea4522391c9bbd8c037", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", + "publication_date": "2026-03-31T15:37:04", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", + "media_type": "news_article", + "sentence": { + "text": "She says she has calculated that by just boiling enough for half a dozen cups a day, it can save almost \u00a390 over the course of a year.", + "media_hash": "667e04e7facfe70d6806964a4895615eb288258481c9637fec91e1b5", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Katherine Twigg", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "The cost of phones and broadband are expected to rise by an average of \u00a339.60 for an annual bill and \u00a327.60 for a typical mobile contract, according to Uswitch.", + "media_hash": "2fe7a5ee4dd50b4dd49737aa73ed98e9343644bf06bbf52494cfd81a", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "Average diesel prices on Tuesday stood at 182.8p per litre, up 40p since the start of the conflict on February 28.", + "media_hash": "e567da54a27b46e8dea0d0c6dec15764d03f997685115681f639d1d0", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The figures estimate how much extra the rise in pump prices has cost UK drivers in total, compared with what would have been spent on petrol and diesel had prices remained at the same level they were on February 27.", + "media_hash": "82e5657d11a172be38c29f46870c97d56c1a052e1df0d96347662d4c", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The average price per litre of gas oil stood at 99.5p in March, up 51% from 66.0p in February and the highest monthly figure since November 2022, when it reached 128.1p.", + "media_hash": "4bc25bd4402993ca3e00488f56096c321f33e313dd593dae914ac2bb", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy bills predicted to surge by \u00a3288 a year from...", + "publication_date": "2026-03-31T11:04:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under the cap fall by 7% from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "aa86745f29ce3a4726b104ecd1c5e4ab42334472c69076e4a5c20d01", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the Government is in line for an \u00a38billion windfall from soaring energy prices.", + "media_hash": "c8d9d3da90373375ecced10a5295beab2c3a58cf366a99184f93f8b9", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a372; Potential savings: \u00a3633", + "media_hash": "1f445bafa75b67d626111e5011a03da19e5c7d054504b52ebb3e0cbe", + "sequence": 59, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "However, the reduction is lower than the average \u00a3150 cut to bills pledged by the Chancellor in November, when she moved 75% of the cost of the renewables obligation from household bills onto general taxation and scrapped the energy company obligation (Eco) scheme.", + "media_hash": "d63c9f26221a61a320c6f86ee669369331a0943c18970784cabcff57", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", + "publication_date": "2026-03-31T12:13:11", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", + "media_type": "news_article", + "sentence": { + "text": "Of those, 120 were by oil tankers and gas carriers and most were travelling east out of the strait.", + "media_hash": "e11a09630c719b18e756c556502c2bb5a979cb17ea671e8dcdfc1bb3", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "The cheapest deals were fixed-rate tariffs, with variable rates normally reserved for households that had reached the end of their cheap tariff and not switched.", + "media_hash": "948af4c33a41d2ffed631be3da5837ef5b5ebb02740c0e4e3c9faa67", + "sequence": 164, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T11:38:39", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "d64e07ae7dd7ce98214883272f3913b5f63ca549cfc899fdcbb5db52", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "The relief package announced on Tuesday includes a 15 cent per litre reduction on petrol, 20 cent per litre off diesel and the removal of the two cent per litre National Oil Reserves Agency levy, all in effect until the end of May.", + "media_hash": "8c90b4c99d43c84a3c611823863c7b77a5445e441bc734fefacb659e", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "Figures collated by the MoS show that \u20ac4.456billion - 18 times the value of this week's package - was collected in energy taxes last year.", + "media_hash": "dfff0c95a8732946cad3ba60c5136f305189a0da29e54f5d7e474eaa", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's how much energy bills will go up by due to the Iran war", + "publication_date": "2026-03-31T10:29:56", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under the cap fall by 7% from April 1, or \u00a3117 a year to \u00a31641, driven by the UK Government's pledge to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "8d417375d87aeb5aaf4cefc0915d49ec9ff15832a6cf5792036ba777", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "This is an increase of \u00a3288 - or 18 per cent - on April's cap set by the energy regulator.", + "media_hash": "23ceb4e7d3cc859dc2fce4b1771b1edeb5f1dc1a1aecb93a28c2c24d", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The impact of the Iran war on Asia", + "publication_date": "2026-03-31T09:11:27", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c1450zj6n48o", + "media_type": "news_article", + "sentence": { + "text": "Roughly 60% of its liquefied petroleum gas (LPG) is imported, and about 90% of those shipments pass through the Strait of Hormuz.", + "media_hash": "23ed573b9f0de8b7ad100d1ae94cddcfe8eb791479ee9a57900981fb", + "sequence": 77, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 2.5459449999999997 + }, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": { + "digi___strait_of_hormuz": 4.545945 + } + } + } +}, +{ + "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", + "publication_date": "2026-03-31T09:06:20", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under the cap fall by seven per cent from April 1, or \u00a3117 a year to \u00a31,641.", + "media_hash": "a2af2f35970d86461537354740db3e4a3187fcb02d897c3f99406514", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:02:22+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/Daily_Record/status/2038904727514103887", + "media_type": "social_post", + "sentence": { + "text": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", + "media_hash": "9e7bd8214f5e723082c87dc58387d3183e610013d1289756eb419554", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "British Gas", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Octopus", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Eon", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "EDF", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "OVO", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", + "publication_date": "2026-03-31T08:33:01", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", + "media_type": "news_article", + "sentence": { + "text": "The April price cap was set at \u00a31,641 per year for a typical UK home by energy regulator Ofgem before the war in Iran resulted in a spike in costs.", + "media_hash": "b81eff984dfabf20e6d0acb4ad43072033ca280bc80080388294a0ed", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an \u00a38billion windfall from soaring energy prices.", + "media_hash": "c400ac5e17c5872ae29de1234778ae6b029bd3113560f67441a4bcdf", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Tories call for more drilling in North Sea with new draft law", + "publication_date": "2026-03-31T05:45:45", + "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", + "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", + "media_type": "news_article", + "sentence": { + "text": "The field, which is about 80 miles north west of Shetland, is said to contain up to 300 million barrels of oil and some gas.", + "media_hash": "84f3c8641f0e1616bcd7185d92b204526f729cbc63c40de9579173d9", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", + "publication_date": "2026-03-31T04:01:00", + "publication": "cityam", + "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", + "media_type": "news_article", + "sentence": { + "text": "It built 56 reactors in 25 years.", + "media_hash": "3366b74aeb559d8f18e396c37ddad9a9b94904a675361fd970945821", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chris Hockell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK energy firm to give customers 64 hours of free electricity", + "publication_date": "2026-03-31T03:30:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", + "media_type": "news_article", + "sentence": { + "text": "EDF claims the initiative can knock around \u00a396 a year off bills for the most committed users.", + "media_hash": "cd26c7660fc1278bc65e0e5930a15b1b608d8237b1774958a397bf1d", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40501, + "score": 0.20789999999999997 + }, + { + "tracked_claim_id": 104479, + "score": 0.22040000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "This amounts to approximately \u00a36.6 million in combined bill reductions", + "media_hash": "db8e17fc0ca10a0c10621e9cb6b6d1eccecd6f1537e95c08e35dee52", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.1189 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "29% of small businesses said monthly heating bills had gone up by up to \u00a3500, while 47% of respondents believed they would pay \u00a31,000 or more extra a month, with 21% citing a figure over \u00a32,000.", + "media_hash": "0440ad5f8fa2d51e8070ffd2f841b9ede9cef469f5c846e9807828fd", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "Drivers in the UK are already facing more than \u00a3500m in higher fuel prices owing to the oil crisis triggered by Iran's chokehold of global oil exports from the Gulf through the strait of Hormuz, according to the RAC Foundation.", + "media_hash": "efbafc9ecbad98dd5c0991233615952e7709936aac309a442085d814", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "It is the highest price for diesel since December 2022.", + "media_hash": "dba91147412c29c3514597d5dfd4baa7b059223935af54e2c2f433ee", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "This means it costs \u00a3100.52 to fill a 55-litre family car, breaching the \u00a3100 mark for the first time since December 2022.", + "media_hash": "b7fb493a4614b147c7fb6629f846a0f44b7648fe8ae3aec37c56c922", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The latest figures, released on Tuesday, show the average price per litre of standard grade burning oil stood at 104.1p in March.", + "media_hash": "cae580fce9fc66e8d09ac64512159fd29d5ba1f757a674954e759599", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Keir Starmer to chair Cobra as costs to households from...", + "publication_date": "2026-03-31T11:09:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", + "media_type": "news_article", + "sentence": { + "text": "Forecasts for July now sit at \u00a31,929 per year for a typical dual\u2010fuel household.", + "media_hash": "a128791f44d2976803924689ec811d4329fa196d3f281a475afa5272", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million-a-day boost to revenues.", + "media_hash": "0bd490cf313b2567429cd9497bad26fd1a3a8e0b097c6cb39e564b21", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", + "publication_date": "2026-03-31T10:09:22", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Hundreds of millions of pounds would also be raised in taxes from Britain's power generators, which have been charged excess profit levies since the outbreak of war in Ukraine.", + "media_hash": "9d41e4c0f0ca551e5b6721f5266b5063b94e3a576fa8399544202b38", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", + "media_hash": "ac834a8a8298695d5766e33ffbcf22a62365149712aeb90db079a446", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Institute of Directors", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "IoD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", + "publication_date": "2026-03-31T18:59:36", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", + "media_type": "news_article", + "sentence": { + "text": "But a week later, after her lender paid the company $83,200 for the job, workers walked away, leaving their materials behind.", + "media_hash": "588b7df442b80ac72ac97b691e1813a9f56aa98cb4e9c2e389a69743", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T12:05:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "The Government is set to rake in well over \u20ac4.5billion in energy taxes this year, the Irish Mail on Sunday has learned.", + "media_hash": "d00c0d91fd59944a28d07af468e77d74ab521761e917ae3903b1cd4d", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a3114; Potential savings: \u00a3570", + "media_hash": "0388e263333f3cdd692486b4cbd1309a272e7e0c83e27f2064648dc5", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Industry body Water UK says bills are expected to increase by \u00a333 a year - 5.4 per cent - on average to \u00a3639 a year from \u00a3606.", + "media_hash": "5be4d9910e3348411d5a64826cc408fe4180f67c05c821906c032619", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Water UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of \u00a348 a year - an inflation-busting rise of 11 per cent.", + "media_hash": "b66b7359f7f918f5e8270da0a31ed248c25e77f53d966ff7816f9bc2", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by \u00a3332 in the summer to \u00a31,963 a year.", + "media_hash": "67a06c0bb22c38300905663da8c53062e1c6f70cfe9644a1157793bc", + "sequence": 70, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of petrol, diesel and heating oil: What the latest...", + "publication_date": "2026-03-31T13:04:31", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", + "media_type": "news_article", + "sentence": { + "text": "The survey also suggests the average price of a litre of diesel stood at 176.5p on Monday March 30, up 9.6p week on week and an increase of 34.4p, or 24%, since March 2.", + "media_hash": "25b0d7d6c423d03d5c6852b673dc1d423c006059b451872b00bf593f", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Energy Security & Net Zero", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "Ofgem's price cap will drop from the current \u00a31,758 to \u00a31,641 - a reduction of \u00a3117 or around \u00a310 a month for the average household using both electricity and gas.", + "media_hash": "0981d475e6e317136a6d45e65f591685798518c4cfe603ba5eb14595", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ofgem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", + "publication_date": "2026-03-31T12:13:11", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", + "media_type": "news_article", + "sentence": { + "text": "As of 1700 GMT on Monday, commodities vessels had made just 196 crossings of the waterway this month, a huge decrease from before the war.", + "media_hash": "a1571564cf9752cee9d3c044ef872a2c7950d483c025ef7bfb658f35", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kpler", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "The funding forms part of \u00a33.8m allocated by the UK government on 16 March and it's estimated that between 20,000 to 25,000 households will be eligible in Wales.", + "media_hash": "78e0355786f1dc0cd1801f386757737b71f69887199c19497f1d6f16", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "She said that while the oil company she used had offered her the chance to purchase 350 litres, it still cost \u00a3425, which was still a lot for half the amount she normally ordered.", + "media_hash": "cb11427fd4e53aef13e59ec07215a0d2bd968819588ee378c1712db8", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Holly Pugh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Low-income households to get help with surging fuel prices", + "publication_date": "2026-03-31T11:52:06", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", + "media_type": "news_article", + "sentence": { + "text": "That number is even greater in certain communities away from the main towns.", + "media_hash": "a895ee1073dad5ebdeaf0ad942a64841a13b2fac3f312c82a3ec939e", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "The scheme was expected to cost up to \u00a3150billion, funded by borrowing.", + "media_hash": "920d93eb5d2338c539c145a5693518288e77ec7ce1d4cee31f7f0955", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", + "publication_date": "2026-03-31T10:35:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", + "media_type": "news_article", + "sentence": { + "text": "The tax rate on the fuels such as home heating oil, green diesel, natural gas, and coal and peat, is due to increase from \u20ac63.50 per tonne to \u20ac71.", + "media_hash": "cbe3cdd8554ea60ea2d3981467f65bd397b0346538c6a10b160a77cc", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "The \u00a31,641 bill coming into effect from Wednesday will be a reduction of \u00a3117 from the first three months of the year due to Rachel Reeves' Budget moves to strip energy subsidy costs from the price cap and onto general taxation.", + "media_hash": "3585e1f1322cf8c30830fff72637257ca34c165a0947071c84f189e2", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Energy price cap set to jump as consumers brace for soaring bills", + "publication_date": "2026-03-31T10:30:32", + "publication": "cityam", + "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", + "media_type": "news_article", + "sentence": { + "text": "\"While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18 per cent.", + "media_hash": "3a7f43160cc0da47dc116e409939baf627cac8950836c1ec05957e1a", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Craig Lowrey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's how much energy bills will go up by due to the Iran war", + "publication_date": "2026-03-31T10:29:56", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to \u00a31973 in July.", + "media_hash": "df841345d90ab7a4a3aa4ef6ac471ad52e298f7451efa65af3d1af83", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "Ofgem's price cap to drop by \u00a3117 from April 1, potentially lowering bills for standard variable tariff customers", + "media_hash": "56d34c12b986989fff7465fab1bb1510ee8a23b3ebb2477e54ade356", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u00a3400 plug-in solar panels will quietly change the whole country", + "publication_date": "2026-03-31T10:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", + "media_type": "news_article", + "sentence": { + "text": "With an average installation cost of around \u00a37,000, that means the investment is typically paid off in eight to 15 years, depending on the efficiency of the panels - and how much sun they see.", + "media_hash": "6691c5b710955bb6c7dd33f9160d7998ecceedce8db233daf17b72f5", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Inflation increases to 2.5% in Europe as Iran war...", + "publication_date": "2026-03-31T09:56:06", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", + "media_type": "news_article", + "sentence": { + "text": "The annual rate for the 21 countries using the euro currency compared to 1.9% for February before the war started and blocked supplies of oil and gas from the Persian Gulf.", + "media_hash": "a828bb11271c7626b3f6e2fb14d08f9852039994a723176dbc68b39d", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Eurostat", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", + "publication_date": "2026-03-31T09:23:43", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", + "media_type": "news_article", + "sentence": { + "text": "'Shutting down the North Sea means we are losing out on \u00a325billion in tax receipts that we could use to cut bills and reduce the cost of living.", + "media_hash": "9732725ccd3a29fff7aae19f36536cedc7be338d605b8137b7d24f64", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Claire Coutinho", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.24170000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.698725 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Households can get free electricity on four days next month", + "publication_date": "2026-03-31T07:50:51", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", + "media_type": "news_article", + "sentence": { + "text": "Since launching in 2024, EDF says customers have earned more than 20.5 million hours of free electricity through the scheme, saving a combined \u00a36.6 million.", + "media_hash": "c56a41867b67b63fc9fbd0e679c09e88b0e6568bfc9126c017859fad", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Cornwall Insight's forecast is \u00a344 a year lower than its previous estimate of \u00a31,973 a year.", + "media_hash": "a8a0f2b010c1940e078ba2c4a118f12cd049558fc2388f7e95c12009", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T05:06:52+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/TheScotsman/status/2038845462459883830", + "media_type": "social_post", + "sentence": { + "text": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis https://t.co/gRaZuUZaTz", + "media_hash": "8a0b9015a933eb94a37b5b40fdf31ef95b7b530b036d1e0b25eaeeda", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Torness nuclear power station", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Anger over \u2018super-pylons\u2019 supercharges election contest in Angus", + "publication_date": "2026-03-31T05:02:20", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/politics/5461867/angus-super-pylons-election/", + "media_type": "news_article", + "sentence": { + "text": "More than 200 interested parties want to take part in the upcoming public inquiry into the row.", + "media_hash": "c5cce1c4759c498d59722aacb7e0e08ba6765a452699a4621e52295c", + "sequence": 69, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", + "publication_date": "2026-03-31T05:00:29", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", + "media_type": "news_article", + "sentence": { + "text": "Recent polling showed more than half of Scots back nuclear as the most popular form of energy generation in Scotland.", + "media_hash": "e56aef9175442998a9fcb84475a94eb235cdedfc60d45ee07913cf24", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Michael Shanks", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "I was speaking to one retailer and he said, you know, people think we're we're profiteering here, we're not, we make about six pence a litre out of every litre that we sell or we we we gather six pence a litre for every litre that we sell, but the government is taking something like 97 pence for every every litre.", + "media_hash": "1cebd1100d7a69a3f9d3702288eee0a02052c1aae1fc4782959c915e", + "sequence": 1567, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + } + } + } +}, +{ + "title": "The Greens who want to drill the North Sea", + "publication_date": "2026-03-31T04:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", + "media_type": "news_article", + "sentence": { + "text": "More Green voters support drilling in the North Sea (38 per cent) than oppose it (33 per cent), and 29 per cent of the party's voters support fracking in principle.", + "media_hash": "b1be6cd6f5ebfe162e025cdce5ef4d720a687948f5e5c57d7866b0c2", + "sequence": 6, + "claim_type": [ + "quantity", + "opinion" + ], + "claimer": [ + { + "name": "Greens", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The Greens who want to drill the North Sea", + "publication_date": "2026-03-31T04:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", + "media_type": "news_article", + "sentence": { + "text": "In fact, it is split - 36 per cent in favour to 35 per cent opposed.", + "media_hash": "e6e7f97a962ff7fd6d0b96c9663c867979c1daf3ce8f715f0e3d406f", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Britons", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "Customers have clocked up over 20.5 million free hours of electricity", + "media_hash": "1002191ed552479df642d51041809b9fa5cbcb19ea7bd5a7309a6c43", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.3196 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", + "publication_date": "2026-03-31T02:21:07", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", + "media_type": "news_article", + "sentence": { + "text": "Its oil imports from Russia jumped to roughly 1.9 million barrels a day in March, from about 1 million barrels before the Iran war.", + "media_hash": "460fd32f7efedae696cdca5f74580474e908d8223b6a21cb34396f8f", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", + "publication_date": "2026-03-31T18:12:52", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", + "media_type": "news_article", + "sentence": { + "text": "From Wednesday, the amount most households pay for energy under Ofgem's cap will decrease by \u00a3117 per year to \u00a31,641, spurred by the Government's pledge to reduce bills by an average of \u00a3150 through the removal of green subsidies.", + "media_hash": "a6597a89152429ad967214dcae0a6f2a66ce8a0a6e4ff6663c588dc5", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", + "publication_date": "2026-03-31T17:37:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", + "media_type": "news_article", + "sentence": { + "text": "Small businesses also said that rising energy prices would cost them an average of \u00a3785.92 more per month to run machinery and equipment essential to their operations.", + "media_hash": "87c80c0fdb37e4d524a84a3120c36838ad60c7156ea5a72318b34add", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Small businesses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": { + "climate_misinformation": 2.5459449999999997 + } + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "Home to one of the largest deposits of freshwater on the planet, the Great Lakes region has on its shores some of the largest cities in North America in Chicago, Toronto, Montreal and Detroit, where electricity demand is growing.", + "media_hash": "d55be9bd39e4c922de53bce0815952daab82edeb48aac923cdab13d9", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", + "media_hash": "a14fcc0733b6613c9cb4462404658b65240184fa1c3d2e50c9824ef3", + "sequence": 75, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Demand for hydropower surges as Trump clamps down on clean energy", + "publication_date": "2026-03-31T14:38:52", + "publication": "guardian", + "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", + "media_type": "news_article", + "sentence": { + "text": "In Scotland, the world's most powerful tidal hydro generator can power up to 2,000 homes.", + "media_hash": "d86a70ee9e3887c548bc160b36195bb31410e67743dfa84a1ee96148", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5408099999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "And and would they ever react more quickly than perhaps they need to, I wonder if there is a a kind of preemptive reasing of prices potentially ever.", + "media_hash": "22605602ae4100d80229b5c114ca84c5399da35040ce6772b02fe8e5", + "sequence": 1570, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.53941 + } + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "Keep in mind that the annual price quoted is only what the average household can expect to pay over the year.", + "media_hash": "4184926b147d0fc9dc8e3b8a08b12229a2e23f65d96df27880f5d49e", + "sequence": 138, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Suzanne Edwards", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5315000000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asia feels the sting of Trump-induced energy crisis", + "publication_date": "2026-03-31T17:27:12", + "publication": "thecanary", + "url": "https://www.thecanary.co/global/2026/03/31/asia-energy-shortages-iran-war/", + "media_type": "news_article", + "sentence": { + "text": "Currently, adequate coal stocks are available at all power plants across the country.", + "media_hash": "42c09590bea60fb338976f8049590f1fdb0e0ee62c48e283b9e68656", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104558, + "score": 0.39559999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5315000000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T11:51:43+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/thetimes/status/2038947344687751199", + "media_type": "social_post", + "sentence": { + "text": "Household energy prices are poised to surge by 18 per cent in July, adding \u00a3288 to a typical annual bill, as the war on Iran pushes up the cost of gas https://t.co/s3QnCqPk07", + "media_hash": "1d2769b5dcea034ce7b66fe48820195e4058fe912fe00057999d6ad9", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Household energy prices", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5175099999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "This is unrealistic and dangerous and you can have your say now in the usual places.", + "media_hash": "58c9a0ff305875b69e7885a7da5934e371cde0d2b88de7ededbd141b", + "sequence": 2508, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.516675 + } + } + } +}, +{ + "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", + "publication_date": "2026-03-31T14:17:51", + "publication": "guardian-news", + "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", + "media_type": "news_article", + "sentence": { + "text": "A typical gas and electricity bill is now forecast to reach \u00a31,929 a year from July under the industry regulator Ofgem's quarterly price cap, according to analysis by the energy consultancy Cornwall Insight.", + "media_hash": "8483c4c49a6b8a34af90a6df8df0275727ea1e5df21e0bf25d020b70", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.51499 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "EDF explains 'free electricity' scheme running in April 2026", + "publication_date": "2026-03-31T03:30:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", + "media_type": "news_article", + "sentence": { + "text": "While the headline promise of \"free electricity\" might appear attractive, it demands households proactively adjust when they consume power - and sometimes slash peak consumption by as much as 50%.", + "media_hash": "28ebbf6bbd4e36b9bf69da24fb866d0353ed7ccb20ca5ef0d70a2b22", + "sequence": 26, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.512925 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Look, higher energy prices are not good news for anyone.", + "media_hash": "b081fe0b5dcfe38836a6a2ba2742560ccd19647f23bd6126fec8a88e", + "sequence": 1333, + "checkworthiness": { + "fullfact": { + "energy": 2.50677, + "economy": 2.50677 + } + } + } +}, +{ + "publication_date": "2026-03-31T14:53:37+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Dan4Barnet/status/2038993121069904024", + "media_type": "social_post", + "sentence": { + "text": "We know people will be concerned about energy costs and rising prices at the pump.", + "media_hash": "798cb71751c05f19fc5ba7816db04cc052c7754a65ef273de8b1f531", + "sequence": 0, + "checkworthiness": { + "fullfact": { + "energy": 2.50677 + } + } + } +}, +{ + "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", + "publication_date": "2026-03-31T07:11:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", + "media_type": "news_article", + "sentence": { + "text": "Ofgem's cap limits the unit rate paid by tens of millions of households on standard variable tariffs.", + "media_hash": "f32e894afb3ea0ab8ae5ee7e430522c597f598df4417ae4254e68d6b", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", + "publication_date": "2026-03-31T02:21:07", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", + "media_type": "news_article", + "sentence": { + "text": "The nation of 117 million is an early warning for Southeast Asia.", + "media_hash": "41288f1d26dc16ea381d333f5289c806ca63cd5ccc4945ae2d6e4edc", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best fixed energy deals: Tariffs that beat the price cap", + "publication_date": "2026-03-31T11:53:52", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", + "media_type": "news_article", + "sentence": { + "text": "The cap doesn't limit your total bill - energy companies charge for energy by the kilowatt hour (kWh).", + "media_hash": "2f84ea864846a33f76319a711cac69db515dad32f695e86cadc29243", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Hospitality's tax burden - the highest in the economy - is suffocating the sector", + "media_hash": "2e8178257b2ba3727b77a8b312c181c2b2b4c7bbfcf385d4db4b2cf4", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 5.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Only must trust, it seems, needs to be reminded of what happened next with the national debt at a crippling 96% of gross domestic product.", + "media_hash": "d818b53f9d5ae463cf352425a51f441f2b23f96c09bc4c3f24b2f3b0", + "sequence": 2500, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 5.09725 + } + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, VCT tax relief will be slashed from 30 per cent to 20 per cent and inheritance tax relief on qualifying AIM shares will fall from 100 per cent to 50 per cent.", + "media_hash": "16baa9928e79c8e3272182ba529cea0bd9b1bfea7716f6ba30327519", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.970815 + }, + "demo": { + "finance": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "What do you think would happen if a country has a very high tax burden and some of the highest energy costs in the industrialized world?", + "media_hash": "da0b30b0bfe2b889e0672ce432c55ab9c54621065422137027b94132", + "sequence": 1008, + "checkworthiness": { + "fullfact": { + "economy": 4.9374 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", + "media_hash": "336a6928d49b7a82ebe9c693a9da906b56d671aaa44de361836ad840", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.801995, + "economy": 4.801995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "The tax year also begins with frozen inheritance tax (IHT) thresholds, at \u00a3325,000 nil rate band and \u00a3175,000 residence nil rate band, regardless of any possible rise in property and asset values.", + "media_hash": "7cce3dc947513d26f8ff33b613262ed8d14819efe8ef56b9616886b0", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.72968 + }, + "demo": { + "finance": 2.6987249999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "Most councils in England are hiking council tax by the maximum 4.99%, with seven councils given permission to exceed the cap, including North Somerset and Shropshire, which are nearly 9%.", + "media_hash": "a570047b8e0eee223062a0feef5cd58764a707e699ed293678c77797", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.72853 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Income tax rates remained unchanged in last year's Budget but the threshold freeze will remain until at least 2031, intensifying fiscal drag.", + "media_hash": "7e660a37ddd992dc84f7858776cb76bbb129764d402f7a998bfdbc7b", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "And households endured a grim 2025, with real disposable incomes falling.", + "media_hash": "4fc3f33b873a38ada2742b4248b5ecb7429dd7d3e326c185a386d5e6", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.698725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The Prime Minister pointed to the reduction of energy bills by \u00a3117 a year for the average household, a rise in the national minimum wage to \u00a310.85 and in the national living wage to \u00a312.71, the start of the \u00a31 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", + "media_hash": "e04699637004eba1e06da6b8f0a00e449370f9a255fbe16bbe299280", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.698725, + "energy": 4.698725, + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "GDP per capita is thought to have decreased by 0.1 per cent in the last quarter but it increased by 1.1 per cent on the year.", + "media_hash": "95beb1238bafc5c832e85a6371b09f77660cbd08208bffb8c1d9282b", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.19130000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "The growing squeeze is compounded by income tax thresholds being frozen, pushing more workers into higher-rate bands where the PSA is cut in half from \u00a31,000 to \u00a3500 - a 50% reduction.", + "media_hash": "de501c6d750013e4f7ac6ae37a9f758562c4a14b461c8ecc7d2ffe09", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Our new online calculator reveals how much household bills will rise from April 2026, as increases to council tax, water, broadband and mobile costs wipe out the benefits of falling energy prices for a typical household.", + "media_hash": "356326077c4e3e07d24fc2953f3f76bcc85b0083ee2149e2cb1b8217", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "economy": 4.698725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Best savings, deals and freebies for April 2026", + "publication_date": "2026-03-31T05:22:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2187686/best-savings-deals-freebies-april", + "media_type": "news_article", + "sentence": { + "text": "Council tax is increasing by 4.9% on average, adding around \u00a3111 a year for many households, while some areas are seeing rises of up to 8.9%.", + "media_hash": "c3b8a13458a2427777d8776369e85fe91c9d0efab4c41097e7def259", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.698725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Two-thirds of UK hospitality businesses plan to cut jobs and one in seven will close, survey finds", + "publication_date": "2026-03-31T23:01:31", + "publication": "guardian-news", + "url": "https://www.theguardian.com/business/2026/apr/01/two-thirds-of-uk-hospitality-businesses-plan-to-cut-jobs-and-one-in-seven-will-close-survey-finds", + "media_type": "news_article", + "sentence": { + "text": "The thinktank estimates that UK companies invest the equivalent of 11.1% of GDP, well behind countries such as Japan at 18.2%, and European nations including France, at 12.7%, and Germany, at 12%.", + "media_hash": "98f7261c3506436ca8d2ef670b55f07f65db6d75f7f2416e078337b6", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Institute for Public Policy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "Energy bills are falling from April 1, but are expected to rise by \u00a3332 per year from July, many broadband providers are hiking prices by almost \u00a350 per year, water bills are rising to an average of \u00a3639 per year (up to \u00a3759 in some areas) and most councils are hiking council tax by 4.99%, with some rising by more than 8%.", + "media_hash": "c91fd81aad6efd50e85d5894a834b2874c5729459a3cc8cf9f2cada2", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.66777 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be \u00a3300 a year.", + "media_hash": "857a5fd4df5a27b91cf0eba8bd13aa23521a406b1293bd98125f823e", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.649215, + "energy": 4.649215, + "economy": 4.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "In a joint plea for help, they said: 'Hospitality's tax burden - the highest in the economy - is suffocating the sector.", + "media_hash": "9224fd2037c23b817f5a6eb1ae1a10a81ea531f0c2f3cfa889e3c577", + "sequence": 12, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Hospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.638815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "\"Hospitality's tax burden - the highest in the economy - is suffocating the sector,\" UKHospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster said in a statement.", + "media_hash": "89cefa8f2185e6cda5e0d73a4c3c9c72b22f5201e7178e7b4a40d758", + "sequence": 25, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "British Beer and Pub Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Institute of Innkeeping", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hospitality Ulster", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.638815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", + "publication_date": "2026-03-31T20:21:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", + "media_type": "news_article", + "sentence": { + "text": "Justifying her decision in the Budget, Reeves said she was targeting the industry because it was 'associated with the highest levels of harm'.", + "media_hash": "fd69dfd0805944d4ef8cb3d7f336c5dba62309e441d4d042beeeb671", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Chancellor", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.598275 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", + "media_hash": "e8ebadafb2239713c195df95c7995b1a8c1bd4616f4bedcdd55ddb47", + "sequence": 2, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.58644, + "economy": 4.58644 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "Across England, the average Band D council tax in 2026/27 will be \u00a32,392 - an increase of \u00a3111 or 4.9% on 2025-26, according to the Ministry of Housing, Communities & Local Government.", + "media_hash": "13ee3902c2beae6c202b7fb1a0699e12fde03d8b51ebb11c7c6fe0bc", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ministry of Housing, Communities & Local Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The OECD predicted that gross domestic product (GDP) will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7% - the biggest cut to the growth outlook of all the countries in the G20.", + "media_hash": "ca77419e6d6f25d3cacdc31e586fab7a8da42824030208dc666460de", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Organisation of Economic Cooperation and Development", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More harm than good? Minimum wage hikes kick in from April", + "publication_date": "2026-03-31T09:20:28", + "publication": "cityam", + "url": "https://www.cityam.com/more-harm-than-good-minimum-wage-hikes-kick-in-from-april/", + "media_type": "news_article", + "sentence": { + "text": "The increases are on top of a 6.7 per cent rise for over 21s and 16.3 per cent rise for 18 to 20 year olds respectively in 2024, where there was also a spike in employers' National Insurance (NI) contributions.", + "media_hash": "eaf643c4605e5f22e9930c0e2345adb61557f974bbda23bf021c69f2", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:52:05", + "publication": "guardian", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "double quotation markGDP growth for Q4 was unchanged at 0.1% q/q, suggesting that the economy entered the current crisis with very little momentum, even though growth in 2025 as a whole was revised up slightly.", + "media_hash": "f3e63dcb04f425d7ebf7ae8c7dd8bad1df8561680388c299c20d731b", + "sequence": 83, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.3379 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.545945 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "A high-ranking DWP minister has discussed the future of the triple lock policy, which is set to boost payments by 4.8 percent from April.", + "media_hash": "44e9a439e92911dc8ba948e31bafb84e27795346160cda5d033e82a6", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Despite the widespread increases, nearly one in five councils chose to raise council tax by less than the maximum.", + "media_hash": "3edc725dff8f32d34a7ba37a726d5529d627096b3eed19a27fda0dec", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "The new post-2016 state pensioners will get up to \u00a347.91 extra per month, assuming they have a full National Insurance record.", + "media_hash": "b624bb9f34efd08761da2fb32c8e6256c46cc00e384467d49e75de00", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "New state pensioners", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "This payment is accessible for those who have reached the UK Government's qualifying retirement age, which is presently 66 for both men and women, and have contributed at least 10 years' worth of National Insurance (NI) payments.", + "media_hash": "c02780a01fbb4b8f83b824a57c30674a810aff26257344c90a0ad6af", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'Keir Starmer promised to ease the cost of living and freeze council tax, yet families now face back-to-back hikes and a total council tax take rising by \u00a32.7billion - another broken promise.", + "media_hash": "f1a0d5a11c826ecd71a62c11eccd530d330e4207e044c61f6d507bb2", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "James Cleverly", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": { + "economy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "\"The confirmation that real GDP grew by just 0.1 per cent in the fourth quarter of last year is a reminder that the economic backdrop is much weaker now than the last time energy prices surged in 2022,\" Dales said.", + "media_hash": "5dfc7076738c314e61a46599c9e43dfb7899921ebdd346a544147147", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Paul Dales", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to \u00a32,394 on average.", + "media_hash": "fe4be61db3841d5188c0df0e5fafa9ea85d14b15fdd17770e576daf3", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "GDP grew by just 0.1 per cent between October and December, the Office for National Statistics said, confirming its earlier estimate and matching the equally sluggish growth recorded in the third quarter.", + "media_hash": "d76345758febd252acf194c842be173e581d3c906be0414903190743", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Real GDP per head decreased by 0.1 per cent in the final quarter of 2025, but it was up 0.6 per cent compared with the same quarter a year earlier - in an apparent reflection of the increased tax burden.", + "media_hash": "c8b77ca50e7c66151d4528f3f671cf5c6173512cdc16144cc35eb774", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", + "publication_date": "2026-03-31T04:00:00", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", + "media_type": "news_article", + "sentence": { + "text": "\"We've lifted 100,000 businesses out of rates, GDP figures show we outperformed the UK, Scotland has the highest levels of foreign direct investment outside of London and two global credit rating agencies have given Scotland a high investment grade - that's what you get with an SNP government on Scotland's side.", + "media_hash": "4d33405cb1cc2998666ff57973e294686f3b016a007215e7f667041c", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Calum Kerr", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + } + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "That means the average council tax for a Band D property in England will increase to \u00a32,392 a year, up \u00a3111 on last year.", + "media_hash": "6b693c4732bd2af8874bbf594d231766fce86cdf0412cc7162cdf0ef", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": { + "policy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "While the ONS increased its GDP estimates for the year to 1.4 per cent, up from its previous 1.3 per cent estimate, more recent figures show the economy flatlined in January.", + "media_hash": "8d1f803bab753d4f36a79193868514216aaea030cbf9eed3b4efaa2f", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "The ONS found that GDP rose 1.4 per cent across 2025, up from previous growth of 1.3 per cent.", + "media_hash": "68fcda6cca7f00057bb00ef6ec637ba108670bdbc584cda0f8603834", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The ONS also said real disposable income per head increased by 1.2% in the final quarter of last year, following a downwardly revised decrease of 1.2% in the third quarter.", + "media_hash": "1e4479db08c33dcab7d8eff11b43708b7f09ead59ec12dccb62f9d36", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:52:05", + "publication": "guardian", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "The Office for National Statistics confirmed that gross domestic product grew by just 0.1% in the October to December quarter.", + "media_hash": "168a5d2a5e8f14a99fe5e3ea68478f3235cdb17e296ed4a795e901a6", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.545945 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "It found that GDP increased by 0.1 per cent in the last quarter of the year, an unrevised figure on a previous estimate.", + "media_hash": "ff860d7b2e5838564d269b23bec51fa3478eaa8d55f561d337904c79", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "And real household disposable income expanded by 1.2 per cent in the last quarter, driven by an increase in wages and salaries.", + "media_hash": "84367e6a652e85408d5786660275134eb07a6a9a3335b63a12f96148", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.24250000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So interesting little snippet in it, GDP per capita, which has been a bit of a problem for the UK economy did go up in 2025, just grew by 1.1% and something which I think people will find very, uh, counterintuitive, the savings ratio. so the proportion of income that's being saved rather than spent for households has gone up again, a bit to 9.9%.", + "media_hash": "d8f08b77d62963af49c1e73dbaee01b3011b6867acb73c113489e953", + "sequence": 682, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", + "media_hash": "42e722b19c950ef9105c8ed1f347c6130eb1dabc2dce14f62e315a80", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.545945, + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "Older state pensioners will see their payments increase from \u00a3176.45 to \u00a3184.90, while new state pensioners will see theirs rise from the current \u00a3230.25 to \u00a3241.30 per week, for those with a full National Insurance record.", + "media_hash": "b0a712b6264dd261d8ee8a03c66bba6157c5e080938a47d67c4585da", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Older state pensioners", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "New state pensioners", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "Each 'qualifying year' you add to your National Insurance record after April 5, 2016 will add a certain amount (about \u00a36.57 a week in the 2025/26 financial year, this is \u00a3230.25 divided by 35) to your 'starting amount', until you reach the full amount of the new State Pension or you reach State Pension age, whichever happens first.", + "media_hash": "c2b4e3f74ff2496fe4b755afeaa3b63019c28455834fba29e83825a3", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "With national debt now almost 100% of GDP, another blanket bailout is simply not on the table.", + "media_hash": "047fec206bb9024d50b573cd2f2705f3bab6f284c723fc03db0eda3f", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Uh, the ONS looks again and comes back with a revision for GDP and often the numbers do get revised upwards when they take a second look, but unfortunately not this time, uh, in the last three months of last year, so the last quarter of 2025, the economy grew by 0.1% ONS says so they haven't changed the number on that, so it's hardly growing at all really.", + "media_hash": "2f084354d69c149f2af36a2fbf85db7b566da4a5260e85e9f533596b", + "sequence": 680, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + } + } + } +}, +{ + "title": "Minimum wage rises to \u00a312.71 an hour", + "publication_date": "2026-03-31T23:01:15", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c36r7jk6093o", + "media_type": "news_article", + "sentence": { + "text": "The minimum wage increases are on top of a 6.7% rise for over-21s and a 16.3% rise for 18 to 20-year-olds respectively last year, when there was also a rise in employers' National Insurance contributions.", + "media_hash": "f134a8c8d3382fae48688d46d5abb8dfce3bebaa46fe7c6eaa7f11e0", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:15:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/jamesowild/status/2039043920588345851", + "media_type": "social_post", + "sentence": { + "text": "RT @WilfredFrost: Important to note that debt is NOT lower today than July 2024, & indeed will be higher at the end of the parliament than today - it will be up from 93.2% of GDP to 95.1%.", + "media_hash": "d46914735436abfdd2bf7f5428913fb43c705e32377109b7d52bfac0", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Wilfred Frost", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.545945 + } + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Council tax increases for the new financial year have now been finalised across England, with all 153 top-tier local authorities confirming how much bills will rise from April 1.", + "media_hash": "8ea27eef2e25deaac78c3f15ce3ff53fc83cfad9dbd3f7f7a5136509", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.53035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The average council tax for a typical band D property in England is currently \u00a32,280.", + "media_hash": "5cf1f9cec337b8614f702e818bdd412846965bd1f581b09265c0a8b3", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.53035, + "economy": 4.53035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Yesterday was the first day in British history when the amount paid out in welfare exceeded what was brought in through income tax, as quoted on Call Chemy last night.", + "media_hash": "3ff09449555a53be9a66c07d6ddd6546b2d565d52dc21822e367703b", + "sequence": 894, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.486035 + } + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "William Hill is preparing to close 200 shops just hours before tax rises smash the gambling industry, the Daily Star can reveal.", + "media_hash": "93f4ff661aa48d9d04ab6416ce7dd674af4b1d9bd58fff4ee73fb7ee", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Daily Star", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", + "media_hash": "ea098b53ff1fe0586375c7e47d65ae44770e3dafa9feb4190b1b6a15", + "sequence": 69, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.46302, + "economy": 4.46302 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "The escalating cost of the state pension prompts questions about the sustainability of the triple lock and whether ministers will need to transition to a model with less generous increases.", + "media_hash": "3b085ed89c454587c6269df642f3219d7c480fc10475381e926ef26a", + "sequence": 8, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.386095 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", + "media_hash": "20d4a148d4e8c3057db0350353d67309d370b44c9ae6a208806ff023", + "sequence": 1393, + "checkworthiness": { + "fullfact": { + "energy": 4.386095, + "economy": 4.386095 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "The OECD predicted that GDP will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7 per cent.", + "media_hash": "f0971714bafcf2cc0a4361a4d29332efea0730145048dd27ff531153", + "sequence": 21, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Organisation of Economic Cooperation and Development", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.377125 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.377125 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The day your State Pension is paid depends on your National Insurance number.", + "media_hash": "12b604f11bb91385dea31f1573c61639fb9bab0b7478834454364244", + "sequence": 28, + "checkworthiness": { + "fullfact": { + "economy": 4.3705 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T21:03:10+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/HarrietCross_MP/status/2039086120386834437", + "media_type": "social_post", + "sentence": { + "text": "They've promised huge tax cuts and seem to think they would just pay for themselves...\ud83e\uddf5(1/7)", + "media_hash": "098cedbee358733fa8ea3efb4f45694e4b78e940892cd3ddfdbe4164", + "sequence": 3, + "claim_type": [ + "support" + ], + "claimer": [ + { + "name": "Mel Stride", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.329355 + } + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Cheng said: \"Each new tax year quietly brings more families into the inheritance tax net.", + "media_hash": "51ba164e323c0c995e59e181c2defab4422f3060a72985b64b304055", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Olly Cheng", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.326185 + }, + "demo": { + "finance": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases.", + "media_hash": "2d30c109d2db8a96d2dd0675d4934fd1eafe2134d6088467e21cacf8", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Andrew Prosser", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "InvestEngine", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.326185 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I see this in my constituency of Woking, but I talk to so many businesses who wanted to expand, wanted to grow our economy to lower that welfare bill, but because of national insurance increases, because of sort of Trump inflation, uh, the unpredictable world that we're in, then not growing.", + "media_hash": "789324c4e66bad8f4a43c2447bf02824c111a179d22573be11b1213c", + "sequence": 903, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.318895 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", + "media_hash": "e8971f18e2f4e5337d3b9cc53a27cd2f72431be62150b90abdc1991d", + "sequence": 1343, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.26484, + "economy": 4.26484, + "trending": 4.26484 + } + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "Council tax is a compulsory charge on properties in England, Scotland and Wales.", + "media_hash": "776d09b0f81e926e6d34c4679321b2a9794cf1db23e4f1d54b14aeec", + "sequence": 19, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.25617 + }, + "demo": { + "policy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Band D households in the London Borough of Wandsworth will see their council tax rise by just \u00a330 a year, compared to \u00a3209 in Shropshire.", + "media_hash": "66f21deb6400d6400d31305431c3b0af264a550052e5202f1230b1a4", + "sequence": 6, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.2553 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.224345 + }, + "pa-media": {}, + "maldita": { + "economy": 4.2553 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T14:30:47+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Imran_HussainMP/status/2038987375678763396", + "media_type": "social_post", + "sentence": { + "text": "They are massively out of step and siding with bad bosses, not working people.", + "media_hash": "199e67bf3ff32f8cca55ef9ea2557ae3a2d1e222c7e4f14ff5aac815", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.25444 + } + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Savers can also look to reduce their inheritance tax exposure by taking stock of estate values, as rising property prices can push estates closer to inheritance tax thresholds.", + "media_hash": "f383588bf0e9a1c2d6d29af46f0183dfd32b4a8c45629b4e4dc1a55e", + "sequence": 33, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.249805 + }, + "demo": { + "finance": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", + "media_hash": "13376fad5147cdf89f99da8b9cb0a3ac663cca80ad44b51c06f02b5f", + "sequence": 121, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "Crucially, both of these will still be below the \u00a312,570 Personal Allowance threshold for income tax.", + "media_hash": "2e5c42e054a68bec0191050588b05f5bced75ff93b9e72917d21e3b5", + "sequence": 11, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Older state pensioners", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The energy bills price cap is expected to increase in the summer by \u00a3332 to \u00a31,963 annually", + "media_hash": "4110f23e44f33924c32f2e0dee818b29281e298ccdf0ebd90d970a80", + "sequence": 63, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", + "media_hash": "f7d469200b180fd0c1e6048061009a544b7644b73eea38128fe6a6df", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Council tax bills will rise by as much as 15 per cent on April 1.", + "media_hash": "74cfb48d44176d46dc532ed02c25a2f0432b6c64b15b3054539f0a0b", + "sequence": 9, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "The DWP has confirmed that the Triple Lock will result in an approximate \u00a3575 increase for new state pensioners from April.", + "media_hash": "ed0fbbf970f3e91c54d6172370ec5018682087ec4ff5ca077a0bd8b7", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Eligibility for the over-80 pension doesn't depend on your National Insurance contribution record.", + "media_hash": "9520d2b3ec6c0b18017c4da8c5108ff6e3f7cefacabe41c4e4b371d2", + "sequence": 14, + "checkworthiness": { + "fullfact": { + "economy": 4.21887 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "She added: \"Interest rates are higher than back then, and more savers are expected to see their savings income taxed in the years ahead due to fiscal drag.", + "media_hash": "2ca1e1cfa0358ead8efd7e547e5316f5611f7157a86237c40acb38c1", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.213945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", + "media_hash": "99c5df1ab4c463156554f21683aa56fa8993c5a53ebc2a2031f1fc4d", + "sequence": 66, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.213945, + "economy": 4.213945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", + "media_hash": "f873b7e09186e01a43df2d71d78aa71c88d2714231828b0bbfa55b8f", + "sequence": 1384, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.206655, + "economy": 4.206655 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", + "media_hash": "6a797f10d01ef26a8b1b0c886084ac8c48dfe775acefc0118a7a7806", + "sequence": 318, + "claim_type": [ + "correlation", + "rules", + "support" + ], + "claimer": [ + { + "name": "Prime Minister", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.132820000000001, + "health": 4.132820000000001, + "leo_s_topic": 4.132820000000001 + } + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The money is not paid automatically when someone reaches State Pension age as some people choose to defer making a claim in order to keep working and generate more towards their pension pot, especially if they have not paid the full quota of 35 years' worth of National Insurance Contributions, or were 'contracted out'.", + "media_hash": "1482bfb2408d089d195c56dc18be17a456cd99fb6f53a5d4d5991553", + "sequence": 13, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.118985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "With bills set to rise from April, households across England are likely to see higher council tax charges, with the exact increase depending on where they live.", + "media_hash": "4f72480ca33a1bd115413ea91cc01f0ab7267bdddd86bbb067aca0ca", + "sequence": 13, + "claim_type": [ + "quantity", + "rules", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0944199999999995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'Council tax, water, broadband and mobile bills are all going up at the same time.", + "media_hash": "b73103ac97d7368fe453af3541ddf9806f3fe3cfbbe4306726833ff5", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Nous.co", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Greg Marsh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0839 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "economy": 4.0839 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", + "media_hash": "36d0dd517bae33d72a29cd280f0ad918956abb22450ec488b0531e48", + "sequence": 6, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.064495, + "energy": 4.064495 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.064495 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Undersupply, oil supply crisis fuel more housing pain", + "publication_date": "2026-03-31T16:37:29", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15695547/Undersupply-oil-supply-crisis-fuel-housing-pain.html", + "media_type": "news_article", + "sentence": { + "text": "Higher inflation will eat away at household disposable incomes and higher interest rates will diminish borrowing capacity, softening demand.", + "media_hash": "def5c71b82e530f6b23ff1657d0d14933c8e07a84c68fcbc51730d04", + "sequence": 16, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Tim Lawless", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.064495 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "The rising cost of the state pension raises the question of how long the triple lock will be sustainable and if ministers will need to move to a model with less generous increases.", + "media_hash": "8e1e8cefc0173f107cf9c4c0ebfbca046706f0aebfc87b802b985507", + "sequence": 9, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.064495 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "A host of local authorities in Scotland have increased council tax sharply.", + "media_hash": "627ce6b32e50d2b710087b7087b8272304fbdb024388446d14bed814", + "sequence": 24, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.061165 + }, + "demo": { + "policy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", + "media_hash": "6962ae9b2ee416759e0ad7d4a2d43cf577ae5f59b2bb08897e9ec0d2", + "sequence": 74, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Martin Whitfield", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Labour", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament. That is the \u00a330 billion increase in state pension expenditure over the course of this Parliament.\"", + "media_hash": "4cc717fbd6013fc43a631f8a9ce933b41d4d2b3f979a9cefec070a0b", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "DWP minister", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Torsten Bell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", + "media_hash": "ff53a3a7ad58317f37d43abf159f1a78b0bb8f5720600b0b964bb4b7", + "sequence": 70, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.2905 + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "ONS Director of Economic Statistics, Liz McKeown said: 'Our latest figures show GDP was unrevised in the last quarter of the year, with the economy growing a little.", + "media_hash": "c1f1ea6b94fc461561b8813d39a5d923dc6341b87ed498f8fdec8359", + "sequence": 26, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Liz McKeown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.061165 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", + "media_hash": "d1d6ab2c7753827a2517588a9688ce9d98dd550d1f3d778df8d709a6", + "sequence": 10, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 4.061165, + "energy": 4.061165, + "economy": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Even a small award can unlock help with housing costs, council tax and energy bills.", + "media_hash": "ebd55284fa780efe80ac0e306821d194d9df9cb6346cfdc37a59981e", + "sequence": 70, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0489 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Not quite right, I think it's the first time it's not a particular day where this happens, but it is now true that on an annualised basis, we're spending more on welfare benefits than we get through income tax.", + "media_hash": "3d0099d017d95c6e6e57f8b01cd5fe420f89461b1443e253b31c7327", + "sequence": 896, + "claim_type": [ + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.046805 + } + } + } +}, +{ + "title": "US consumers' inflation expectations surge on Mideast war", + "publication_date": "2026-03-31T15:33:13", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15695351/US-consumers-inflation-expectations-surge-Mideast-war.html", + "media_type": "news_article", + "sentence": { + "text": "\"It's almost certainly going to be a muted second quarter for spending and GDP growth as the worst of the inflation shock hits consumers,\" she warned.", + "media_hash": "b948be74ccd9e5955def1284ff7dc3a1741805048df73ba9c170eddd", + "sequence": 18, + "claim_type": [ + "quantity", + "correlation", + "predictions", + "support" + ], + "claimer": [ + { + "name": "Heather Long", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.037835 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", + "media_hash": "6b10a6165d9529ddf32e96060bd41b1c8fafedd43491fb829521a4d1", + "sequence": 1389, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 4.035135, + "economy": 4.035135 + } + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", + "media_hash": "0e5292f0da47b8acdac7a32f70b3575fc64ab53a414cd1ebb421ca57", + "sequence": 56, + "claimer": [ + { + "name": "James Murray", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 4.035135, + "economy": 4.035135 + } + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "If you have qualifying years on your National Insurance record as at April 5, 2016, DWP works out a 'starting amount' for you for the new State Pension.", + "media_hash": "1c179f092fe15b8178aaa921b39a143c64bd389639d5ddd057aa3071", + "sequence": 36, + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.035135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We've had some GDP numbers this morning, they're not new, but they are a bit of a fresh look at what happened at the end of last year, our business correspondent Dominica Connell is here, morning.", + "media_hash": "9512d24679873b42319b5227d1665b5bc6542e9483fd65f5a44c0e3b", + "sequence": 677, + "claim_type": [ + "quantity", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.008475 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "You have a completely rigid pension policy, which I don't agree with, and every time that there's somebody on pensions, they're not they're not earning and paying an income tax.", + "media_hash": "5e910ffd0d97d7fb4deb231cbd0d15cde42f40536387f75857df832b", + "sequence": 911, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 4.006385 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Martin Beck, chief economist at WPI Strategy, said: 'With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.", + "media_hash": "36b30e5bd5027c014b15b01fa524f0104e797ff1fa6bbdc763ba202a", + "sequence": 30, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Martin Beck", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0045850000000005 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 4.0045850000000005 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases. Analysts suggest this could become a significant strain over the next decade, forcing policymakers to review or amend the system to balance cost and fairness.\"", + "media_hash": "5eba18d7b6f9b7fcb3cd9537ea12844c4d2a0bde3939911981a9e68c", + "sequence": 24, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Andrew Prosser", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0045850000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "Martin Beck, chief economist at WPI Strategy, said: \"With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.\"", + "media_hash": "0dc75da8d5a77460bbc8032b74545e5aa91ce01046ba2ef24bca2db9", + "sequence": 17, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "WPI Strategy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 4.0045850000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis, figures showed today.", + "media_hash": "fbf5074e1ecd1eaf699a0a472f6535f57bdae11aebc6621ddb7a5e3b", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.975225, + "economy": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis", + "media_hash": "ffb61ed8ca1dc3b95c1c63e2d5861b20e7fbccaf5b4c60fb359abfcc", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.975225, + "economy": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "One Cuban family navigates daily life under a US oil...", + "publication_date": "2026-03-31T17:56:28", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695741/One-Cuban-family-navigates-daily-life-US-oil-embargo-deepening-economic-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Cuba \u0301s gross domestic product has plummeted by 15% over the last six years, triggering a historic exodus.", + "media_hash": "5900ae20580e0d06ff190d361516662394d4a971a12ead4639543b31", + "sequence": 38, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "This payment is available for those who have reached the UK Government's eligible retirement age and have paid at least 10 years' worth of National Insurance Contributions.", + "media_hash": "0554f4f1bb9a975bbe48ddec138e3f0b6195b553fa4ddbd1e4f5dfc4", + "sequence": 6, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.95176 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Deadline 6pm March 31 for vital winter fuel payment check for thousands", + "publication_date": "2026-03-31T06:39:36", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/deadline-6pm-march-31-vital-36946579", + "media_type": "news_article", + "sentence": { + "text": "The payment will typically appear in your bank account marked with a reference that begins with your National Insurance number followed by \"DWP WFP\".", + "media_hash": "a97eec35cf01ad822a9e95d89cc526848427a8ecd06e244cfd3444a1", + "sequence": 9, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.95176 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "It's also important to be aware deferred State Pensions increase each year in line with the September Consumer Price Index (CPI) inflation rate and not the highest measure of the Triple Lock policy.", + "media_hash": "3501bde63f21e4e22b6ac5783b20d370ca8ffec631c6c4fe55de99c7", + "sequence": 21, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.932475 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", + "media_hash": "2e56e9518645f1b0c47645577a08d7c696096885454881669561610f", + "sequence": 1347, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.911715, + "economy": 3.911715, + "leo_s_topic": 3.911715 + } + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The first State Pension payment might also be higher or lower than expected even with full National Insurance Contributions.", + "media_hash": "810f4d6d5c0e4b345c1348134da81d7ecd0326f8d4febdc1da3230ae", + "sequence": 1, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.911715 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "The growing squeeze is compounded by income tax thresholds being frozen (Image: Getty)", + "media_hash": "0d690e884427bbcaa16ef6a7b89d85e083e4903742a6d6fc4780b384", + "sequence": 9, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.901315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "In doing this, time and time again, after lockdown, after the crash, you end up with a government borrowing so much and so much in debt that the overall tax burden is crushing the growth out of the economy.", + "media_hash": "c474a6f283f53fa23c22cbd92680f573b761afb50e4c1b00cf4b4196", + "sequence": 894, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.901315 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'While council tax is an important funding stream, it cannot solve the long-term pressures facing councils, raising different amounts in different parts of the country - unrelated to need.", + "media_hash": "2e3982993a393557ed9e232d374698b4c6d440a80d5b4b24f0e17a28", + "sequence": 28, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Local Government Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.901315 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.901315 + }, + "pa-media": {}, + "maldita": { + "economy": 3.901315 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "They've got to start advertising them, they've got to put them in the budget for the next financial year, which as we know, we're coming to the end of that and the start of the next.", + "media_hash": "2136a7cc4d8aadb7a79be90f7c5932bf9e8a8f2d0126383f89bb4304", + "sequence": 333, + "checkworthiness": { + "fullfact": { + "economy": 3.898845 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But it's not all about the national insurance payments and it's not all about the rather small instruments that have been done by this government.", + "media_hash": "12da0ebf6c371a0194b9780e0cc02473ff0460bfb02517b4d6fba7bf", + "sequence": 986, + "claim_type": [ + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.894025 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Some good news for the government is that increased petrol price means more tax coming in to the Treasury, the bad news is, uncertainty means they're paying more to service the national debt.", + "media_hash": "d9441bc4e6a0ee525ffaf68df6eb8bb8ce659ec4e8b2ef8b01f1fbc4", + "sequence": 1309, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.894025 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "April will bring cost increases set to hit household bills and businesses, even as Sir Keir Starmer touts Government measures \"bearing down on the cost of living\".", + "media_hash": "1d89c0f0edaf216f981f5388a4759b31709c73b5c0c2c73416e087a7", + "sequence": 2, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.866315, + "economy": 3.866315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", + "publication_date": "2026-03-31T11:58:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", + "media_type": "news_article", + "sentence": { + "text": "\"Rachel Reeves appears to be overly influenced, if not controlled, by Ed Miliband's unfeasible Net Zero agenda, and remains determined to uphold the 5p increase in the Autumn Budget. She is either neglecting her responsibilities or acting ideologically by failing to do what her role requires: preventing inflation from rising, protecting jobs, supporting GDP growth, and maintaining consumer spending.\"", + "media_hash": "20ad674cfa77770bbabb178ffcccf80dfbb46f1b4ce3b9a1468c713c", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Ed Miliband", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.834115 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "Broadband Genie says that vulnerable customers and those with less disposable income are likely to be on the cheapest tariffs, so the new regulations are set to affect these people the most.", + "media_hash": "d500205cd03829a886ffb86c185819822145686ce2cab8b9d319f1a4", + "sequence": 12, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.786985 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "There isn't much you can do, of course, about council tax, but when it comes to your other bills, things like your energy and your broadband.", + "media_hash": "1ea95635f0d998639047d614e6f76ad46ef021070f1fd79cad02806d", + "sequence": 92, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.7796950000000002 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", + "media_hash": "1dbd00bad4aab01cfcb82c261d291861270e7c52a35f1b50f8d57dd6", + "sequence": 1395, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7577350000000003, + "economy": 3.7577350000000003 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "New figures show a spike in older Ford, VW and Vauxhall cars being scrapped due to Vehicle Excise Duty rises seeing owners facing big tax bills", + "media_hash": "842a2ce41a4bc1b6f9b8d938ab80fea363768264a57df905d1868ee4", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.748535 + } + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", + "media_hash": "002929fdc052da2c1c0be435aff697b1c0afcc16ce329618f20e4702", + "sequence": 76, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Malcolm Offord", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.748535, + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "media_hash": "d51d4346b0999cc6da7f35d97534411f594a7d5f315397e0043447fc", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament.", + "media_hash": "d9c6faf05d58ae2f3562ddbd83994bbf5e3f28cb3dc88e2c5826489b", + "sequence": 16, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "DWP minister Torsten Bell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too expensive for the Government.", + "media_hash": "a85ab84419156e5162924a030277f5f2b2c6490e37539c75396b5f25", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Historic UK company trading since 1809 'to fall into administration'", + "publication_date": "2026-03-31T12:00:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188763/historic-uk-company-to-enter-administration", + "media_type": "news_article", + "sentence": { + "text": "Reports of Denby's imminent collapse come at a challenging time for businesses in Britain, hit by increases in employer National Insurance contributions, minimum wage hikes and high energy costs.", + "media_hash": "fa63b5ee486bba212e556d18cd6a456dd19b87e09bc4f9a160eb0f2f", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 3.901315 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", + "media_hash": "616392e3d2df360f0851e7cd80dae7b149987736acba21efa5e180bc", + "sequence": 1349, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "economy": 3.7135350000000003, + "leo_s_topic": 3.7135350000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", + "media_hash": "24634f680700670725f9281cb717b50edc17f4aa717ee847eab16d04", + "sequence": 1354, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.7135350000000003, + "economy": 3.7135350000000003 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'Many councils have faced having to increase council tax bills to try and protect services from further cutbacks at a time when they are acutely aware of the financial pressures facing households,' a spokesman said.", + "media_hash": "010bf3bcd0b6de939d0322e4db9dccf49aa99583b8b42b9631e31b3e", + "sequence": 27, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Local Government Association", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.703135 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "economy": 3.901315 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "For months businesses have been anticipating the impact of a range of tax and regulatory measures announced by the government in the budget and in the weeks since.", + "media_hash": "5a5b073204f0760fc65b25978b2e635c9d7f34c2f4f40e6b172dac9b", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.703135 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "The government has kept in place the freeze on tax thresholds on income tax.", + "media_hash": "a9cf54cb26de7c0c2ed78b02d7d63c36d428d3515964ca44431b84a9", + "sequence": 46, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.703135 + }, + "demo": { + "policy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "Northern Ireland uses a domestic rates system instead of council tax.", + "media_hash": "3ff148f132d466e8a58344562d13867ca823cdb970c9f0bd520a2a6c", + "sequence": 25, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.61976 + }, + "demo": { + "policy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "He urged people to check if they have any gaps in their National Insurance (NI) records that they can voluntarily top up, which could increase their state pension payments.", + "media_hash": "36750d54ac3b9ebe4541b75a6b09099485ad46ed5ce15167a1fcbc3c", + "sequence": 25, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.612245 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "Motorists with the keys to older vehicles built between 1986 and 2001 are set to be face higher car tax bills within hours as changes come into effect from April 1.", + "media_hash": "b9f0c231c91cb8b4c4bc00c8a2e172f5c8161a703f8aa993dd3ede38", + "sequence": 4, + "claim_type": [ + "rules", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.599205 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "The GOV.UK website explains: \"You cannot use this service if Self Assessment is the only way you pay Income Tax.\"", + "media_hash": "e058a801343ce08199a842a0f94d9b4fedbb5836da7d9aa2e61fff31", + "sequence": 44, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "HMRC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.58131 + } + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "The Daily Star led a campaign last year to stop tax rises on horse racing bets.", + "media_hash": "3477c865e012a091c73ea1bab198973c67a8c472d5ff85fb40965e21", + "sequence": 12, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.58131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Minimum wage rises to \u00a312.71 an hour", + "publication_date": "2026-03-31T23:01:15", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c36r7jk6093o", + "media_type": "news_article", + "sentence": { + "text": "When Chancellor Rachel Reeves announced the increases in the Budget last year, she said the cost of living was still the biggest issue for working people.", + "media_hash": "b561a571cb987506ba16a4a428fec233416fc9bfbddb4cf870096423", + "sequence": 36, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "The Treasury", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.560815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "One question he was asked was whether or not he thinks the Government should keep the triple lock.", + "media_hash": "a59fba3dba9361dce39b7651ce89985ca351e53302327930a8e21237", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too costly for the Government.", + "media_hash": "5104367b43af39b1cbe1481813410ffad120a2f853b15b53875dffa3", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Sir Keir Starmer has highlighted the Government \u0301s cost-of-living measures (Stefan Rousseau/PA)", + "media_hash": "1b635481076099709677acd242d851f6f4a1bc9a53c8f879b4f4641f", + "sequence": 8, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.5503549999999997, + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Since the run up to the 2025 Autumn Budget, the conversation surrounding the income tax trap has gathered speed with families scrambling to sort their finances in a bid to prevent being dragged into a higher tax band.", + "media_hash": "29796b8cd45bf28a74d75181b3a5bca1a7b3e18d4271f40ec2f9895c", + "sequence": 11, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": { + "finance": 3.975225 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "In response to the question, Mr Bell stated: \"We going to be keeping the triple lock, yes, through this Parliament.\"", + "media_hash": "b231465fe42133f653b85268989890709f7661243feecf47feb6a151", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "DWP minister", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Torsten Bell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Minimum wage rises to \u00a312.71 an hour", + "publication_date": "2026-03-31T23:01:15", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c36r7jk6093o", + "media_type": "news_article", + "sentence": { + "text": "But Spencer says his business is being squeezed from every angle - as well as minimum wage, he has had increases in business rates, national insurance, and statutory sick pay.", + "media_hash": "04fb785f90ecdb5da76e2a507d0777708f2f274bdf10c42bc049fc62", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "In the run-up to the Budget last year, the Daily Star led a campaign to stop Rachel Reeves from introducing tax rises on horse racing bets.", + "media_hash": "be9e6154fc62971cf44a0c9d7e637f03f84ba3ef60d7d44848ba7050", + "sequence": 12, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Certain elderly people believe that having savings or being homeowners would disqualify them from the means-tested benefit, which can additionally grant access to assistance with accommodation expenses, winter heating support and Council Tax.", + "media_hash": "cc0ab210ea46c03a20c4817f1e05b77c86a6c67b934dfd004caf4c23", + "sequence": 38, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", + "media_hash": "8a830f711f819356088c50a7630d1c8f02d3cc5e1e952cb0c30bb749", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997, + "leo_s_topic": 3.5503549999999997, + "energy": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "Welsh Labour ministers say supporting people through cost of living pressures is a priority, and households receiving council tax support will be invited to apply for the payment if they rely on heating oil or LPG.", + "media_hash": "3d6cc219e744d9b1a24628cdb2a661929624cb4e581b9da0c137bf9a", + "sequence": 20, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Welsh government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + } + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "Mr Bell said in response: \"We going to be keeping the triple lock, yes, through this Parliament.\"", + "media_hash": "dbec3ff09d6374881f0fbe2ba162cddb6e70bcc34035f5223d67947a", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "DWP minister Torsten Bell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", + "media_hash": "3c1ef980a35ab4379d9557aa2987f4278ec251e2337c297445183160", + "sequence": 1357, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.5503549999999997, + "economy": 3.5503549999999997 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "This is part of Making Tax Digital (MTD) for Income Tax Self Assessment (ITSA).", + "media_hash": "bf432884f5d79e813d605118cf7b97b466551d385d4350da99010abe", + "sequence": 10, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", + "media_hash": "f543675647f69b6e1babf6c951ea028d19cb40083f64a0b938a8fc1a", + "sequence": 71, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Mairi McAllan", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "economy": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "The Guardian noted that manufacturing a medium-sized new vehicle may produce over 17 tonnes of CO2 - nearly equivalent to three years' worth of gas and electricity usage in the average UK household.", + "media_hash": "ba5f12deed26b8f0ed9a601487fcc4e0d153662c70e0cd5e76949be9", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.548465 + } + } + } +}, +{ + "title": "BBC Wales: Breakfast", + "publication_date": "2026-03-31T06:00:00+00:00", + "publication": "1-bbc_radio_wales", + "url": "/radio-transcript/403836", + "media_type": "transcript", + "sentence": { + "text": "The Welsh government says the one-off payment will be available to households which receive support from the council tax reduction scheme.", + "media_hash": "e1bdc3e4d93e5f6f7152bf8eec0265553029cbe43babae6795ee4115", + "sequence": 851, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.436025 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "One you have a note of your Personal Allowance tax code, you can go to the GOV.UK website and use the online \"Check your Income Tax for the current year\" service.", + "media_hash": "4263df56e599a943fb6388f634e7171aa8547864c136086f515ce27c", + "sequence": 40, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.414065 + } + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "\"Someone who has or is about to move up an income tax band would be wise to use up their cash ISA allowance, or lose it, as it resets on 6 April,\" she said.", + "media_hash": "fe56f257938afc3b20753efbebfd75c6a7f882eac6a302a20e9f538e", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "He encouraged people to find out whether there are any gaps in their National Insurance (NI) records which they can fill in, potentially boosting their state pension entitlement.", + "media_hash": "dfd2456b83943e8bccac385ecfc62de5823976bd761163b48483a3f9", + "sequence": 21, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.414065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Isabella Galliers-Pratt, investment director at Rathbones, said: \"AIM shares and VCTs haven't lost their place entirely, but the tax advantages that once justified the risk have been diluted. For many investors, the sums involved, including the prospect of a six-figure inheritance tax bill, mean these decisions now demand far more scrutiny.\"", + "media_hash": "179270bf96c2db0eb1c4f2108c55f8a13091ff883e81d71b3a0bc3c9", + "sequence": 28, + "claim_type": [ + "correlation", + "support", + "other" + ], + "claimer": [ + { + "name": "Isabella Galliers-Pratt", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.4092450000000003 + }, + "demo": { + "finance": 3.834115 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", + "media_hash": "4294a254b65a41dbe9d2d2d1191ead20bcb627c8bec692b38433256d", + "sequence": 71, + "claim_type": [ + "support", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104479, + "score": 0.20340000000000003 + }, + { + "tracked_claim_id": 104556, + "score": 0.10219999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.4092450000000003, + "economy": 3.4092450000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T19:27:41+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/AllisonPearson/status/2039062091479318744", + "media_type": "social_post", + "sentence": { + "text": "I thought Labour were supposed to be the party of working people.", + "media_hash": "df5cf6316f10425245a066a7a5d1249ae6a94277d5580ed9bffbd2f8", + "sequence": 1, + "claim_type": [ + "personal" + ], + "claimer": [ + { + "name": "7Kiwi", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.407405 + } + } + } +}, +{ + "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", + "publication_date": "2026-03-31T20:21:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", + "media_type": "news_article", + "sentence": { + "text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases.", + "media_hash": "32c895a9d0e309c15524246d6bae8abbbd48ab2552a4176ef039a232", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "Dext said the \"AI slop impact\" on tax is so bad that just over a fifth (21 per cent) of accountants in Scotland warn that relying on generic AI could actually trigger insolvency or business failures this year.", + "media_hash": "03b4c1f9209034e42eb18c5c8648709f4c42b2e98f31f591275ada0c", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dext", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 3.3956850000000003 + } + } + } +}, +{ + "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", + "publication_date": "2026-03-31T20:21:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", + "media_type": "news_article", + "sentence": { + "text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases", + "media_hash": "9bec875c5d660b34c91d42c261621ec701f8b34b76527dee50cc0912", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP tax changes to Motability will cost users \u00a3400 each", + "publication_date": "2026-03-31T14:21:45", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", + "media_type": "news_article", + "sentence": { + "text": "The Department for Work and Pensions (DWP) has announced tax changes that could cost disabled Motability users \u00a3400 each.", + "media_hash": "56664306fb3c3a1a82fd4ad88c63138a42672a5948b837e0a12a92a1", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "Some $250 million intended to feed children from low-income families during the pandemic was fraudulently taken, according to the Department of Justice.", + "media_hash": "710640409b27244ef96ee26381dee931854e1bc0f00ce1af5f92845b", + "sequence": 57, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department of Justice", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.3956850000000003 + }, + "demo": { + "finance": 3.09725 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The payment needs to be claimed, or retirees could face a delay in receiving their first payment of up to \u00a3230.25 each week, or \u00a3921.00 every four-week pay period.", + "media_hash": "01cbede40626d3df53e70a91c3f98cc55dd0576594088d17fa175947", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.38007 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", + "media_hash": "b3eed90ba12fac2b2d244930b333228f4e8a9fa5c47e95232b2bf448", + "sequence": 15, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 3.29984, + "energy": 3.29984, + "economy": 3.29984 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about \u00a340 from a DIY store, which can be used to water the garden rather than using a hosepipe.", + "media_hash": "2144ac481c0e7c762e77d3cf238ab75f7e3d6f9eb6ff6e46de2ba1be", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 3.2593950000000005, + "economy": 3.2593950000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", + "publication_date": "2026-03-31T11:58:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", + "media_type": "news_article", + "sentence": { + "text": "Howard Cox, the founder of FairFuelUK said that 36.4% of 3,678 sole traders, including bricklayers, plumbers, electricians, and others across the UK, have informed his organisation in an online survey that current pump prices could \"drive their businesses to the brink of collapse\" unless the Chancellor takes immediate action to reduce the cost of fuel, specifically diesel.", + "media_hash": "7fb75be47982b58ce45edcd42d75f00b66494415a541abe7107e454e", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Howard Cox", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "FairFuelUK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.2593950000000005 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "UK GDP figures out, we'll assess the state of the UK economy and growth with the economist and commentator Liam Halligan.", + "media_hash": "8957cb598757ff0d4872613fc6a30f006b8c3fc87312accb44760eba", + "sequence": 208, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.228755 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "Millions of workers are being urged to check their payslips before the end of the tax year, as one small error could leave them overpaying tax by thousands of pounds.", + "media_hash": "aaeeba1c7c238740e4f461feaf90bd454d277df295b08ee0626f2061", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.21125 + } + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", + "media_hash": "023e3e63fe3e678041d7fcfaf750c711047f86f44f2b370a0b4c250f", + "sequence": 46, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 3.211065, + "economy": 3.211065 + } + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "Labour pledged in its General Election campaign that it would keep the triple lock for the duration of this Parliament.", + "media_hash": "c271619ce8efc1f491846c3d52e57d391957812dc2238a55ad6544f5", + "sequence": 13, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "He was questioned about whether he believes the Government should maintain the triple lock.", + "media_hash": "96920fc58023c2dd9822fbf1610138d1c768d73952d43ed78aed62c4", + "sequence": 5, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "End `ridiculous\u00b4 royal tax breaks, Greens urge in...", + "publication_date": "2026-03-31T23:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696455/End-ridiculous-royal-tax-breaks-Greens-urge-election-pledge.html", + "media_type": "news_article", + "sentence": { + "text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", + "media_hash": "90b275fb62298fa1e30aaa8c12095bbad025b618b2b6be0e6250652b", + "sequence": 13, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065, + "scottish_elections": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "A senior DWP minister has spoken about the future of the triple lock policy.", + "media_hash": "27e37baae8e7468d55c99ea16bddfb7f331183d111bd7654b38de5f0", + "sequence": 2, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "Labour promised during its General Election campaign that it would maintain the triple lock throughout this Parliament.", + "media_hash": "57294435dad09f3d9613cd423155676300aa3d8227bdef9962d06682", + "sequence": 12, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But America's got better conditions for growth than Europe does, and if we'd only look across to our cousins in the US, we might actually be able to create the conditions needed for growth, a lower regulatory burden, a lower tax burden and lower energy costs.", + "media_hash": "1e8d1628450306534d19dcc7093dc4f158fd92d82ba8a49c83982f88", + "sequence": 1038, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.200295 + } + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "Millions are being pulled into paying tax on their nest eggs as frozen allowances and higher interest rates combine to erode protections once meant to shield them.", + "media_hash": "0ed2e35de59cd7c42ff6148c5c2e650fc7543a786098a8aa8145a9c5", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment inheritance rules after a spouse or loved one dies", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payments-rules-death-36941357", + "media_type": "news_article", + "sentence": { + "text": "Millions of people on State Pension face future tax risk after April increase", + "media_hash": "7c87d193244f9b91cdf6772939b0b499ada351416c3f977d5cc0f2bd", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.123595 + } + } + } +}, +{ + "publication_date": "2026-03-31T07:17:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", + "media_type": "social_post", + "sentence": { + "text": "\ud83d\udc67\ud83c\udffb Lifting 450,000 children out of poverty by removing the two-child cap", + "media_hash": "98411a8d0c31a38da64d7ba6371a2f2bed60e948bf8d0d3b14bf128b", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "josephpowell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.123595, + "poverty": 3.123595 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And I think the government has been given a really bad hand by events by the Conservative government, but they have made awful decisions on national insurance contributions and other things that has meant our economy isn't growing the way it should.", + "media_hash": "d59bc1642d6ee6bea5015964d66e75ca5e839b189d498659f90a5179", + "sequence": 904, + "claim_type": [ + "personal", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.120805 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I forgot how anti the national insurance rises the lib dems were.", + "media_hash": "0bdfe7dd4a45c8fbc5abee646bd61944dc6581b55598cca09c6ba24f", + "sequence": 906, + "claim_type": [ + "personal", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.09907 + } + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "As the organization raked in more than $3 million in reimbursements, he reportedly carved out at least $129,000 for himself.", + "media_hash": "0beebdfc68d546914eaa4d6cbd56e1cbee216b9728778bfe377229b3", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Abdul Abubakar Ali", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.09725 + }, + "demo": { + "finance": 3.09725 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", + "media_hash": "7091754801d02e06217bae835c2937684a0d8cbd9cd4265a9c31ddbb", + "sequence": 2, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "general": 3.09725, + "economy": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "but 25% are not yet ready and that and that's quite a scary thought, this comes into effect next month.", + "media_hash": "a2f00fa7de4b99fa3351f48bc277c053e5a6e55c91ef2b7e6f2352bd", + "sequence": 119, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Monzo Business", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.09725 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "The figures contrast with headline CPI inflation of 3 per cent last month - although that is now expected to rise in response to the Middle East turmoil.", + "media_hash": "12798d38c15f86a507afc16082ba2b8467f3bda0751fb69e98f033fb", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.09725 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "Wage expectations also inched up slightly, which could worry Bank of England policymakers concerned about inflation.", + "media_hash": "ce3d8a416831063e16ad8df27ff3e8a5015bf9feafec0068d78c3bb8", + "sequence": 21, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.083055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP tax changes to Motability will cost users \u00a3400 each", + "publication_date": "2026-03-31T14:21:45", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", + "media_type": "news_article", + "sentence": { + "text": "DWP tax changes to Motability will cost users \u00a3400 each", + "media_hash": "6b7dd87682e38161dfa387774393e7dafbefb07047a046ef8a53a272", + "sequence": 0, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Gary JJ Hedley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.074085 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Now I started off for good debate on national insurance, but speaking to businesses in my constituency and beyond, that has been awful for our economy.", + "media_hash": "78eaff3548c998cd25816993740d96feee01803fb4caa71737ab56a2", + "sequence": 1027, + "claim_type": [ + "personal", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.0681149999999997 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "Yeah, I agree with you, that's what I do the right thing and I get tax bills for it, whereas it's like said the barbershop or other service is like that.", + "media_hash": "22d3e962dc9c6fc827daa8c1a7edf243eccaf106c0a0e963f7523b00", + "sequence": 399, + "claim_type": [ + "personal", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 3.0681149999999997 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "One small mistake in your tax code could mean you are overpaying tax without realising and refunds from HMRc are not automatic.", + "media_hash": "abe47b9a6124bcff8cc6a16dcb7336f464fc243422881f1509015edb", + "sequence": 1, + "claim_type": [ + "rules" + ], + "claimer": [ + { + "name": "HMRC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.044 + } + } + } +}, +{ + "publication_date": "2026-03-31T06:32:07+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/AllisonPearson/status/2038866913430851723", + "media_type": "social_post", + "sentence": { + "text": "All this while tax thresholds for working British people have been frozen since 2021 and are set to remain frozen into the 2030s.", + "media_hash": "33391ed59e9ce642530ba44cedd215385461b36f31a49fd3cff21964", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "charliecolecc", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.0286850000000003 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Forecasts from the Organisation of Economic Cooperation and Development (OECD) last week gave Britain the biggest downgrade of all major economies.", + "media_hash": "26f00e9120fdbd3202ecc283b03949e6a3eff9b01e012f438269d3bc", + "sequence": 20, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.981275 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "State pension age to be reviewed by UK Government amid fears that 45% of workers are not saving", + "media_hash": "404b48afd3827f9ccc9c76de41cb7209433b4b523269b50b7a63db1f", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Despite pushing taxes to record highs, she's still spending \u00a3150billion more a year than she raises.", + "media_hash": "d988d9bfc270491b11c804d8db6d1057a99765e3fd6638f25a80668d", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "This is a government which is borrowing something like 400 a day.", + "media_hash": "58bd780d2b7e5250a2a18abe9409476e317a0a7ca0a0b78bc6a006ff", + "sequence": 875, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "Make UK estimate that the average cost to a manufacturer will be \u00a3100,000, rising to \u00a3250,000 by 2030.", + "media_hash": "42eacaf45ff12616e873e1c4870520a1ccb562de50616b4dc1a4be0f", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Make UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "The gambling sector is preparing for online gambling duty to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", + "media_hash": "9cac1d9f5c682f1ae2e6b5c20a4e8bf4b89f673c21ac436af36c7966", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "The popular bookies have around 1,300 shops in the UK with approximately 15% of them set to close from May due to increased cost pressures including significant tax increases in the gambling sector", + "media_hash": "35a615e123a7123431b4d9c2c0b7f8858df1802de73ec6126535c317", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", + "media_hash": "7ee60d472340e5a6169d594449470529ec8d11314140dbe43d85c3f7", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.970815, + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "I hate that. I hate the idea as shown by HMRC's forecast of this, that the government is going to make money on this, it's going to be 2.9 billion, the cost to the taxpayer and small businesses are buying software and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", + "media_hash": "9746354f04745861f5370fda34a618b40b75014279a00977965f3866", + "sequence": 142, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "A big change is on its way when it comes to how self-employed workers and landlords earning more than \u00a350,000 a year submit their tax returns and deal with HMRC.", + "media_hash": "97fe4aefba530c544a2bc9b7611f38819652f9dad2f4b9c00ef869ca", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "This compared to a surge of 0.7 per cent in the first quarter of the year before President Trump's Liberation Day.", + "media_hash": "92248b4d885302e71d4e2eb5ee51eb68f764ed94a25b89e26c9c8e89", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "The combination of a smaller multiplier with a much higher value meant higher bills, with publicans and hoteliers claiming average valuation increases of more than 30%.", + "media_hash": "70b7d0449bb2a06013cc52ea0e3735204596df2749ba4fc649b70f94", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "publicans and hoteliers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "HMRC has estimated that H M R C that introducing making tax tax digital will cost about 4.3 billion pounds, 1.4 billion of that being government spending and 2.9 billion being the cost to taxpayers and small businesses of buying software and employing accountants.", + "media_hash": "0c16810db18141bf4a97ba17e4ca0ba17b19080256a24be66db993c9", + "sequence": 63, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "HMRC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "But then HMRC estimates will cost taxpayers and small businesses some 2.9 billion because they will have to buy the software, in some cases on which they make their tax digital and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", + "media_hash": "b1c1dd0681870fe8b541a0c47066d7566ec7a436a7ad0cd35e00bc54", + "sequence": 187, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", + "media_hash": "2366f3bcead30a3c69969c3b4d708cce8894eaa831401c1443a8efa3", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", + "media_hash": "41affbdecfc8d59ba66c667c1a04b7cffca63c698680ab64100a134e", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "EDF Energy", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104448, + "score": 0.19320000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.970815, + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Rathbones estimates that more than 3,500 estates could face IHT bills breaching \u00a3500,000 by the end of the current tax year, up from 2,520 estates in the 2021 to 2022 tax year.", + "media_hash": "0548f6f8afa1086e63c05894af8638951d3e91c50ffadc24029da46a", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rathbones", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": { + "finance": 4.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", + "publication_date": "2026-03-31T11:58:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", + "media_type": "news_article", + "sentence": { + "text": "Rachel Reeves 'critical' warning as 1.3k businesses could be 'on brink of collapse'", + "media_hash": "506b88ecfbf90445412711b31d6e029300976e0c9df34af2b6916a81", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "The warning comes ahead of the April 5 deadline, with experts saying many people are on the wrong tax code without realising it - the average taxpayer could be owed more than \u00a33,000.", + "media_hash": "efa6de16b3a6f6c8fad77759b47c62d2990486e53863f1ac793044bf", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "Energy bills could go up by \u00a3300 in July (Image: Getty)", + "media_hash": "f8496ec245123b7c201724888df3e175f8f6284632949c873d149138", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "Now this does apply in the first instance to those with a gross income above 50,000 pounds, all of this is kicking in next week.", + "media_hash": "fe87f48a86b18c05b312aff6b62e646014dac46e7c20a9a2d505e552", + "sequence": 136, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", + "publication_date": "2026-03-31T20:21:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", + "media_type": "news_article", + "sentence": { + "text": "The move comes just months after Chancellor Rachel Reeves made the decision to almost double taxes on online gambling from 21 to 40 per cent, while hiking sports betting from 15 to 25 per cent.", + "media_hash": "fb526e6da6403b065a8634e1b87c45503cd8d935d80c960894b755ef", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Think we need to acknowledge that the majority of that is on pensioners.", + "media_hash": "dda636fe4ce99a105aa4a62bdfc5ceaeb1a3b8bb54f23e08816554c8", + "sequence": 899, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.970815 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "There is going to be a degree of excitement or at least people are going to be excited about the fact that they are going to be made to make their tax digital four times a year, rather than one and for some people who don't aren't able to get it for free, you will have to pay on average about 300 pounds for the pleasure of registering your tax return four or five times a year.", + "media_hash": "ad3aa3c88d395dd4e822ddfb464122071b3aea7910072fc015b914f9", + "sequence": 135, + "claim_type": [ + "quantity", + "rules", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.9597550000000004 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The trade body warned that increases to employment costs and business rates from Wednesday will cause job losses and harm business viability.", + "media_hash": "a53dd790f17147446a9f0ba81583a26d9e72ceee4e3003d8abab781d", + "sequence": 20, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.9142349999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "Industry experts had warned the move could cost 40,000 jobs and risk consigning the 500-year-old sport to the knacker's yard.", + "media_hash": "92e7a2435bfd6e850f9c5514073dfa18068e4978bd809b6bf0a4660a", + "sequence": 13, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "He admitted using the nonprofit Youth Inventors Lab as a shell company to siphon millions of dollars through fraudulent reimbursement claims for roughly 1.5 million meals that were never served to children in need.", + "media_hash": "e8b57004aac08b2a7d30046f9819b5922d1b226a63357729170f4120", + "sequence": 4, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Abdul Abubakar Ali", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905 + }, + "demo": { + "finance": 2.910905 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "Ali admitted using a nonprofit as a shell company to siphon over $3 million in reimbursements for millions of meals that were never served to children, pocketing at least $129,000 for himself", + "media_hash": "3118ee445fbc54ad9fafdf97c85ae7221e30112fb348f976d96b697d", + "sequence": 11, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905 + }, + "demo": { + "finance": 2.87995 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "The DOJ said the scheme saw $250 million intended to feed children from low-income families during the pandemic fraudulently taken", + "media_hash": "986d45c4c7a3b0c1ea1a6ff4f53a0a96a28bcaf86a25a1fd20866a22", + "sequence": 45, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Department of Justice", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905 + }, + "demo": { + "finance": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", + "media_hash": "e32518c650b30323c84b14e3df63455fa8958cd352d4d9ae79457449", + "sequence": 314, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905, + "health": 2.910905, + "leo_s_topic": 2.910905 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "Almost half of Scottish accountants reported that clients trusting public AI have already been hit with real-world financial losses, from heavy HMRC penalties and overpaid tax to missed allowances.", + "media_hash": "b8797cec9d39dda9cf7a328220716affa4fef463233f3108d3440309", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.910905 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", + "media_hash": "5cce868ca8efd9b41db9d24d21054529319376fbb89b1ded771d6269", + "sequence": 292, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.885515, + "health": 2.885515, + "leo_s_topic": 2.885515 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "A bath typically uses 100 litres of water while taking a four-minute shower with a \u00a320 water-saving shower head uses just 32 litres.", + "media_hash": "e07f5f793a6bd9a27ffa3b60f452568dedef7161680a50bbbd801445", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131, + "economy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Minimum wage rises to \u00a312.71 an hour", + "publication_date": "2026-03-31T23:01:15", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c36r7jk6093o", + "media_type": "news_article", + "sentence": { + "text": "Around 2.7 million people are set to receive a pay rise this week as the national minimum wage goes up by 50p to \u00a312.71 for over 21s.", + "media_hash": "c76cc0c6b5fc93532f429242828195541212cbbf79b157949485fddb", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Treasury", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "A washing machine requires up to 150 litres of water per wash.", + "media_hash": "0ab511a7b85895b514e7743d810218beac852d340100c2b6f440c672", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.88131, + "economy": 2.88131 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", + "media_hash": "86a27ceed05145c49e4630b444b17b58075ef42a578d09157195487a", + "sequence": 1407, + "checkworthiness": { + "fullfact": { + "energy": 2.8610100000000003, + "economy": 2.8610100000000003 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "If you leave it, the mistake will simply roll into the next tax year - and you will keep overpaying without realising.", + "media_hash": "ba21462181826201932dc99a6fc39af576882d10ff8d60db0843e0fe", + "sequence": 37, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Jo Adams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.83673 + } + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "The national living wage for over-21s increases by more than 4% to \u00a312.71, and to \u00a310.85 for 18-20 year olds, an 8.5% hike.", + "media_hash": "96edcf218ddd62860d93b9895767ff657d0c4afd4e5d73e1118c2aa0", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.8194 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "It takes a couple of minutes to look at your payslip, and it could save you hundreds or even thousands of pounds.", + "media_hash": "7a87ed7e7e98ce6fc40cb90167e03b0ad3fcd333fa0a535831ad85fb", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Jo Adams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.8194 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "Having more than one job or pension can also cause problems.", + "media_hash": "9e98e09c2a867952985299c9cf5e3cb9da3108b15bc0b4a3d5f1732d", + "sequence": 23, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.810965 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "This can reduce your tax free allowance and result in higher deductions from your wages.", + "media_hash": "502d5e9852218f4d552286f491213d6d2b5493abee5ff90e7a4c6f23", + "sequence": 28, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.810965 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", + "media_hash": "c4145132ba7b006d21f8d80c44b970dfec84e420116506164213a9a5", + "sequence": 1398, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.810965, + "economy": 2.810965 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", + "media_hash": "4fed090c7516038c5440b72410678a5e4a2b89cbc8e8a2c98b815212", + "sequence": 1392, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.810965, + "economy": 2.810965 + } + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "\"Even with transitional caps in place limiting increases, those increases will still compound and bills can more than double by the end of the cycle.\"", + "media_hash": "3e5b3d313d7aa374d469aae2bf5ca2f6d1cab0806411f755c5dd06ac", + "sequence": 32, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Alex Probyn", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.801995 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:52:05", + "publication": "guardian", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "Of course, backward looking is an understatement for Q4 data, the outlook for growth is now materially weaker for this year and 2027 as higher energy prices will squeeze real incomes and further weigh on an already weak employment market.", + "media_hash": "0b10ada772b8a2f2c5216c7214f0cc82b70dbc385035096396af625d", + "sequence": 84, + "claim_type": [ + "quantity", + "predictions" + ], + "claims_matched": [ + { + "tracked_claim_id": 39629, + "score": 0.18110000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.801995 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "It kicks in for people, uh, with 50,000 pounds or more, but it is going to come down much, much lower over the course of the next few years, so it will get to you in the end.", + "media_hash": "f23aa89d1c46e453cecd99891414ccafda9bd6420c7857212ca11e9f", + "sequence": 88, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.801995 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Overall, a typical household is expected to be \u00a3143 worse off from the start of April.", + "media_hash": "de0ab89ad637f98a2dba0e53197ee0d283b78df85568bb318623159b", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.801995 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Indonesia rations fuel as prices soar over Mideast war", + "publication_date": "2026-03-31T13:03:14", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694797/Indonesia-rations-fuel-prices-soar-Mideast-war.html", + "media_type": "news_article", + "sentence": { + "text": "Observers say the government's hand may eventually be forced given that Indonesia is required by law to keep its fiscal deficit under three percent of gross domestic product.", + "media_hash": "64ec0b418aa6dd603991fc6052abf1f26be0cacece84e9ed3f879cb1", + "sequence": 9, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.786985 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", + "media_hash": "8c7a42ff28cf003199ccc9b149756bbf41b9621a223335d4f08b5027", + "sequence": 1404, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.7846200000000003, + "economy": 2.7846200000000003 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "However, there will barely be a chance to enjoy the savings, amounting to around \u00a310 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", + "media_hash": "abc32788f0e2da823cac45fc728a1c4febb7af1173ad2ff11f05cb68", + "sequence": 65, + "claim_type": [ + "quantity", + "predictions" + ], + "claims_matched": [ + { + "tracked_claim_id": 25099, + "score": 0.2639 + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.77565, + "economy": 2.77565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "media_hash": "4f0e1930159b55008e2fa6e8cd74360088e6058fe44c1f85595245fd", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.772635 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "Without it, you may be placed on an emergency tax code such as 1257L W1 or M1, which can result in higher deductions until the issue is resolved.", + "media_hash": "f8f08fd9dfb093b0806f528f6b3b7df0e01c1de5901e1d6bd0bd5c7c", + "sequence": 22, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.7705450000000003 + } + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "'F*** it, I'm opening a few daycares and a Medicare hospice care center, so you do a few years for several million dollars, which is a lot easier than working until you hit 70,' one comment read.", + "media_hash": "46ac52c34cc0a183817555e86c4dc6ef6932e692f05e70ab52263894", + "sequence": 48, + "claim_type": [ + "personal", + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.7679549999999997 + }, + "demo": { + "finance": 2.7679549999999997 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "The state pension is guaranteed to increase every year based on one of three metrics - inflation, wage growth or a flat 2.5%, and this is protected by law for both the new post-2016 state pension and the older, basic state pension.", + "media_hash": "92e101dab8469ff59d38a437b587b3fdea65615f11f6b86294abc836", + "sequence": 3, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.76698 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Um, and for the whole year, they've got a new number, 1.4% for the whole year of 2025.", + "media_hash": "ccd067ad6d054cb28b996ab43a6bf8ea966ab2bd5f79c529678ae706", + "sequence": 681, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.72968 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", + "media_hash": "812b460b7392f5dca5257da1e17967ad0a41f7c07975cb7156c40aa5", + "sequence": 1331, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72968, + "economy": 2.72968 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "The most common mistakes being found include incorrectly interpreting business expenses (61 per cent of cases), and messing up VAT claims (46 per cent).", + "media_hash": "7428947203acb47c915ab2d87461cf81c2ed85ff1d2ca78a9ce64c24", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.72968 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.6987249999999996 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Some households could also save costs by installing a water meter - those who switch typically save up to \u00a3100 a year.", + "media_hash": "091f2a9fe79c6cfe00659a0ba615c829a92a00179afaf70169290f98", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.72853, + "economy": 2.72853 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Indeed Britain spending about 112 billion pounds this year servicing debt.", + "media_hash": "7ca03fe7f56415fac5a56feeea47c2dc08133b1a32b74a45c489b2cb", + "sequence": 2503, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.72853 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "If you haven't given it enough information, you're really at a high risk of undertaking a task or an activity or making a decision that could ultimately lead to business failure.", + "media_hash": "a3e5122846148865cb2a4f99f8d51216b58c1450aaef41aa6cb96015", + "sequence": 24, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.716055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.716055 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "Accountants expect the risks to intensify this year if businesses continue relying on public AI tools without professional oversight.", + "media_hash": "200eb6e64990bc627ea506a3ddba0c1e7e2926e9dbaec8ab2d46e4db", + "sequence": 25, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.716055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.716055 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I think the question's quite right, so look, welfare spending is at a record high.", + "media_hash": "5af358d396371c1222c20e65b7583990b06aa72233744a101c467795", + "sequence": 898, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.7091849999999997 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "It means that cars which produce more than 225g of CO2 emissions per kilometre are hit by Vehicle Excise Duty (VED) - with those producing 201-225g/km paying \u00a3430, 226-255g/km \u00a3735 and over 255g/km \u00a3750.", + "media_hash": "c2f406689727e458d04fe13bd435d3685252f308f1cd16aa7079ed02", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "Over the past decade, basic-rate taxpayers alone have paid more than \u00a34.7bn in tax on their savings interest, underlining how the allowance has failed to keep pace.", + "media_hash": "fcf2757ceaf33dc5bb1729bbfe05c3fb376a9dad1a9cba54b1570070", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Minimum wage rises to \u00a312.71 an hour", + "publication_date": "2026-03-31T23:01:15", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c36r7jk6093o", + "media_type": "news_article", + "sentence": { + "text": "The Treasury said around 2.7 million people are on minimum wage", + "media_hash": "1332af9c90cb2a02de3d6fe8ca090a62aea1a3b2655b3e4571c98dca", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "I think we just need to put that in context that the majority of welfare spending is on on pensioners.", + "media_hash": "7b475447be63a6b4e7604893e0d69164441f7129ff55614af71977b6", + "sequence": 901, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "No, but the reason why this is such a huge increase in young people.", + "media_hash": "e9dda4e54ccb730637400c83b3206c647c5e22de860a6e80b709d520", + "sequence": 921, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "The cars affected are those which are older than 20 years - but they have to reach 40 to be considered 'classics' and be tax exempt.", + "media_hash": "2319d295ca907905bf684139492aee8ec54b0e7301cf57a5a5ade30f", + "sequence": 4, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "However, but more recent figures have shown the economy flatlined in January with zero output.", + "media_hash": "c8885c2dd9690eba98704864400738a07ebf883c25c4e7ee1eec7ef4", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "'Annual growth for the whole of 2025 was, however, revised up slightly.", + "media_hash": "66abfd59d3a7b3016a3f450a0479ef280e8056a7da611dcc5b7a3935", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Liz McKeown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "The overwhelming majority of town halls are imposing the maximum allowed without being obliged to trigger a referendum - with some strugglers given permission to smash the 5 per cent ceiling.", + "media_hash": "8e74e4aa42f4b1ade2d5d20565fe0f04160cf56679db5dce6c7c9d92", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 3.123595 + }, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:17:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", + "media_type": "social_post", + "sentence": { + "text": "\ud83e\udd63 Free breakfast clubs in schools - saving parents up to \u00a3450 a year", + "media_hash": "1a20fddce70639899a08cbb264f6e172362e58ade63f5074d0a95113", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "josephpowell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996, + "poverty": 2.6987249999999996 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But our economy's still growing faster than Europe.", + "media_hash": "6bc5acdc37b40e8c1a089be6e12da38727e475fe9ae5e2c16a0c291a", + "sequence": 1040, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 45073, + "score": 0.08811784092693131 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "There are also more than 700,000 older people eligible for a State Pension top-up of \u00a34,300 annual income top-up.", + "media_hash": "65493d6746f6e0b380b492bf451a3b66db45b2af2e6cacdae158b519", + "sequence": 44, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "But despite a sharp rise in interest rates over recent years, the thresholds have been left frozen - meaning more savers are now exceeding them.", + "media_hash": "e7208f79e91ecdf2a607a1cb76161e1ffe5c9bec745912ba041c700d", + "sequence": 5, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "\"Unfortunately, over a third (36%) of people have never heard of the PSA... This shows how the PSA has not moved along with the times.\"", + "media_hash": "b0dba19d254a22673794c44cd9938f8cd72800fa72331d48b0eb9234", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "This category is also set to be affected by annual inflationary price hikes this April, with fees up by as much as \u00a315.", + "media_hash": "5dce265a32f8bb16f8c24a84a6faf063bc97faeec81045b0344153e1", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "For metropolitan areas the increase will be a 5.2 per cent, ad in shire areas it will be 4.6 per cent.", + "media_hash": "432126624402c836d731852729a49fa8a0ab02aec57a3b6f1fe3073c", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "The full basic state pension will rise from \u00a3176.45 a week to \u00a3184.85 a week, or \u00a39,612 annually.", + "media_hash": "8fea78015e246a70b2a74c899f7218a14f157d8ae7adc2c3f6cf0979", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "Business rates, paid on bricks-and-mortar premises, are the means by which companies contribute to local government funding and are forecast to contribute \u00a334bn in 2026-27.", + "media_hash": "c4a8773a6ecdea38e2c0c4267a1257ce0e836d902d1d082e0d7f3d7e", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5315000000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "Really interesting, we've done some research on this and about 70% of business owners that are impacted by making tax digital are aware of it.", + "media_hash": "df0f99a43f5e84828fec7ca8789020cbe2d3edab51067e3a01ea2c2c", + "sequence": 118, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Monzo Business", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Gas and electricity bills are set to fall by \u00a3117 a year on average from April 1, to \u00a31,641 a year for a typical household.", + "media_hash": "9fc5bdd0c8a75354fc89bff6373ffa1ba064ec972dafbe15787065ad", + "sequence": 64, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, household spending rose by only 0.1 per cent, while business investment dropped by 2.5 per cent.", + "media_hash": "324dd594297c32378710c674e32e41fc395c7dde07b593c2e706cb08", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Pension Credit supplements weekly income to a guaranteed minimum threshold of \u00a3227.10 per week for individual pensioners or \u00a3346.60 for couples.", + "media_hash": "75b5702005cf1a74d72982da0c662c2127e91a6b79140bfa10b2ef62", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Services showed no growth, while production grew strongly, partially offset by a weak quarter from construction.", + "media_hash": "ac253ba2ba3bd69be1c33c8b01a35fef302fcb14593307aee355aee9", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Liz McKeown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "'Meanwhile, the household savings ratio increased and remains high by historic standards.", + "media_hash": "e00281c36f22d4a3de435e6c81a75a5cf08ac61912ccc7224f6b0707", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Liz McKeown", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'On top of that, many households are already overpaying by hundreds of pounds a year simply because it's so hard to keep track of everything.", + "media_hash": "f5b7148fca69453b8160ca1771e83377178961dc9bce80ad9a6d892a", + "sequence": 13, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Nous.co", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Greg Marsh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.500545 + }, + "pa-media": {}, + "maldita": { + "economy": 2.500545 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "We saw a huge increase in the number of people claiming entitlement related benefits particularly after the pandemic.", + "media_hash": "cce241ec8b35166fa0a8b559a9ca8ba4b9416e7f87ea39a6a42cbc90", + "sequence": 992, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Dividend tax is also set to increase by two percentage points for most investors, tightening the tax net on income held outside tax-free wrappers such as pensions and ISAs.", + "media_hash": "d46657be830a970666be1bb1ce573fa2b5e490f5a1f035bd9dc49920", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": { + "finance": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "But because these cars are now worth very little - often under \u00a31,500 - the annual tax bill can represent 25-50% of the car's total value and people are getting them scrapped.", + "media_hash": "f0a1a56302f3df881c930bb1ca3c973b6796a7baa186bb8266ea56f7", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "Your State Pension increases by the equivalent of 1% for every nine weeks you defer, this works out as just under 5.8 per cent for every 52 weeks.", + "media_hash": "aa56892924d90a29cf93e96888ec41ebf2617365cc13e243ab34c56e", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Debt interest alone is costing \u00a3112billion a year.", + "media_hash": "f674c7f6f0afeedf76e1c6b7e8698a7ad54d9bba0318544d685c4c67", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", + "media_hash": "9e3574c922321a880b23e9f356285ff07ee2913732f20c41250506cf", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996, + "leo_s_topic": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.698725 + }, + "pa-media": {}, + "maldita": { + "energy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:52:05", + "publication": "guardian", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "Inflation, meanwhile, has remained stubbornly above target, keeping interest rates higher for longer and tightening the squeeze on activity.", + "media_hash": "627ce9412bc214ea0e3517c697cf122a04b4a02ac7fe6f6e201e84c9", + "sequence": 48, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Jonathan Raymond", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104698, + "score": 0.39990000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "So people spent less on other items, so there's less VAT coming in on other purchases.", + "media_hash": "ced194e2faf7df5e9802f408f533eafa86e5a95f54ff6b6ad94c0392", + "sequence": 43, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "And on average, you will pay about 300 pounds a year for the privilege of doing something that was once free.", + "media_hash": "27d82f1316cf03e4ada903d2a4cf129ba399890ba1cb13587911c5be", + "sequence": 89, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + } + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "'From a business sense, coffee prices have gone up in the last three years by 40 per cent, milk has gone up from $2 to $3.15 and bacon has gone up from $46 to $59 - everything's going up.", + "media_hash": "4cea091e288b66cbefaba802d8a97c4460ca7a46076ecc0a855032e7", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Sam", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6987249999999996 + }, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Mobile customers can save an average of \u00a3304 switching from a handset contract to a SIM-only contract.", + "media_hash": "215d90b8b45740ee47f8a532d099de8ab25573592bc4447f3942d5e9", + "sequence": 53, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.6987249999999996, + "economy": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "So you think actually despite people not being ready, the system will allow for people to get used to this as it as it has becomes a necessity for people, not just in the first instance who aren't 50 grand a year, but 40, 30, 20 and then eventually to everybody.", + "media_hash": "963125be7ddbafe284ebc5e98f04832561f290b478ca22332565086c", + "sequence": 125, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6966349999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Greece can actually borrow more cheaply than the UK.", + "media_hash": "0b188234ae45ac287fdcef96dfb6391b019ff2cb49b0793e6f9bf884", + "sequence": 2502, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.66662 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Now, the staggering amount, rich relief is in no position to do a giveaway right now.", + "media_hash": "e796da23a5e0cb4c8243e78c69597bd0c51c4ba98c504e98891658c2", + "sequence": 876, + "checkworthiness": { + "fullfact": { + "economy": 2.658185 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "If you're not self-employed, do you see it as the right thing to do to self-employed people, to make them do their taxes more often to try and stop any, I don't know, what would we call it, any creativity in those accounts?", + "media_hash": "37f86ba3e4011690a02a1d1322bde84cc0601303b792553b9cfcfcaf", + "sequence": 84, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.658185 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "It is the end of the financial year and spirits are in the sky as a whole raft of changes are being brought in over the next few days and weeks that make life largely more expensive and more bureaucratic.", + "media_hash": "d8b73c39f9de5bf41d1329cff5acce82bb1b7e8776199c56d98b1dc8", + "sequence": 57, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.658185 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "First applied to those with a gross income above 50,000 pounds, but rolling out for everybody over the course of the next few years, a scheme which will cost the taxpayer some 1.4 billion in order to set it up.", + "media_hash": "ca76240e0dd803589f634b2c37c4b5be81d4b78df8c3833327794bab", + "sequence": 186, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.649215 + } + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "Some customers will see monthly costs rise by more than double than what they would've done under the previous system, according to Broadband Genie, with those on the cheapest packages hardest hit.", + "media_hash": "d0353f640be33219557ceaa3cc5e5947caf38440018e2fa676cb37f2", + "sequence": 10, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", + "media_hash": "34c35813d5befd06a9e4c04c9711f2e0dc698156a8a9c287a0bdb322", + "sequence": 1325, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.649215, + "economy": 2.649215 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "At first, you'll only have to do this if you make over 50,000 a year, but that amount will gradually come down over the next few years to mean that in effect, uh, even the children who come round offering to wash cars for pocket money will be feverishly been counting every quarter as the man from H M R C glowers at them.", + "media_hash": "f5d47b2e43b350da79368b80d04a9fd6338c26ab61f25a061068a60b", + "sequence": 62, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.649215 + } + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "'Providers have not hesitated to raise customers' prices far beyond the rate of inflation, costing bill payers millions.", + "media_hash": "15f00c1534f88ac99a028dba8ad849d8e6ea9faf5e7506c0b3b12c3c", + "sequence": 7, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Alex Tofts", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.638815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "'These are people trying to keep up with costs that are rising faster than their wages,' Compare Club's head of research, Kate Browne, told the Daily Mail.", + "media_hash": "124e492ab1a20027aed0417a07ded342b9c3c608776f5222abbd9dd9", + "sequence": 61, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Compare Club's head of research, Kate Browne", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.638815 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.638815 + }, + "pa-media": {}, + "maldita": { + "economy": 2.638815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "She needs to reverse her disastrous \u00a326billion jobs tax, cut red tape and get the economy moving.", + "media_hash": "03389e6ec751e1ad500c1ada3a618c679c26b6493b00b2d01ad11e65", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 39603, + "score": 0.3155 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.636345 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.636345, + "trending": 2.636345 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "'This is part of a very large fraud scheme, the largest in the District of Minnesota and one of the largest ever in the country,' Brasel said, according to KARE.", + "media_hash": "b5a5b11e8fcf96db81bbe1bb8d7981bff1409f3577bf4b58df8a16be", + "sequence": 28, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Judge Nancy Brasel", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.62293 + }, + "demo": { + "finance": 2.62293 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "Some of the most desirable cars from 20 years ago are now virtually worthless and being scrapped because it costs too much to tax them.", + "media_hash": "acf3939d8d36923ebfeaae48cedc3ba97163afc1fca8ffda83cb2a41", + "sequence": 7, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.62122 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "'The result is that most of us will be worse off overall - not better.", + "media_hash": "5cf6ceb446a522fd601729af2862869c403de0f98f243c3d6dfb73ee", + "sequence": 12, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Nous.co", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Greg Marsh", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6158 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.6158 + }, + "pa-media": {}, + "maldita": { + "economy": 2.6158 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "Industry experts had warned the move could cost 40,000 jobs and risked consigning the 500-year-old sport to the knacker's yard.", + "media_hash": "4d24d1fd82569bebaada9cbe9612cf71d6a99e2b85bb12a9e749cd55", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "Ali confessed that he and his co-conspirators relied on fake invoices for food and services, falsely claiming to have served over 1.5 million meals provided by S & S Catering in just seven months.", + "media_hash": "1e07410e69cd7279da909291fa5c448991d650ac71a0d97cfb5582e9", + "sequence": 43, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Abdul Abubakar Ali", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.61247 + }, + "demo": { + "finance": 2.61247 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "The criminals falsely claimed they had served 91 million meals.", + "media_hash": "ecf611b5503edf19082563aeb5bbf55255162300d3c724f09e66a991", + "sequence": 58, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.61247 + }, + "demo": { + "finance": 0.0 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And Trump's busy putting up tariffs that's damaging his economy and ours.", + "media_hash": "e51cb6cd6795b6136b0630baeba2d2cbabbec70b10dba90c885da616", + "sequence": 1039, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.598275 + } + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "The impact is clear: more lost jobs; less investment; and business closures.", + "media_hash": "8c9ea97d95135b7d909ce8d40f5d18aa4e3da8fb062cdb0b8da759da", + "sequence": 13, + "claim_type": [ + "correlation", + "support" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.59811 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "' And increasing energy prices now threaten to 'accelerate all of these impacts', they added.", + "media_hash": "b4a924468a181d07cf028dfb1a6d67d2153c71b3461a74f4c54a378e", + "sequence": 14, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "Hospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.59811 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "To what extent is it your fault because this has been in the making for some 10 years ago, there have been adverts about it, there have been conversations about it already.", + "media_hash": "21bd765f8c01498bbb27227904cc1fd2c68334da2bb7252267b62be1", + "sequence": 81, + "checkworthiness": { + "fullfact": { + "economy": 2.58644 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "You have you have actually outed yourself as the reason for why this has to happen because there is a person on payroll listening going, well hang on.", + "media_hash": "406462f169bb1165df3d4d5a01d9bf5f5d78e6fcc5e4a5495cd14db1", + "sequence": 390, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.58644 + } + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "You usually multiply the number in the tax code by 10 to get the total amount of income they can earn before being taxed.", + "media_hash": "1d233ceb6dcdb4ebd82e07a20c897d05dbb810dbd1d2fc7dcd644e43", + "sequence": 47, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + } + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "You typically need 35 years of NI contributions to get the full new state pension and 30 years of contributions to get the full basic state pension.", + "media_hash": "f8f5f3a663074a3fca26c35cfb20927211b1d0312ca94eb315769fd8", + "sequence": 26, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "Generally, 35 years of NI contributions are required for the full new state pension, while 30 years are needed for the full basic state pension.", + "media_hash": "901039e2837cdb7475eae570d78435693557d378b29b6eb013267bb3", + "sequence": 22, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Under existing rules, councils can raise tax by up to 4.99% without a local referendum.", + "media_hash": "17dd296908f06583cfafa1def30830281a6a1454a96b8efda0bd70a0", + "sequence": 3, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "Single-person households qualify for a 25% discount, full-time students can be fully exempt, and those on low incomes can apply for a reduction of up to 100%.", + "media_hash": "c086686cbcd2b02dc1d9ae776444d49c000c32ba2f85d061361c34c1", + "sequence": 9, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The planned change to the official age of retirement has been in legislation since 2014 with a further rise from 67 to 68 set to be implemented by the mid-2040s.", + "media_hash": "a7e2a8fa67982051b4082a4be17b43e3a2c7a9ccfcb3d70a460df4bc", + "sequence": 4, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "The policy ensures the state pension increases each April in line with the highest of inflation, the rise in average earnings or 2.5 percent.", + "media_hash": "58b5d73b522f30f68ccca4fcc195a33dc246bac9e959b443c65fca17", + "sequence": 4, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "The policy guarantees that the state pension rises each April in line with the highest of inflation, the increase in average earnings or 2.5 percent.", + "media_hash": "f6ca1db68ca208cbae9a9ed14b18ee5b6789beaae308cf51a4e6f04e", + "sequence": 3, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5843949999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", + "media_hash": "c0e57f6d3f0edf30285444e2d7eb86b9ea3eb60054f782c57940f058", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Treasury", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "general": 2.57747, + "economy": 2.57747 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "energy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "If they earn \u00a330,000 per year, taxable income is \u00a317,430 (\u00a330,000 - \u00a312,570).", + "media_hash": "8ecaf0552cc0b7bf25ddcc9490b2664f191182698e40a4bcb7e5dcb9", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + } + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Official figures show the average levy in England will rise 4.9 per cent next month, with a typical Band D property paying \u00a3111 more.", + "media_hash": "99cf1e502604de88147ef32af506e445e8c6b0544ee6373281cdc4da", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "In London the typical figure is set to see a smaller 4.4 per cent rise to \u00a32,068.", + "media_hash": "c1db65425567ac466c358dcadd2df219f7cb31a33c285e0edc3efeff", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5769 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:45:01", + "publication": "guardian-business", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "However, the ONS did revise annual growth for the whole of 2025 up slightly, from 1.3% to 1.4%.", + "media_hash": "c083c9f4fc56bba9bbfecbca9d2daa9aa32a6b6adaa9811f2380f4bf", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.2208 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It'll go up to 53, sorry, 54 pence a litre, at the moment it's 53 pence a litre, to fraction under on both, but, and then two pence a litre more, uh, in six months increments from then on.", + "media_hash": "a6e7e5238cc536ee79c57f790e455590470c9380843eadaade3b49cd", + "sequence": 1317, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "But if you wash using the eco-mode setting it can be just 50 litres.", + "media_hash": "8a671600aaded2440af66dc6b56ed049783d5e79e8baf9de6459dd31", + "sequence": 43, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "The Personal Savings Allowance (PSA), introduced in April 2016, allows basic-rate taxpayers to earn up to \u00a31,000 in savings interest tax-free, while higher-rate taxpayers can earn just \u00a3500.", + "media_hash": "02261571c907a11154bd0d8bc1ab080665257ae994b2bf4ff6d2cd70", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "According to analysis from motor experts Pete Barden, older cars registered before March 2001 with large engines above 1549cc will pay \u00a3375 per year.", + "media_hash": "0627876142c7ee17fff07c32baf8c3e91335175869fbbb8106bfd0c9", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pete Barden", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "Under the updates, owners of petrol and diesel cars with engines below 1549cc will pay \u00a3230 per year, a \u00a310 rise on the current \u00a3220 annual charge.", + "media_hash": "d790eb529714cc73e76fce7db27e35054be3dbccedf4ef73d1b55ae2", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pete Barden", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The household saving ratio increased this quarter by 0.8 percentage points to 9.9%, which the ONS said was caused by higher non-pension saving and \"remains high by historic standards\".", + "media_hash": "94bd7d7efcdf088b8ce4fcead82495114f086add617df5f469ada02c", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "The full-year growth was previously estimated at 1.3 per cent.", + "media_hash": "4ac25f5de40fba6f23d11cfdcfc3923e8989fb0cd7e04a51409065c7", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "Hagger added: 'You need an average balance across the whole month of a minimum of \u00a310 to enter the draw and each multiple of \u00a310 gives you another entry, so the more you put in, the more chances you have.", + "media_hash": "7d64ff4d2db455838336c2a47b3be0d488d74fd8b398e81f01db6159", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Andrew Hagger", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Bath & North East Somerset: 4.99%Bedford: 4.99%Blackburn with Darwen: 4.99%Blackpool: 4.99%Bournemouth, Christchurch & Poole: 6.74%Bracknell Forest: 4.99%Brighton & Hove: 4.99%Bristol: 4.99%Buckinghamshire: 4.99%Central Bedfordshire: 4.99%Cheshire East: 4.99%Cheshire West & Chester: 4.99%Cornwall: 4.99%Cumberland: 4.99%Darlington: 4.99%Derby: 4.99%Dorset: 4.99%Durham: 1.99%East Riding of Yorkshire: 4.99%Halton: 4.99%Hartlepool: 1.98%Herefordshire: 4.99%Hull: 4.99%Isle of Wight: 4.99%Isles of Scilly: 4.99%Leicester: 4.99%Luton: 4.99%Medway: 4.99%Middlesbrough: 2.00%Milton Keynes: 4.99%North East Lincolnshire: 4.50%North Lincolnshire: 4.70%North Northamptonshire: 4.99%North Somerset: 8.99%North Yorkshire: 4.99%Northumberland: 4.99%Nottingham: 3.50%Peterborough: 4.99%Plymouth: 4.99%Portsmouth: 4.99%Reading: 4.99%Redcar & Cleveland: 4.99%Rutland: 2.00%Shropshire: 8.99%Slough: 4.99%Somerset: 4.99%South Gloucestershire: 4.99%Southampton: 4.99%Southend-on-Sea: 4.99%Stockton-on-Tees: 4.95%Stoke-on-Trent: 4.99%Swindon: 4.99%Telford & Wrekin: 4.99%Thurrock: 4.99%Torbay: 4.99%Warrington: 7.48%West Berkshire: 4.99%West Northamptonshire: 4.95%Westmorland & Furness: 4.99%Wiltshire: 4.99%Windsor & Maidenhead: 7.49%Wokingham: 4.99%York: 4.99%", + "media_hash": "de1a3dfe2215d4d49bd78cdc63c8f2756ab2c50bb8020e0d90280e46", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bath & North East Somerset", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Blackburn with Darwen", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Blackpool", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Bracknell Forest", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Brighton & Hove", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Bristol", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Buckinghamshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Central Bedfordshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cheshire East", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cheshire West & Chester", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cornwall", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Cumberland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Durham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "East Riding of Yorkshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hartlepool", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Isle of Wight", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Isles of Scilly", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Medway", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Middlesbrough", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Milton Keynes", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North East Lincolnshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North Lincolnshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North Northamptonshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North Somerset", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "North Yorkshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Northumberland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nottingham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Peterborough", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Plymouth", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Portsmouth", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Redcar & Cleveland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Rutland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Slough", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Somerset", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Southend-on-Sea", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stockton-on-Tees", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stoke-on-Trent", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Telford & Wrekin", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Thurrock", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Torbay", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Warrington", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "West Northamptonshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Westmorland & Furness", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Windsor & Maidenhead", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "The saving ratio increased by 0.8 percentage points to 9.9 per cent in the fourth quarter.", + "media_hash": "a38c072ad6c0fefa31a777cd06e45dd45928d13016af477bda7191b5", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "We've got about eight or nine different bands.", + "media_hash": "86d9a8fd45f3989befb95be66b2a890aea6b9136e7c7f5190cd6c09b", + "sequence": 382, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + } + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "A \u00a34 monthly increase represents an 8 per cent increase on a \u00a350 deal, compared with a 20 per cent increase on a \u00a320 deal.", + "media_hash": "2ad528a0ae174c9a7eb0db9d45bd9ab549dd871674891407ae0128b1", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", + "publication_date": "2026-03-31T06:30:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", + "media_type": "news_article", + "sentence": { + "text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged, which followed unrevised growth of 0.1% in the previous three months.", + "media_hash": "e238a7ebb8d6b3a9d0cbe7e0afb33472e663f03c18ae74bad58278c4", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Across England, the pattern remains consistent, with most county councils, metropolitan boroughs and unitary authorities implementing rises of 4.99%.", + "media_hash": "c89c8d9843e95b9ad98c92efd2c7f5e8a9ad8dfe671d03834c0a132e", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "But Pension Credit tops up this amount up to \u00a3238 per week, which is only a few pounds less than the new state pension anyway (\u00a3241.30).", + "media_hash": "bb45dd9d405c0aa3ce68fd153bc710c0cf896a9917c279766ebb48f7", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Pension Credit", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "By contrast, the same \u00a320,000 placed in a leading cash ISA paying 4.45% would generate \u00a3890 completely tax-free.", + "media_hash": "ed268d5f60da29dd93cb73c00403ff1d9dda10a03d24eed24ba92469", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged at 0.1%, which followed unrevised growth of 0.1% in the previous three months.", + "media_hash": "272a80c9e7a09647bf09a0810d5349575292dae053c667940b5f6dee", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "It means the number of \u00a3100,000 prizes will fall from 78 in the most recent draw, to an estimated 71 in April.", + "media_hash": "0fe794207a78dfa3f9970173bceb4845cfe3bc8e46d6a5bc7d7176db", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Savings & Investments", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "For every \u00a310 you deposit, you get one entry into the monthly draw up to a maximum of \u00a385,000.", + "media_hash": "22e316e44ca27e22eead9661124e081b652282826a6a7d1687bf6780", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chip", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Bournemouth, Christchurch and Poole Council set an increase of 6.74%, while Trafford, Warrington and Windsor and Maidenhead approved rises of around 7.5%.", + "media_hash": "6453cd351777cbf38efb288df36a92ba189545eafeab93e3de4b26e1", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Bournemouth, Christchurch and Poole Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Trafford", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Warrington", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Windsor and Maidenhead", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Bournemouth, Christchurch & Poole", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Other lower rises include 1.99% in Durham and around 2% in several London boroughs, including Wandsworth and Westminster.", + "media_hash": "77576fe456f400edba363dbe4e76d42b2da6c60f86103b6941a09199", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Durham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Wandsworth", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Westminster", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", + "media_hash": "197c498503a7abad2d230377d1eb0902e9914c4a843924d354da4558", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5769, + "economy": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "For most people with one job or pension, the standard tax code is 1257L.", + "media_hash": "1175baaaf12c9409f2bdf41df4c5ec749dacdf13583d22c901e073bb", + "sequence": 14, + "claim_type": [ + "quantity", + "rules" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5688 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Look, higher energy prices are not good news for anyone.", + "media_hash": "b3853842f587fd0b5dc1c995bdbe32fa55b67d4df692ee9ee8387d06", + "sequence": 862, + "checkworthiness": { + "fullfact": { + "economy": 2.5686799999999996 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "An accountant and professional adviser will always ask you more questions until they've got enough information to be able to come to a conclusion or the best plan of action.", + "media_hash": "ef1b3a583be08c19245e61dffbe443a4efecaa12eb3d1c41b82b14f2", + "sequence": 22, + "checkworthiness": { + "fullfact": { + "economy": 2.5686799999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.5686799999999996 + } + } + } +}, +{ + "title": "State Pension payment delay for older people set to retire this year", + "publication_date": "2026-03-31T10:55:57", + "publication": "dailyrecord", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", + "media_type": "news_article", + "sentence": { + "text": "The State Pension age is set to start rising from 66 to 67 in April, with the increase due to be completed for all men and women across the UK by 2028.", + "media_hash": "ae9f00eca0cddf94652788828a81b8a4a9b317fe1ef0b78c4a0ebf13", + "sequence": 3, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "UK Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.55971 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "Last week, OECD forecasts delivered the biggest downgrade to Britain compared with other major economies, slashing its growth prediction by 0.5 percentage points to just 0.7 per cent.", + "media_hash": "a6b025586be2b98c5f9085c28256ddc117aed96b76d689cc322ea9a2", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "OECD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "The policy has resulted in substantial increases in payments in recent years, including a record 10.1 percent surge in April 2023, due to skyrocketing inflation the previous year.", + "media_hash": "3221af13ac092920fbce7973aef1bdb5472b3f094202a5d19d0221ec", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "The OECD warned last week the UK would face the biggest hit from trade disruption in the Middle East as growth could come to 0.7 per cent.", + "media_hash": "b97f0f6d6d4508f0b4770cb712961a2d4dc5b04cb4bd040a209bc095", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "OECD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "The policy has delivered sizeable increases in payments in recent years, including a record 10.1 percent hike in April 2023, thanks to soaring inflation the year before.", + "media_hash": "1b6220d03f2ef75e0e0c6fb1a497d0d0d3fef9b45cb31ab3becd7737", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It's not the highest ever that was during the COVID pandemic, but it is still pretty high.", + "media_hash": "b8a74270523461b1f2c051584775672aec3d7b5839e6e8920dec55bc", + "sequence": 683, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.556405 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", + "media_hash": "c739ce8a295258f71a0dac70bc2128ea66f6848346384d0cdb360725", + "sequence": 1394, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5528750000000002, + "economy": 2.5528750000000002 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "Between 2024 and 2025, scrappage increased by 550%.", + "media_hash": "52e23bd880f07726a92d2be4e88dad43205f40304dbea2b92da17d13", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Car.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "Among the providers applying the largest price rises as a percentage of their average monthly costs include Three, Hyperoptic, Virgin Media and TalkTalk.", + "media_hash": "a8adfda79d91553dc372fec75065cba3f939c4df344a0495e4ec52f6", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "This represents an 18 per cent increase, as opposed to the 7.5 per cent rise that would've applied under the old rules.", + "media_hash": "22bc27f400b3ba1ffc6a99a431fb6500c00f82aad4b3cab1ec030101", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", + "publication_date": "2026-03-31T09:49:05", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", + "media_type": "news_article", + "sentence": { + "text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1 per cent to 1.5 per cent growth that had previously been widely expected.", + "media_hash": "83aee7874ad531994d7cb18f5ab7c9f2be119fef6dc912a619a4b5f0", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Martin Beck", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "WPI Strategy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "When you look at fuel prices, they're still lower than they were, um, three years ago.", + "media_hash": "b3772757917ac380e5254e6248ec0320dd24aa7840adee7c3a05d86d", + "sequence": 891, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "Household incomes are still marginally higher than when Labour came to power, but remain below pre-Covid levels.", + "media_hash": "d1151a9e716e3bbb2096cfe3c2166ee03a88cb743cd8bad07ca49c4f", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "It also puts the UK at second lowest in the G7 in terms of economic growth this year, behind only Italy.", + "media_hash": "c90cbe706b13c5964548b8112299383aff020da8c109cc9875ac90fa", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Organisation of Economic Cooperation and Development", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "This is a \u00a315 rise on the \u00a3360 fee currently paid by road users taxing one of these vehicles.", + "media_hash": "e1e8eff3ec89d46612a94ec0fd52ff593b3160e3d4fc1029ae886a85", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", + "publication_date": "2026-03-31T07:44:38", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", + "media_type": "news_article", + "sentence": { + "text": "Customers served by Thames Water can expect their bills to rise by just \u00a33 a year, compared to \u00a357 for customers of United Utilities.", + "media_hash": "813dd1de9a9240ed4d66a558d79ade434c7d9ccb9715732fa3260be4", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The OECD forecast the UK would see inflation jump to 4% this year, up from 3% in the latest official figures.", + "media_hash": "68d968207da2e013c6156b62bca9dd8c30876e8ffb8d867a788711e6", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Organisation of Economic Cooperation and Development", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million a day boost to revenues.", + "media_hash": "d7c62108ac49a30ea742cb6b3fbb6d54479a7f02a03277eef6256015", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "The RAC has also suggested the Government could earn an extra \u00a32billion from VAT on petrol sales.", + "media_hash": "0a5d6b9a39c50fd193c9455b36dad0b9eddcc5f09ec18d05e7492523", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "Business investment over the year was two per cent higher, with a fall of 2.5 per cent in the fourth quarter dragging down on the figure.", + "media_hash": "782bcd2bc5cb76be4b055b5eeeec45308bacddcd05e6686769654b9d", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.06479999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "Pensioners then experienced an 8.5 percent rise the following year, in line with the increase in earnings.", + "media_hash": "88c992fc5634c5ace8c28378e0f2ebc9495b87c5e9e33acfb9c15662", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", + "publication_date": "2026-03-31T16:22:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", + "media_type": "news_article", + "sentence": { + "text": "There will also be a new online sports betting duty of 25% from 2027, covering all sports except horse racing.", + "media_hash": "a4a8ab0415b9387c75cf54c6d7e62588b8990d66d5a8f0ba52cab945", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "So that's actually something that is really tough. We've recently done some research that said that the average business owners spending multiple across the UK, multiple millions of pounds on financial tools.", + "media_hash": "f3d0e413e19905f4157c4379d8cf59e93b59fff95d254463ad7d24ee", + "sequence": 106, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "More than nine in ten UK accountants believe public AI tools should be regulated and/or restricted when providing financial advice, with 70 per cent calling for regulation.", + "media_hash": "bcb68482535dd185540bd62fa3ffe1a79ea7f1aa307a1951c2e15c44", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK accountants", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.5459449999999997 + } + } + } +}, +{ + "title": "DWP tax changes to Motability will cost users \u00a3400 each", + "publication_date": "2026-03-31T14:21:45", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", + "media_type": "news_article", + "sentence": { + "text": "It is making these changes to offset an additional \u00a3300m in taxes introduced in last year's autumn budget.", + "media_hash": "b1b9a086b773d37c32a1950a512a6caf88cae230c2d2e9a8e17cd1c9", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "'Costs have doubled for us in the last month and we only do short trips in the car.", + "media_hash": "18b0c4bbf11b4ce3f615bf49d05a106df3ca1d4882aa013048bdcedb", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Peta", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "'Before the crisis, we used to fill up for $50 a day, now that's jumped up to $150 a day,' he said.", + "media_hash": "0a241e687521c9bac7f25c6a4d6c412954b66924c3788882e798df5a", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Sam", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104448, + "score": 0.15610000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", + "media_hash": "5ec8157db89f6e06e2366aeb7bb49ceaa107dc15d471337a942aaaf3", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "general": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "William Hill is set to close 200 of its UK shops in a hammer blow to Britain's high street.", + "media_hash": "44a539727e2fc765a84be9b4e4472a1634cc03ad3258a78b1cb1463b", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The rises in national minimum wage and national living wage highlighted by Sir Keir represent a \u00a31.4 billion additional annual increase for hospitality businesses, the body said.", + "media_hash": "447824962c7b2b86757fc97706d1bc8d495788de2520e953aad281e3", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Show me, show me a government, any Prime Minister, you've had about seven of your guys in recent times, show me one of them who has actually created growth.", + "media_hash": "0792637e685f95781a27f93a1f3d2b585e5be6781a4b6e701a2f2965", + "sequence": 1012, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a333; Potential savings: \u00a3100", + "media_hash": "f6f9ec05b52ef7d6a593b90368bc3887aab98d88a4df3c7697b2ad0f", + "sequence": 44, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price 'hike': minus \u00a3117; Potential savings: \u00a3338", + "media_hash": "d3f7dd4f99d6ed60b095e6010c151190bc5b8e2b89d69e4cf7dddfd7", + "sequence": 79, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: brace for a wave of stealth tax rises", + "publication_date": "2026-03-31T13:47:00", + "publication": "cityam", + "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", + "media_type": "news_article", + "sentence": { + "text": "Crossing the threshold triggers the tapering of the personal allowance, creating an effective 60 per cent marginal tax rate on income between \u00a3100,000 and \u00a3125,140, turning bonus and pay rises into a \"tax shock\".", + "media_hash": "ee348addf2ec16f20129fe199ac09530a018490173088319fe87182c", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Awful April: What is happening to household bills?", + "publication_date": "2026-03-31T12:34:35", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", + "media_type": "news_article", + "sentence": { + "text": "It is the fourth year in a row that the England-wide increase has averaged around 5%.", + "media_hash": "facce339c3da7206f2db52ebee956bb8ac2d849fad320a85fa0a2d38", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ministry of Housing, Communities & Local Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "Virgin Media's average monthly price is \u00a322.86, with prices rising by \u00a34 this year.", + "media_hash": "b2f2ac901e734a749725d15fdd2cb58d9c2b8b2f6935f4c2ba9fca4d", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "In April 2016, the state pension age was set at 66, which means that new state pensioners today are aged up to 76, though they could turn 77 just after April 6.", + "media_hash": "6e424f2937a371f5302e48004c150a23d14cfe2eb6324bbca425adf3", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "UK borrowing costs are already the highest in the G7, with 10-year gilt yields recently topping 5%.", + "media_hash": "677458742e9e5ccea38ed50944065b4e69eddb57944653561b64e01a", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", + "publication_date": "2026-03-31T10:36:00", + "publication": "express", + "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", + "media_type": "news_article", + "sentence": { + "text": "Reeves once had around \u00a323.6billion of fiscal headroom.", + "media_hash": "19902ad813776d4e8f857c1515c4145fbcad888062a06de56af96a61", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Savings over \u00a310,000 are taken into account, but many people with modest savings still qualify.", + "media_hash": "a38e7c30210d1d568e51682ce0ffdcdc94dcb8790855c8a688149a19", + "sequence": 64, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "That comfortably breaches the \u00a3500 PSA for higher-rate taxpayers and comes close to the \u00a31,000 limit for basic-rate taxpayers.", + "media_hash": "972eaf5886f58f0e09201552bdf3177f2c81be4c478806fbfbb4a39f", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "\"This return in savings interest is shielded from tax due to the PSA for a basic-rate taxpayer, but only \u00a3500 is safe for higher-rate taxpayers.\"", + "media_hash": "ddf7d03546ac0d16f5d58972a727c775f51276f0d17065ce6501ae65", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "The broader trend highlights a shift in household finances, with the UK savings ratio rising to 10.2% in the second quarter of 2025, up from 6.8% in the same period in 2016, according to official figures.", + "media_hash": "526de9bfdaacb227d7853b44b81cba49c437bb13a8b292a9b97ff7da", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "We know that there are 25,101 prizes in total, ranging from \u00a35 to \u00a325,000 - but we don't know the number of customers that are eligible or how big their balances are.", + "media_hash": "32fe02eaa3f286f479cd3b31422eb5e9a92894f819f5484c59d91881", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chip", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "For every \u00a325 you invest in Premium Bonds, the likelihood of winning \u00a31million is 1 in 2,737,381,167.", + "media_hash": "9905e5c706d00f5b03affd69995d02aead1b2e20362cfb73eb323002", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Savings & Investments", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "This will lift payments by 4.8 percent this April, increasing the full new state pension from \u00a3230.25 a week to \u00a3241.30 a week, or \u00a312,548 a year.", + "media_hash": "08dc7cb1eeecd303b7c4df68995e29f0e73d86c2dfebde790790727d", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "The full basic state pension will go up from \u00a3176.45 a week to \u00a3184.85 a week, or 9,612 a year.", + "media_hash": "3f6c5995c4ea796a855c2125cbb71a2f152fc97fac655d01f7bd3ecd", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And, uh, Heathrow was wanting to put up prices as a result, the Civil Aviation Authority have come out this morning and said, in essence, you can't spend the 10 billion, we'll allow 5.8 billion, so quite a big reverse for Heathrow and we'd like per passenger charges to go up from the current 28 pounds 40 per passenger to just, well, actually they give a range, the midpoint of the range is 28 pounds 80, so pretty flat actually.", + "media_hash": "896eb2692dbabb0a4a5a6a4588de955a23601d82cee4ca5613ea5496", + "sequence": 701, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Uh, and Heathrow was asking for just over 33 pounds, so it's a big, a lot.", + "media_hash": "8300652d9aad0cc8fb12a44081fbd39a700ef15a2dcc964fb204a2f7", + "sequence": 702, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Revised figures suggest that the economy grew by just 0.1% in the last quarter of 2025, a period where there was no war in the Gulf, and the price of Brent crude was around $70 a barrel.", + "media_hash": "c17be3934133654b587d231ebb83e5c2537f1db587b103e40743e8d2", + "sequence": 1308, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", + "publication_date": "2026-03-31T01:59:00", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", + "media_type": "news_article", + "sentence": { + "text": "This will boost payments by 4.8 per cent this April, raising the full new state pension from \u00a3230.25 a week to \u00a3241.30 a week, or \u00a312,548 annually.", + "media_hash": "c090051e644a449ca5c21f28f5f24da772301d5bc9019aa6c9dca4cf", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or \u00a3117 a year, to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "3d68950982c026f689ec3634215de1d6628d81a36d3c0ae95be4068b", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "leo_s_topic": 2.5459449999999997, + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "In a member survey carried out by UKHospitality in February with other trade associations, 64% of hospitality businesses said they would slash jobs as a result of the cost increases, 51% said they would cancel investment plans, and 42% said they would reduce trading hours.", + "media_hash": "351bd2638bf5c430cfa795c32af14f85500a73b28f08239c3f6d1818", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "Today's rise in minimum wage rates will see pay for 18 to 20-year-olds jump by 8.5 per cent to \u00a310.85 an hour, while those aged 21 and over will get a 4.1 per cent hike to \u00a312.71.", + "media_hash": "141488352f1e664569b6117caad087f8779a46ea020d42b80b2c0ccd", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "Ryan, a consultancy, has calculated that the overall bill will rise by \u00a33.4billion.", + "media_hash": "d47accec295ace32ca78e1941ae99ca09b4fe97d2f4360dc381a74c9", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Seven councils were granted this special permission to raise bills by more than 4.99%, including North Somerset, Shropshire and Worcestershire, each approving rises of up to 8.99%.", + "media_hash": "64958e9eb8626493d61bb907d5b457f45d7334a0021722bc56303d6d", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "North Somerset", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Shropshire", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Worcestershire", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "Seven councils were granted this special permission to raise bills by more than 4.99% (Image: Getty)", + "media_hash": "982419cd4407879fd463f234e692b36a2df0ded8923a426471cbf729", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What business cost increases are being introduced in April?", + "publication_date": "2026-03-31T17:39:00", + "publication": "skynews", + "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", + "media_type": "news_article", + "sentence": { + "text": "Faced with a backlash from landlords and political opponents, Ms Reeves announced a 15% cut to rates for pubs and live music venues, plus a two-year rate freeze to mitigate the increases, until the next revaluation at least.", + "media_hash": "57c444486679b6cd7465188ca6d2779ea0d3683d1c2a4907cb7d3704", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Ms Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", + "media_hash": "8494762cf9de5b7f594c69a9698aebc635f1d3e09ccdb2a359ae4555", + "sequence": 50, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Switching can save broadband customers an average of \u00a3329, according to Uswitch.", + "media_hash": "530387204f36b9669f40dd2ea490e6eda9675d0607ce0ec637482fe6", + "sequence": 52, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Uswitch", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", + "publication_date": "2026-03-31T07:30:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", + "media_hash": "30f3953eea29da37d47932ff3265b04d1136d624c32c14560e4612b8", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "general": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "In pounds and pence terms, prices would have risen \u00a31.71 previously on average, so customers are an extra \u00a32.29 a month out of pocket, Broadband Genie said.", + "media_hash": "cf60c5c4644dff1bc29ce4fcfc066e61b2ef549c1adf95fda1f93fe7", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "This reveals that 45 per cent of customers who took out a broadband contract after the introduction of fixed price rises didn't know their prices would rise annually, while 58 per cent were in the dark about how much their tariff would go up by in April.", + "media_hash": "f248d6693550ce43e8cf6c30973c8869f2424709d54ef11ff10c5f81", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", + "publication_date": "2026-03-31T09:49:33", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", + "media_type": "news_article", + "sentence": { + "text": "For example, an employee with the tax code 1257L can earn \u00a312,570 before being taxed.", + "media_hash": "2528e07fbbc3ec237d8af34cfe14614a3c46bcf2b537efd8c3062b2b", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Category B (lower) Basic State Pension - spouse or civil Partner's insurance: \u00a3110.75 (from \u00a3105.70)", + "media_hash": "63e920ba494dccd24bac5d9bd5671cd52863d2eea27a7d2e00b2a397", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Almost 1.4m elderly people throughout Great Britain, including over 125,000 residing in Scotland, are presently receiving the means-tested benefit which could deliver an average of \u00a34,300 in assistance over the coming year.", + "media_hash": "009f86334ec27794cbc97b2c150fd026d3dcbb026048d6458578d4cf", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "Nevertheless, recent DWP statistics indicate that more than 700,000 qualifying pensioners remain without the benefit to which they're entitled.", + "media_hash": "b06837a5f2fbd6332698f9bf9613e8f8a31bf2a983349f06bdd213d1", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "The increase in interest rates that has happened for us means about \u00a312billion a year of additional interest payments.", + "media_hash": "14f99d12f50e7efa13b2951764047146013e1b342d69f2b374d27b71", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Howard Davies", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", + "publication_date": "2026-03-31T07:47:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", + "media_type": "news_article", + "sentence": { + "text": "In Scotland, some councils are pushing through rises of up to 10%.", + "media_hash": "61243f5f3ffafb80cea08e02be9222cb0c6f0c2049c64414e53cb2a4", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The ONS increased the out-turn for 2025 as a whole to 1.4%, up from previous growth of 1.3% recorded because of updated expenditure calculations, but more recent figures have shown the economy flatlined in January with zero output.", + "media_hash": "d2d8edbe6079a14f27fb48c67708967665484664d3bbbe494dda239e", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104453, + "score": 0.3345 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Meagre economic growth at end of 2025 confirmed amid...", + "publication_date": "2026-03-31T07:39:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", + "media_type": "news_article", + "sentence": { + "text": "The figures showed the UK's dominant services sector flatlined in the fourth quarter with zero growth, while production expanded by 1.2% and construction fell by 2%.", + "media_hash": "532dc26dce250d60fab1b525e4f8478aca740848e74ffc121a0dec3d", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "According to analysis for The Times, the Government is set to get around \u00a33.5billion a year from the energy profits levy on North Sea oil and an extra \u00a32.4billion from gas sales.", + "media_hash": "c122ba792c8b157e572a9e9a010f3a376e3340d3d8d28e34dd01d22b", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", + "publication_date": "2026-03-31T06:52:05", + "publication": "guardian", + "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", + "media_type": "news_article", + "sentence": { + "text": "Inflation held steady at 3% in February, which was in line with expectations but still well above the government's 2% target.", + "media_hash": "4280d5e52b97396ee2a1dfa5c44d57a4065d6ca68308c743356ca5cc", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Jonathan Raymond", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "The UK economy grew 1.4 per cent in 2025, official data has shown as data analysts nudged up the estimate for the year.", + "media_hash": "0ab46bb1b1a0c8f18c6761bcf82428dce5ff448184f3ee4741c64f1c", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 45073, + "score": 0.08634989569837898 + }, + { + "tracked_claim_id": 104453, + "score": 0.29000000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "UK gas prices have risen by more than 70 per cent since the start of the war while the Brent Crude Oil benchmark surpassed $115 per barrel.", + "media_hash": "e8ccaced509012ea98ef120780ffd8369d727dc4f4872ff13e75e7b3", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "The Treasury-backed bank is cutting the rate from 3.6 per cent to 3.3 per cent, and also lengthening the odds for each \u00a31 bond winning a prize to 23,000 to 1 from the current 22,000 to 1.", + "media_hash": "72c70634bf8974a68e9eaf435bf03f80980efb8599d3b8c9eeedf8e1", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Savings & Investments", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 4.5769 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "But in this quarter's 'big prize draw' there are 100 prizes of \u00a31,000, 5,000 prizes of \u00a310 and 20,000 prizes of \u00a35 - as well as the grand prize of \u00a3250,000.", + "media_hash": "cbab477b6e512f96cfd6d639b55e099079dc3d247a0d23b793448ec0", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chip", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "April to bring price hikes as Keir Starmer touts...", + "publication_date": "2026-03-31T21:34:18", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", + "media_type": "news_article", + "sentence": { + "text": "And it estimated that the average hike to business rates for a hotel in England totals \u00a3205,200, and \u00a314,300 for a restaurant.", + "media_hash": "ca6da78c4b9b35f23e3b9d28011e3a987ba64d38015005d3508b13f6", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UKHospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "The average English hotel's bill will rise by 30 per cent, or \u00a328,900, to \u00a3125,300 this April, and a typical restaurant faces an increase of \u00a31,800 on the current average of \u00a312,200, analysis by UK Hospitality showed.", + "media_hash": "ae9f2faf718df036b7810a8288cc0e8aa32e99b6fa2ef66bae86b786", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Hospitality", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "More than 60 people have been convicted in the case so far and a total of 79 have now pleaded guilty or been convicted", + "media_hash": "d9c80f6b9f7ed9b761065b4c8cc3a854893fd31b8596b092ec7e4ea7", + "sequence": 47, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", + "publication_date": "2026-03-31T16:22:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", + "media_type": "news_article", + "sentence": { + "text": "This comes following Rachel Reeves' Budget measures, which will see gambling duty shoot up from 21% to 40% from April 1.", + "media_hash": "8429bb527dd27c056e88e48a085dd245ee93614c0aa413e96ca484f7", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "We support currently over 800,000 businesses, we've built a waitlist at 50,000 businesses for making tax digital and I would have never thought that 50,000 people would be saying, I'm so excited for these changes and excited for these tax things.", + "media_hash": "2e51477226ea4e30d26fd49aea9bbe64b8316454db653387d29f4e0b", + "sequence": 128, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Monzo Business", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "DWP tax changes to Motability will cost users \u00a3400 each", + "publication_date": "2026-03-31T14:21:45", + "publication": "thecanary", + "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", + "media_type": "news_article", + "sentence": { + "text": "The Motability company, which administers the scheme, estimates that the scheme will cost the average customer around \u00a3400.", + "media_hash": "e4c03017fb7024c13c3d6f41f4a40c0415b3294da3e0c5495406af0d", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Motability", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "Apparently we had at least a month worth of fuel in the country, so for those 30 days, that fuel should have stayed the same price, but it hasn't.", + "media_hash": "2e36f611b0bfe6ed6784e94b56b7ed7795777c0cd487bf6105dbcecc", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Peta", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a372; Potential savings: \u00a3633", + "media_hash": "1f445bafa75b67d626111e5011a03da19e5c7d054504b52ebb3e0cbe", + "sequence": 59, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "media_hash": "1baeb46c51b06807f140f4645f76d0da0af5fcd8d27e5f96d7c350f3", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "An entitlement of merely \u00a31 weekly is sufficient to access additional help.", + "media_hash": "b7eeebfd9c97c53038e5c266ab8dfca4569e986fc18663234dae21b7", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", + "publication_date": "2026-03-31T09:42:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", + "media_type": "news_article", + "sentence": { + "text": "The benefit boosts income to a minimum of \u00a3227.10 per week for single pensioners and \u00a3346.60 for couples - more if an individual has a disability or caring responsibilities.", + "media_hash": "a1b94954560413e3ccf34dfd6dbebf0fa07f02b2bebd1902b366aa80", + "sequence": 61, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Department for Work and Pensions", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain\u2019s most AI-exposed sectors foot biggest tax bill", + "publication_date": "2026-03-31T09:40:07", + "publication": "cityam", + "url": "https://www.cityam.com/britains-most-ai-exposed-sectors-foot-biggest-tax-bill/", + "media_type": "news_article", + "sentence": { + "text": "Financial and related professional services generated \u00a3110.2bn in tax in 2024, equivalent to 12.3 per cent of total receipts, making it one of the largest single contributors to the Exchequer.", + "media_hash": "256e102f6ed83a476e1fab5989c9f8d6b9cc431723033e138cb06f1d", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Which is about a third of the total raised by fuel duty last year according to the OBR.", + "media_hash": "8ec519c451aaa73a758ed31b936f7f77d4f0145c2c07fc658b79e0c7", + "sequence": 859, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "But even if there were 20 billion a day, which I don't doubt from, um, extra oil prices.", + "media_hash": "58cffa621bd1c63f89ba5871e6737d88edc4aa56dc7a6b9d52eaa45d", + "sequence": 874, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "While the final quarter saw a 1.2 per cent recovery in the key metric, the ONS revised the drop in the third quarter up from 0.8 per cent to 1.2 per cent.", + "media_hash": "1702ad59d21cde62545fdc74f7a11ac9448f16032ca8095ae8d683ad", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "RHDI per head - a measure of what is left after taxes and benefits and the effects of inflation - was \u00a36,353 at the end of 2025, compared to \u00a36,413 at the end of 2024.", + "media_hash": "8ae6fdd5ede9eb6c9b8326503aea7c62a66a382a6c1aa37ce9ff7de2", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104428, + "score": 0.21760000000000002 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", + "publication_date": "2026-03-31T08:54:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", + "media_type": "news_article", + "sentence": { + "text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1% to 1.5 per cent growth that had previously been widely expected.", + "media_hash": "f936b0203e23a3d0d984cf31e3591dd71b12c9edfe25d24512754708", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Martin Beck", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "Analysis from Moneyfactscompare.co.uk shows someone who locked \u00a320,000 into a top one-year bond paying 4.58% would earn \u00a3916 in interest over a year.", + "media_hash": "bf7dd301d5d779e4fc680c63cc2917204bebf54d152364686909c6f8", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", + "publication_date": "2026-03-31T08:38:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", + "media_type": "news_article", + "sentence": { + "text": "The increase in bond yields poses a major headache for Chancellor Rachel Reeves, knocking billions off her \u00a323.6billion 'headroom' against meeting tax-and-spend rules.", + "media_hash": "839f9243c12d32db2b72df2c5c2fdf807f5474ff8b2ad4c662718390", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chancellor Rachel Reeves", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "A \u00a315 and \u00a310 rise mirrors the increase paid by drivers this time last year, where fees jumped from \u00a3345 to \u00a3360 and \u00a3210 to \u00a3220.", + "media_hash": "62705e5328180824013bf2eb8a85cfe288a7036c4efd6271e559b7a2", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", + "publication_date": "2026-03-31T07:34:00", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", + "media_type": "news_article", + "sentence": { + "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an \u00a38billion windfall from soaring energy prices.", + "media_hash": "c400ac5e17c5872ae29de1234778ae6b029bd3113560f67441a4bcdf", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", + "publication_date": "2026-03-31T06:30:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", + "media_type": "news_article", + "sentence": { + "text": "The UK economy grew by an unrevised 0.1% in the final quarter of 2025, official figures have confirmed.", + "media_hash": "723c6b8eef00fdc5f4d0fe081656c260704120f1b4b67326eae02c8d", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 45073, + "score": 0.12431003934759463 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", + "publication_date": "2026-03-31T06:30:00", + "publication": "express-politics", + "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", + "media_type": "news_article", + "sentence": { + "text": "But it increased the out-turn for the year as a whole to 1.4%, up from previous growth of 1.3% recorded for 2025.", + "media_hash": "06a53eefe9a4126ffb36e8ee7e9d9d9d855436d97451ba4d5f33d4d5", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Office for National Statistics", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "'Whereas in a savings account paying 4 per cent you'd get the equivalent of \u00a316.66 per month or \u00a3200 per year.", + "media_hash": "bb586450ea817b7817e34eea8191dc47ac055f439a97d84eb517eeea", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Andrew Hagger", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "Two lucky savers a month can win \u00a31million, while 78 can win \u00a3100,000.", + "media_hash": "38c47a1679348b8fc054d627062d68fbddc162be79d2ecb0943cfdf2", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Savings & Investments", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 2.72853 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "DWP issues update over future of the triple lock", + "publication_date": "2026-03-31T05:55:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", + "media_type": "news_article", + "sentence": { + "text": "Pensioners then enjoyed an 8.5 percent increase the next year, in line with the increase in earnings.", + "media_hash": "e659522c9a5693d9c860df9e8eecd8c935f7dfe4aa38072af9900275", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", + "publication_date": "2026-03-31T17:02:03", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", + "media_type": "news_article", + "sentence": { + "text": "To date, more than 60 people have been convicted in the case - most from Minnesota's Somali community - and a total of 79 have now pleaded guilty or been convicted.", + "media_hash": "0c71f1078e0840513d5c8ee7bdc174ac2316a905ff8e2fd170ad0644", + "sequence": 56, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 2.970815 + }, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", + "publication_date": "2026-03-31T16:22:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", + "media_type": "news_article", + "sentence": { + "text": "The company said last year that changes to online gaming duties and a new online sports betting tax would see its duty costs rise by up to \u00a3135 million a year from 2027.", + "media_hash": "36e9714b4f44ba122ff1d4671d33efa384fe583b86cf95e879099a39", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Evoke", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "The popular bookmakers has around 1,300 shops in the UK, meaning approximately 15% of its stores are set to shutter for good in a hammer blow to Britain's high street.", + "media_hash": "47d6c87ae2ad31793c88e7dc319b9452b9ef3960c1684e1d4b79bb4b", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", + "publication_date": "2026-03-31T14:31:13", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", + "media_type": "news_article", + "sentence": { + "text": "There were fears among racing chiefs the rate would rise to 21% but after the successful campaign, the rate remained at 15%.", + "media_hash": "fff7ee9bd4575628884688d0c5101024eb79092807e5ba97f879eae9", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Big change on way for landlords and self-employed earning over \u00a350,000", + "publication_date": "2026-03-31T14:25:51", + "publication": "scotsman", + "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", + "media_type": "news_article", + "sentence": { + "text": "Findings of Scottish research by Dext, based on consulting 29 accountants and bookkeepers in Scotland, found that 82 per cent reported a general surge in clients using \"public AI\", such as ChatGPT, for tax \"advice\".", + "media_hash": "7c4426579927f4fc86321c81abfacaf9d6afe20c3ae4c56825aedf2f", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "social_media_misinformation_": 2.970815 + } + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "You got to the supermarket and you come out with two bags and it's cost you $140.", + "media_hash": "d4e0907875f8d6e1fee2c6c71641830ad3b8da874f9da58e835bee32", + "sequence": 40, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Peta", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "economy": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "Fuel excise will be cut from 44.2 cents per litre to 22.1 cents for a period of three months", + "media_hash": "9d934c3f178cdcc8980349fba12e730bf5311a117235d4c47ea86733", + "sequence": 54, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "It comes after Compare Club's Financial Stress Index published in March this year, revealed that more than a third of Aussies (38 per cent) said they were financially worse off than the year before.", + "media_hash": "9c02b8687ecf708ccf5355370ff2e81de4b76fc62d1c80d080ce6a0d", + "sequence": 59, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Compare Club's head of research, Kate Browne", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.970815 + }, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", + "media_hash": "ac834a8a8298695d5766e33ffbcf22a62365149712aeb90db079a446", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Institute of Directors", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "IoD", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "It is rising by an average of 4.9% for households in England.", + "media_hash": "7761faa13e86996240993129394f98a4b1667abf8851c58c722ccb4c", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "policy": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "From water to council tax: How the bill rises (and one drop) affect you", + "publication_date": "2026-03-31T23:00:54", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/clyeke8z871o", + "media_type": "news_article", + "sentence": { + "text": "Many councils are allowed to increase bills by up to 5%, but seven have been given government permission to implement bigger hikes to help address a \"challenging financial position\".", + "media_hash": "f57cdcee414ad5937b86dba4bca5717c9903c27a9ca725399ebe456e", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Kevin Peachey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Full list of highest council tax bill rises in England from April 1", + "publication_date": "2026-03-31T20:10:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", + "media_type": "news_article", + "sentence": { + "text": "In Hartlepool, bills will rise by just 1.98%, one of the lowest increases in the country.", + "media_hash": "eadbf8a8b136a70e1322d5a1013e86593c60a88982a3e9532300c7a6", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Hartlepool", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Typical price hike: \u00a3114; Potential savings: \u00a3570", + "media_hash": "0388e263333f3cdd692486b4cbd1309a272e7e0c83e27f2064648dc5", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Industry body Water UK says bills are expected to increase by \u00a333 a year - 5.4 per cent - on average to \u00a3639 a year from \u00a3606.", + "media_hash": "5be4d9910e3348411d5a64826cc408fe4180f67c05c821906c032619", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Water UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of \u00a348 a year - an inflation-busting rise of 11 per cent.", + "media_hash": "b66b7359f7f918f5e8270da0a31ed248c25e77f53d966ff7816f9bc2", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by \u00a3332 in the summer to \u00a31,963 a year.", + "media_hash": "67a06c0bb22c38300905663da8c53062e1c6f70cfe9644a1157793bc", + "sequence": 70, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Cornwall Insight", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "Car.co.uk's analysis demonstrates that scrap valuations for the VW Golf have jumped by 323% since the closing quarter of 2025, while the Land Rover Freelander trails closely with a 233% hike.", + "media_hash": "9368d1ac02912f3d5f936e4f0cc48f32e776e6fe8e61117d7c505876", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Car.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "A petition on the parliament website has now garnered nearly 50,000 signatures, demanding that the government slash Vehicle Excise Duty by 50% for vehicles aged 20 to 39 years.", + "media_hash": "4c4015e89620aa3d261fbe71e255e2f4870ea18752fe3f0639979fcf", + "sequence": 66, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", + "publication_date": "2026-03-31T12:05:42", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", + "media_type": "news_article", + "sentence": { + "text": "As the petition surpassed 10,000 signatories, the Treasury has issued a response.", + "media_hash": "eb8045d1f7d139c15388e4c26097b0856950801bb9b4576ee6e59fae", + "sequence": 68, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "Internet providers are set to pocket an extra \u00a315.5million from their customers each month from April thanks to a change in billing rules, research claims.", + "media_hash": "507379024a896c327f0f330c21c241dabd7b8265ea8c2483980fb693", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", + "publication_date": "2026-03-31T11:57:48", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", + "media_type": "news_article", + "sentence": { + "text": "According to broadband comparison platform Broadband Genie, they will make an additional \u00a3186million a year compared to what they would've collected under the old system of inflation-linked price hikes.", + "media_hash": "c031d6f2db0bde1552fc7ff2936222d67a9ad8fd280b41d7f4aea003", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Broadband Genie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "Those with incomplete records will see lower total take-home for their pension payments, depending on how far off the full record they are, which the DWP calculates on a case-by-case basis when you first hit state pension age.", + "media_hash": "bb9168f52b611b2c443ade95e32773ce37fc2f8c4b661947fd7d312e", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The DWP", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "State pensioners under 76 given \u00a347 extra cash every month from April", + "publication_date": "2026-03-31T11:40:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", + "media_type": "news_article", + "sentence": { + "text": "For example, an older state pensioner who only qualifies for the basic state pension will get \u00a3184.90 per week.", + "media_hash": "258b3bc04b3a5b7af04456d6b0a88a10e06cb453e9e6fdb7d4c77b01", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Older state pensioners", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "Ms Springall said: \"Savers who locked \u00a320,000 into the top one-year fixed bond of 4.58% back in March 2025 would receive annual interest of around \u00a3916.", + "media_hash": "9a2894a73256583c0c94b0aa8a8ee8c6edf7a2916f4374610d15cf1d", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Moneyfactscompare.co.uk", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Owners of older vehicles built between these years to face 2026 car tax hike", + "publication_date": "2026-03-31T08:19:00", + "publication": "express-lifestyle", + "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", + "media_type": "news_article", + "sentence": { + "text": "Less powerful cars are charged a lot less but are still facing higher prices as of April 1.", + "media_hash": "ebff9484a138af2cdc11ee4689cd1381e468c0c0ae327ea7be889ba6", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T06:32:07+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/AllisonPearson/status/2038866913430851723", + "media_type": "social_post", + "sentence": { + "text": "Just look at the number of people with ILR status who are claiming Universal Credit, in April 2022, it was 95,612, in January 2026, it's 222,076, that's a 132% increase.", + "media_hash": "24734615f1216feac69ce47fee0e4223a518b3b26438aa0b276e04cb", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "charliecolecc", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + } + } + } +}, +{ + "title": "UK economy grew 1.4 per cent in 2025", + "publication_date": "2026-03-31T06:23:12", + "publication": "cityam", + "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", + "media_type": "news_article", + "sentence": { + "text": "The UK economy grew by 0.2 per cent and 0.1 per cent in the subsequent quarters.", + "media_hash": "69a8ab28ca64efcd4e69c0669e742838aab36ff9191205f7cf86ab5a", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", + "publication_date": "2026-03-31T06:00:49", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", + "media_type": "news_article", + "sentence": { + "text": "Usually, Chip's monthly draw offers at least one grand prize of \u00a310,000 and 250 additional prizes of \u00a310.", + "media_hash": "fa2ac76eacb1a897e0d22c2288010b0aa0c0c448f52be123c9232960", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chip", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104482, + "score": 0.36460000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", + "publication_date": "2026-03-31T13:10:28", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", + "media_type": "news_article", + "sentence": { + "text": "About 43 per cent of the 1000 Australians surveyed said they relied on credit at least occasionally to cover everyday household bills.", + "media_hash": "d93799115bce8d82ac35617c5e58a0f1ae0516ec1b07efc14a6dc67b", + "sequence": 60, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Compare Club's head of research, Kate Browne", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "economy": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK business confidence plunges to another record low", + "publication_date": "2026-03-31T23:03:00", + "publication": "cityam", + "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", + "media_type": "news_article", + "sentence": { + "text": "Cost expectations rose to the second highest level on record after last September at the height of pre-Budget tax speculation while revenue expectations for the year dipped.", + "media_hash": "031e84d00b808f77903d41327c703bc0e61bb276b29d6580eb49da73", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", + "publication_date": "2026-03-31T21:41:25", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", + "media_type": "news_article", + "sentence": { + "text": "Online gambling duty is set to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", + "media_hash": "10e30dfd1110c194fd5ea5d0c29f46f38dc64c3da50c885fd595fa11", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", + "publication_date": "2026-03-31T21:06:23", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", + "media_type": "news_article", + "sentence": { + "text": "The survey, by UK Hospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster, also found 42 per cent will reduce trading hours while 15 per cent of venues will be forced to close.", + "media_hash": "07599691f0cdc0e0e1126d44e010caf894e64d6bcec2be4b2b3246b7", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Hospitality", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Beer and Pub Association", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "British Institute of Innkeeping", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hospitality Ulster", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", + "publication_date": "2026-03-31T08:55:25", + "publication": "dailymail-money", + "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", + "media_type": "news_article", + "sentence": { + "text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", + "media_hash": "a14fcc0733b6613c9cb4462404658b65240184fa1c3d2e50c9824ef3", + "sequence": 75, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "energy": 2.5459449999999997, + "economy": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Higher energy prices, um, are not good for households, or good for businesses.", + "media_hash": "5a92d6306b21ea36d0a8512c2de26cca9566111c575a390e4171cb70", + "sequence": 864, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.5324400000000002 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And but we do have an increase in youth unemployment.", + "media_hash": "3f5d95733ec06dadfcd2730dc7245c33076efd13d7d120c2942317ad", + "sequence": 902, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.500545 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "And, um, the other thing is that historically, the cost of motoring is really quite low.", + "media_hash": "037fe433bfab84adea7b10a706ccda3270eaf72d57945082666cc7b1", + "sequence": 888, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "economy": 2.500545 + } + } + } +}, +{ + "title": "Millions face savings tax bill as they are dragged into HMRC net", + "publication_date": "2026-03-31T08:50:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", + "media_type": "news_article", + "sentence": { + "text": "Research by Yorkshire Building Society found 36% of people have never heard of the PSA.", + "media_hash": "5592e08ecd9716df4b638331f44dda1d63766440d646a502be983de8", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Yorkshire Building Society", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.500545 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "At least 1,411 people have been killed by illegal migrants, nearly all of whom have been killed during the last 25 years, according to a list assembled by a grassroots group that opposes mass migration.", + "media_hash": "00efa42fd6511b2b67c4821af864ea70d6142bdd3d76a5f092428255", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "grassroots group that opposes mass migration", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Americans for Legal Immigration PAC", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.40490000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.648555 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 5.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "He has memorialized 1,280 deaths since 2018, all of which are based on reports from government agencies or reliable media outlets that declare the murderers to be illegal migrants.", + "media_hash": "6fcfdd7c254449f5dc847b37489c492b36f60066a03c80c07871d9cb", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Orrin on X", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.34419999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.648555 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 5.648555 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "That analysis likely understates crime by migrants, but Cato admitted on March 30 that illegal migrants from Latino and African countries are more criminal than citizens with roots in Europe or Asia.", + "media_hash": "a2c048b6dc3a5fd2dc6b9626991e64e1c2257c758f93612fa48d949b", + "sequence": 70, + "claim_type": [ + "quantity", + "correlation", + "support" + ], + "claimer": [ + { + "name": "Cato Institute", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.4183 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.309265 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 5.309265 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T18:35:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/PJFerguson18/status/2039048981565657226", + "media_type": "social_post", + "sentence": { + "text": "RT @ukhomeoffice: Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", + "media_hash": "b371c4b0a80fad2ed16b21cd3f54abecc6312c22e1961a8945bc5e0f", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.09725 + } + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "The UK government claims the deal has prevented 42,000 illegal migrants getting on boats, although the overall number making the journey across the Channel has continued to increase.", + "media_hash": "513f220309e9276fa036e7eccf18903318ad5fe45dd7c461fb559c6d", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.09725 + }, + "demo": {}, + "dev": { + "blah": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "The program uses tax dollars to help illegal migrants game the system to attain legal status despite having broken our laws to get here in the first place.", + "media_hash": "c89490440897044fcdab570c559300495b4a5677bd61b8f4b938a389", + "sequence": 10, + "claim_type": [ + "rules" + ], + "claims_matched": [ + { + "tracked_claim_id": 44970, + "score": 0.38539999999999996 + }, + { + "tracked_claim_id": 104465, + "score": 0.3207 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 5.023415 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 5.023415 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "'Keir Starmer has now presided over the most Channel crossings of any Prime Minister - up 45 per cent since the election.", + "media_hash": "d862f23aa18ac4642fd0c21282f77fa75029baa1b8a6e3cd04ddbfb2", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chris Philp", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.981275, + "starmer": 4.981275 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 2.556405 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.556405 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "This office has had far-reaching consequences for decades aiding tens of thousands of illegal migrants to attain legal status each year.", + "media_hash": "34eef07fdc9e30abb9a0d0710a627e6acb4076ec8b9b99acbd8618a9", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 4.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "\"We have prevented over 40,000 crossing attempts by illegal migrants since this government took office. Our landmark deal means illegal migrants who arrive on small boats are being sent back to France.\"", + "media_hash": "4e861950c9e7e2b42f92bbcf4c6e23b6b570581c79fc18f8b8df6835", + "sequence": 22, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Home Office spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.4023 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.910905 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "it had been due to expire tonight ministers claim 42,000 illegal migrants have been stopped from crossing the channel in the 21st month since Labour's election", + "media_hash": "f1b45d61c79e4409c554ec353f56bf2034ab1e686c0ed42308649b4e", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.89907 + } + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "She was allegedly led down a ramp onto the beach at Brighton and raped by Alshafe and two other asylum seekers - Iranian Abdulla Ahmadi, 26, and Karin Al-Danasurt, 20, from Egypt.", + "media_hash": "be4118dfcb5ea958ca9ac0d6d2fdfc3099e9cca874d8e916bfae958d", + "sequence": 5, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.652965 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.652965 + }, + "pa-media": {}, + "maldita": { + "asylum": 4.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "And there's forcibly removing women and children asylum seekers who arrive illegally.", + "media_hash": "66cabcbf17c50a692048e50649c5217bf455969aab1af79be6e97982", + "sequence": 140, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "Nearly 700 officers from units dedicated to intercepting small boats will continue to patrol the French coastline.", + "media_hash": "60739d2a9c1fda7da531540b33242f824dc169b8dd90236fc0e2ec09", + "sequence": 26, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T05:09:17+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/afneil/status/2038846067387547872", + "media_type": "social_post", + "sentence": { + "text": "Illegal migrants used to come in large numbers as stowaways on trucks etc.", + "media_hash": "c1d5792c3fa5436fb02a32e4c2aa59fdc4babb296858632c4a76efa7", + "sequence": 1, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Illegal migrants", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.638815 + } + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "The Dublin Convention did nothing to make it easier to return asylum seekers.", + "media_hash": "29e00aea7b969c69974f02fcf6e30122ef51acd26213f34c99d74b45", + "sequence": 12, + "checkworthiness": { + "fullfact": { + "asylum": 4.612785 + } + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "is published on Tuesday and who is also a member of the government's independent Migration Advisory Committee, said: \"Governments of all stripes like to make bold claims, from 'stop the boats' and 'smash the gangs' to 'net migration falling below 100,000'.", + "media_hash": "2a9a538decf8540327dee0a95611bc66a49ed7c943a1aac8cc31f4b5", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Madeleine Sumption", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "A huge share of the deaths are Latinos, including some who are illegal migrants, he added.", + "media_hash": "d56bb2a8753f5f70c3d595f887b453093fca4b27c270a91ce82149df", + "sequence": 13, + "claim_type": [ + "quantity", + "support" + ], + "claimer": [ + { + "name": "Orrin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.55978 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 4.55978 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "We made 5,500 requests for asylum seekers to be returned.", + "media_hash": "692c4224dfad3937997bfeb03455efecb316e7f2a72a86625ff59022", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + } + } + } +}, +{ + "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T16:37:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "Last year, the French stopped around 35% of people smuggler small boats - carrying around 22,500 migrants - from getting across the English Channel.", + "media_hash": "37845f7e0d17fc3721b0d56a1735761c40955106d9456301ae4fdc66", + "sequence": 41, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.5459449999999997 + }, + "pa-media": {}, + "maldita": { + "asylum": 3.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "It was the lowest rate of interceptions since the small boats began arriving in 2018, down from a peak of 46.9% in 2023.", + "media_hash": "0131cdad0ddb6c190c2a12e2b4cb4879340f01ee6747447292eb37d6", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.01739999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "In the same year, under the same convention we accepted 1,215 asylum seekers.", + "media_hash": "4a6f269e1e9d435ed1067ff0c9599dcdffd5b3fabaaae7cf979f1ea1", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + } + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "But reports show that in the first 12 weeks of 2026 the number of small boat crossings being stopped by France has dropped to 33.1%, the lowest rate since 2018 when the crisis began.", + "media_hash": "64cdc4a2f02c517a0153d40fd45cb293cc2a28a45cfe90e6222a6f9c", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "As of 25 February, 2,209 people had arrived in the UK in small boats in 2026 - up by about 7% compared with the same period in 2025.", + "media_hash": "59f0ad02447045201771e308412d3c4122f30e04dc5494db6e8c8bd1", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "PM", + "publication_date": "2026-03-31T16:00:00+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404361", + "media_type": "transcript", + "sentence": { + "text": "Talks with France on a deal to tackle small boat crossings have been extended by two months, with the UK set to pay more than 16 million pounds for French beach patrols during that period.", + "media_hash": "094816da3bc8af4ef3ec1de7e62923c85ea6964b75c13c813dd944cf", + "sequence": 405, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.545945 + } + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "The French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", + "media_hash": "6db55bb799dcd8bce3bc572d370eeac5fdafb25eef69d8613c0f8c64", + "sequence": 16, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "French authorities", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.529545 + }, + "demo": {}, + "dev": { + "blah": 2.5295449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "A man used Facebook to advertise 'dangerous' small boats crossings, urging migrants to 'hurry and get a seat'.", + "media_hash": "2c212af17fc28bda68f76d57e514797b30ceaa3d136a0aa0886c8c2d", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.52653 + } + } + } +}, +{ + "title": "Majority of Syrian migrants should return home \u2013 Merz", + "publication_date": "2026-03-31T00:58:26", + "publication": "rtuk", + "url": "https://www.rt.com/news/636781-merz-expects-syrian-migrants-return-home/", + "media_type": "news_article", + "sentence": { + "text": "The influx of asylum seekers from civil war-torn Syria to the European Union peaked in 2014-2015, with Germany being one of the top destinations thanks to the welcoming policies of former Chancellor Angela Merkel.", + "media_hash": "7f53e1081fbff08f7089d4c2068de041916baf4443f03fc4719f22f8", + "sequence": 4, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "Cameron, who was prime minister between 2010 and 2016, promised to reduce annual net migration from \"hundreds of thousands\" to \"tens of thousands\".", + "media_hash": "ea8f1c0250d7b4f4016daea59e80ca7d728e226ead52d98578288cd3", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "David Cameron", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.486035 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "There have been just three interceptions at sea since Mr Macron announced last July that France would modify its maritime policy to allow officers to board small boats.", + "media_hash": "470952cbc201ee5224dc87eac1a8f0628553c91f82f3fad36512a450", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Mr Macron", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.059799999999999964 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "So far this year, some 4,441 people have arrived in the UK on small boats.", + "media_hash": "87068d99bcb1555ab7e959d521995630c95bdf4704d2bf78d02340d5", + "sequence": 30, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "But the French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", + "media_hash": "5e690138d9537e5e412011b71164408aef4a39acf5075fa6a25cec12", + "sequence": 13, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.331365 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "Xavier Ducept, France's junior minister for the sea, has criticised the UK for making demands that risk the lives of asylum seekers.", + "media_hash": "04ae617e88846377b0b6b664a49eecc5015426f5a9e1f8e9e5948292", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.313675 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "If the UK accepts illegal migrants or legalizes them or gives them work permits, of course this is going to encourage other people to come.", + "media_hash": "b39a1ce95a1f96e9e25acea0617a08d1bcb66e58f2fced724df5da5b", + "sequence": 608, + "claim_type": [ + "correlation", + "rules", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.30329 + } + } + } +}, +{ + "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "publication_date": "2026-03-31T12:47:34", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "National Crime Agency Branch Commander Saju Sasikumar said: 'These defendants used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", + "media_hash": "d93e5bf868843e029705ef25be3ca62927be0ab93f86dea0e1cf64dc", + "sequence": 32, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "National Crime Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.29984 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.29984 + }, + "pa-media": {}, + "maldita": { + "asylum": 4.29984 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "The jury of seven women and five men was told the three asylum seekers had been partying at Horizon on the seafront during the evening in question.", + "media_hash": "9e17608eeae27fe9644cf6ddfc4973c7299b097706e33d1889a47b1e", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.287855 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.862985 + }, + "pa-media": {}, + "maldita": { + "asylum": 3.862985 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", + "media_hash": "13376fad5147cdf89f99da8b9cb0a3ac663cca80ad44b51c06f02b5f", + "sequence": 121, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.224345, + "economy": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "The UK is to pay France \u00a316.2m to patrol beaches for the next two months, as the two sides continue to hammer out a new deal to intercept small boats attempting to cross the English Channel.", + "media_hash": "3766dacd4af86b78c3653a7fe8a4b7efd52bcf0067305de16ed8de25", + "sequence": 9, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.224345 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "It said 700 officers from units dedicated to intercepting small boats will patrol the French coastline round-the-clock.", + "media_hash": "ee77905e00c26079ab0998846bfcb31f11169bcd16a76e4fd1b1f981", + "sequence": 6, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.224345 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "Paris is concerned that UK demands could put the lives of asylum seekers and French officers at greater risk.", + "media_hash": "b2947cef86d3e5e5c6f25d77b7f24078373374185b33a08dda04d70a", + "sequence": 6, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Xavier Ducept", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "France", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.20493 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "NCA Branch Commander Saju Sasikumar said: \"This group used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", + "media_hash": "6660ee96d315447dd358c6183a14e11b5b1ef8a718bb99fadd54954a", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Saju Sasikumar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.173405 + } + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "But he argues the same welcoming nature that propelled his family to success is now being taken for granted by asylum seekers living on welfare in tax-payer funded accommodation, while the very fabric of Britain is torn apart by high levels of legal migration.", + "media_hash": "efbe700a465700e90e2922f92e76bfaaa36ce0005d6da7eb80f46252", + "sequence": 30, + "claim_type": [ + "correlation", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104470, + "score": 0.25970000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": { + "race__ethinicy__religion": 2.851145 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "The Trump administration has gutted a Justice Department program that helped many thousands of illegal migrants fight the department's own deportation cases.", + "media_hash": "598935227a8bcb12773ff78bad4a7730fb659379f75fc14d77e007ed", + "sequence": 1, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Danielle DeWinter", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "The pugnacious 39-year-old tech millionaire delivers his Dover assault on migration in the gravest of terms to a room of Reform enthusiasts, hitting out at the \"invasion\" of people who have arrived in the U.K. without permission on small boats.", + "media_hash": "8f58b7dcdc3061987ff07dae23756b9f8252eb5d9f3d7b43c1dc19b2", + "sequence": 11, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "Hove Crown Court heard the three asylum seekers then targeted the lone drunk woman in a 'cynical, predatory and callous' attack.", + "media_hash": "1a0302fc8a0cb901a33042f2d098b6251d24820d78c72c693da97b94", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.10166 + }, + "pa-media": {}, + "maldita": { + "asylum": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Reform UK leader Nigel Farage said the UK needed to pull out of the European Convention on Human Rights (ECHR) to stop small boat crossings.", + "media_hash": "a814c02d0f16449b9e08a75251af89389eae0690c0ec7c7509e17f60", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "Keir Starmer's pledge to \"smash the gangs\" profiting from small boat crossings has followed a pattern set by Conservative-led governments of employing \"bullish rhetoric\" with little evidence that it can be delivered, an expert has claimed.", + "media_hash": "a2849692e9e234e8e4bd553b1d0677fd6545a42514148f8062ddfbc5", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166, + "starmer": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "'She is determined to deliver the best deal for the British people to prevent illegal migrants getting to Britain,' the source said.", + "media_hash": "1796a592716720401678eb0d1f43a8d0ada83083dcab41253bb6c93b", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.3215 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.10166 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.10166 + }, + "pa-media": {}, + "maldita": { + "asylum": 3.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "The Home Secretary said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", + "media_hash": "80f3f2c66cca8b67fe67550fc583fd656dbc601589454bfbc76b13d2", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Home Secretary Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Bruce Springsteen brings 'Streets of Minneapolis' home...", + "publication_date": "2026-03-31T04:12:15", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693491/Bruce-Springsteen-brings-Streets-Minneapolis-home-launch-political-US-tour.html", + "media_type": "news_article", + "sentence": { + "text": "The gritty video that Springsteen released for \"Streets of Minneapolis\" captured a city under siege by 3,000 federal officers, which President Donald Trump's administration called its largest immigration enforcement action anywhere in the country.", + "media_hash": "d1a50046db1b31a2ea6cd6bfba86281df91aa133fd95917584c72e96", + "sequence": 15, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.061165, + "trending": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "The Home Secretary has agreed a two-month extension to the small boats deal with France, just hours before it was due to expire.", + "media_hash": "2be8c829ee1fe8f1272f5d74b7dbca8edef5707b1134206e6c7a0e06", + "sequence": 827, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.061165 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "One of the things that Shamal Ameen would like to see happen is to have this more closely related, relate the money to the effectiveness of the patrols in stopping migrants crossing in small boats.", + "media_hash": "b14948557cec7b60e7d72f9e51f66e488241c79e6da84573d06f8a3c", + "sequence": 893, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 4.037115 + } + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "RT @afneil: Keir Starmer claims Nigel Farage is to blame for the boat people because Brexit took us out of the Dublin Convention (in 2020), which allowed us to return asylum seekers to the EU countries from whence they came.", + "media_hash": "48e8db76dce309f212ee501ced449b33293ca882c1c5a9547c5e3926", + "sequence": 0, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.98733, + "asylum": 3.98733 + } + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Nigel Farage said the UK needs to come out of the European Convention on Human Rights to stop small boat crossings.", + "media_hash": "8c65a262232e6146adb92ec4eeffc03f32dc7a35af19691bfe7eb122", + "sequence": 25, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.98733 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:01:32+00:00", + "publication": "6ded12f0-cdc0-4e64-9da6-4aa97d977cfc", + "url": "https://x.com/NCA_UK/status/2038904516146315511", + "media_type": "social_post", + "sentence": { + "text": "Two Vietnamese nationals who advertised small boats people smuggling on Facebook have been sentenced following a major UK-French investigation.", + "media_hash": "b0b2e09db4bdbde059056c58590dc71675cb881750c647aaa1119df6", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Two Vietnamese nationals", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.975225 + } + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "The gang shared video clips of people travelling on small boats and posted UK mobile numbers for migrants to arrange travel via Zalo, a Vietnamese instant messaging app similar to WhatsApp.", + "media_hash": "afce5c4efe007ac661f03f7676e1441fe1d68aae606c3ad8eada143f", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.975225 + } + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "After the Horizon nightclub closed at 5am the three asylum seekers left the club and CCTV played to the jury allegedly showed them on the street outside the club.", + "media_hash": "9daf1711e5aab20b3208e48ddbcf5fb8b3802428ad51025d59927339", + "sequence": 36, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.975225 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.975225 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "Among other services, the representatives accredited by the office helped illegal migrants appeal their immigration denials and ward off deportations.", + "media_hash": "87757edcd7798c6a52c63314ff4788760b40ad89f29c906715494cbc", + "sequence": 12, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 3.975225 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "media_hash": "e88ae902849aea502db1832e64601111e030b145d89c55002d81d0d7", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.975225 + } + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "As a result the Dublin Agreement actually made us a net recipient of asylum seekers.", + "media_hash": "42ea9a6b89d9a817c4b9cc7ff4e71ce96f4ad3649f52511298edbfe1", + "sequence": 6, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.920805 + } + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "He said a Reform UK government would order the Royal Navy to tow small boats back to northern France, which he claimed would be possible if the UK pulled out of the ECHR.", + "media_hash": "b8cefafc8db07ea680322b5e667e7ea8932df6e09d901ffd2e111b1d", + "sequence": 26, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Home Office sources slammed those proposals saying they were \"completely reckless\" and would lead to a \"surge in illegal migrants getting to Britian\".", + "media_hash": "3b8d7daa80c6692715f49da87bd16509fecb6cb9059c63026903cc70", + "sequence": 9, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Home Office sources", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Mr Farage warned the government's failure to strike a deal by the deadline could trigger a fresh wave of illegal migrants crossing the English Channel.", + "media_hash": "fb8cd70fe8feec368a130474a49b7c94634acec950f7298d49893531", + "sequence": 5, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.7800599999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T12:37:44+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038958925496615052", + "media_type": "social_post", + "sentence": { + "text": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade https://t.co/TUA0rJfxPV", + "media_hash": "49b11d17b91b827e3fc386c6ab7f64f8897f42a3c79a23d57cd9e668", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Vietnamese people smugglers", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.772635 + } + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Speaking to the media at Heathrow Airport, Mr Farage demanded the UK leave the European Convention on Human Rights (ECHR) to bring an end to small boat crossings.", + "media_hash": "7f4c3bf5c0446fbcc35ba34e51ec7d7a0ca120c8a8460d26ffecd681", + "sequence": 28, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.7623699999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Six O'Clock News", + "publication_date": "2026-03-31T17:07:29+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404372", + "media_type": "transcript", + "sentence": { + "text": "A Home Office spokesman called France the UK's most important migration partner and said joint efforts were helping to reduce small boat crossings.", + "media_hash": "7a0f83dcfd64ade97c76b18d15dd3f52bb043cfe3e0c1bb504ae605b", + "sequence": 35, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.748535 + } + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "A Home Office spokesperson said: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", + "media_hash": "00154ec67fd529af920642458c4e9806b4e3196c1d79a7dee2038878", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Home Secretary", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28819, + "score": 0.4003 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "A Home Office spokesperson told the Press Association: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", + "media_hash": "712ba81d6a156eb6556329919a662d08ed27d608cf733ae2806cdd2a", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Home Office spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We'll also look into the UK's deal with France to combat small boats.", + "media_hash": "aa5a05c93569beac0f64aef304e97acedcf202da9013c96eed8bedc5", + "sequence": 425, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.7135350000000003 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So I mean, I think what what's clear amongst all this is the entire strategy of stop small boats is this smoldering wreck.", + "media_hash": "84a31219bf15626a4a55111f376fdefe6379d5296f42d5345071f7e4", + "sequence": 461, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.703135 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "These charges or convictions included serious and violent offenses, including 57,081 assaults; 18,579 sexual assault and sex offenses; 12,895 weapons offenses; 11,822 burglaries; 5,462 robberies; 2,894 homicides; and 2,766 kidnappings ...", + "media_hash": "bf30cc1dd8926752eaa4845a71acb89a5342b3eb0c3d3beaa133dbe9", + "sequence": 58, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Immigration and Customs Enforcement Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.2804 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.648555 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 3.648555 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "The Dublin Convention was a two-way street for asylum seekers.", + "media_hash": "8706e4559c0db561e8e9e3a35bd0cb737d173a20ad95b75c136550d7", + "sequence": 3, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + } + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "The court heard Alshafe and Ahmadi had arrived in the UK by small boats in June 2025, while Al-Danasurt had arrived by the same method in September 2024.", + "media_hash": "551b2d46cd4fa05c9b3cd1f555ca09093e7cb7fe42d1c5df56a09d16", + "sequence": 7, + "claim_type": [ + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104411, + "score": 0.020100000000000007 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Six O'Clock News", + "publication_date": "2026-03-31T17:07:29+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404372", + "media_type": "transcript", + "sentence": { + "text": "The UK has failed to renew a deal with France to pay for beach patrols to intercept small boats attempting to cross the English Channel.", + "media_hash": "9045e8a2164498e3283ff9e95ec1a33402f54a45ac14fe6b3902f0ba", + "sequence": 33, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Now, that deal that Kate was talking about, the UK French deal on patrolling beaches to stop small boats.", + "media_hash": "5c69e5c217720d1f9017b89106be3f3697f4f4b199550bf5e3fd8311", + "sequence": 439, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + } + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "UK and France extend talks over new small boats deal", + "media_hash": "940b8ae05a535e4a107ba315f9c3b52d66f92a54876fd2c22f9c91ed", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Shabana Mahmood, the Home Secretary said that a \"new and improved UK-France deal\" was yet to be finalised but stressed that whilst negotiations took place \"French law enforcement operations to stop illegal migrants in France will continue.\"", + "media_hash": "b3b9cfcb4a1f897abd2cbb2137a4a82cccb96cfbbcd5c724735439c8", + "sequence": 14, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Home Secretary", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "The UK is locked in last-minute talks with France over the renewal of a deal to pay for beach patrols to intercept small boats in the English Channel.", + "media_hash": "a785cbb3931e3f2cce608fdd6d7eed32c895b1b637f7a86d7fdf15a1", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel", + "media_hash": "2b05b33d3ca4640e7ac556a62e01da4633080c2d8549d6872c645d98", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Home Secretary Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked.", + "media_hash": "aa66813f7983b2a9bb91de1b019525ba9707134defdd07debd963572", + "sequence": 603, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.486035 + } + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T17:36:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "In a statement, Ms Mahmood said: 'Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", + "media_hash": "66ff53e8977cf2d4c1bef0d6e8d9501e1a7269ea1e1085209d541c0d", + "sequence": 25, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 25034, + "score": 0.34609999999999996 + }, + { + "tracked_claim_id": 25138, + "score": 0.29569999999999996 + }, + { + "tracked_claim_id": 104465, + "score": 0.34809999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.486035 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "maldita": { + "asylum": 3.486035 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "In a statement, Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", + "media_hash": "8438debb4fda454c9bd5ba06f1b861edcf93ae349ebce6f177220b34", + "sequence": 20, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.486035 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "She lives in the area where small boats are now leaving from.", + "media_hash": "1b74771ebd3cc8cf63ff959b410ded53c600a38ce51df8e452e516d7", + "sequence": 1158, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.47393 + } + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "The stopgap arrangement, which will last for two months, comes after French negotiators refused to agree to UK demands for further interventions and patrols to stop asylum seekers from reaching the UK via the Channel.", + "media_hash": "5b3e95dcb0766fd66ab03168bd554968d3a3d8f01b7340e04cfd6040", + "sequence": 2, + "claim_type": [ + "correlation", + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.436025 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "publication_date": "2026-03-31T12:47:34", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "media_hash": "dc0d08c3c40610cd68de99a26a958d9ec73553a23f8d8305fcb7362c", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.287855 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.862985 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T16:37:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "'If there are eighty people on an overcrowded boat, including women and children, then it is extremely dangerous to try and stop them.", + "media_hash": "b5098273f4cd067c1f2599ce69575bcf93c11435c0938d075f9aa314", + "sequence": 45, + "claim_type": [ + "quantity", + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Alliance", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.281555 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "asylum": 3.4797350000000007 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "At midnight tonight, the deal between the UK and France designed to combat small boat crossings is due to end.", + "media_hash": "6b9892856dd281fee9389cb7d2158b783ff4f9763e2f5f49a412f397", + "sequence": 1137, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.228755 + } + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "'While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", + "media_hash": "6c1af22e5358339b56d4496fe7b51078d9acc1f2d3ba85dabd32ded6", + "sequence": 25, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.3266 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.228755 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", + "media_hash": "0635de656c00c4014124ebe8302dfcaaa25fe5e767f7302ed188a4de", + "sequence": 21, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.228755 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "In this half hour, the UK and France remain locked in last-minute talks over a new deal to tackle small boat crossings across the channel.", + "media_hash": "2c6fb46f779412686ca1fa6f54e0ce67ce50cf427cad6398253d26b8", + "sequence": 2417, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.228755 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "French police will continue to patrol beaches where small boats are launched from after the British government extended the agreement covering it for two months", + "media_hash": "5620fefe0572419c462b3eae795f1292ac3f347dc563fcee131ffde2", + "sequence": 21, + "claim_type": [ + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.228755 + } + } + } +}, +{ + "title": "Syrian president meets King Charles, Starmer on London...", + "publication_date": "2026-03-31T17:08:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15695633/Syrian-president-meets-King-Charles-Starmer-London-visit.html", + "media_type": "news_article", + "sentence": { + "text": "The British prime minister urged \"closer work together on returns (of illegal migrants), on border security, and on tackling people smuggling networks\".", + "media_hash": "5bfda03bc2117baba140682d6ecc10adb3e7f586a99aaa85f66fff1a", + "sequence": 11, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.211065 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", + "publication_date": "2026-03-31T01:15:21", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", + "media_type": "news_article", + "sentence": { + "text": "Many claim they are asylum seekers, despite the Balkan country being categorised as a safe place to live.", + "media_hash": "2e496a55f1f8d47048086e2512703ebd934a5d9134501e8054af5b66", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Albanians", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28819, + "score": 0.31200000000000006 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.128005 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.10166 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "The NCA said it worked with social media networks in 2025 to have more than 10,000 posts, pages or accounts linked to organised immigration crime removed from platforms, a record number.", + "media_hash": "d0940c791936c51b84162ea5b1391fbcd79dbc50f1b9c4f76df1a88d", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Crime Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.10771 + } + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "It's a key part of the operations of the, of the anti, anti-immigration, uh, service, seeking to root out and remove those judged guilty of being illegal migrants in America.", + "media_hash": "4c85dcdc4fe12ad93f35d272110a76f990c77b675d2fd77e8e208085", + "sequence": 1081, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.10166 + } + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "\"In practice the results have disappointed, because factors outside their control have played a huge role. That included EU membership; in the case of net migration, France's willingness to cooperate on asylum policy; or the sprawling, decentralised activities of smuggling gangs that are very difficult for government to contain.\"", + "media_hash": "ee5e341870da238a3c05f8c35456537b451d2940cd526729481353b8", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Madeleine Sumption", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "During FY 2024, the 81,312 criminal noncitizens ERO arrested had 516,050 charges and convictions, for an average of 6.3 charges or convictions per person.", + "media_hash": "dd69d31d238057856e6a6ad180b131b72815ca63eec7134651ef9472", + "sequence": 57, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.2522 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "publication_date": "2026-03-31T12:47:34", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "Hop Can Nguyen, 46, and Hoang My Tra Nguyen, 25, helped traffic at least 250 migrants into the UK - offering journeys costing up to \u00a318,000 - before disappearing from Home Office accommodation.", + "media_hash": "15c37aaac05ae9930ea51b50ed78866bbb876a80fce9691171ac99bd", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.2116 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 5.09725 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "When it was announced in 2023, the previous Tory government said the \u00a3478 million package would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", + "media_hash": "7b9ac9fb4ccedcf655cb4ef2973263c230c366c8c507971252b7251b", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Officials pointed to some 42,000 illegals having been stopped from making the crossing.", + "media_hash": "f5519bbd6de756b5b809ed3ae63540c07ea1422a1086fa0f82d5f989", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Officials", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 25034, + "score": 0.4505 + }, + { + "tracked_claim_id": 25138, + "score": 0.4555 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "publication_date": "2026-03-31T12:47:34", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "Hop Nguyen was jailed for 12 years after he helped traffic at least 250 migrants into the UK - offering journeys costing up to \u00a318,000", + "media_hash": "69e7137c4d19f5d9d88b2bf5707ff968f63d83508c4fca67433c72da", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.32620000000000005 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 5.09725 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "A five-month NCA investigation found the group facilitated crossings for at least 250 people between January 2023 and April 2024.", + "media_hash": "62ac959b24407e947a3211993ee00cea57e84d07c1225ec8394dc9e6", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Crime Agency", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + } + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Home Office officials insist that nearly 60,000 migrants who have made the illegal channel crossing have been deported since the general election.", + "media_hash": "130cfd0c721084eacf3529abcef94a19b0cabb7297bcc0f3690e600f", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 40728, + "score": 0.4192 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "For example, a 2011 study by the Government Accountability Office reported 25,064 foreigners arrested for homicide from 2001 to 2004.", + "media_hash": "a501c7a25d115cedc1b5d4bdbbe29747679b332dafb87cc99bc4742b", + "sequence": 51, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government Accountability Office", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.27649999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 3.09725 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue. I will do whatever it takes to restore order and control at our borders.\"", + "media_hash": "610f060917b8782010237ef182198b7beb2a71d8dfba2a84d2ba563b", + "sequence": 9, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28819, + "score": 0.18920000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.092465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "And talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", + "media_hash": "8b0584f517af30c64a99072a42550dd5c183ad323131de2223127922", + "sequence": 305, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.061165 + } + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "Ms Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", + "media_hash": "8c41b317da966e4c16d4f8034fdaa162005f223b34bac157401ddf24", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.36360000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.061165 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio: Andrew Neil Show", + "publication_date": "2026-03-31T12:00:01+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404201", + "media_type": "transcript", + "sentence": { + "text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", + "media_hash": "02863a2d79d5fa53dd9d100591fe25ed291e970cc014491049dd4a5e", + "sequence": 9, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "The French", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.061165 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "Americans are being slaughtered in massive numbers by the non-enforcement of our existing border immigration laws ... and it's all 100 percent preventable through the adequate enforcement of our existing laws.", + "media_hash": "88c0a6845736fd8126d29eb27f8d9674477c9712385af237c521db39", + "sequence": 17, + "claim_type": [ + "correlation", + "rules" + ], + "claimer": [ + { + "name": "Bill Gheen", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.3597 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.039905 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", + "publication_date": "2026-03-31T11:20:25", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", + "media_type": "news_article", + "sentence": { + "text": "Yusuf has called for US Immigration and Customs Enforcement (ICE) style removals to deport 600,000 people from the UK over five years.", + "media_hash": "a15aa7ceddd9c0f5914499354c0a56def4cd9b3968219b0d7455d712", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.0274850000000004 + } + } + } +}, +{ + "title": "Retired NYPD sergeant arrested in corruption probe...", + "publication_date": "2026-03-31T14:46:17", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "According to St. Fort \u0301s arrest warrant, he is under indictment on charges of conspiracy to commit offenses against the United States, bribery involving programs receiving federal funds, and violating a law prohibiting interstate travel for unlawful activities.", + "media_hash": "93a003c03337184789af59f848ada7013cf057d01a961007809fdcd4", + "sequence": 9, + "claim_type": [ + "correlation", + "rules" + ], + "claimer": [ + { + "name": "Edouardo St. Fort", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 3.023415 + }, + "demo": { + "politics": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "\"Starmer has now presided over the most Channel crossings of any Prime Minister - up 45% since the election.", + "media_hash": "00fb8763e3105d008a5b436f86c2ef55318e9c325daf233765682018", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chris Philp", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.981275 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "Shabana Mahmood has extended a deal with France attempting to stop migrants boarding small boats in Northern France.", + "media_hash": "edf73b13bb9cca1d816a958baeaeda67e36bfc137b9cb6400530cf85", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Yes, you can, and certainly, you know, the idea that there have been thousands of people crossing, uh, you know, the channel and the government wants to point out it's prevented 40,000 crossing attempts, but equally there have been pretty much 40,000 successful crossing attempts in the last year.", + "media_hash": "0ea76dbb182470e9ee823ca98f439a37e548d3280cd98928e954262a", + "sequence": 2471, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "Only a third of the migrants who tried to cross illegally between January and March were stopped.", + "media_hash": "993a4ceab10ca6102cea7e54f667bc9af75e33bb87fcddc17cfb1ea5", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.4014 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "Ultimately, does Nigel Farage really want 42,000 more migrants coming to Britain?", + "media_hash": "012c5cf8deb5ddba9e0333979090de2bbfcc8854d2b8ba81af4d1279", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Shabana Mahmood", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "They are now going to pay \u00a32 million a week for continued failure.", + "media_hash": "1ad7d386517816369c8555148efb9e3efcc56a11ae0ada4ea82a082b", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Chris Philp", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.09725 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", + "publication_date": "2026-03-31T01:15:21", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", + "media_type": "news_article", + "sentence": { + "text": "The number of Albanians entering Britain via the Channel route spiked in 2022, with more than 17,000 individuals applying for asylum.", + "media_hash": "c8318d43a65ac6390f3026a0668c8f974ddb6db927d16688487a282e", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Migration Observatory", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 42109, + "score": 0.4154 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "Ledgers recovered from their homes showed payment amounts against 250 names, meaning the pair stood to make around \u00a3750,000 from those crossings alone.", + "media_hash": "12fc5b880d2680ccf1f3a4d3ad4af55d108f1c8cf302476a5664ac65", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "\"They are now going to pay \u00a32m a week for continued failure.", + "media_hash": "7a344f7bad73b92bf5948f721dd7f11d44d58feec7ba0ba52b05e2dc", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "dev": { + "blah": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Home Secretary Shabana Mahmood is under pressure to bring numbers down.", + "media_hash": "0355d6681f164e61b4e15a0347605d46951498ec1e4c2eca7a75f9ef", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Because I mean, numbers don't seem to have significantly dipped in in illegal migration while that deal was in place.", + "media_hash": "26ba8879b0075a834f22535bdfc28a33f432ebc2e94d88f21c0530d4", + "sequence": 2458, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "Britain is to pay millions more to France to police the Channel - despite the French refusing to accept targets to stop the boats.", + "media_hash": "8eda6c6f133eefd8463dae25f4a9c87945f05f72c78e1b15a18af98d", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "France", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "Over the four weeks ending March 22 this year, just 23.2% of migrants attempting to cross the Channel were prevented by French police.", + "media_hash": "f825ed6f6f0d1c1436a7c491307bff4044f828e19474b1d4c2405b16", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.23860000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "I mean, the argument from the British side here is that we've paid over 400 million pounds to the French for this previous three-year deal and yet the rates of boats being stopped has actually gone down, the success rate is worse.", + "media_hash": "2e1f47e8920178359f8124ee604bbab68b13c76950fe01f43a21ef71", + "sequence": 1185, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Saying the English Channel would be \"busy\" once the deal expired, the Reform UK leader said \"it wouldn't make any difference whether we agreed to a further \u00a3365 million or not\" adding that those who make the crossing have a 97.5% chance of staying in the UK.", + "media_hash": "27b8a00af9b3991d32edde2d9642c085e3d7771b631ef2f51ca565d6", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28819, + "score": 0.2619 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "By 2023 the office had greatly increased the number of accredited representatives dealing with illegals.", + "media_hash": "1a450953dcb6812d47d6d6c3d89921948f434bb4fe9b916e2442fc65", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "I mean, if you look at the most recent weeks figures, um, there were 272 migrants who crossed in four boats just over a week ago on the 23rd of March.", + "media_hash": "b682e781a372c53b3e5c72e2145cf2895323e0e5d0844034c13ae8cc", + "sequence": 2460, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "Six O'Clock News", + "publication_date": "2026-03-31T17:07:29+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404372", + "media_type": "transcript", + "sentence": { + "text": "French authorities have prevented around one in three attempted channel crossings, but the interception rate was higher two years ago at around 45%.", + "media_hash": "d4d277cb931177431159b9b564a65483cc0b383953329504e980039f", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + } + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025, and Ms Mahmood is under pressure to bring numbers down.", + "media_hash": "74f15444e419950ed8ae7610bed5038ce376a0a5fb3f6e7e43bb70bd", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Mahmood is under pressure to bring numbers down.", + "media_hash": "2dc64f56dbd578feaace8439f3bda5496f67313ad3dc475545f7675d", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.970815 + }, + "demo": {}, + "dev": { + "blah": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "This issue may have gone off the back on the back burner a little because of the war, but conflict brings more immigration.", + "media_hash": "8a84239c95acb53d4c33398bef2ea11b2f6e2f0e6f16945dc8aa4f9b", + "sequence": 1226, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.9374000000000002 + } + } + } +}, +{ + "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", + "publication_date": "2026-03-31T16:59:32", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", + "media_type": "news_article", + "sentence": { + "text": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", + "media_hash": "7c3b2fd5d6117619b33e51c3d5d6d8eae187cb68318cc0cd70850aa4", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.93464 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.965595 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "I heard the deal between the UK and France on stopping small boats crossing the channel comes to an end today.", + "media_hash": "06ba33afc16ce036ff80f1ac98d84420db01e8564a45cc6f06c11b50", + "sequence": 1061, + "claim_type": [ + "personal", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.922625 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "ALIPAC posted a list of 1,409 victims of migrants last week and has been forced to add new names over the weekend.", + "media_hash": "9947b08e3a5d2f4df01e203ff2b4fa0dde547abf647e4071c40638e6", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Americans for Legal Immigration PAC", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.29869999999999997 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.89907 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Something which hasn't particularly worked to be frank, because numbers have not gone down since then.", + "media_hash": "8df6ca371e2bd9254db45a5323d6738906f4ad191bf97b328f604d40", + "sequence": 444, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.89907 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "But none of the establishment media sites track the growing number of Americans killed by the federal and state governments' refusal to exclude migrants from American communities.", + "media_hash": "80843cbe2cd37646e350461a07feb7e6df4fa21aaf38886bcb13005e", + "sequence": 64, + "claim_type": [ + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.23729999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", + "publication_date": "2026-03-31T11:54:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", + "media_type": "news_article", + "sentence": { + "text": "More messages were exchanged where the victim accused him of raping her.", + "media_hash": "f3bc337bc650570c12163d6c4e426968c9bffd106707e1a6b77852ec", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "We've had many incidents, uh people dying of course in in the water, and I think the responsibility that the European Union, um carries in this issue and the fact that we are not addressing the roots of the problem of this, these my these migration these migration fluxes are really, are at the at the core and and the people who have not decided to stop immigration are greatly responsible for this tragedy that's happening on the French coast and on the channel with all these people going to the UK.", + "media_hash": "19ce0687dfa34808774fae97feede5509b72763fec80a69372dcd384", + "sequence": 1171, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.851145 + } + } + } +}, +{ + "title": "Breitbart Business Digest: This Is What Full Employment Looks Like", + "publication_date": "2026-03-31T21:43:27", + "publication": "breitbart", + "url": "https://www.breitbart.com/economy/2026/03/31/breitbart-business-digest-this-is-what-full-employment-looks-like/", + "media_type": "news_article", + "sentence": { + "text": "Immigration enforcement has sharply reduced the flow of migrant workers, and the labor market is adjusting to the new arithmetic.", + "media_hash": "8dea087ea3053d53d027c6d8c5abd57a364bda59f54e19687e7380aa", + "sequence": 16, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Breitbart Business Digest", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.810965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "The Villanova report, titled \"The Crisis of Unrepresented Immigrants: Vastly Increasing the Number of Accredited Representatives Offers the Best Hope for Resolving It,\" says:", + "media_hash": "4bcbbbcb21484192f0efdf620974a3bf649ab5941b3363e3101bd1f9", + "sequence": 15, + "checkworthiness": { + "fullfact": { + "asylum": 2.7846200000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "Similarly, Reuters and ABC News are tracking deaths in migrant detention centers, and as of March 31, have reported 14 deaths.", + "media_hash": "713d9df5c16e21860315e5204557b25b92d92e53290e85ef35b0fa66", + "sequence": 62, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Reuters", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "ABC News", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.772635 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", + "publication_date": "2026-03-31T11:20:25", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", + "media_type": "news_article", + "sentence": { + "text": "Migrants who have legally lived and worked in the UK for years could see themselves deported if Reform scraps permanent settled status.", + "media_hash": "7676de25befbd6fe482f903c6c2d8e300cdb451f9f60f16d4863b84b", + "sequence": 19, + "claim_type": [ + "correlation", + "rules" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Politico", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.7705450000000003 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "The business-backed Cato Institute downplays the scale of deaths by arguing that migrants' arrest rates are lower than those of the U.S. population.", + "media_hash": "4e4e40cb73f5e10dc2979d3c05bba2e2b8568734b7e76baae82de789", + "sequence": 69, + "claim_type": [ + "quantity", + "support" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.3328 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.75796 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.75796 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T17:36:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "It comes as specialist French police units attempt to intercept small boats on canals and within 300 metres of the shore.", + "media_hash": "8be62b914e39a3912e4bf9fcd601f1172076b689f50a04aebfe5d170", + "sequence": 43, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.748535 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 0.0 + }, + "maldita": { + "asylum": 2.748535 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "A Home Office spokesperson said: \"France is our most important migration partner and together our joint work is bearing down on small boat crossings.", + "media_hash": "a0df3c35dd6f2df9f61023ecc16a6781670dce376fbb6a4da3265701", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Home Office spokesperson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Normally during the winter months we see a drop in the amount of boats making the journey.", + "media_hash": "70e36eb4c9a5aa9da8c9baa754c19fafb45cec8bf5905d85eb1c1455", + "sequence": 309, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.72968 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "Normally during the winter months, we see a drop in the amount of boats making the journey.", + "media_hash": "8d7686119bfcc72ddf4e65fb7b30f3be8f9ecb4b785e73701e05de30", + "sequence": 1147, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.72968 + } + } + } +}, +{ + "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", + "publication_date": "2026-03-31T16:59:32", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", + "media_type": "news_article", + "sentence": { + "text": "A migrant who raped a customer while he was working as an Uber Eats delivery driver has been jailed for 44 months.", + "media_hash": "c75a6cfaacca8e5b9ad15dcd27850ecfea32013bba28b36a9349dc59", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.3781 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.712725 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.712725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "In all, just 2,064 out of 6,233 attempted crossings have been stopped.", + "media_hash": "d837b97c295d9d1dffc39d1eaf8c0302882a7445991251093065b5ef", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.6987249999999996 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 3.2500299999999998 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.6987249999999996 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "And it wouldn't make any difference whether we agreed to a further 365 million or not.", + "media_hash": "6804478c228b0fc26ca9f908872fbf8f60bb54667dbbf441b12030c1", + "sequence": 2466, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.6987249999999996 + } + } + } +}, +{ + "title": "Breitbart Business Digest: This Is What Full Employment Looks Like", + "publication_date": "2026-03-31T21:43:27", + "publication": "breitbart", + "url": "https://www.breitbart.com/economy/2026/03/31/breitbart-business-digest-this-is-what-full-employment-looks-like/", + "media_type": "news_article", + "sentence": { + "text": "Net immigration ran at roughly three million a year, creating a labor supply so abundant that employers could hire aggressively while workers cycled rapidly from job to job.", + "media_hash": "5e4d00479295a9a95ac52c99c7e73890b87b6c146309b8349d5d0e19", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And of course, we need to have much stronger policies in saying if you are caught, uh being illegal as an illegal migrant, you cannot, you will be sent back.", + "media_hash": "1a9c5744a5406a321f35dc53cd7ebf7bc1b3454fc998ef6d8ddc7d2e", + "sequence": 1176, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.6867799999999997 + } + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Britain is on a \"catastrophic\" path headed for \"sectarian violence,\" says the entrepreneur tasked with selling Reform UK's hardline migration policies - and talking up Christianity.", + "media_hash": "9c7b82a0766ff18b87e963f697c1b098853225b14e0c5cbe8456253a", + "sequence": 1, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Yusuf says if Britain stays on its current trajectory \"we're headed to sectarian violence in this country.\"", + "media_hash": "263078a517738e373243986dd0af0ed12b95094f1891007062c99389", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", + "publication_date": "2026-03-31T11:54:38", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", + "media_type": "news_article", + "sentence": { + "text": "After delivering the food at midday he returned to the property at 5pm where the harrowing sexual assault took place (file image)", + "media_hash": "e210741d3b11d57cce5bc610124c6b7b3263718c3cf414ccbead144f", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jitendrakumar Prajapati", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T16:37:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "He told a French parliamentary committee last week that such funding would 'be extremely dangerous for migrants, for the security services, and for France.", + "media_hash": "ff0ea8f13dcaf16b28b2a0633915b8a5a8ee4013baacec99014f5e69", + "sequence": 38, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "France", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Xavier Ducept", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "French parliamentary committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.652965 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "Just 90 minutes later at around 6am he allegedly helped target a 'visibly intoxicated' female as she was leaving the club before raping her with two others on the beach, pictured", + "media_hash": "3e8a0fa6e46e31dd5873c6e43230e92904a15cfb1f5ab23382be653f", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Ibrahim Alshafe", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Abdulla Ahmadi", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Karin Al-Danasurt", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 2.652965 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "ICE Urges Virginia Gov. Abigail Spanberger to Honor Detainer for Illegal Alien Accused of Murder", + "publication_date": "2026-03-31T23:19:26", + "publication": "breitbart", + "url": "https://www.breitbart.com/politics/2026/03/31/ice-urges-virginia-gov-abigail-spanberger-to-honor-detainer-for-illegal-alien-accused-of-murder/", + "media_type": "news_article", + "sentence": { + "text": "ICE is calling on Virginia Governor Abigail Spanberger and Virginia's sanctuary politicians to not release this murderer back into our communities.", + "media_hash": "e2d005a82a0dcc2cce2ea4b7142b27b4c7ae0bf3eaa5bb9115d12e2d", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Immigration and Customs Enforcement", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "These crossings are extremely dangerous and the defendants had no interest in the safety of those making the journey aside from ensuring they received their payment and made significant profits.", + "media_hash": "ae35f64dedfa7580c56ad95c9faff9704bc1b70bcae01250b54df992", + "sequence": 29, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Hop Nguyen", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hoang Nguyen", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Saju Sasikumar", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.652965 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "As weather improves, we'll hear from a fisherman in the channel this morning in about five minutes time, who says he's seen more crossings in the last few days than at the same time in the last few years.", + "media_hash": "8833a41eb50326c17cc0378d7cf54a2d7c3f4b37685929e88fef5baa", + "sequence": 1119, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.649215 + } + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "British taxpayers will now be forced to fork out an extra \u00a316 million over the next two months while negotiations continue.", + "media_hash": "9612e1e765d0d96a8cf197bd036fab62255227db8d5816e1fadf53f6", + "sequence": 4, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.649215 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Then there's scrapping Britain's permanent settled status for migrants, a move that could see people who have legally lived and worked in the U.K. for years deported.", + "media_hash": "22055ba89bff8ede10559b0601425b21df6acec2d080eb74c3dbd1c7", + "sequence": 138, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.62201 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", + "publication_date": "2026-03-31T12:47:34", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Dutka added: 'The boats were managed by third party criminal syndicates after deducting those costs, for example accommodation, profit per migrant would be \u00a31,500 to \u00a32,000.'", + "media_hash": "a2a9a7804c9f652ff0764e52dc05839d74d0f5c4f7b05665c0f59e54", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Anna Dutka", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.61247 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.61247 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.61247 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "At a press conference at Heathrow on Tuesday, he said: \"Tomorrow will be a very busy day in the English Channel, and it wouldn't make any difference whether we agreed to a further \u00a3365m or not. Even if the French do stop boats from crossing, the same people come back the next time there is a calm day, and it's all about pull factors, it's all about the fact you've got a 97.5% chance, whoever you are, of staying in the United Kingdom if you illegally cross the Channel in a small boat.\"", + "media_hash": "e6da619b9d485acb5d3f0697330845d927ce0ba3607f6e475626bb50", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Nigel Farage", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", + "publication_date": "2026-03-31T20:30:30", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", + "media_type": "news_article", + "sentence": { + "text": "The two were part of a larger international organised crime group bringing Vietnamese migrants into the continent, with Ramal Briem jailed for more than 10 years on March 26 for his role in the same crime group.", + "media_hash": "cefa6d8e1d9a13999736203f050df9ca70f783e5966ad09f7926dc9f", + "sequence": 17, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Ramal Briem", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.61247 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "It is a huge problem, it will not get better until we address the roots of this problem and until we stem the influxes upstream.", + "media_hash": "287333c9f7ee7bedb4ba883a8d7121511931dec3213c1914228cd88e", + "sequence": 1205, + "checkworthiness": { + "fullfact": { + "asylum": 2.6029299999999997 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "I also think the UK government needs to do more of course, they need to say any illegal any illegal migrant in the UK that's found in the UK is going to be sent back and cannot come back to the UK.", + "media_hash": "6a98f6bada7bc7ce3c205e8584c220bca6abbb7adfbdcdfa55d52588", + "sequence": 1180, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.600525 + } + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "\"We're headed for not just a bad outcome, but a catastrophic one, where everybody's now divided amongst racial or religious lines, voting accordingly, the economy is not growing, the most productive people are leaving,\" he warns.", + "media_hash": "3c88d95d980b423700e5ab0cad9f147826e1177cf9f75c1a8b54dbfb", + "sequence": 23, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.59811 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "As long as the the the the people know, the human traffics know and these people know, once I'm in Europe, once I'm in France or once I'm in the UK, I will not get sent back.", + "media_hash": "86ba571ccf91af22e18d648d23dae918a72ad02cb64c1ce5ac9f001d", + "sequence": 1177, + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + } + } + } +}, +{ + "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", + "publication_date": "2026-03-31T21:57:07", + "publication": "breitbart", + "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", + "media_type": "news_article", + "sentence": { + "text": "But it likely has missed many American victims because police, politicians, and the media do not want to know the murderers' legal status, he told Breitbart News.", + "media_hash": "0437488329f3188829b892e50ce69ebdbd3d6bdbbdfba2c4fb74dee8", + "sequence": 15, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Orrin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "But this month, the senior DOJ attorneys who oversaw the program were reassigned and the program was effectively neutered.", + "media_hash": "1571d6e0c86a97c4eff0a6f38b7b4d654260bedc9661c9991a931473", + "sequence": 6, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", + "publication_date": "2026-03-31T11:20:25", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", + "media_type": "news_article", + "sentence": { + "text": "Reform plan to stuff Lords with '900 peers' to push deportation plans", + "media_hash": "ac3593e4fd69fd5d8a10f98b815815c91a1e84149b04eb899c974882", + "sequence": 0, + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Is there a sense that the last deal, I mean, everyone's very concerned about it coming to an end, but did it actually work?", + "media_hash": "49cd27e6a62f5ed4df525b0df35ee3dbebd1fea5393b76c84d6bda84", + "sequence": 2457, + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + } + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "So I think it's it's a problem that we share and that we cannot solve by by trying to send the people back once they've traveled so far, um, and when there's so many of them on the French coastline.", + "media_hash": "c6b83527834f028f566802e5449992d212b0b7d29b690f0ea5534288", + "sequence": 1204, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.58644 + } + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "Only 209 transfers were agreed.", + "media_hash": "86cb207a63483aa1aa6c60406e6f559f9ef327c6e3c1e07f069b49f8", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5769 + } + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "The two month extension to the patrol deal is being backed by \u00a316.2m in UK funding, according to the Home Office.", + "media_hash": "db31695f62e79aa831f096fba8dacf57d3a19b5fe808a68f000bc742", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5769 + }, + "demo": {}, + "dev": { + "blah": 2.5769 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "There was a really interesting argument made yesterday in a French parliamentary committee by the French, by the man responsible for but basically for boats and and this, boat security policy, small boats.", + "media_hash": "e685bbf7069148101ece166da040da1339d192ff8776bb75fe9ad7e9", + "sequence": 1208, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5503549999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "Negotiations for a new 650 million pound channel migration deal are currently deadlocked hours before the current three-year deal expires at midnight tonight.", + "media_hash": "370347f06e03e70a6cc24be9d0d8805b9c8502b4563163c2a70b3900", + "sequence": 2436, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "As you just heard, you know, as you just said, the 650 million pound cost over three years compared with the last deal which cost 475 million pounds.", + "media_hash": "213a186c7ba92d7ab6daa8cc7801cd062503e9a59607a3b41521e77e", + "sequence": 2443, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "Out of 6,233 attempted crossings in the first 12 weeks of this year, some 2,064 (33.1%) were stopped.", + "media_hash": "9831beb872044c95d25abac87b65d6c7326e9db4747d306013d47c46", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.030299999999999994 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "More than 4,400 migrants have crossed the Channel this year by the end of last week.", + "media_hash": "d30d80c002db1933e6f11f1b18f6e85968f7ebe0f5768eaa5a53b299", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.28159999999999996 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "That has only had about 300 people who have left the UK from it and the same amount of people are coming in return.", + "media_hash": "f95d31947f977e0ce84fbafbedb7c8566d5dda2bd380f0a23c952e2c", + "sequence": 458, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T17:36:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "More than 4,400 have already made the crossing since the start of the year, despite poor weather.", + "media_hash": "171077844980ca1a3553b92e1d2ee7c368d9c127a38e78e711121eef", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "maldita": { + "asylum": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "The program was huge and involved more than 850 nonprofit migrants' rights organizations.", + "media_hash": "75038e2400e3c6f5b3834983279534c2148e4e8d5f19a930acb772ec", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T20:48:20", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "Figures published by the UK Home Office show that French interception rates have fallen to the lowest on record so far this year.", + "media_hash": "b23b6bcd2629cfc8f09332954f8a6a80d2fe07880ae4bfa68fbf6e59", + "sequence": 38, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "UK Home Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 0.0 + }, + "pa-media": {}, + "maldita": { + "asylum": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France in last-minute talks to renew small boats deal", + "publication_date": "2026-03-31T11:51:51", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Under a 2023 agreement signed by then Prime Minister Rishi Sunak, the UK has paid \u00a3476m to France for extra patrols to disrupt smuggling gangs.", + "media_hash": "d7677834d5b2d04b4f1c0dae926564a115386510b418ada4ff6ecd2c", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC morning: Main interview", + "publication_date": "2026-03-31T06:49:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/403741", + "media_type": "transcript", + "sentence": { + "text": "This is the original three-year deal, 475 million pounds, struck by Rishi Sunak, I must add, comes to an end I understand at midnight.", + "media_hash": "e408888e913160d2f76307712853e71f1846c451baf960627631877b", + "sequence": 61, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Sir Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "That's down from 35.1% last year and 36.7% in 2024.", + "media_hash": "f5d11e08fc2436ebb2d89128281cb7167415f3aac9fbf087fac4d39c", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", + "publication_date": "2026-03-31T04:00:31", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", + "media_type": "news_article", + "sentence": { + "text": "The figure reached more than 300,000 by 2015.", + "media_hash": "7a4c3b8954fb9420143941ff06d7c9a92b539b4238a6147494edd691", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "The then Tory government announced the \u00a3478m package in 2023, saying it would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", + "media_hash": "04608a74036d16f5094be9e756864230aa19bbfcc4b3e4448845e5d2", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", + "publication_date": "2026-03-31T17:36:12", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", + "media_type": "news_article", + "sentence": { + "text": "Shabana Mahmood has signed off a \u00a316.2 million cheque for a two-month extension to the current deal with Paris, which subsidises French beach patrols.", + "media_hash": "e881c63242095cf0d917c8738ba7150948eb30894e2bbf86688ab69b", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": { + "politics_of_food": 2.5459449999999997 + }, + "maldita": { + "asylum": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Migrant small boats beach patrol deal with France extended hours before deadline", + "publication_date": "2026-03-31T16:26:00", + "publication": "mirror-politics", + "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", + "media_type": "news_article", + "sentence": { + "text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025.", + "media_hash": "9dcb08b7f8a62955f5c4c2ef078965357524a400a000882449b217a3", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "He's told Times Radio the number of crossings is going up.", + "media_hash": "f36cc96270e8f48ae86b4715a3a8f856197408a70baa5a412a04a666", + "sequence": 308, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "These accredited non-attorney representatives, for instance, helped 7,779 migrants with their removal cases between 2010 and 2020, Villanova added.", + "media_hash": "4351e1ef71ec691823fcc558f8980eb2c98bb4ed4a1552cb31d039ca", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Only 33% of crossings are now being stopped (Image: Getty)", + "media_hash": "159ff6aaa172d3be6ae4ca336a304340f51c5c0a6a558ec16bef3a1c", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "It saw the UK paying \u00a3476million to France to fund extra patrols to catch smuggling gangs.", + "media_hash": "e7360dc4e2366eecaf426b0783c5b0de889c5ad0932a658b75fa906b", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Under the current deal, nearly 700 law enforcement officers are on the ground patrolling beaches, using drones and buggies to stop people getting on boats.", + "media_hash": "40e9d534c0cdceed69a69b2d41fd154f5cfb5fa6d2dc8c3609933b75", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", + "publication_date": "2026-03-31T05:21:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", + "media_type": "news_article", + "sentence": { + "text": "The number intercepted as they tried to cross the Channel in the first three months of the year was the lowest on record.", + "media_hash": "28201be9c81b8f95e1806fed5292e6dfd8a5670b84a3fba930a32cf8", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 104465, + "score": 0.04600000000000004 + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "The government is trying to renew it, try and, you know, even potentially putting in extra money into it, 650 million over three years.", + "media_hash": "4b2ac835aae544617b0307cf6d62b1ddee041f37f66e1426abb67751", + "sequence": 446, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "Since then, the number of crossings has increased, with 41,472 people arriving in the UK by small boat in 2025.", + "media_hash": "667d16251071efe4057aa12be56872b293f482646a425a9a1c8c79cb", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T16:38:28+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/sarah_bool/status/2039019506199073104", + "media_type": "social_post", + "sentence": { + "text": "Since Labour came into power, numbers in such accommodation have increased by over 6,000, with continued pressure on communities like ours in South Northamptonshire.", + "media_hash": "707c30be589a0db317595fffdc04ee6534551ae14e27f89d561fe2f5", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "Home Secretary signs last-minute France migrant deal as...", + "publication_date": "2026-03-31T16:34:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", + "media_type": "news_article", + "sentence": { + "text": "The existing near \u00a3500 million arrangement was due to end at midnight on Wednesday morning and the extension has been signed while the UK and France continue to thrash out a deal.", + "media_hash": "0ae145907e6996f877a0be2dd01162e9dbbe5a96679b2e6290d9794e", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "But wouldn't that involve appointing 900 or so new Reform peers to get a majority from a baseline of zero, I ask?", + "media_hash": "c44518368e9ee769b3f07e83918d331fd2d29b708bc27afd9bf37ce4", + "sequence": 132, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", + "publication_date": "2026-03-31T01:15:21", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", + "media_type": "news_article", + "sentence": { + "text": "By 2024, that had fallen to below 3,000, according to Migration Observatory analysis of Home Office numbers in October.", + "media_hash": "87d62197d2c9f49b064231b15f4e8f3fd937422cec4d7d8bf0b7b212", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T01:07:13+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BobBlackman/status/2038785150012502264", + "media_type": "social_post", + "sentence": { + "text": "So we were net recipients by over 1,000.", + "media_hash": "278429a97be7ee2e159dfcb7549f15c335ea78dc99beecefbc770ace", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + } + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "media_hash": "8dc2e75142868d7ad6c53191efdad547865c06986da91860022566d9", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "The UK will pay France an extra \u00a316.2m to keep police patrolling Channel beaches and prevent a surge in small-boat crossings after negotiators failed to agree a permanent deal before a midnight deadline.", + "media_hash": "5fb3790ae1e8bb2b20647589135125e0c0b58b39173f23415731b5c5", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", + "publication_date": "2026-03-31T18:01:06", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", + "media_type": "news_article", + "sentence": { + "text": "At present, the UK pays nearly two-thirds of the annual cost of patrols in northern France.", + "media_hash": "1dc4fbd1e902fd894c15d1acc732ac0e59cce8ef968c814c6d96fea7", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", + "publication_date": "2026-03-31T16:33:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", + "media_type": "news_article", + "sentence": { + "text": "Some 6,233 attempted crossings took place in the first 12 weeks of the year, with only 2,064 being stopped according to reports by the Telegraph.", + "media_hash": "b8b657a295f40d26caf6f537de73a2f8a614758af0410a155580e9a3", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK and France extend talks over new small boats deal", + "publication_date": "2026-03-31T16:17:07", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/c3exveglpe3o", + "media_type": "news_article", + "sentence": { + "text": "Under a three-year agreement signed in 2023, the UK has paid \u00a3476m to France for extra patrols to disrupt migrant smuggling gangs.", + "media_hash": "9989b5d386ca865718628a2d75fc80457cbb440164e3e02fd587e52b", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "dev": { + "blah": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Retired NYPD sergeant arrested in corruption probe...", + "publication_date": "2026-03-31T14:46:17", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "According to city records, the city agreed to pay Fort NYC Security more than $7 million to provide security services from 2023 to 2027, including at a Bronx hotel used as a homeless shelter.", + "media_hash": "88f009690e57bbf8531f26bfbc4721a980f77c2c1ef9e531415aead0", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": { + "politics": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "Activists in Illinois note that they have served approximately 948 individuals in Central and Southern Illinois, according to WGLT.org.", + "media_hash": "0a3636d1a88d76952727b20183bafb59185ecff718da493a508496f1", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T09:30:05+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/spectator/status/2038911700590617073", + "media_type": "social_post", + "sentence": { + "text": "And now the Boriswave, the low-paid millions who arrived earlier this decade, are soon to be granted Indefinite Leave to Remain (ILR), giving them access to benefits and housing at taxpayers' expense forever.", + "media_hash": "6b3bca40f6b4d04c2d41182c6e2949c622e22397900c14c946dc1b8d", + "sequence": 3, + "claim_type": [ + "correlation", + "support" + ], + "claimer": [ + { + "name": "David Shipley", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.545585 + } + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "All three men are charged with rape while Al-Danasurt - who is said to have filmed the attack and egged them on - is additionally charged with sharing intimate videos of the attack.", + "media_hash": "139ec611426a3a19f07a928298eb006b3c14fb4bcd1abdc12f697cb5", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.540725 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 2.540725 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", + "publication_date": "2026-03-31T21:23:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", + "media_type": "news_article", + "sentence": { + "text": "The roster of approximately 850 recognized organizations includes public libraries, job training and workforce development programs, domestic violence shelters and treatment programs, English language programs, labor unions, parishand faith unit-based charitable organizations and ethnic ministries, family resource centers, DREAMer programs, and other student groups.", + "media_hash": "0719f1a6b3f418b1daaa0016e2774785300962f94cab708b8a9752bd", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5315000000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "asylum": 2.5315000000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", + "publication_date": "2026-03-31T02:00:00", + "publication": "politico", + "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", + "media_type": "news_article", + "sentence": { + "text": "Yusuf doubles down on his pledge to embark on an unprecedented mass deportation program and rip Britain out of its international human rights treaties.", + "media_hash": "14e29886d470667050747fb30f72ddaebc99461977f5461c410b838b", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Zia Yusuf", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.5271350000000004 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", + "publication_date": "2026-03-31T00:46:37", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", + "media_type": "news_article", + "sentence": { + "text": "He allegedly raped a lone drunk female on a beach after spending part of the evening chatting up another woman", + "media_hash": "e0d4bc970efa8c19335a795e7e72e36164b733f83aa8f16302bc7440", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "asylum": 2.52653 + }, + "demo": {}, + "aapfactcheck": { + "ethnic-minorities-immigrants-race": 2.652965 + }, + "pa-media": {}, + "maldita": { + "asylum": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Average energy bills are forecast to rise by almost \u00a3300 from July while motorists are already counting the cost of the war, with drivers paying \u00a3544 million extra for fuel since the US-Israeli bombing campaign began.", + "media_hash": "10be2818fd3b8c65be2b7964a7719dae9df7f9341ccb2e4623b3977d", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 5.36473, + "energy": 5.36473 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "He's twice in the last week, or at least his administration has, mocked our armed forces once again.", + "media_hash": "061a58d830b6a32637eac7cb9f89c1d0602c25e1fef3129a7831dd28", + "sequence": 450, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.61247, + "trending": 4.61247 + } + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", + "media_hash": "32b8b12fe5b9ad894802d26b6f80a43dbba07e0e52246e634d1bbedd", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.556405, + "energy": 4.556405 + }, + "demo": { + "politics_of_food": 2.556405 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T15:03:10+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/jcartlidgemp/status/2038995523269480851", + "media_type": "social_post", + "sentence": { + "text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", + "media_hash": "fabe7c09c45efe890a986c3c7e29dd896d0c00fe58aeeedaffb2841e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 4.545945, + "defence": 4.545945 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Well, what I've just been saying, we need to increase our defence spending, a fair bit, not to the full 3%.", + "media_hash": "50e53cefea79765421c61c0963079f61e8eb1d413f8ac06599b80bbc", + "sequence": 665, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Alby Amankona", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.409655 + } + } + } +}, +{ + "publication_date": "2026-03-31T14:29:31+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/TanDhesi/status/2038987056915894780", + "media_type": "social_post", + "sentence": { + "text": "Our changing world and increased #threats mean that historic #defence spending targets are no longer enough.", + "media_hash": "a52bb4d43eb775d24911d10fa9448406e7ccb4125576493967796e5b", + "sequence": 0, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Our changing world and increased #threats", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.386095 + } + } + } +}, +{ + "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", + "publication_date": "2026-03-31T05:00:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", + "media_type": "news_article", + "sentence": { + "text": "The former EastEnders actor and friend of the Armed Forces is behind a drive, launching today, to secure the final \u00a32.5m needed to open the Royal Marines Experience at the National Museum of the Royal Navy.", + "media_hash": "a19bfb82ee9919852cc9e970d236365d047ad454c206f10ccc815ba9", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "National Museum of the Royal Navy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Donald Trump tells UK to secure Strait of Hormuz and 'go get your own oil \u0301", + "media_hash": "b9fbe87bdfbac8598b0857773a1f9f39ad96e50a0d2de3b201c229e2", + "sequence": 0, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 4.29984, + "defence": 4.29984 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Russia hit by brutal crime wave after Putin frees criminals to fight in Ukraine war", + "publication_date": "2026-03-31T07:38:54", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/breaking-russia-hit-brutal-crime-36946830", + "media_type": "news_article", + "sentence": { + "text": "Putin has released tens of thousands of killers, rapists and thugs on condition that they are conscripted into the Russian armed forces.", + "media_hash": "9bac114385a5c934f7aafb16009fc20510edafb104b593298f65c2cc", + "sequence": 23, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.163775 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I lost friends in Iraq. Trump is making the same mistakes", + "publication_date": "2026-03-31T11:30:00", + "publication": "inews", + "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", + "media_type": "news_article", + "sentence": { + "text": "President Trump is right, the US armed forces are the best equipped, best trained, and most effective in the world.", + "media_hash": "848be15b6f5f4f6d70816fefc7a06734a2db978f0046bee239dc2683", + "sequence": 2, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.12379 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I lost friends in Iraq. Trump is making the same mistakes", + "publication_date": "2026-03-31T11:30:00", + "publication": "inews", + "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", + "media_type": "news_article", + "sentence": { + "text": "Donald Trump shows absolutely no sign that he realises he's got to avoid it.", + "media_hash": "16d30f7e1741a4ded543b0c7939ed1c0d8aa1d9d4013dac19fe8ce3e", + "sequence": 45, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.10166, + "trending": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "Where our armed forces are being insulted routinely by Donald Trump, where today we have a threat that the US won't come to our defense in our time of need, because of Donald Trump.", + "media_hash": "ed2cd0d83230f484ef4684a301eeadd9ae74988ab5ae7bb35496271c", + "sequence": 252, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.10166 + } + } + } +}, +{ + "title": "Russian war machine blasted by missiles and drones as insiders slam Kremlin army", + "publication_date": "2026-03-31T09:07:19", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/russian-war-machine-blasted-missiles-36945331", + "media_type": "news_article", + "sentence": { + "text": "Podolyaka's report reversed years of messaging that the Armed Forces of Ukraine (AFU) troops were inferior to Russia's military.", + "media_hash": "e0f942483edee527b1d75b9c60f5eea018f4c3d0a32213907e773599", + "sequence": 16, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Donald Trump said the UK and other countries which did not take part in strikes against Iran should secure the Strait of Hormuz themselves.", + "media_hash": "2c23ec91f59c98872c71333f282a2991eccb1cbdf60ab1354339a626", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.10166, + "defence": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "Donald Trump dramatically washed his hands of the crisis and told the UK to 'go get your own oil' today as the strategic Strait of Hormuz remains blocked.", + "media_hash": "b9aca7609adae73af0c7bc344e1c4f0424261234f3d037b6ae241ef6", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 4.10166, + "defence": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "trending": 3.975225 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "King Charles\u2019s state visit to US will be \u2018humiliation\u2019 amid Iran war", + "publication_date": "2026-03-31T13:39:13", + "publication": "guardian", + "url": "https://www.theguardian.com/uk-news/2026/mar/31/king-charles-state-visit-to-us-to-go-ahead-buckingham-palace-confirms", + "media_type": "news_article", + "sentence": { + "text": "MPs have privately expressed concerns there is potential to embarrass the king if the US president continues his criticisms of the UK's armed forces before or during the trip.", + "media_hash": "5b3ac0a290f2504983fbda7d7a8b9ad149528ee3da2a79db138e14ed", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 4.10166 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 3.10166 + }, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Moment British warship crew scramble to intercept Russian submarine 'at risk of exploding' before tracking it through English Channel", + "publication_date": "2026-03-31T16:57:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694227/Moment-British-warship-crew-scramble-intercept-Russian-submarine-risk-exploding-tracking-English-Channel.html", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Keir Starmer said on Thursday he had authorised the military to board and detain Russian ships in British waters to disrupt a network of vessels that his government says enables Moscow to export oil despite Western sanctions.", + "media_hash": "4ee21050393bdbe46ee01b1b7d9f1567b1dd5edb38bd395b38487d8e", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Prime Minister Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.10166, + "starmer": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", + "publication_date": "2026-03-31T05:00:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", + "media_type": "news_article", + "sentence": { + "text": "Lieutenant General Sir Robert Fulton, former Commandant General Royal Marines, said: \"This \u00a32.5m target represents more than a financial goal - it represents a national commitment to our Armed Forces and remembrance.", + "media_hash": "cb69123a263a54439819b2bf84ea8b6756fa6e558387a833b654ffca", + "sequence": 23, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Lieutenant General Sir Robert Fulton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 4.061165 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 4.061165 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And I don't really see the right level of seriousness when it comes to approaching those issues, whether or not they're security issues, to do with defence spending, economic issues, to becoming more economically independent of the US.", + "media_hash": "9af0d326a2f43f75ef1ef21480a28fc12e3d914843fb6508d4aa655f", + "sequence": 650, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Alby Amankona", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.96055 + } + } + } +}, +{ + "title": "Petrol for ambulances and new speed limits - the UK's fuel shortage plan", + "publication_date": "2026-03-31T13:11:52", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/petrol-ambulances-new-speed-limits-36947969", + "media_type": "news_article", + "sentence": { + "text": "A reserve fleet of fuel tankers can be deployed at short notice to increase distribution capacity, while the Armed Forces could also be called upon to assist with deliveries if required.", + "media_hash": "9e5446e16b0841c0e8590b3602bb2132a23e09a28220826e755e4eed", + "sequence": 32, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.866315 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Diplomatic nightmare\u2019 for King as he is sent to try and fix Trump fallout", + "publication_date": "2026-03-31T17:38:47", + "publication": "inews", + "url": "https://inews.co.uk/news/kings-mission-fix-trump-fallout-revealed-from-banquet-to-congress-speech-4328034", + "media_type": "news_article", + "sentence": { + "text": "But as if to highlight the diplomatic tight rope Charles and Queen Camilla must walk, the announcement came less than an hour after President Donald Trump launched another blistering attack on the UK for failing to give more direct help on his attack on Iran.", + "media_hash": "8d0040153c4e1b1fdd1dbb5ed4ad9d2d035bf3c20f6c2e809be9e8dc", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.748535, + "defence": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Keir Starmer has made announcements about increasing defence spending, but actually in the financial statements that we've heard so far, it's not clear how we're going to meet those new targets that have been set.", + "media_hash": "d7bfc7a6591e8b274c19dc04c6b22c633f5ce7cfe6f15d491c2c659b", + "sequence": 646, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Alby Amankona", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.748535 + } + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Of course, this administration and the United States Armed Forces will always act within the confines of the law.", + "media_hash": "7e9aca20c19fe091f61d2279b868ea466b94e6581dd219d4ed26eeb6", + "sequence": 103, + "claim_type": [ + "rules", + "support" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.734295 + } + } + } +}, +{ + "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", + "publication_date": "2026-03-31T05:00:00", + "publication": "express", + "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", + "media_type": "news_article", + "sentence": { + "text": "Designed as a place of inspiration, the experience will ensure extraordinary stories from the Napoleonic Wars, both world wars, the Falklands War, Northern Ireland, operations in Iraq, Afghanistan, and global humanitarian missions can continue to be told.", + "media_hash": "d5a28de067b2ee79c03a6fa2740130ca37ddcb948e3cf7bcdf5dbbe4", + "sequence": 7, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.7135350000000003 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 3.7135350000000003 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", + "publication_date": "2026-03-31T16:48:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", + "media_type": "news_article", + "sentence": { + "text": "\"We recognise the interest that the Royal Family takes in us, and that is reflective of the armed forces' relationship with the nation. That's what it symbolises, that's what it signifies, and that's why it's so important.\"", + "media_hash": "a1fa544c7fc41a9ce56fa86ba0f686c1b59b388a8ef495d8c4b6de6a", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Admiral Sir Tony Radakin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.703135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump tells Starmer to \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T12:00:00", + "publication": "cityam", + "url": "https://www.cityam.com/trump-tells-starmer-to-go-get-your-own-oil/", + "media_type": "news_article", + "sentence": { + "text": "President Donald Trump has told Sir Keir Starmer that the UK will have to \"fight for yourself\" as the US would not provide any support in fuel supplies.", + "media_hash": "2d4faff07143dff1f45e8f5acf015e8f7fb9159eade650f1ef62e1f5", + "sequence": 4, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.653625, + "starmer": 3.653625 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "Despite the drop in 2024, suicide rates among active duty troops overall still have gradually increased between 2011 and 2024, while the National Guard and Reserve have stayed largely stable, the report said.", + "media_hash": "2bcf6edd96fcac228367ce8646ea209ca5a6c40e80c81096258d432f", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.648555 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", + "publication_date": "2026-03-31T18:54:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", + "media_type": "news_article", + "sentence": { + "text": "Donald Trump told countries including the UK 'go get your own oil' as he challenged nations to get supplies straight from the Strait of Hormuz", + "media_hash": "d1c791f931c5f5b8ebf991cc3f00274f60f44c4172a61090cbb45eec", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997, + "trending": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "King reflects on `difficult time\u00b4 in Middle East as...", + "publication_date": "2026-03-31T12:44:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694717/King-reflects-difficult-time-Middle-East-ex-forces-chief-honoured.html", + "media_type": "news_article", + "sentence": { + "text": "The King reflected on the UK's relationship with its allies at a \"difficult time\" amid war in the Middle East, the former head of the armed forces said as he attended Windsor Castle for his investiture.", + "media_hash": "33f12b22d3da1617c8ba3d34fa0d3c0b6af79c0b0a1ee56079a63a0c", + "sequence": 2, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "King", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Admiral Sir Tony Radakin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Submarine captain steps back after probe into contact with MP wife of alleged spy", + "publication_date": "2026-03-31T22:32:01", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25985953.royal-navy-probed-officer-contact-mp-joani-reid/", + "media_type": "news_article", + "sentence": { + "text": "Separately, the Times reported that Ms Reid, the MP for East Kilbride and Strathaven, left the Armed Forces Parliamentary Scheme (AFPS) last year following an alleged incident at Faslane with a different officer.", + "media_hash": "d91f90b574fbe688bc57f063ea11baab86950c76f563ef79b57df70e", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "NATO without America? A slow shift is already underway", + "publication_date": "2026-03-31T22:19:52", + "publication": "rtuk", + "url": "https://www.rt.com/news/636893-nato-without-america-shift/", + "media_type": "news_article", + "sentence": { + "text": "US President Donald Trump's approach to foreign policy is often dismissed as chaotic or erratic.", + "media_hash": "5efb265ebd81c87a520ab68390512a4f7fdccfe3baaa4d640b59eccc", + "sequence": 4, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "US President Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997, + "trending": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", + "publication_date": "2026-03-31T16:48:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", + "media_type": "news_article", + "sentence": { + "text": "Speaking to the Press Association after the ceremony, Sir Tony said: \"He reflected on my service and I reflected on his support to the armed forces, and how grateful I am for all that he and the royal family do for us.", + "media_hash": "6e4b8f96a1ba24fd63384061a9865c51cf1155c4aeed673427346024", + "sequence": 9, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018Diplomatic nightmare\u2019 for King as he is sent to try and fix Trump fallout", + "publication_date": "2026-03-31T17:38:47", + "publication": "inews", + "url": "https://inews.co.uk/news/kings-mission-fix-trump-fallout-revealed-from-banquet-to-congress-speech-4328034", + "media_type": "news_article", + "sentence": { + "text": "Ingrid Seward, editor-in-chief of Majesty Magazine, said: \"It's going to be a slightly tense situation because of his dissing of Starmer and British institutions starting with the armed forces.\".", + "media_hash": "44946d2058b6ab8afac8a46d49adb465f7bf689d1c53f64b0d2cb96d", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Ingrid Seward", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.5503549999999997, + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", + "publication_date": "2026-03-31T16:48:56", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", + "media_type": "news_article", + "sentence": { + "text": "Sir Tony described the relationship between the Royal Family and the armed forces as \"extraordinary\" and said their visits boost morale, adding: \"I think the armed forces really covet their relationship with the Royal Family and with His Majesty the King.", + "media_hash": "c8c47446d5baa601420577ba74a6a692ab09f9293b6baeecee8b4396", + "sequence": 12, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Admiral Sir Tony Radakin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More UK troops to be sent to Middle East, defence secretary announces", + "publication_date": "2026-03-31T15:49:58", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c7vq76g45rvo", + "media_type": "news_article", + "sentence": { + "text": "Visiting the UK Armed Forces at Dukhan air base, Healey said the government has extended the deployment of UK Typhoon jets to Qatar.", + "media_hash": "d0b575a458092b1209b2cb2d0bf74442acbc5a66f49e28eca7002b69", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Weak' Starmer faces fury for sending King Charles on official state visit to woo Donald Trump in the middle of major transatlantic rift caused by president bad-mouthing Britain", + "publication_date": "2026-03-31T15:04:03", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/royals/article-15695039/Weak-Starmer-faces-fury-sending-King-Charles-official-state-visit-woo-Donald-Trump-middle-major-transatlantic-rift-caused-president-bad-mouthing-Britain.html", + "media_type": "news_article", + "sentence": { + "text": "The King himself today reflected on the UK's relationship with its allies at a 'difficult time' as he gave a knighthood to a former head of the armed forces at Windsor Castle today.", + "media_hash": "a0f4df9d066214e194f2b30d82489a325f5cf55cdbcf78cafcdc7e63", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "King Charles", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "King reflects on `difficult time\u00b4 in Middle East as...", + "publication_date": "2026-03-31T12:44:49", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694717/King-reflects-difficult-time-Middle-East-ex-forces-chief-honoured.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Tony described the relationship between the royal family and the armed forces as \"extraordinary\" and said their visits boost morale.", + "media_hash": "cc3dfaf4f0fa7e471c1886e392cde8237cc5943be5bdd1a47983e002", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "King", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Admiral Sir Tony Radakin", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:18:20+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/BenObeseJecty/status/2038878547180237226", + "media_type": "social_post", + "sentence": { + "text": "Last week Keir Starmer made a point of announcing that he would allow our forces to conduct maritime interdiction operations to board Russian Shadow Fleet vessels in the Channel.", + "media_hash": "789f1ed51a8ed1e0ce76b084950b07a3ae2fcc4758c7e5b635d75ed1", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Keir Starmer", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997, + "starmer": 3.5503549999999997 + } + } + } +}, +{ + "title": "How Pakistan won over Trump to become an unlikely mediator in the Iran war", + "publication_date": "2026-03-31T02:33:18", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cy91vrzxn34o", + "media_type": "news_article", + "sentence": { + "text": "The head of its armed forces, Field Marshall Asim Munir, is in US President Donald Trump's favour.", + "media_hash": "4417d2b4d53ed64298c37f9d995354468b07173ea6cd0bf494914aed", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + }, + "demo": {}, + "dev": { + "blah": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "The Tories and Reform have been very clear about how they would get the money for defence spending, but actually, Labour and the Greens, how are they going to, how are they going to get that?", + "media_hash": "28a21747f1ceb8bf01652bac9d43e12fe370180b5e26a8519a01feb2", + "sequence": 673, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Alby Amankona", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.5503549999999997 + } + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "The overall trend in suicide rates for active duty service members \"mirrors the increase in the U.S. population suicide rates over time,\" the report said.", + "media_hash": "ea68f7379d4d2769e4b4f1e6d012f33fbec970896fb9bfcc977b6f84", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.548465 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Europe\u2019s escape plan from Trump\u2019s chaos machine", + "publication_date": "2026-03-31T23:00:00", + "publication": "neweuropean", + "url": "https://www.thenewworld.co.uk/paul-mason-europes-escape-plan-from-trumps-chaos-machine/", + "media_type": "news_article", + "sentence": { + "text": "Germany's decision to remove defence spending from its fiscal rules will put it on a course for debt to reach 100% of GDP.", + "media_hash": "da3b34fbea160f5fa97c618bc4607f09f27a6848be8fbed3e42c291f", + "sequence": 31, + "claim_type": [ + "quantity", + "rules", + "predictions" + ], + "claimer": [ + { + "name": "European governments", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Germany", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.534885 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", + "publication_date": "2026-03-31T11:35:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", + "media_type": "news_article", + "sentence": { + "text": "Ministers also have a series of measures to maintain supply in the event of a shortage - such as a fleet of reserve fuel tanker vehicles; calling on the Armed Forces to make deliveries; or releasing emergency oil stocks which the UK is obligated to hold.", + "media_hash": "0999e4bcc71fef834056284328aa5a31a31a340aae6f44c9d480a93f", + "sequence": 34, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.436025 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "WASHINGTON (AP) - Fewer American service members died by suicide in 2024, with the number of deaths falling by 11% to 471 from a year earlier, according to a Pentagon report released Tuesday.", + "media_hash": "99b274d5366dba6bc363772ae2ce6a44934ba0d037499bc6453cc421", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "According to the report, nearly half of the active duty service members who died by suicide in 2024 had a mental health diagnosis such as alcohol use disorder, depression or anxiety.", + "media_hash": "13b6f4977a4c699e3c96c7472ee80ed4ef24da67bdf26d55cd7ea47a", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.3956850000000003 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'A million things could go wrong' - why seizing Iran's uranium would be so risky for the US", + "publication_date": "2026-03-31T23:16:15", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cvglv5v4yvpo", + "media_type": "news_article", + "sentence": { + "text": "The material can be fairly quickly enriched to the 90% threshold needed for weapons-grade uranium.", + "media_hash": "5ed680d89c33d6a6440fa4b2636a89722f518b3308a2fc1a9aba7147", + "sequence": 23, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.281555 + }, + "demo": {}, + "dev": { + "blah": 3.326955 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Germansplaining: Face to face with Trump, what do you do?", + "publication_date": "2026-03-31T23:00:00", + "publication": "neweuropean", + "url": "https://www.thenewworld.co.uk/tanit-koch-germansplaining-face-to-face-with-trump-what-do-you-do/", + "media_type": "news_article", + "sentence": { + "text": "During Merz's last visit to Washington DC in early March, Trump laid into Spain's PM, Pedro S\u00e1nchez, over his refusal to allow US access to Spanish air bases for strikes on Iran, and for failing to meet Nato's defence spending target of 5% of GDP.", + "media_hash": "a6d291e685444543cf1750dbb4d6e5a086587209c0acacc6342b3f4a", + "sequence": 5, + "claim_type": [ + "quantity", + "support", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.27318 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump tells Starmer to \u2018go get your own oil\u2019", + "publication_date": "2026-03-31T12:00:00", + "publication": "cityam", + "url": "https://www.cityam.com/trump-tells-starmer-to-go-get-your-own-oil/", + "media_type": "news_article", + "sentence": { + "text": "The continued blockage of the Strait of Hormuz and threats to shipping routes in the Red Sea have led oil prices to jump above $100 per barrel.", + "media_hash": "a0b65086076c20857bf934944643575d484afb9ae76074b5bfe6af52", + "sequence": 16, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.2500299999999998, + "starmer": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Matt Chorley", + "publication_date": "2026-03-31T09:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404134", + "media_type": "transcript", + "sentence": { + "text": "But in the same breath, Donald Trump has threatened to obliterate Iran's power plants and oil wells if a deal isn't reached soon.", + "media_hash": "8e86e0e0d72fc4d2771811e266450c53db5aac4777fbc4ed98da1e46", + "sequence": 102, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Hugo Rifkind", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.2280949999999997, + "trending": 3.2280949999999997 + } + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Even the UK talks the talk, but still hasn't released its plans for the future of the armed forces.", + "media_hash": "90e7ff18d7cc59777d848df1a6fdc420eaf1d7b9f746b883368caa67", + "sequence": 254, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Les", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.211065 + } + } + } +}, +{ + "title": "How Europe has turned its back on Trump: Italy blocks US bomber from landing, Spain closes airspace and Poland 'denies Patriots request' as furious president lashes out at UK and EU", + "publication_date": "2026-03-31T12:35:54", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694313/How-Europe-turned-Trump-Italy-blocks-US-bomber-landing-Spain-closes-airspace-Poland-denies-Patriots-request-furious-president-lashes-UK-EU.html", + "media_type": "news_article", + "sentence": { + "text": "The US and Israel began attacking Iran in late February, striking the mullah regime's leadership, nuclear and ballistic missile programme and armed forces.", + "media_hash": "1769de439e8718fb6ea4032ef5da3f24420862cb0ec0787adad3a08a", + "sequence": 2, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "defence": 3.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", + "publication_date": "2026-03-31T05:39:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", + "media_type": "news_article", + "sentence": { + "text": "The move risks further alienating US president Donald Trump, who has threatened to cut trade with Spain for denying the US' use of Spain's bases during the Middle East war.", + "media_hash": "94123e4c548a87738acaf66738bca09b704d7e56423fca3c7ad73ebd", + "sequence": 4, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 3.10166, + "defence": 3.10166 + }, + "demo": {}, + "aapfactcheck": { + "crisis": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump says other countries should 'just take' the...", + "publication_date": "2026-03-31T13:43:12", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694951/Trump-says-countries-just-Strait-Hormuz.html", + "media_type": "news_article", + "sentence": { + "text": "Asked about concerns among some of President Donald Trump's base about the possible use of ground troops in Iran, Hegseth declined to tip his hand.", + "media_hash": "60336760c1f809092958c4ce4293bb9608ca840b74557f1931d99993", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "trending": 3.10166, + "defence": 3.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump says other countries should 'just take' the...", + "publication_date": "2026-03-31T13:43:12", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694951/Trump-says-countries-just-Strait-Hormuz.html", + "media_type": "news_article", + "sentence": { + "text": "US President Donald Trump said Tuesday the countries that have not joined the Middle East war but are struggling with fuel shortages should \"go get your own oil\" in the Strait of Hormuz.", + "media_hash": "aafbecf7e5b2679c3f37d7fb2b4ef7e9770b1cfc96c738d703f14092", + "sequence": 3, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 3.10166, + "defence": 3.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer discussed the Middle East crisis with Syrian President Ahmed al-Sharaa (Justin Tallils/PA)", + "media_hash": "dbcb445aeca5568ad681fc7dac581824c473c7c63f75aecda6f4a51d", + "sequence": 17, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 3.10166, + "defence": 3.10166 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Seized weapons on display after India declares end to...", + "publication_date": "2026-03-31T10:13:10", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/afp/article-15694229/Seized-weapons-display-India-declares-end-Maoist-insurgency.html", + "media_type": "news_article", + "sentence": { + "text": "The rebellion controlled nearly a third of the country with an estimated 15,000 to 20,000 fighters at its peak in the mid-2000s.", + "media_hash": "f14a40deaa3ec95945b5a8c356ceeae721f5eacaaebf83153f1c8bec", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:09:56+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/TanDhesi/status/2038891529947763069", + "media_type": "social_post", + "sentence": { + "text": "RT @ModernNavy: There's been a tenfold increase in security incidents at Britain's nuclear submarine base since #Russia's invasion of #Ukraine (16 to 149 last year).", + "media_hash": "942d60c6ad467398c00c94440ec72cf0af6e0cf97b28714f5ca1c6ec", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Modern Navy", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + } + } + } +}, +{ + "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", + "publication_date": "2026-03-31T05:39:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", + "media_type": "news_article", + "sentence": { + "text": "The arrival of 2,500 Marines and another 2,500 sailors is keeping the number of US soldiers in the Mideast region at over 50,000, while last week the Pentagon also ordered about 2,000 soldiers from the Army's 82nd Airborne Division to the region in order to give Trump additional military options.", + "media_hash": "82b7f5d50bf731e14278cbe107d215c5a7496d06a937a830173409d2", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "trending": 3.09725, + "defence": 3.09725 + }, + "demo": {}, + "aapfactcheck": { + "crisis": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", + "publication_date": "2026-03-31T19:04:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", + "media_type": "news_article", + "sentence": { + "text": "\"If you drop 2,000 guys on there, you need 8,000 liters of water every single day... never mind food, ammunition... never mind how you're going to evacuate the wounded,\" he said.", + "media_hash": "35c6d3620af290b4471db68cc0da5c50e9ca62833b0040225813fe44", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Stanislav Krapivnik", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Good Morning Scotland", + "publication_date": "2026-03-31T05:00:00+00:00", + "publication": "1-bbc_radio_scotland", + "url": "/radio-transcript/403837", + "media_type": "transcript", + "sentence": { + "text": "Um, we've seen uh thousands of additional troops sent.", + "media_hash": "abcd33a23cd4fbaf088c6b7ec50aaf6adf3e0a720ba26e2a3a2c2a3a", + "sequence": 114, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + } + } + } +}, +{ + "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", + "publication_date": "2026-03-31T19:04:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", + "media_type": "news_article", + "sentence": { + "text": "\". Support is at 30% and falling. They don't know what to do.\"", + "media_hash": "aa9e7b12471f35e87bae1fea85dcb2bf3c2f4def04ad9f8302002184", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump voices frustration with allies as Iran war and...", + "publication_date": "2026-03-31T13:26:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", + "media_type": "news_article", + "sentence": { + "text": "The conflict has left more than 3,000 dead and caused major disruptions to the world \u0301s supply of oil and natural gas, roiling global markets.", + "media_hash": "5fb122b07dbf644182376aeb6e0fecbb1f03099aaa6ca1101c5b7bcb", + "sequence": 5, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + }, + "demo": { + "environment": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "Most service members who died by suicide in 2024 were enlisted men under the age of 30, the report said.", + "media_hash": "96e69f8e9f48a29f0ba1bc8bc75067ec10c6fcef6465b4865e58f060", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Taxpayers stung for Defence mistake on Redback vehicles", + "publication_date": "2026-03-31T05:30:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", + "media_type": "news_article", + "sentence": { + "text": "\"Billions of public funds have been poured into defence, with next to no oversight.\"", + "media_hash": "9d264eef9b6dd5758498b63d57c876678ff1e4f87d423f85061558d8", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "David Shoebridge", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 3.05185 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Japan deploys its first long-range missiles", + "publication_date": "2026-03-31T06:36:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693695/Japan-deploys-long-range-missiles.html", + "media_type": "news_article", + "sentence": { + "text": "Prime Minister Sanae Takaichi 's Cabinet in December approved a record defense budget plan exceeding 9 trillion yen ($58 billion) for the fiscal year beginning April and aims to fortify its strike-back capability and coastal defense with cruise missiles and unmanned arsenals.", + "media_hash": "3843d0733617226bcce6fff7d80b6daa13702d6fc20efefb4b9887f3", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Japan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "The decrease emerged under Defense Secretary Lloyd Austin during the Biden administration and followed a rise in the number of military suicides in 2023.", + "media_hash": "192472a4623695228d58b07a499209ae8c3d91546db191eda1fa46d1", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", + "media_hash": "5f76ec41c120474bd2f456d6d80bc5cdbb27746137330400a50a526a", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.970815, + "energy": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "The rate of suicides per 100,000 service members also dropped that year compared to 2023, the report said.", + "media_hash": "8ed615af1a77db5b380c5e8447636af99c4418f9e7f4c1b7b35982ef", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.970815 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", + "publication_date": "2026-03-31T19:04:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", + "media_type": "news_article", + "sentence": { + "text": "The notoriously unreliable vertical takeoff and landing (VTOL) aircraft has earned the nickname 'widow maker,' having led to 30 deaths before it even entered active service in 2007.", + "media_hash": "2e2992d6e670281b0b5e32a3874481acf8aba7c35e9608fb2d444d71", + "sequence": 16, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.959835 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "And we've only got limited amount, not not enough.", + "media_hash": "cc5ec3724a4ed1e506ffc599ff0f188aa642a93f9f7ce664af4d3c35", + "sequence": 1305, + "checkworthiness": { + "fullfact": { + "defence": 2.9374000000000002 + } + } + } +}, +{ + "title": "US seeks to pass the buck on Hormuz crisis", + "publication_date": "2026-03-31T08:39:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636812-homuz-control-coalition-rubio/", + "media_type": "news_article", + "sentence": { + "text": "Reduced flows of hydrocarbons and other essential commodities from the Persian Gulf have pushed global prices higher, raising the risk of significant economic disruption.", + "media_hash": "be54ac2849819c65dd4cb41fb7ad005e0f3e4aaf50c36496f3ecd5e1", + "sequence": 6, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.9374000000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK sends extra troops and air defence systems to Gulf allies to bolster protection against Iranian suicide drones", + "publication_date": "2026-03-31T15:41:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", + "media_type": "news_article", + "sentence": { + "text": "'I am proud of the courage and professionalism our armed forces have shown since the start of the war and my message to Gulf partners is Britain's best will help you defend your skies.", + "media_hash": "806ca45eb30bcf55bf0a029e202bb0df6df49f2337397ef45d2b14a0", + "sequence": 8, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "John Healey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.922625 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "U.S. Bombers Heading to Middle East Refused Permission to Land at Italian Airbase: Report", + "publication_date": "2026-03-31T13:15:41", + "publication": "breitbart", + "url": "https://www.breitbart.com/europe/2026/03/31/u-s-bombers-refused-permission-to-land-at-italian-airbase-report/", + "media_type": "news_article", + "sentence": { + "text": "The use of the base is governed by a treaty between Rome and Washington: routine armed forces flights and work are permitted including operational and logistical, but warfighting activity requires the express permission of the Italian government.", + "media_hash": "7efff41150e3774375ab6e63083a27b299c0b403c580a6cd2691d345", + "sequence": 6, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.920805 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 3.345675 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "I lost friends in Iraq. Trump is making the same mistakes", + "publication_date": "2026-03-31T11:30:00", + "publication": "inews", + "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", + "media_type": "news_article", + "sentence": { + "text": "Many of the other 16 who died were burned alive.", + "media_hash": "bbd4f9141edee708962af760393e836bc4c59ff36b08de12b4c43211", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Army suspends helicopter crews that flew near Kid Rock's home", + "publication_date": "2026-03-31T20:18:00", + "publication": "skynews", + "url": "https://news.sky.com/story/us-army-suspends-helicopter-crews-that-flew-near-kid-rocks-home-13526628", + "media_type": "news_article", + "sentence": { + "text": "Authorities name 16 killed in Tennessee explosives factory blast", + "media_hash": "a6e479a5dc41036ce2d329cda1c141adf166452b8e67ea3b3767512d", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump voices frustration with allies as Iran war and...", + "publication_date": "2026-03-31T13:26:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", + "media_type": "news_article", + "sentence": { + "text": "Two dozen people have died in Gulf states and the occupied West Bank.", + "media_hash": "feab8da174425a7f24c94fda2d56ce6165036c5d2e21f5641c6c75dc", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.89907 + }, + "demo": { + "environment": 3.3239400000000003 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth v The Pope", + "publication_date": "2026-03-31T13:05:12", + "publication": "neweuropean", + "url": "https://www.thenewworld.co.uk/rats-in-a-sack-pete-hegseth-v-the-pope/", + "media_type": "news_article", + "sentence": { + "text": "According to the FT, the $3.2bn equity fund pursues \"growth opportunities by investing in companies that may benefit from increased government spending on defense and security amid geopolitical fragmentation and economic competition\".", + "media_hash": "8f6d1d28a4ad9c6ad33a00b9e73952ff049150fa349f4a64551a1b6d", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Financial Times", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to send more troops to Middle East to defend against Iran attacks", + "publication_date": "2026-03-31T16:47:34", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", + "media_type": "news_article", + "sentence": { + "text": "Britain will send more troops armed with air defence systems to the Middle East to help blow Iranian missiles out of the sky.", + "media_hash": "6bf900327b1eeed9d48b827a85f06d6e6c4f3e68431b6700347791b1", + "sequence": 2, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.8878899999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "How Europe has turned its back on Trump: Italy blocks US bomber from landing, Spain closes airspace and Poland 'denies Patriots request' as furious president lashes out at UK and EU", + "publication_date": "2026-03-31T14:39:23", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694313/How-Europe-turned-Trump-Italy-blocks-US-bomber-landing-Spain-closes-airspace-Poland-denies-Patriots-request-furious-president-lashes-UK-EU.html", + "media_type": "news_article", + "sentence": { + "text": "Last week, the head of France's armed forces held a videoconference with 35 nations to discuss restoring movement through the Strait of Hormuz, according to the nation's defence ministry.", + "media_hash": "c683d54b451face1d19e1a10783368b043cb5615fbf36284eeab66d4", + "sequence": 51, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.862985 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "I lost friends in Iraq. Trump is making the same mistakes", + "publication_date": "2026-03-31T11:30:00", + "publication": "inews", + "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", + "media_type": "news_article", + "sentence": { + "text": "The Pentagon demands gigantic build-ups costing billions, the generals never seem prepared for what happens after phase one, the soldiers are far too keen to kill people - not just enemy soldiers but enemy civilians.", + "media_hash": "1212d29c22efefc3df925676f1f4a134b8335ebae8d461d77166ff78", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", + "publication_date": "2026-03-31T19:04:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", + "media_type": "news_article", + "sentence": { + "text": "\"They'd have to clear the city, every building... They're gonna have casualties, and a lot of casualties,\" Krapivnik said.", + "media_hash": "aed1f1d994f462d4a327200e273ffca19573c832054e4decc569548e", + "sequence": 21, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Stanislav Krapivnik", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Krapivnik", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.851145 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "Food costs could also surge as fertiliser supplies are choked off, and the region is a huge source of aluminium.", + "media_hash": "df6dba499e58ace5d6bc75552337ce9348dee0fe44f9d859335d54ff", + "sequence": 34, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.810965 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.73922 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", + "publication_date": "2026-03-31T05:39:41", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", + "media_type": "news_article", + "sentence": { + "text": "Such a move would involve raiding Kharg Island, the 'crown jewel' of the regime where 90 per cent of its oil is loaded on to tankers.", + "media_hash": "94da96a267b084b9ba3abea2015b203541ed3e2111de1901bad09313", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.77565 + }, + "demo": {}, + "aapfactcheck": { + "crisis": 2.77565 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to send more troops to Middle East to defend against Iran attacks", + "publication_date": "2026-03-31T16:47:34", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", + "media_type": "news_article", + "sentence": { + "text": "It is believed almost 8,000 Marines and Paratroopers will soon be gathered in the Gulf, with a further 10,000 on standby for deployment.", + "media_hash": "fb35122b086d657bc31e2a389c5ce45d061828adc22454575028fdcd", + "sequence": 17, + "claim_type": [ + "quantity", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.77565 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "Hundreds of flights operated by the flag carrier for Sweden, Denmark and Norway are said to be scrapped.", + "media_hash": "a22bb7170c5ef270e16ce543018cda1e147a5da3d22ca54118e152cb", + "sequence": 48, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.772635 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", + "publication_date": "2026-03-31T11:35:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", + "media_type": "news_article", + "sentence": { + "text": "Some 7 per cent of diesel is imported from the Middle East.", + "media_hash": "578e27a21b237d7f1e196412827b94a5b4f03aaacd8fca029310e3ca", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.72968 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.72968 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "Exactly, which is why we need to have stronger defenses.", + "media_hash": "f50dbdae77bded4b2912917016a84ce3b9e517d7af031ada384b5ca6", + "sequence": 689, + "claimer": [ + { + "name": "Alby Amankona", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.72472 + } + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "The British government would be duty bound to respond in some way militarily to that act of military aggression.", + "media_hash": "aeb10ef1d3305acd96525365b92c2acc7905a3748eea8a9bc351523c", + "sequence": 1230, + "checkworthiness": { + "fullfact": { + "defence": 2.712875 + } + } + } +}, +{ + "title": "Army suspends helicopter crews that flew near Kid Rock's home", + "publication_date": "2026-03-31T20:18:00", + "publication": "skynews", + "url": "https://news.sky.com/story/us-army-suspends-helicopter-crews-that-flew-near-kid-rocks-home-13526628", + "media_type": "news_article", + "sentence": { + "text": "'No survivors' in munitions factory explosion after 16 killed, police say", + "media_hash": "2b2b2978ee4d7dc1684afd3a02128f055f3a037a3687c3c26c376357", + "sequence": 14, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.712725 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran war LIVE: Trump willing to end war 'without opening Strait of Hormuz'", + "publication_date": "2026-03-31T08:15:15", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/uk-world-news/iran-trump-strait-hormuz-live-36947092", + "media_type": "news_article", + "sentence": { + "text": "UN's Interim Force in Lebanon (UNIFIL) wrote online: \"Two UNIFIL peacekeepers were tragically killed in south Lebanon today, when an explosion of unknown origin destroyed their vehicle near Bani Hayyan.", + "media_hash": "f24819f289553cf48d229720825f862e11845c665ddb737c5f3a3bf0", + "sequence": 188, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "United Nations Interim Force in Lebanon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.712725 + } + } + } +}, +{ + "title": "Sailor who sexually assaulted female colleagues on Royal Navy nuclear submarine is jailed and kicked out of Royal Navy", + "publication_date": "2026-03-31T17:49:59", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695277/Sailor-sexually-assaulted-female-colleagues-nuclear-submarine-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "A former Royal Navy officer who put his erect penis through a shower curtain where a female colleague was washing has been jailed for two-and-a-half years.", + "media_hash": "4189ce13aa624df61b5cb8309ad0706d2d16ecb87291066fdcc78f0c", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.712725 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump criticizes European allies for not helping fix...", + "publication_date": "2026-03-31T23:56:37", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696521/Trump-lashes-Europe-not-helping-fix-damage-war-against-Iran-caused.html", + "media_type": "news_article", + "sentence": { + "text": "More than a decade of civil war in Syria led more than 5 million people to flee and a significant number to seek asylum in Europe, with social and political ripples for the continent.", + "media_hash": "b5fe2ca5b0fb5934c2a28e25e42c8b7a8b7a916a9155fe0e54703101", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "And many other countries have now exceeded the 2% target which was set many, many years ago.", + "media_hash": "e5d70c6563ae24b3bfe5d85a29cef0363a86e235c46351b3ce85faf8", + "sequence": 260, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + } + } + } +}, +{ + "title": "Poland won\u2019t divert Patriot air defense systems to Gulf", + "publication_date": "2026-03-31T12:14:04", + "publication": "politico", + "url": "https://www.politico.eu/article/poland-wont-divert-patriot-air-defense-systems-to-gulf/", + "media_type": "news_article", + "sentence": { + "text": "While all allies reached the 2 percent of GDP spending target on defense last year, there's still a big gap in how much countries shell out.", + "media_hash": "15d94bd25e08700ce5984de90210d3ab7ee73291f1225590ffbf9a45", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "NATO", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "A third had workplace difficulties, while 45% had intimate relationship problems.", + "media_hash": "65e4028c73db02322d109891e14d8126feb6166c5a8604454f9d1423", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands more US troops are heading to the Middle East", + "publication_date": "2026-03-31T22:41:45", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", + "media_type": "news_article", + "sentence": { + "text": "The carrier strike group consists of more than 6,000 sailors.", + "media_hash": "11e82103eade43fa5dcc561fb9500e42b16e06fd5905166f706fea75", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", + "media_hash": "a1def2285f1e0feb06a3afc1cdf0fa1116dca20d21e317947546fd6c", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996, + "energy": 2.6987249999999996 + }, + "demo": { + "politics_of_food": 2.6987249999999996 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "But many European nations have increased the amount that they're spending on defense.", + "media_hash": "0cfd6cabad83887a37c2f118adc7d4bd225214fad4f110afaf6ab43d", + "sequence": 257, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6987249999999996 + } + } + } +}, +{ + "title": "The World Tonight", + "publication_date": "2026-03-31T21:01:01+00:00", + "publication": "1-bbc_radio_4", + "url": "/radio-transcript/404462", + "media_type": "transcript", + "sentence": { + "text": "More British troops are being sent to the Middle East, bringing the number of UK service personnel in the region to nearly 1,000.", + "media_hash": "9974847f665a70922f6d989a9e87186940f54a429eea17fb6c6395e6", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.6975749999999996 + } + } + } +}, +{ + "title": "Ben Kentish", + "publication_date": "2026-03-31T21:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404509", + "media_type": "transcript", + "sentence": { + "text": "So far be it for me to start jumping to the defense of Donald Trump but I'm going to on this one when he says it's about time you started looking out for yourself a bit more and stopped relying on us.", + "media_hash": "c112f81f94ebd214eb6612e7397ebee934d53ddc8b5228d2f2dcb1b0", + "sequence": 167, + "checkworthiness": { + "fullfact": { + "defence": 2.658185 + } + } + } +}, +{ + "title": "Moment British warship crew scramble to intercept Russian submarine 'at risk of exploding' before tracking it through English Channel", + "publication_date": "2026-03-31T13:53:09", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694227/Moment-British-warship-crew-scramble-intercept-Russian-submarine-risk-exploding-tracking-English-Channel.html", + "media_type": "news_article", + "sentence": { + "text": "Navigation becomes unsafe in British waters, where any vessel may be subject to piratical seizure.", + "media_hash": "9aa6819283ac265f30b7b7375734c0009bbb2bdf69d7eaabef5af462", + "sequence": 60, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.652965 + }, + "demo": {}, + "aapfactcheck": { + "crisis": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", + "publication_date": "2026-03-31T18:54:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", + "media_type": "news_article", + "sentence": { + "text": "\"Its application to residents of the occupied Palestinian territory would constitute a war crime,\" he said.", + "media_hash": "d62465cec8a2b16d510c977337e203ef19770dc5c2d0d49356e5295e", + "sequence": 87, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Sailor who sexually assaulted female colleagues on Royal Navy nuclear submarine is jailed and kicked out of Royal Navy", + "publication_date": "2026-03-31T17:49:59", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695277/Sailor-sexually-assaulted-female-colleagues-nuclear-submarine-jailed.html", + "media_type": "news_article", + "sentence": { + "text": "He groped other officers without permission, including one attack where he 'put his hand down the back' of a woman's swimming costume 'around her bottom and on to her vagina'.", + "media_hash": "099f1ca5ee32da9ad38b41e666b9e1c3c8a9ce88b8484efa4823d634", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iran remains a stubborn foe after absorbing massive...", + "publication_date": "2026-03-31T15:46:23", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695393/Iran-remains-stubborn-foe-absorbing-massive-US-Israeli-attacks.html", + "media_type": "news_article", + "sentence": { + "text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", + "media_hash": "b899ad4209da633a9fb0ec9b0227641187fc44e0f3084bd923a36af5", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "general": 2.652965, + "defence": 2.652965 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Britain sending air defence systems to Gulf allies as Iranian missile and drone attacks continue to target natural energy infrastructures", + "publication_date": "2026-03-31T15:00:46", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", + "media_type": "news_article", + "sentence": { + "text": "The visit comes as Iran continues its aggressive missile and drone campaign against civilian infrastructure, military sites and critical national assets across the Gulf, with more than 3,500 missiles and drones fired to date.", + "media_hash": "97ed6ee0d1fa86e85f62cd278862ed5765ccb5b0a411e4a00d8102a0", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Iran", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.648555 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "defence": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'A million things could go wrong' - why seizing Iran's uranium would be so risky for the US", + "publication_date": "2026-03-31T23:16:15", + "publication": "bbc", + "url": "https://www.bbc.com/news/articles/cvglv5v4yvpo", + "media_type": "news_article", + "sentence": { + "text": "\"You've got basically a half ton of what's effectively weapons grade uranium that you've got to extricate,\" Ruhe said.", + "media_hash": "1af4041f9a47380bb9f2369bcdd1717310219da65c17a576cb04b25d", + "sequence": 58, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Mick Mulroy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jonathan Ruhe", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.61247 + }, + "demo": {}, + "dev": { + "blah": 2.61247 + }, + "pa-media": {}, + "fullfact-policy": {}, + "mediacorp": {} + } + } +}, +{ + "title": "Taxpayers stung for Defence mistake on Redback vehicles", + "publication_date": "2026-03-31T05:30:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", + "media_type": "news_article", + "sentence": { + "text": "There were two \"very high risks\" to vehicle mobility and lethality that were unresolved as at February.", + "media_hash": "c397431775867042bdde6c73e1a32c72327b14665d135f0f59683a1e", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Defence", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Australian National Audit Office", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth secretly traveled to the Middle East to meet US troops ahead of possible Iran ground invasion", + "publication_date": "2026-03-31T14:10:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694443/Pete-Hegseth-secretly-traveled-Middle-East-meet-US-troops-ahead-possible-Iran-ground-invasion.html", + "media_type": "news_article", + "sentence": { + "text": "Hegseth added: 'Our adversary right now thinks there are 15 different ways we could come at them with boots on the ground.", + "media_hash": "756da0f9d78833a570e90eb1364c1e31d09c9e3169b63676dd171611", + "sequence": 20, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Pete Hegseth", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Thousands more US troops are heading to the Middle East", + "publication_date": "2026-03-31T22:41:45", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", + "media_type": "news_article", + "sentence": { + "text": "While the majority of those troops are part of a rotation of forces planned before the war, some are among roughly 1,500 paratroopers the Trump administration decided to surge into the region last week.", + "media_hash": "f215b4733786582b67b538bfeac13726773de2ab45c9f4b3829601d1", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Trump administration", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Times Radio breakfast", + "publication_date": "2026-03-31T05:00:10+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/403848", + "media_type": "transcript", + "sentence": { + "text": "And either there is one, like there is now, in which case it's unsafe to go in at all, no, very few merchant vessels except the ones that are run or are allowing, and no US warships.", + "media_hash": "6ba46fbbdaebe4fd50c5901619cbd7361467ca20b3b088043de7d683", + "sequence": 1518, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.598275 + } + } + } +}, +{ + "title": "The axis of autocracies is winning", + "publication_date": "2026-03-31T05:00:00", + "publication": "newstatesman", + "url": "https://www.newstatesman.com/international-politics/2026/03/the-axis-of-autocracies-is-winning", + "media_type": "news_article", + "sentence": { + "text": "Ultimately, the biggest boost to the axis of autocracies might be the stress that the Iran war has put on the dynamic between the United States and its allies.", + "media_hash": "9d06a77b396f33f9556846a6974b69686d9f5477f918542ab034404b", + "sequence": 41, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5968999999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "LBC: Tom Swarbrick", + "publication_date": "2026-03-31T15:00:24+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404369", + "media_type": "transcript", + "sentence": { + "text": "And then when we're in the conflict, we are dragged in massively.", + "media_hash": "805b886b5895a2722fa96fb1ce52a0dd7ebd45d26a8ed69ac30f7ed3", + "sequence": 1231, + "checkworthiness": { + "fullfact": { + "defence": 2.58644 + } + } + } +}, +{ + "title": "Taxpayers stung for Defence mistake on Redback vehicles", + "publication_date": "2026-03-31T05:30:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", + "media_type": "news_article", + "sentence": { + "text": "Defence had paid Hanwha a total of $148,129 in interest penalties as at October 2025, with $335,889 in payments remaining, according to the audit office report released on Monday.", + "media_hash": "bd4a39bf1a537ca73b0bbed46003e07d706e9867c20be83f2fa51f71", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Defence", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Australian National Audit Office", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Hanwha", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth secretly traveled to the Middle East to meet US troops ahead of possible Iran ground invasion", + "publication_date": "2026-03-31T14:10:44", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694443/Pete-Hegseth-secretly-traveled-Middle-East-meet-US-troops-ahead-possible-Iran-ground-invasion.html", + "media_type": "news_article", + "sentence": { + "text": "Special operations forces and conventional infantry units could be deployed if the President chooses to escalate the war.", + "media_hash": "85d5ed32c0a043e86977383a45b8538c55627cdd054c7dcbd2049b87", + "sequence": 14, + "checkworthiness": { + "fullfact": { + "defence": 2.5765849999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "Trump has maintained the US has 'plenty' jet fuel, but airline bosses say firms are facing an 'existential challenge' with depleting supply pushing up the cost of flying.", + "media_hash": "30ff0bdcb41dca9c46a6d52c90089870472cfc4a0c35766dd5d7b1bd", + "sequence": 5, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "airline bosses", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.56732 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "maldita": { + "trending": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "The military's statistics generally reflect suicide rates for society as a whole, when adjusted for age and gender, because a majority of those in the military are young and male.", + "media_hash": "51b1f1f86f5c8ec704e9b15ae34190797c09c4621152bbe4b7ea60a1", + "sequence": 6, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.56707 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "Diesel and petrol prices are running at the highest levels since 2022, and projections this morning suggest typical energy bills will increase by \u00a3288 in July when the cap next changes.", + "media_hash": "b294392da97c63ba26f35a368f2a5766f56da29fb3f19debf00f3f90", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.556405 + }, + "demo": {}, + "aapfactcheck": { + "economy": 2.7091849999999997 + }, + "pa-media": {}, + "maldita": { + "energy": 4.981275 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Trump criticizes European allies for not helping fix...", + "publication_date": "2026-03-31T23:56:37", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696521/Trump-lashes-Europe-not-helping-fix-damage-war-against-Iran-caused.html", + "media_type": "news_article", + "sentence": { + "text": "The S&P 500 surged 2.9% to its biggest gain since last spring, while the Dow industrials advanced more than 2.5% as doubt about a possible end to the war swung back to hope on Wall Street.", + "media_hash": "4a9cf23b2585b917198c94d6484540f37b5bcbe1f179cb76e39d2ed7", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Sir Keir Starmer discussed the situation with Syrian President Ahmed al-Sharaa in Downing Street.", + "media_hash": "8a1cf9c1b45da984bc089bf6ae50fccc40cb23e847d7996249a5dd57", + "sequence": 18, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "starmer": 2.5503549999999997, + "defence": 2.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "US seeks to pass the buck on Hormuz crisis", + "publication_date": "2026-03-31T08:39:02", + "publication": "rtuk", + "url": "https://www.rt.com/news/636812-homuz-control-coalition-rubio/", + "media_type": "news_article", + "sentence": { + "text": "Beijing has boosted the share of non-fossil energy sources in its mix from 26% a decade ago to 40% now, the analysis said.", + "media_hash": "4251d86df8776ad9ed3c1daf67537c1b953de7a03e4007a35e0dd1b5", + "sequence": 28, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Beijing", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK sends extra troops and air defence systems to Gulf allies to bolster protection against Iranian suicide drones", + "publication_date": "2026-03-31T15:41:43", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", + "media_type": "news_article", + "sentence": { + "text": "Have racked up more than 1,280 hours protecting British nationals, bases and partners.", + "media_hash": "f7d3e6e59f136d47e5afe212b7e74628b96b0a4a31cfc75ef6e4e921", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "defence": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "NATO without America? A slow shift is already underway", + "publication_date": "2026-03-31T22:19:52", + "publication": "rtuk", + "url": "https://www.rt.com/news/636893-nato-without-america-shift/", + "media_type": "news_article", + "sentence": { + "text": "The restriction on cutting troop levels below 76,000 slows the process, but doesn't change its direction.", + "media_hash": "11ced93f561da8ed5ef3f797ee3ea558eb4dc933ecb55cecfe256fd1", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997, + "trending": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK to send more troops to Middle East to defend against Iran attacks", + "publication_date": "2026-03-31T16:47:34", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", + "media_type": "news_article", + "sentence": { + "text": "At least 3,500 Marines have arrived on USS Tripoli , an amphibious assault warship.", + "media_hash": "9c9c16a2e0b74ba772da26b00186caae4ff4fa2b7ef8d12994b0486c", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "The Government has announced a \u00a353 million package of support for heating oil customers.", + "media_hash": "017c1d1958625ae7146a2e5e63ea749445a3827edbd9c72099b88717", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "I'm telling to you, sir, more than 10 verbal notes, official notes, we declared to the FCDO, we sent to the FCDO to give me some to give us some evidences.", + "media_hash": "b7f9bcebf3a7e529e94e3b56808c5b2e15c0c6e12e5655c0f0969be1", + "sequence": 553, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + } + } + } +}, +{ + "title": "Israeli major 'made $160,000 in Polymarket bet using classified information on Israeli bombing campaign in Iran'", + "publication_date": "2026-03-31T10:58:48", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693941/Israeli-major-160-000-Polymarket-bet-using-classified-information-Israeli-bombing-campaign-Iran.html", + "media_type": "news_article", + "sentence": { + "text": "The pair are accused of pocketing $162,663 in winnings, which they agreed to split, with the reservist's share transferred via cryptocurrency.", + "media_hash": "d87634a34a912f3f8a556ba90fc7dfb1093a20e719bc76c8015a6fbf", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Israeli air force major", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Prosecutors", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "crisis": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", + "publication_date": "2026-03-31T11:35:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", + "media_type": "news_article", + "sentence": { + "text": "Ministers also cite how around 90 per cent of the crude oil refined in the UK was imported in 2025, but only around 1 per cent of this came from the Middle East.", + "media_hash": "8fae6c26d8b7fc5c5a3aff9e944f3ee28612cf68c3ec9ca612cb31e0", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Military suicides fell in 2024 but long-term rate for...", + "publication_date": "2026-03-31T23:46:25", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", + "media_type": "news_article", + "sentence": { + "text": "The number of active duty service members who died by suicide that year was 302, while 64 were reservists and 105 were in the National Guard.", + "media_hash": "15135a4a7d212e3acd6d767326ea27ebaded0c5a1b45b13e6f999d34", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Pentagon", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", + "media_hash": "db7ecd8c22514c9889bf0c4aa479e5eee666cf1216d026df25f414b7", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", + "publication_date": "2026-03-31T15:08:09", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", + "media_type": "news_article", + "sentence": { + "text": "The UK is currently sourcing at least half its jet fuel from the Middle East amid a fall in domestic refining and a halt on Russian imports since the Ukraine invasion in 2022.", + "media_hash": "6fb8903821c1f83a60b129aa49d268da5dc6c457fb264083626a0e2b", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 4.545945 + }, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "And they were able to get about three to four vessels out a day, uh, whereas the total is about 135 when the straits is functioning normally.", + "media_hash": "e11bcb2f2d4e1ce0c81988540c4e720ead630763c0083af44be53ade", + "sequence": 492, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + } + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409 million for diesel and \u00a3135 million for petrol.", + "media_hash": "46de5d49efd8605e12c488d0ee2b81d7fe00675efb7ed39fa7a55a71", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "RAC Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997, + "energy": 2.5459449999999997 + }, + "demo": { + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "John Pienaar with Times Radio Drive", + "publication_date": "2026-03-31T15:00:00+00:00", + "publication": "1-times_radio", + "url": "/radio-transcript/404363", + "media_type": "transcript", + "sentence": { + "text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", + "media_hash": "d890ddea0a76a50b14701aad4ced28675909d7311f94cafc9555937b", + "sequence": 461, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "health": 2.5459449999999997, + "defence": 2.5459449999999997 + } + } + } +}, +{ + "title": "Trump voices frustration with allies as Iran war and...", + "publication_date": "2026-03-31T13:26:22", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", + "media_type": "news_article", + "sentence": { + "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel Tuesday, up more than 45% since the war started Feb. 28.", + "media_hash": "f2ca3d550620be92b84e712b23de1e0726c2394cbf66d3aeaf7b1b1a", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": { + "environment": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Poland won\u2019t divert Patriot air defense systems to Gulf", + "publication_date": "2026-03-31T12:14:04", + "publication": "politico", + "url": "https://www.politico.eu/article/poland-wont-divert-patriot-air-defense-systems-to-gulf/", + "media_type": "news_article", + "sentence": { + "text": "NATO countries hit 2 percent of GDP spending target", + "media_hash": "bb1ae91e9f73791a47ac541982b0b717f24c9eb252b2a6c3fc445e60", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", + "publication_date": "2026-03-31T11:35:59", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", + "media_type": "news_article", + "sentence": { + "text": "This final measure was enacted on March 11 as part of the UK's coordinated release with the International Energy Agency (IEA) of 400million barrels of oil to the market.", + "media_hash": "ef6c06034c2c942e7184e5e56f023ad19128b79fcfe92554e43dbc36", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": { + "economy": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pentagon denies claim Pete Hegseth's broker attempted to make large investment in major defence companies weeks before US attacked Iran", + "publication_date": "2026-03-31T08:53:33", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15693993/Pentagon-denies-claim-Pete-Hegseths-broker-attempted-investment-defence-companies-Iran.html", + "media_type": "news_article", + "sentence": { + "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started on February 28, when the U.S. and Israel attacked Iran.", + "media_hash": "10dd4214283bc8aaa9898cd33ae4b3e050fe21621c420b604b8cb4db", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Taxpayers stung for Defence mistake on Redback vehicles", + "publication_date": "2026-03-31T05:30:39", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", + "media_type": "news_article", + "sentence": { + "text": "Taxpayers will be slugged hundreds of thousands of dollars in penalty payments after Defence bungled the procurement of a $7 billion contract for infantry fighting vehicles.", + "media_hash": "45001b610758576f7e12f715e1480c8c333de58de896591c47a52c3d", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Defence", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Iain Dale", + "publication_date": "2026-03-31T18:00:00+00:00", + "publication": "1-lbc", + "url": "/radio-transcript/404449", + "media_type": "transcript", + "sentence": { + "text": "We were the number two contributor to NATO, we're now something like number 12.", + "media_hash": "f7b080afbd2b967fecaf5ca3ebc3d8c98c5d5c062f2428ff20763bf0", + "sequence": 259, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "defence": 2.5459449999999997 + } + } + } +}, +{ + "title": "Thousands more US troops are heading to the Middle East", + "publication_date": "2026-03-31T22:41:45", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", + "media_type": "news_article", + "sentence": { + "text": "WASHINGTON (AP) - Thousands of additional U.S. troops are heading to the Middle East as the Trump administration has insisted that progress has been made in talks with Iran and has threatened to escalate the war if a deal is not reached soon.", + "media_hash": "f62cef42d5fbbf1c5032d77770290cd5405684b63c44b537c15c3ff1", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Trump administration", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "U.S. officials", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.540725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", + "publication_date": "2026-03-31T18:54:57", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", + "media_type": "news_article", + "sentence": { + "text": "The United Nations rights chief has slammed the Israeli parliament's approval of a 'deeply discriminatory' new death penalty bill, warning that applying it in the occupied Palestinian territory 'would constitute a war crime'.", + "media_hash": "b539e1b4d2d84043de77ea4f6a014a8f791ea95750023ed25d45455c", + "sequence": 85, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "United Nations rights chief", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.538635 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Donald Trump tells UK to secure Strait of Hormuz and...", + "publication_date": "2026-03-31T16:04:19", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", + "media_type": "news_article", + "sentence": { + "text": "Mr Trump wrote: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", + "media_hash": "f8468d77e5b23aec48a007549c1286131cda01a54d8ea4bd015dd441", + "sequence": 7, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "trending": 2.516675, + "defence": 2.516675 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "More UK troops to be sent to Middle East, defence secretary announces", + "publication_date": "2026-03-31T15:49:58", + "publication": "bbc-politics", + "url": "https://www.bbc.com/news/articles/c7vq76g45rvo", + "media_type": "news_article", + "sentence": { + "text": "In a post on his social media platform Truth Social, the US president said: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", + "media_hash": "6cb02273de63c798acb602f2875c74b9622b0d3d7ff2f9bb4e5db9fb", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "US President Donald Trump", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "defence": 2.516675 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", + "publication_date": "2026-03-31T12:42:24", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", + "media_type": "news_article", + "sentence": { + "text": "According to a report from the Los Angeles Homeless Services Authority (LAHSA), homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", + "media_hash": "9bf885121597909d3bd8e5a169712db49194ab3e21618d3c41953048", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.970815 + }, + "demo": {}, + "aapfactcheck": { + "polls": 2.970815 + }, + "pa-media": {}, + "maldita": { + "housing": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", + "publication_date": "2026-03-31T12:42:24", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", + "media_type": "news_article", + "sentence": { + "text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured over $500 million into fixing it", + "media_hash": "087e2d32ba3ad2e794daae5c83d49c3eec400bd17cab584e8a4b6448", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.970815 + }, + "demo": {}, + "aapfactcheck": { + "polls": 2.970815 + }, + "pa-media": {}, + "maldita": { + "housing": 4.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", + "publication_date": "2026-03-31T20:50:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", + "media_type": "news_article", + "sentence": { + "text": "According to a report from the Los Angeles Homeless Services Authority, homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", + "media_hash": "91c69aae1cf0d8364ac9b652f06077ff16b9f5338f8a8f598d77f7fd", + "sequence": 39, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Los Angeles Homeless Services Authority", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 4.545945 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "The data shows that while the population of people experiencing homelessness in Savannah rose from 579 in 2024 to 628 in 2025, the number of people living unsheltered decreased, the Current reports.", + "media_hash": "6a359adb5432dc9862d41583ba59682a020ce467bb3820511ae39c28", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 4.970815 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "\"No party has put forward a credible plan to deliver the homes Scotland needs, meaning politicians of all parties are planning for more people to be pushed into homelessness.", + "media_hash": "82bba6cbce6224e1370260c2b77a15abf4b85efa45b99b1a4cbb9411", + "sequence": 24, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Shelter Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alison Watson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.751055 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", + "media_hash": "100af847f6668a7d1f2fafdc857572d77000e15ff174bea3397f1ecb", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.698725, + "scottish_elections": 4.698725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Fewer houses are being built across Scotland.", + "media_hash": "342b75aeb205a5d36a1e5c7c142c8883d37a1d582cb0445055524184", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.5769, + "scottish_elections": 4.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "In 2025 the Affordable Housing Supply Programme delivered 6,289 affordable completed homes, approved 5,833 homes, and started 5,856 homes.", + "media_hash": "c4b32351b419971797ded9ff9459ac2311d2c3217bca2d4267e53312", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Annual decreases were reported for approvals (9% decrease), starts (15% decrease), and completions (25% decrease) of homes provided via the Affordable Housing Supply Programme between 2024 and 2025.", + "media_hash": "9ba5b7d292d2423e87e106ee206f87f25abd2731c310fcf8b6044b41", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "media_hash": "97e06701f4afc3537fff344c720bd9dfc26d4666a6cfd00dd610558e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another \u00a3150m added (to the \u00a31.1bn forecast).", + "media_hash": "a548162e66678724fc52130304025c60248738e32de1e97e6410abe4", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "senedd_election": 4.545945 + } + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "The First Minister added that his Government had put more than \u00a3900 million into the affordable housing sector for the next financial year and there was an uptick in housebuilding in recent months.", + "media_hash": "bd8e151ea63327a4168dbc13e8883cb46688ad243e2b7e26fac864b8", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Scottish social housing builds fall to lowest level since 2014", + "media_hash": "e26ab068c6cacaca523ace35ae70e3cc60ef0b5b6a0e67925aa64332", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", + "media_hash": "ce125bfcca3bd148604aa672cc71ccb57b435addd135db195f8303f6", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", + "media_hash": "8d924471eb470cdf421ef9d21a7ed9335d69c43f9fbaf1f019a59645", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "4 charged in corruption investigation linked to NYC...", + "publication_date": "2026-03-31T19:41:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "Prosecutors said the nonprofit's executive director, Roberto Samedy, 50, and its former board chairman, Jean Ronald Tirelus, 50, embezzled from the organization - at one point pocketing $800,000 earmarked for \"economic growth and affordable housing\" in distressed Brooklyn neighborhoods.", + "media_hash": "2de7d7055eb86997252f3c89ae24c228967f22f40abfdea2b251d1cd", + "sequence": 8, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Roberto Samedy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jean Ronald Tirelus", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.486035 + }, + "demo": { + "politics": 0.0 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Indirect investments from the Savannah Affordable Housing fund further helped support applications for three low-income housing tax credits, service centers and infrastructure.", + "media_hash": "b116590dae7d0b4826ec48e18146a5fbc4649f7a414c0f2ffea6d44d", + "sequence": 48, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.3787199999999995 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 4.3787199999999995 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Across the network, Transport for Wales, via the Welsh Government, has invested \u00a3800m in brand new rolling stock.", + "media_hash": "deb1d28b7151066ba26d0a716bbe5fc4088a6e5b57b1e2b1111364a7", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.3787199999999995, + "senedd_election": 4.3787199999999995 + } + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Those tax credits will now help developers build 41 new affordable units for people experiencing homelessness, officials said.", + "media_hash": "c325908e7afe7675ffaf70bc58457e8122a47962ea17c7e6ada4a54b", + "sequence": 49, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.347765 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 4.347765 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The dearth of affordable housing made the state \u0301s Division of Housing move quickly on releasing AB540 funds.", + "media_hash": "75c1db372e88a57d88933bb7e4195b63ff74d48eb676b7974c0be271", + "sequence": 31, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.347765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", + "media_hash": "5efbf740e399c74f90322a3b727665855b05d792d9fa5305688acf39", + "sequence": 12, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.347765, + "senedd_election": 4.347765 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around \u00a31.3bn, nearly double its initial estimate.", + "media_hash": "19984977ee13d7b9a89dca728c6ae1fca5e898f958574fe7fc979f09", + "sequence": 1, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.224345, + "senedd_election": 4.224345 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", + "media_hash": "723a4073ac83b157ce9ce2c829fef1c007c0ffa8387deec8bb340c13", + "sequence": 18, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 4.213945, + "senedd_election": 4.213945 + } + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "There was also a fall in affordable housing.", + "media_hash": "56edfb468ea662bf109b146089a3d69be53afaea35c2ab5f2944a679", + "sequence": 24, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.187915 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", + "publication_date": "2026-03-31T12:42:24", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", + "media_type": "news_article", + "sentence": { + "text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured huge funds into fixing it.", + "media_hash": "4d87519ef921210866eb22bb2e86d7cecbb9d66a7a41f898383e0b1f", + "sequence": 25, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.173405 + }, + "demo": {}, + "aapfactcheck": { + "polls": 0.0 + }, + "pa-media": {}, + "maldita": { + "housing": 3.748535 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "An idyllic city known for its historic buildings and Southern charm has been beset by homelessness and drug use under a Democratic mayor.", + "media_hash": "87ec4b136c5ff738135c773b9f4f9d41f9f8242862c3ec2c8efdfef4", + "sequence": 2, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.10166 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 4.10166 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", + "media_hash": "8bfca18fbf84b97920d21b6ed7a0e629c08aa6a8109b2671f9818000", + "sequence": 17, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 4.061165, + "senedd_election": 4.061165 + } + } + } +}, +{ + "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", + "publication_date": "2026-03-31T18:04:14", + "publication": "guardian-politics", + "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, in heartland regions such as Anglesey (Ynys M\u00f4n) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", + "media_hash": "8ec504c78c4850ebad34b6394d97b1703c8b1447ea2580eb0eb21304", + "sequence": 18, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.975225, + "clinical_health": 3.975225 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "California considering a first of its kind idea to...", + "publication_date": "2026-03-31T17:50:57", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", + "media_type": "news_article", + "sentence": { + "text": "A bill last year that would have replicated the model for affordable housing projects died without a full vote in the Assembly.", + "media_hash": "959b2da550377157f494fd9163a96698b8ce59623f4e6dea553e7231", + "sequence": 44, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.920805 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Authorities have also implemented a City of Savannah's Top 10 Most Wanted list, the mayor said, as he applauded the Dundee Cottages project comprising 39 new cottages and 16 brand new apartments for people experiencing homelessness.", + "media_hash": "2900df147bb5f0cb97dc906f3bf94ddb08fe494a7d12488b157bda50", + "sequence": 46, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.862985 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.862985 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", + "media_type": "news_article", + "sentence": { + "text": "Just days before the Labour Yimby curry night, to the dismay of some councils and social housing groups, Reed announced \"emergency measures\" to cut the amount of affordable housing that developers were required to build in London.", + "media_hash": "47236be493e2a9fc654916db26c3d5f6faf3befab2d53e438d3477d2", + "sequence": 35, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.748535 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", + "media_hash": "dd7fa4c05e4853cd8e48af38f594720ac09b3e705427a66cdefcdc09", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.748535, + "senedd_election": 3.748535 + } + } + } +}, +{ + "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", + "publication_date": "2026-03-31T15:52:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", + "media_type": "news_article", + "sentence": { + "text": "The Powderhall project in Edinburgh, centred on the grounds of a former waste transfer station, bowling greens and adjacent stables, will deliver a mix of affordable housing, community facilities and green space as part of a long-term transformation.", + "media_hash": "745e9ff6ca52c77808418587f7dbe76c4748f57bbb0c1813b3b58c77", + "sequence": 2, + "claim_type": [ + "predictions" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.74449 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", + "media_hash": "2673585d7ff5fa0234fc017c81f719afa40d136638c868b1624c1fff", + "sequence": 35, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.739565, + "senedd_election": 3.739565 + } + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "The West Wemyss mass evictions controversy could be the first of many unless politicians act, a major homelessness charity has warned.", + "media_hash": "637f793bb3c2c14b191057df7d15026690401da1d32ecfcb3e7e7ab2", + "sequence": 5, + "claim_type": [ + "correlation", + "predictions" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.7135350000000003 + } + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "\"It's all because we find it too difficult to build the volume of social housing that would change the game.", + "media_hash": "455e88a8807088da6c1aa5eb38e8960cd22edf36b245995a7b8cf7d0", + "sequence": 29, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Gordon Llewellyn-McRae", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.703135 + } + } + } +}, +{ + "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", + "publication_date": "2026-03-31T11:32:07", + "publication": "scotsman", + "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", + "media_type": "news_article", + "sentence": { + "text": "One is giving people in social housing the right to a healthy, sustainable home.", + "media_hash": "9e0ff278c501499dd6606a62a2b2fb49148812237370b3c507aff45a", + "sequence": 25, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Paul Wilson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.703135, + "housing": 3.703135 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T06:20:06+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038863891778691276", + "media_type": "social_post", + "sentence": { + "text": "'America's prettiest city' beset by homelessness and drugs nightmare under woke mayor: 'They're injecting in broad daylight' https://t.co/UTYgfC7MqM", + "media_hash": "043c103d37dd44d07eedf5da0f4fc6fd89cfeff972f4ee5020d4a852", + "sequence": 0, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "woke mayor", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.62201 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", + "media_hash": "58358ea3e614030f18193aa7f5e2368d39bc5a42b77fe1d4e68fa826", + "sequence": 4, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.58131, + "senedd_election": 3.58131 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", + "media_hash": "27e4a3f1581447eb536556e314efc4eb5694e2819e33dede6df8ffbe", + "sequence": 26, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.58131, + "senedd_election": 3.58131 + } + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "Fife Council housing spokesperson Judy Hamilton gave an update on new builds.", + "media_hash": "a39c58e0067e0eb998ca48d93cf4e1144af7b818b4f3ddd73f6cd8d0", + "sequence": 30, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.58131 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", + "media_hash": "2148e03f5a316c96d45041dd4c587be626eebd57a33651a007df1db5", + "sequence": 28, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.566845, + "senedd_election": 3.566845 + } + } + } +}, +{ + "title": "California considering a first of its kind idea to...", + "publication_date": "2026-03-31T17:50:57", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", + "media_type": "news_article", + "sentence": { + "text": "The housing factory surety guarantee idea is \"super innovative,\" said Jan Lindenthal-Cox, chief investment officer at the San Francisco Housing Accelerator Fund, a nonprofit that directs philanthropic money toward cost-cutting affordable housing projects.", + "media_hash": "6bc141b7fcc824bbf26b982fbaf5f336dcc9b0202044e5ae56a1a823", + "sequence": 45, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jan Lindenthal-Cox", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "San Francisco Housing Accelerator Fund", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", + "publication_date": "2026-03-31T15:52:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", + "media_type": "news_article", + "sentence": { + "text": "Councillor Tim Pogson, convener for housing, homelessness and fair work at the City of Edinburgh Council, said: \"This is a very exciting moment for the Powderhall regeneration.", + "media_hash": "7e3784f5a8002136e5f358cd287be4a8d3aa2a5c1a13b3501190f3e4", + "sequence": 9, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Councillor Tim Pogson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "City of Edinburgh Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "When it was built in the late 1960s and early 70s, its concrete expanses and 'walkways in the sky' were touted as a modern British success story, where the poor were to be supported by access to decent social housing.", + "media_hash": "906c850ff4b5e8ab88b15d23f649d99194f88ef73472a2807d8a10ec", + "sequence": 73, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "housing": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "The homelessness charity says other corporate landlords will be watching the West Wemyss situation with interest.", + "media_hash": "4df64ce49ed06382c750558eb7ba3539ce685bc74a6f11b518400be6", + "sequence": 1, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + } + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", + "media_hash": "225f398a9c173c03c7d4f4abbf2b8ffc518f20852ecdc157df373c45", + "sequence": 60, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.5503549999999997, + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "\"So, there has to be a combination of interventions: the Government's affordable housing programme; the attractiveness of Scotland for investment purposes; and also, for example, bring void accommodation into use by the public sector.\"", + "media_hash": "00c4cc6c8d5e63535f13a351afda531f5229386d8ee5f76e824e08ce", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", + "publication_date": "2026-03-31T20:50:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", + "media_type": "news_article", + "sentence": { + "text": "Raman has been labeled a 'progressive' member of city council, whose main policies involve affordability and tackling the homelessness crisis.", + "media_hash": "d385d1083ce773f4482f04d1f236242ee14398d34f74a2269b986542", + "sequence": 21, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", + "publication_date": "2026-03-31T20:50:29", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", + "media_type": "news_article", + "sentence": { + "text": "Bass, on the other hand, was labeled as an incumbent and a 'veteran legislator' who is also focusing on homelessness.", + "media_hash": "b06a32eba819861e231c8307fb2abd385814705e4c27e7eec0bf6afb", + "sequence": 25, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", + "media_hash": "f53b2ae83cbb151ae7c9721d1b15c6a5e5ff13daef3d596f7c5f43c3", + "sequence": 13, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alison Watson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Shelter Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997, + "scottish_elections": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Reform UK eye historic upset to hit Labour where it would hit hardest", + "publication_date": "2026-03-31T07:23:00", + "publication": "express-showbiz", + "url": "https://www.express.co.uk/news/politics/2188571/reform-uk-eye-historic-upset", + "media_type": "news_article", + "sentence": { + "text": "In London and other major cities Reform of course needs to make a pitch on the cost of living, including affordable housing.", + "media_hash": "25a19995e7a21b79eaead0980dd733de5dcbda3ee75b8fe9d7a20a7e", + "sequence": 10, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Reform UK", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "A major operation was launched by the council in partnership with police, homelessness charities, gang crime experts and drug specialists to tackle the 'out of control' antisocial behaviour.", + "media_hash": "1761f70f8bd6b38af4bc9af26279e1597952b2371d355d792d4c5874", + "sequence": 48, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", + "media_type": "news_article", + "sentence": { + "text": "The move followed a meeting between government housing officials and several firms represented by the LPDF - including Barratt and Vistry Group - in which developers asked for affordable housing requirements to be slashed.", + "media_hash": "40886c64a87e3ec529a2fec24d28e090dcd8e180118ce8f6e614120c", + "sequence": 36, + "claim_type": [ + "correlation", + "opinion", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", + "publication_date": "2026-03-31T11:00:00", + "publication": "inews", + "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", + "media_type": "news_article", + "sentence": { + "text": "A number of social housing groups and homeless charities who spoke to The i Paper said they are concerned at not being granted the same access to the Housing Secretary as private developers.", + "media_hash": "053bf5a2d7d80566d5424d1ae4e02805940916ae7321272d6548c00a", + "sequence": 43, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "social housing groups", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "homeless charities", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", + "media_hash": "02befcea8b75930565027e0a883c97662112260256f7e28092732a76", + "sequence": 33, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997, + "senedd_election": 3.5503549999999997 + } + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "There has to be a combination of interventions - the Government's affordable housing programme, the attractiveness of Scotland for investment purposes and, also, for example, bring void accommodation into use by the public sector", + "media_hash": "8fab3bdd5f239138c0d3250ebe6dc3c3127571dcdc13dcd439adaadf", + "sequence": 11, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "'With a plan like this, we can actually really effectively remove and resolve homelessness,' added Stephanie Kaple, the Executive Director of the Savannah Chatham County Interagency Council on Homelessness, the lead organization in the plan's development.", + "media_hash": "884155499e1e34bdbb2272a74d0c68f302ebf9bea6a42cba52961063", + "sequence": 18, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jennifer DuLong", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Stephanie Kaple", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Savannah Chatham County Interagency Council on Homelessness", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5503549999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.5503549999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "They also put together a five-year strategic plan to end homelessness in the city.", + "media_hash": "14319656ce93d52619f16dc3b4c6d96aff776769e57d41280aed8465", + "sequence": 16, + "claim_type": [ + "quantity", + "predictions", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.541385 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.541385 + }, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T11:29:34+00:00", + "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", + "url": "https://x.com/sinnfeinireland/status/2038941769794982143", + "media_type": "social_post", + "sentence": { + "text": "This government wants you to believe it's normal that over 17,000 people, including nearly 5,500 children, are now homeless.", + "media_hash": "0daa5ed5073496a79d51a73a6ba3fd62795538250c217965d478d377", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.5175099999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", + "media_hash": "cd06ed5004f404717f563a41c98f8290b205fbedbe0dfdd6c61f7e25", + "sequence": 16, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.436025, + "senedd_election": 3.436025 + } + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The Legislature authorized a wide-ranging study in 2017 that determined the state \u0301s supply of affordable housing was in crisis.", + "media_hash": "b136e3deb59dfc61cb96b7e400403e397168d23dd35f2852ba336994", + "sequence": 41, + "claim_type": [ + "rules", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.436025 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", + "media_hash": "a5a6e1aec007a74d87cdb081bdc25bf760fbca0b00fa022854411817", + "sequence": 31, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.419705, + "senedd_election": 3.419705 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", + "media_hash": "39bf9f789c5f9f7143aab76d89496a5d9e29741c06422b5be5f24ed8", + "sequence": 30, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.414065, + "senedd_election": 3.414065 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", + "media_hash": "f16a963461e2d5b708e3a168a2feb7b4990a19962140cf19fb92600e", + "sequence": 32, + "claim_type": [ + "predictions", + "other" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.381535, + "senedd_election": 3.381535 + } + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Yet problems have persisted, as residents started mixing Xylazine, also known as tranq, with fentanyl in February 2025 for a stronger high, according to WSAV.", + "media_hash": "217c1beb9365f8b61b4f1a86a7f298b37dbdbe2a5c772aa09c398d20", + "sequence": 19, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.3239400000000003 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 3.450375 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Homeless numbers are rising every month, demand from the council on housing associations for temporary accommodation means more than half of all lets are for people who are homeless.", + "media_hash": "9a5a41c378cec28435b87dd423ab7803067aefadce266cf8efcc8741", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Glasgow City Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.2500299999999998 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T13:04:14+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/PeterKLamb/status/2038965596130324762", + "media_type": "social_post", + "sentence": { + "text": "RT @ChamberVoice: We've spent \u00a320bn on fibre - yet 90% of social homes are still offline.", + "media_hash": "a23ec8e18dcb55d5cc2df09fad8d06c2dff09277039462c99bcb5383", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "ChamberVoice", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.123595 + } + } + } +}, +{ + "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", + "publication_date": "2026-03-31T23:00:31", + "publication": "guardian-society", + "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", + "media_type": "news_article", + "sentence": { + "text": "In recent years, the share of this group - non-graduates in their late 20s - who are in private rented accommodation, which can be costly and insecure, has doubled, from 16% in 1998-99, to 33% in 2023-24.", + "media_hash": "4329a591e6fdcd227c32965f6ca1b4c2434d2a61e04ff7803106fde3", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Resolution Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Only 14 affordable rental units are available for every 100 extremely low-income households.", + "media_hash": "7d27753df9f6f12ebb22f078079eda97b89cc6a84caeb45d24609562", + "sequence": 26, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.123595 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "4 charged in corruption investigation linked to NYC...", + "publication_date": "2026-03-31T19:41:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "The pair also received more than $200,000 in kickbacks in exchange for steering contracts worth millions of dollars to businesses controlled by Edouardo St. Fort and Miguel Jorge, the indictment said.", + "media_hash": "269efae657657796f554837fe66846c34c198e037df2a0a136313332", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Roberto Samedy", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Jean Ronald Tirelus", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Edouardo St. Fort", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Miguel Jorge", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 3.09725 + }, + "demo": { + "politics": 3.09725 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "It is the lowest in six years.", + "media_hash": "8735c440d036f8666daa45053b5344401f4ff428aa1c254222a5d817", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 3.09725 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "4 charged in corruption investigation linked to NYC...", + "publication_date": "2026-03-31T19:41:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "St. Fort and Jorge were charged with federal program bribery and related charges, and face up to 10 years each.", + "media_hash": "17a5d845b48cec7c46fab107ebbec877a67587b3b032557ed91900de", + "sequence": 23, + "checkworthiness": { + "fullfact": { + "housing": 3.083055 + }, + "demo": { + "politics": 2.7846200000000003 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", + "publication_date": "2026-03-31T19:10:45", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", + "media_type": "news_article", + "sentence": { + "text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", + "media_hash": "5f1fde4db51650778b64b784c3a487b3c8477bd3152bd0313aae5cb1", + "sequence": 61, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Murdo Fraser", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Scottish Conservatives", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "scottish_elections": 3.063685, + "housing": 3.063685 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "City officials said they have since issued 41 citations, 30 in 2025 alone, to assuage the authorities as 153 firearms were reported stolen.", + "media_hash": "daf717223d1b1b8fbfc70244143483907e9f5628b02da7f09d90daf9", + "sequence": 44, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.970815 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "California considering a first of its kind idea to...", + "publication_date": "2026-03-31T17:50:57", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", + "media_type": "news_article", + "sentence": { + "text": "Most would do so by standardizing or trimming regulation.", + "media_hash": "70fa345524a696165d41db40259522f891faba15783879abdce2fd3a", + "sequence": 8, + "checkworthiness": { + "fullfact": { + "housing": 2.9374000000000002 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Susan Boyle wows with dramatic makeover as fans say she 'aged backwards'", + "publication_date": "2026-03-31T04:05:00", + "publication": "mirror", + "url": "https://www.mirror.co.uk/3am/celebrity-news/susan-boyle-wows-dramatic-makeover-36876666", + "media_type": "news_article", + "sentence": { + "text": "Susan continued her charitable promotion: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", + "media_hash": "17ff8d76907f04aa65fcc0e44d834280e16bd021658adad24ca8cbdf", + "sequence": 10, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Susan Boyle", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Street Soccer Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.922625 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Susan Boyle fans say she's 'aged backwards' after dramatic makeover", + "publication_date": "2026-03-31T06:05:00", + "publication": "dailystar", + "url": "https://www.dailystar.co.uk/showbiz/susan-boyle-fans-say-shes-36889400", + "media_type": "news_article", + "sentence": { + "text": "Susan continued her charitable endorsement: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", + "media_hash": "eb13ae5f6541c2f2f8f6abed9b809395144be474422d869e46d6f78f", + "sequence": 10, + "claim_type": [ + "personal", + "other" + ], + "claimer": [ + { + "name": "Susan Boyle", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Street Soccer Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.922625 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "media_hash": "84e06b784f1aca1504fbeb16ed7c4ce2f86e63f37a782d6d503a1873", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 42115, + "score": 0.06530000000000002 + }, + { + "tracked_claim_id": 42165, + "score": 0.10399999999999998 + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.89907 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "media_hash": "234f104d5df2b9b1b30675ddedd773d291b7b055a33cac174dc6011e", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.89907 + }, + "demo": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T00:31:39+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/DailyMail/status/2038776200454127967", + "media_type": "social_post", + "sentence": { + "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs https://t.co/fvof91NBRy", + "media_hash": "28044902560498254a50491ac82664b70c46a7440c23d7b1188637a2", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "residents", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.868115 + } + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "A young family have been left homeless and a couple forced to use tarpaulin sheets for windows after a cowboy builder allegedly conned them out of \u00a3100,000.", + "media_hash": "79f78b37b861abdd87534488fd4efde6b35429291574d4b9acb39f02", + "sequence": 2, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.8334 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.68177 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "'If people are being moved out of council houses, and they are being replaced with a higher number of private residences - that's a problem.", + "media_hash": "c4f5541621be7046cb2386f75b1db0fc94d790bd968a3768a25c91f1", + "sequence": 66, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Denise Williams", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.810965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "The mother of three paid \u00a345,000 for a bungalow extension but said when she returned home after four weeks and there 'was nothing left'", + "media_hash": "c98c5d89862d4024b1afba8410ddf7f9ead464d8b46059ec6dc86c60", + "sequence": 31, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Yasmin Taylor", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.772635 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "Six months later she is still sharing a bedroom with her partner and three children with her house left in a pile of rubble", + "media_hash": "28389249e5aad52e8e8347d8d7eae9efb7805e03e408df8b941ce22d", + "sequence": 32, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.772635 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "\"What we see in the construction sector are some of the challenges about the cost of construction of houses, because the cost of construction of houses has gone up significantly as a consequence of the global pressures around about the access to raw materials following the invasion of Ukraine, so general construction costs have increased,\" he said.", + "media_hash": "62a21fe8ac6efe09f3d9e62f0b3157e188fd7852f5139f037bf756c7", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "John Swinney", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.76525 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", + "publication_date": "2026-03-31T23:00:31", + "publication": "guardian-society", + "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", + "media_type": "news_article", + "sentence": { + "text": "Home ownership over the same period halved.", + "media_hash": "8db1fe105d7af1a0acbacbb315dbe38e4af672a64591b1d098cdcd90", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Resolution Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Most of the dollars that have been distributed so far are loans, which recipients are required to repay within two years.", + "media_hash": "0efbfa77105fe89961534f72dfbdc0c1213c8e1ff414ecb242f6589d", + "sequence": 36, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "A whopping 67 per cent of over-65s live in homes with two or more spare rooms - far higher than any other age group.", + "media_hash": "ea3ab597321cdd5e41b76305d697d5d3caae9dd828d54f5ee523e4ca", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "An annual decrease was reported for all-sector starts (6% decrease) and completions (13% decrease) between 2024 and 2025.", + "media_hash": "b87fba689b9b6b628f7708cc26f692621a1384ff7f1ebbe324100be8", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "claims_matched": [ + { + "tracked_claim_id": 28741, + "score": 0.15600000000000003 + }, + { + "tracked_claim_id": 28743, + "score": 0.23129999999999995 + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", + "media_hash": "784e0d930b5c73351a6c477e8f3b69476b0d89820ea583ee8b125ed6", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "In every single region of the country, there are more homes than households: even in London, the epicentre of the housing crisis, there was an excess of 250,000 properties in 2021.", + "media_hash": "77cd2459b15aafa3663c8062295a49c95544445899455b6116f380bb", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "That is a staggering statistic in the middle of a housing emergency in which 8.9 per cent of households in the social rented sector and 5.8 per cent of private rented households are classed as officially \"over-crowded\".", + "media_hash": "13dc1912663ca070425147f30b392b403fe9fb8a23176c5d2f66a9d2", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", + "media_hash": "1ccd5bc5d40ea0949a101c238d1e556667b785ada7dcfdba34fae724", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "media_hash": "efcb2ed19649a98a79a62775e4cd487234bee9398d990d396da7a473", + "sequence": 0, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.68177 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.68177 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "Still, if there was a water shortage not of my causing and I had more bottles gathering dust in the garage than my family needed, at a time when others were going thirsty, would I not have a moral obligation to offload my excess to help those in desperate need?", + "media_hash": "be25134d02aab8a7adab9bb96796fdb36f9ff0c16bbae1aea96253c6", + "sequence": 31, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.658185 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "Ms Taylor has since shared negative reviews on Facebook, which Mr Bishop claims have led to his house being attacked and his life being put at risk.", + "media_hash": "7e6ea202546784d6813b05b6e2ddae0f929bc48aba52e5c24116928c", + "sequence": 53, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.652965 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Low supply is causing prices to spike.", + "media_hash": "c2ab82335b75959141cea42a41bbe703f9e31899be9ba1a8c68dc6a5", + "sequence": 27, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.6127849999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "Neither party will go on record to explain what went so wrong that more than half of that deal has been torn up, but the council admitted 'progress has been too slow', and this has caused 'serious problems including anti-social behaviour in and around the vacant blocks'.", + "media_hash": "0bb150fd5828d3d215f9d6a55f537ddb0940df47fc909553b1400226", + "sequence": 36, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Southwark Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Notting Hill Genesis", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.61247 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "housing": 2.61247 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "'We know that these firearms are being stolen to defend public safety,' Mayor Johnson said, noting that in just one year the city has seen a nearly 40 percent decline in firearms being stolen from unlocked vehicles.", + "media_hash": "ee05cc68a1ba072923c05764045280ed8826605ff71b346cedbf12ee", + "sequence": 45, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Van Johnson", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.61247 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.61247 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "Michael Bishop has been accused of taking \u00a364,500 and \u00a345,000 from the two families before wrecking their houses and running away", + "media_hash": "4f3c4c48baa368a5086f5c89fb4b4b7aaec70e9c45251aa496ccf2b2", + "sequence": 29, + "claim_type": [ + "quantity", + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.61247 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.61247 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "There were 430 social sector starts last year in Glasgow last year, up from 309 the year before and the highest in the last four years.", + "media_hash": "40d38b906bd3f638a81a726cadcfadbf68b9cc11f26f4bbadc45de08", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claims_matched": [ + { + "tracked_claim_id": 25138, + "score": 0.40900000000000003 + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.58736 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "So far, Notting Hill Genesis has built 703 homes, with another 321 currently under construction.", + "media_hash": "a4ee431fd833924a66954ff90b88ea5cd418223e8db46b7929c2caa5", + "sequence": 104, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "It was estimated in 2005 that fully retrofitting the estate would cost \u00a3350m, exactly the same amount as has been spent to date - although the former figure would now be higher, accounting for inflation.", + "media_hash": "3fae69c9f70011e9261e10dff9822a62793c32028f6f76923872cf11", + "sequence": 70, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "The 29 single-family homes in Paradise Trails - which are now available for purchase - are in line with Nevada \u0301s average housing costs.", + "media_hash": "a887d8afbe9b5d8c6cf43366ba48f541be8f52f1e43b9181e97cbd01", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Small Scottish town makes land buyout to build affordable homes for locals", + "publication_date": "2026-03-31T12:01:55", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983890.gatehouse-fleet-makes-land-buyout-build-homes-locals/", + "media_type": "news_article", + "sentence": { + "text": "Gatehouse of Fleet has a population of just over 1,000 and is named after the old tollhouse on the River Fleet.", + "media_hash": "dafb38609697675b8e752c9b919b5ada05caaa4bbac0403d8d9b1b8c", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "But Southwark Council insisted it was more economical to start again, signing a blueprint from Notting Hill Genesis in 2014 to rebuild the estate with 4,200 new homes by 2036 - with the total project estimated at \u00a31.5billion.", + "media_hash": "3048d9d51c00a025165a3670a3e3d54818d68b4ae04bda70b87ddd6c", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Southwark Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "California considering a first of its kind idea to...", + "publication_date": "2026-03-31T17:50:57", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", + "media_type": "news_article", + "sentence": { + "text": "Depending on the nature of the project and the contract, a bond might cost a factory anywhere from three-quarters of a percentage point to 3% of a contract \u0301s entire cost, he said.", + "media_hash": "16cee858a8aef24b6ecb07f6319eac11571f1e1c01d10de5e206e519", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "We haven't got 100 per cent brilliant reviews.", + "media_hash": "1195ec3958c3c9e028fc43cb23e04297d2a79db1590c37435f87c130", + "sequence": 57, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Michael Bishop", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "In terms of starts, building work on 11,929 was started by the private sector and 3,070 homes by the social sector.", + "media_hash": "485e657d6ce847e735502b46b46e969e363d7e2a0f4da68827973734", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "Fife Council's current new-build housing programme includes 1,200 homes either planned or already under construction.", + "media_hash": "a3c0201411a4ed1a8d3946a2221fc12c04c114c5bb04e629885857d3", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + } + } + } +}, +{ + "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", + "publication_date": "2026-03-31T15:52:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", + "media_type": "news_article", + "sentence": { + "text": "The latest construction phase includes 27 council homes for older people, 19 of which are wheelchair-adapted, as well as a 128-place early years centre.", + "media_hash": "ab61950e44ab60077ff2665c65eedd02a92fe1582f2c7cd77d16bfdf", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5769 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "New build social homes completed in Glasgow last year have plummeted to the lowest level in decades.", + "media_hash": "64902929181acb04f47135dccef66dd77e328bd34e4795455af86d90", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", + "media_hash": "2ad4946c1e63d014883a6bfebd2a7dbd9231791f4e4a19fce3738292", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "In England alone, there are 1.4 million more properties than households needing them, according to the 2021 census.", + "media_hash": "ea5e7a30fed2320b82179b0b89d8fe04373ec374d47f22dce5f42d0e", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Refusing to downsize? You\u2019re a selfish citizen", + "publication_date": "2026-03-31T09:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", + "media_type": "news_article", + "sentence": { + "text": "So severe is this problem that, according to government data, 72 per cent of homes in England are now classed as \"under-occupied\", meaning they have at least two bedrooms more than their occupants need.", + "media_hash": "4128353385370c0fc9318aa44cd75a03f4ec83978332e3213b8ed502", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Economists", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here\u2019s how to get London building now", + "publication_date": "2026-03-31T04:21:00", + "publication": "cityam", + "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", + "media_type": "news_article", + "sentence": { + "text": "As of last October, new housing construction per 1,000 residents over the past 12 months stood at 0.58 in London, compared with 2.35 in New York and 5.27 in Paris.", + "media_hash": "899eef65bf4fec70dae06d509f0dbe93b9ee571551639799f1aaed57", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "Aylesbury, which housed more than 10,000 at its peak, is one of the largest and most notorious council estates in the country.", + "media_hash": "5794abf1e26cc2e122cc2a72dba5fff767f46a53a8233074359a2598", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "With more than 2,700 homes across dozens of large blocks, it was one of the largest council estates in Europe - but its decline has since become a symbol of the long-term failures of the post-war housing project.", + "media_hash": "565db8a46cbbe563108dd6f32bf41995b4a954c8c577a05389999689", + "sequence": 74, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "Two of those are almost complete, while the proposal for Phase 2B, which includes the empty Wendover block, is still awaiting planning permission from the council.", + "media_hash": "e72a95d2cb793fa99ecb084b38a3a5b06dc63272c8db8ef54913cc77", + "sequence": 107, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", + "media_hash": "ccb61923a8122037970ff5be668dabf65abb8a65293ac17254684c4c", + "sequence": 42, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "That was part of the impetus for AB540, which focuses on middle-income housing but includes millions of dollars for low-income rentals as well.", + "media_hash": "c5cad5298efb92ad3e7a7b89cb658194fcfdff7bc1ec1b8ff1626f11", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Official figures show the number of homes for social rent completed in the city in 2025 was just 235.", + "media_hash": "156f5c2e9e88f2e355973f6453c936d7dcdd1a8fa44d30bbf4fe9078", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Across Scotland, social sector new home completions fell to 3611 last year from 4835 in 2024 and the number started was also down.", + "media_hash": "171a897824742296579b362230a2b8110368d2280715c20deddc256e", + "sequence": 16, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", + "publication_date": "2026-03-31T10:28:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", + "media_type": "news_article", + "sentence": { + "text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", + "media_hash": "b55a04b734e8aa027139021f331c325b82d94fd97facc2b0f8406bab", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "My parents went from a three-bed to a bungalow \u2013 and lost my million-pound inheritance", + "publication_date": "2026-03-31T07:00:00", + "publication": "inews", + "url": "https://inews.co.uk/opinion/parents-three-bed-bungalow-million-pound-inheritance-4274690", + "media_type": "news_article", + "sentence": { + "text": "Still, at least they had tens of thousands of pounds in the bank to see them comfortably through their twilight years, right?", + "media_hash": "31ce7f66a590c8e76f50ddad64d9b2f8daaefbe2b4cf1c6523434b90", + "sequence": 29, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "'Since the partnership between Notting Hill Genesis and Southwark Council was established in 2014, we've built over 700 homes on the estate, 581 of which the council has bought to utilise as council homes.", + "media_hash": "244e4f7c90bbf5719604ab552e064af3582e161b57ee630d92aa2422", + "sequence": 115, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Notting Hill Genesis", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Matthew Cornwall Jones", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here\u2019s how to get London building now", + "publication_date": "2026-03-31T04:21:00", + "publication": "cityam", + "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", + "media_type": "news_article", + "sentence": { + "text": "Last year fewer than 6,000 started construction.", + "media_hash": "f22714bd951d0e6f55d91d9c3ec6bf754426dde527026dc3cb6237e1", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", + "publication_date": "2026-03-31T00:31:02", + "publication": "dailymail-articles", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "With \u00a3350million spent so far, fewer than a quarter of the new homes have materialised, and more than a third of the original dwellings stand empty, awaiting demolition that has repeatedly been delayed.", + "media_hash": "f18e8b9a87aa74c896e98057fc57affb07f1547c7610169e04da9cdb", + "sequence": 37, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "His office announced in February it had awarded $86.1 million of the $133 million in the bill.", + "media_hash": "64c8beeaae406809ed0d8976ed87b5301e3771e9754f300d079691cc", + "sequence": 33, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "It has dropped steadily since 2019 when there was 1000 completions.", + "media_hash": "ebd102b281d2c793bab369ad6a81e2dd4582b189c72794ed9f1710d5", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Across all housing sectors, there were fewer homes completed in Glasgow, with 1530, down from 2301 the year before.", + "media_hash": "43db08102883af73bfaf747c4dbbf4a7e8db8aa75fd054ba35767c5f", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "Leaving out 2020, when Covid\u201019 affected building activity, the private sector completed fewer homes in 2025 than in any year since 2017 and started fewer homes than in any year since 2013.", + "media_hash": "bb4c668d805cf49ffef4afbc70de33bcafc0f9301327599e19cfe626", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "In Fife, almost 41,000 homes were sold and a housing emergency was declared in 2024.", + "media_hash": "a37e1186dfff2b1c52c958800ef31215b8ad4b3fb92ff01df84e8ff3", + "sequence": 24, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + } + } + } +}, +{ + "title": "Here\u2019s how to get London building now", + "publication_date": "2026-03-31T04:21:00", + "publication": "cityam", + "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", + "media_type": "news_article", + "sentence": { + "text": "We have an ambitious target agreed between the Mayor and the government of 88,000 new homes a year.", + "media_hash": "ab377ad484a2c4a9fbebf20ff434dad23c9fbf80862a46d789579197", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Here\u2019s how to get London building now", + "publication_date": "2026-03-31T04:21:00", + "publication": "cityam", + "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", + "media_type": "news_article", + "sentence": { + "text": "We surveyed our members on the initial proposals, set out in October, and found that across 67 development sites in London, representing over 86,000 homes, only 17 per cent - less than 15,000 homes - could potentially benefit from the original emergency measures.", + "media_hash": "7b7ab9ed56cc816961e038566efb47d6920ca9d8b561a469e1d0f8ae", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Of the money that \u0301s been spent, $22 million was earmarked for homebuyers who work in the fields of health care, education, public safety or construction.", + "media_hash": "1298275bbc6d6aea6d00671603cbd0c3b0117dd86ecf1152ff17155e", + "sequence": 34, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "Other spending so far has included $15 million on low-income housing specifically, $9 million in grants to local governments and $11 million on land purchases (all of which have been in Clark County).", + "media_hash": "a3b3e6716bdb7ab0f387dd45f0f3b5cb2e2bb689a1ebbfecc2199c3f", + "sequence": 35, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Projects partly funded by Nevada governor's housing...", + "publication_date": "2026-03-31T19:12:36", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", + "media_type": "news_article", + "sentence": { + "text": "It provided $23 million worth of loans so construction companies can purchase land for development and $25 million in grants to local governments to cover building and permitting fees.", + "media_hash": "f71f358a7d2cfbfbe1005ddd9d639211d48695459119bf78faf3647d", + "sequence": 46, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "The Homeless Authority also reported 457 sheltered and 172 unsheltered people during last year's point-in-time survey, which is required by the federal Housing and Urban Development to allow organizations and agencies to receive federal funds.", + "media_hash": "68dc1b6d44283b93b41db331f09f9a7d29eaa79fe69270a05e2f93be", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "The Homeless Authority", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, records show the number of recorded encampments in Chatham County plummeted from 80 in 2023 to 39 in 2025.", + "media_hash": "db414027f8ce13110e614a2631db07c1f3721388cc32f760a5e4d10d", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "The charity Shelter Scotland warned the Scottish Government risked missing its target of 110,000 new affordable homes by 2032.", + "media_hash": "3f240be9fea4df022a32a44b3d9a39118c99444f616f9d723eca0741", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Shelter Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "It is down from 408 the year before and the lowest on record since 1996.", + "media_hash": "2d1fb3e28135f15d92bffbb512f554f7f393a5be39575dee18397dae", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "There was a drop in all housebuilding starts and completions across Scotland.", + "media_hash": "a9bb2f8f262eff110d9ce76e668480c27d6cd9a89906ab6e0b46703b", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", + "publication_date": "2026-03-31T06:28:36", + "publication": "dailymail", + "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", + "media_type": "news_article", + "sentence": { + "text": "Of the 240 flats, just six still have tenants, while the sister block is completely empty.", + "media_hash": "dac23e014108c60afa2503e3424d26f381e24eeb48bfd7cec4720362", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "housing": 2.5769 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of \u00a3734m.", + "media_hash": "47080177b9a9766661fcbc56b5e8a3762d314eac6f83eee50d724e9f", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", + "media_hash": "c67679ac07dc8f9eba19de30f771b4bb7ec7c7992b1c313903b7fa97", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The budget had already been revised upwards to \u00a31.1bn in 2023.", + "media_hash": "5db2c65d4bce5a9c2600ba4cbbe5b076bcb0fb2d84f4fd4d506feebd", + "sequence": 6, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "The original budget, set back in 2016, consisted of \u00a3164m from the European Union, \u00a3445m from the Welsh Government and the \u00a31.3bn City Deal for the Cardiff Capital Region, and \u00a3125m from the UK Government.", + "media_hash": "49944e632af0943a9b5637ee742a48a4d07670e31f72f1e18a278a94", + "sequence": 7, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Welsh Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", + "publication_date": "2026-03-31T15:34:50", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", + "media_type": "news_article", + "sentence": { + "text": "Steph Morley, from Barnsley, and her husband Karl Younger paid Bishop \u00a364,500 to renovate their house", + "media_hash": "76ac23a5f4a33106d8cbfcdf1353ec5a2cc8b5c2651c4bf0d9a12790", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 0.0 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Small Scottish town makes land buyout to build affordable homes for locals", + "publication_date": "2026-03-31T12:01:55", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25983890.gatehouse-fleet-makes-land-buyout-build-homes-locals/", + "media_type": "news_article", + "sentence": { + "text": "The project has also received strong support from the local authority, including \u00a3300,000 in backing from Dumfries and Galloway Council's Town Centre Living Fund.", + "media_hash": "01167d70696c952237ec542805cdf79572992f0f7dc7747c19773e03", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "There were 17,336 new homes built and 14,999 new builds started across the social and private sector in 2025.", + "media_hash": "45e3030361887b672a987352eab8e58d6d97ba696503c140dd8d4319", + "sequence": 18, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "New build social housing completions plummet in Glasgow to record low", + "publication_date": "2026-03-31T10:29:51", + "publication": "eveningtimes", + "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", + "media_type": "news_article", + "sentence": { + "text": "The private sector built 13,725 homes and the social sector built 3,611 homes.", + "media_hash": "8d17a52ee242f25feaa93f645a2ee96ba5b3789f8fdaec6618fe661c", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Charity warns Fife evictions may be first of many unless politicians act", + "publication_date": "2026-03-31T05:03:02", + "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", + "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", + "media_type": "news_article", + "sentence": { + "text": "Scotland lost around 500,000 council houses under the Right to Buy scheme between 1980 and 2016.", + "media_hash": "6226f637c02eeed02bd9d1a74e55aea95613f1f6d16a84818ba25fc5", + "sequence": 23, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + } + } + } +}, +{ + "title": "Here\u2019s how to get London building now", + "publication_date": "2026-03-31T04:21:00", + "publication": "cityam", + "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", + "media_type": "news_article", + "sentence": { + "text": "The need for new homes in London is high, but effective demand is low given the cost buyers face.", + "media_hash": "1c799e0bb8689f48e87e4382b2434ba4332b88c0a0bc8fd3ace029e8", + "sequence": 33, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", + "publication_date": "2026-03-31T15:52:00", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", + "media_type": "news_article", + "sentence": { + "text": "Edinburgh unveils \u00a3350m plan to fast-track thousands of affordable homes", + "media_hash": "c9d384f1d455c4a15417b6d22e827b2da14fca0aae2c6e1bd676a097", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", + "publication_date": "2026-03-31T15:44:41", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", + "media_type": "news_article", + "sentence": { + "text": "That final projected cost has now edged up to around \u00a31.3bn.", + "media_hash": "bd8297e1114fc62c46bed5d670f749300b4d964bb7c623928cda9e2c", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Transport for Wales", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "James Price", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997, + "senedd_election": 2.5459449999999997 + } + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "Last year, the private sector completed the least amount of homes since 2017, with just 13,725 built, while the social sector completed just 3,611, the lowest since 2014.", + "media_hash": "7841c490a5ca561e5b3b4c75c0cff027653c52f6203f84d8a8723950", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "The number of social homes which began construction in Scotland last year was also the lowest figure on record at 3,070.", + "media_hash": "7a754536c9a28c978a04baaafc4ea03cb662bb6edb5ac59276365445", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Swinney: Government in extensive discussions with...", + "publication_date": "2026-03-31T13:59:48", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", + "media_type": "news_article", + "sentence": { + "text": "\"The Scottish Government pledged 110,000 affordable homes by 2032 - 70 per cent of which should be for social rent.", + "media_hash": "7f53c508497775fb7368de7fbd3e7b4cdfe600e26beb9cdc71c764a8", + "sequence": 22, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Scottish Government", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", + "publication_date": "2026-03-31T23:00:31", + "publication": "guardian-society", + "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", + "media_type": "news_article", + "sentence": { + "text": "It found that among 32-year-olds who are not yet parents, for example, twice the proportion of those in the lowest quarter of earners said they intended to remain permanently childless, compared with those in the top quarter of earners.", + "media_hash": "c4324724d5231249664c75bdbe723307c22fee9a67b15a294dce2966", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Resolution Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "4 charged in corruption investigation linked to NYC...", + "publication_date": "2026-03-31T19:41:20", + "publication": "dailymail-wires", + "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", + "media_type": "news_article", + "sentence": { + "text": "Since 2023, the city has agreed to pay more than $7 million to Fort NYC Security to provide security services at homeless shelters, often as a subcontractor for BHRAGS.", + "media_hash": "6a11d2b38952ab18df9b7e8f3a8153b1ba49c4fab40045051d690c2f", + "sequence": 25, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Fort NYC Security", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.5459449999999997 + }, + "demo": { + "politics": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T08:41:14+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Margaret4DR/status/2038899407467245786", + "media_type": "social_post", + "sentence": { + "text": "RT @The_TUC: Farage's Reform has pledged to rip up legal protections for workers and renters - handing power to bad bosses and rogue landlords.", + "media_hash": "a16bab836b4c18ed84334444da77fb7deb21584946976ab58e9e559d", + "sequence": 0, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "The TUC", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "housing": 2.538635 + } + } + } +}, +{ + "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", + "publication_date": "2026-03-31T15:26:12", + "publication": "dailymail-news", + "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", + "media_type": "news_article", + "sentence": { + "text": "Residents in Savannah have started mixing Xylazine, also known as tranq, with fentanyl.", + "media_hash": "0defd895afe01e1d52fe81dc970c452d780126c1e9295cef8453b9eb", + "sequence": 25, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "housing": 2.52653 + }, + "demo": {}, + "aapfactcheck": {}, + "pa-media": {}, + "maldita": { + "housing": 2.652965 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", + "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.51636, + "senedd_election": 5.51636, + "scottish_elections": 5.51636 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", + "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", + "sequence": 11, + "claim_type": [ + "quantity", + "correlation" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 5.36473 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.395685 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", + "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.395685, + "scottish_elections": 5.395685, + "clinical_health": 5.395685 + }, + "demo": { + "health": 3.3956850000000003 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.3956850000000003 + } + } + } +}, +{ + "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", + "publication_date": "2026-03-31T03:30:00", + "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", + "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", + "media_type": "news_article", + "sentence": { + "text": "Parents unable to enter the workplace because of care commitments is one of the most common drivers of child poverty.", + "media_hash": "a18de04cfb86874f3c7de87c3b1c1e1b0d180f5d0e96905f674eb7cb", + "sequence": 22, + "claim_type": [ + "correlation" + ], + "claimer": [ + { + "name": "Parents", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.35651 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", + "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", + "sequence": 4, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 5.2593950000000005, + "senedd_election": 5.2593950000000005, + "scottish_elections": 5.2593950000000005 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", + "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", + "sequence": 3, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.910905, + "senedd_election": 4.910905, + "scottish_elections": 4.910905 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", + "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", + "sequence": 37, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.89529, + "scottish_elections": 4.89529, + "clinical_health": 4.89529 + }, + "demo": { + "health": 4.89644 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.89529 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", + "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", + "sequence": 29, + "claim_type": [ + "correlation", + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.761455, + "scottish_elections": 4.761455, + "clinical_health": 4.761455 + }, + "demo": { + "health": 4.914235 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.914235 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", + "media_hash": "23c6fc7f1a5203bd7309cfa1790d7e445ebbee14ba91edf8cf40f3f9", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Trussell Trust", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", + "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", + "sequence": 17, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945, + "clinical_health": 4.545945 + }, + "demo": { + "health": 3.123595 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", + "media_hash": "0692d4b29d4d6a04e64057f461ad72382349124a8e881c1b2ff6c0e4", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Trussell Trust", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.545945, + "scottish_elections": 4.545945 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", + "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", + "sequence": 42, + "claim_type": [ + "correlation", + "predictions", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.429455, + "scottish_elections": 4.429455, + "clinical_health": 4.429455 + }, + "demo": { + "health": 4.094984999999999 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.429455 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", + "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", + "sequence": 6, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Food for Thought report", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.400095, + "senedd_election": 4.400095, + "scottish_elections": 4.400095 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", + "media_hash": "fd6136869b9b62d77d42ff7007b79321d337343dc2b40c7be2c474dd", + "sequence": 11, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Fair Feast", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.347765, + "scottish_elections": 4.347765 + }, + "demo": { + "nutrition_": 2.5459449999999997, + "politics_of_food": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", + "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", + "sequence": 19, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.326185, + "scottish_elections": 4.326185, + "clinical_health": 4.326185 + }, + "demo": { + "health": 4.326185 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.326185 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", + "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", + "sequence": 20, + "claim_type": [ + "rules", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.285765, + "senedd_election": 4.285765, + "scottish_elections": 4.285765 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", + "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", + "sequence": 43, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.224345, + "scottish_elections": 4.224345, + "clinical_health": 4.224345 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", + "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", + "sequence": 35, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jackie Baillie", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.173405, + "scottish_elections": 4.173405, + "clinical_health": 4.173405 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", + "media_hash": "9f6ae987c0baca74357aa22a06172ada9354698ae722bb0b0c9eeede", + "sequence": 22, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.128005, + "scottish_elections": 4.128005 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", + "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", + "sequence": 41, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "SNP", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Clare Haughey", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.061165, + "scottish_elections": 4.061165, + "clinical_health": 4.061165 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", + "media_hash": "1b54f26520edbcc346fb2c8d155c5f29d7877674c0075e788b8c690c", + "sequence": 37, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 4.061165, + "scottish_elections": 4.061165 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", + "media_hash": "b57d5be833b52020235188215fc83747d4ea69030a7f8b4e8dbf3cd4", + "sequence": 31, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.975225, + "scottish_elections": 3.975225 + }, + "demo": { + "nutrition_": 2.7201, + "politics_of_food": 2.7201 + }, + "pa-media": { + "nutrition": 0.0 + }, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", + "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.748535, + "senedd_election": 3.748535, + "scottish_elections": 3.748535 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", + "media_hash": "b89c04b51de045c663054fbfc6865a27fbc198eaed8d44ca6fa5e307", + "sequence": 35, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Farming groups", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "National Farmers Union Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.748535, + "scottish_elections": 3.748535 + }, + "demo": { + "nutrition_": 0.0, + "politics_of_food": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", + "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.51751 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", + "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 3.5175099999999997 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.548465 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", + "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "scottish_elections": 3.548465, + "clinical_health": 3.548465 + }, + "demo": { + "health": 5.548465 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 5.548465 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", + "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.548465, + "senedd_election": 3.548465, + "scottish_elections": 3.548465 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", + "media_hash": "86d362a210c7cecf9869a88f456e410bb08f46380093f35448d292e5", + "sequence": 13, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.4184200000000002, + "clinical_health": 3.4184200000000002 + }, + "demo": { + "health": 3.35651 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.4184200000000002 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", + "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.414065, + "senedd_election": 3.414065, + "scottish_elections": 3.414065 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", + "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", + "sequence": 10, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.3956850000000003, + "senedd_election": 3.3956850000000003, + "scottish_elections": 3.3956850000000003 + } + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "Alarmingly, more than 140,000 of these were for families with at least one child.", + "media_hash": "1b7e0b9c1f1eda1988c4cc7faf19ffa9e421899da274aecf24748d1a", + "sequence": 20, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.2500299999999998, + "scottish_elections": 3.2500299999999998 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 3.2500299999999998 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "The conflict has reportedly led to a 33% contraction in the global fertiliser supply chain.", + "media_hash": "3f7f25f3f23aac9c8a037837037f4890e39ad0df06fade57f7c720af", + "sequence": 12, + "claim_type": [ + "quantity", + "correlation" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.2500299999999998 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", + "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", + "sequence": 14, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.226865, + "senedd_election": 3.226865, + "scottish_elections": 3.226865 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", + "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", + "sequence": 18, + "claim_type": [ + "support", + "other" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.211065, + "scottish_elections": 3.211065, + "clinical_health": 3.211065 + }, + "demo": { + "health": 0.0 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 0.0 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", + "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", + "sequence": 1, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.18436, + "senedd_election": 3.18436, + "scottish_elections": 3.18436 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "Scots council pays \u00a330k after child given food they were allergic to", + "media_hash": "4103c42e04a2f9598a31600ecb80a061fe123e17f14e587229ec6cea", + "sequence": 0, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.16655, + "scottish_elections": 3.16655 + }, + "demo": { + "politics_of_food": 3.31818 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "Dumfries and Galloway Council recently forked out \u00a330,000 in compensation to a family after a child was repeatedly given food they were allergic to.", + "media_hash": "b22da22d3aef3cb1feaaf1ba686fc6d15f5b157595eb265f81a97258", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.16655, + "scottish_elections": 3.16655 + }, + "demo": { + "politics_of_food": 3.16655 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "publication_date": "2026-03-31T07:17:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", + "media_type": "social_post", + "sentence": { + "text": "\ud83d\udc67\ud83c\udffb Lifting 450,000 children out of poverty by removing the two-child cap", + "media_hash": "98411a8d0c31a38da64d7ba6371a2f2bed60e948bf8d0d3b14bf128b", + "sequence": 5, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "josephpowell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 3.123595, + "poverty": 3.123595 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", + "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", + "sequence": 8, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.063685, + "senedd_election": 3.063685, + "scottish_elections": 3.063685 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "\"And given that the council recently paid out \u00a330,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", + "media_hash": "12314b755594ea761309afedca6739fde76c88e89a7abbcdc6038b75", + "sequence": 19, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dumfries and Galloway Council", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Annandale North Councillor Carolyne Wilson", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Labour Group", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 3.061215, + "scottish_elections": 3.061215 + }, + "demo": { + "health": 3.061215, + "politics_of_food": 3.061215, + "nutrition_": 3.061215 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", + "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", + "sequence": 18, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Janet Hayward", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Big Bocs Bwyd", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", + "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", + "sequence": 9, + "claim_type": [ + "quantity", + "other" + ], + "claimer": [ + { + "name": "Chris Nottingham", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Blaenau Gwent Food Partnership", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.910905, + "senedd_election": 2.910905, + "scottish_elections": 2.910905 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", + "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", + "sequence": 5, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Equality and Social Justice Committee", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", + "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", + "sequence": 16, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Jenny Rathbone MS", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.8717300000000003, + "senedd_election": 2.8717300000000003, + "scottish_elections": 2.8717300000000003 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", + "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", + "sequence": 23, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.799985, + "scottish_elections": 2.799985, + "clinical_health": 2.799985 + }, + "demo": { + "health": 2.53726 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.53726 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", + "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", + "sequence": 40, + "claim_type": [ + "quantity", + "correlation", + "other" + ], + "claimer": [ + { + "name": "Scottish Liberal Democrat", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Alex Cole-Hamilton", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.712725, + "scottish_elections": 2.712725, + "clinical_health": 2.712725 + }, + "demo": { + "health": 4.41429 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.712725 + } + } + } +}, +{ + "publication_date": "2026-03-31T07:17:35+00:00", + "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", + "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", + "media_type": "social_post", + "sentence": { + "text": "\ud83e\udd63 Free breakfast clubs in schools - saving parents up to \u00a3450 a year", + "media_hash": "1a20fddce70639899a08cbb264f6e172362e58ade63f5074d0a95113", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Labour government", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "josephpowell", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "economy": 2.6987249999999996, + "poverty": 2.6987249999999996 + } + } + } +}, +{ + "title": "'Shameful' number of families in Wales can't afford healthy food", + "publication_date": "2026-03-31T07:40:45", + "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", + "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", + "media_type": "news_article", + "sentence": { + "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", + "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", + "sequence": 13, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Food Foundation", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6987249999999996, + "senedd_election": 2.6987249999999996, + "scottish_elections": 2.6987249999999996 + } + } + } +}, +{ + "publication_date": "2026-03-31T06:32:07+00:00", + "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", + "url": "https://x.com/AllisonPearson/status/2038866913430851723", + "media_type": "social_post", + "sentence": { + "text": "The UK defines relative poverty as living in a household with income below 60% of the median income in that year.", + "media_hash": "712d614a62afdd74254f5e6833bea175ed861f19861c6467ed25c16c", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "charliecolecc", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6987249999999996 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Food and drink prices have continued to rise in recent years, with retail prices now at around 38% higher than they were before the pandemic.", + "media_hash": "48c0c82858775226094b0455e8323ad68ea9c76d1daad95f68487917", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Institute of Grocery Distribution", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6987249999999996 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", + "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", + "sequence": 39, + "claim_type": [ + "other" + ], + "claimer": [ + { + "name": "Scottish Conservative", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Sandesh Gulhane", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.799985 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", + "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", + "sequence": 36, + "claim_type": [ + "correlation", + "other" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6735499999999996, + "scottish_elections": 2.6735499999999996, + "clinical_health": 2.6735499999999996 + }, + "demo": { + "health": 2.5528750000000002 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.6735499999999996 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Households could face food inflation above 8% within months, according to the Institute of Grocery Distribution (IGD), which could add more than \u00a3150 a year to the average household's shopping bill.", + "media_hash": "f0e7eda71739045900892bec04cc5a61c0854b3d40005615b7b59601", + "sequence": 2, + "claim_type": [ + "quantity", + "predictions" + ], + "claimer": [ + { + "name": "Institute of Grocery Distribution", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.649215 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "FOOD prices in Scotland are set to spike, again.", + "media_hash": "f873d000f167390ecdf266d780455aade8ebd739b1996689dfaa1cee", + "sequence": 1, + "checkworthiness": { + "fullfact": { + "poverty": 2.6127849999999997 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "This closure and knock-on effect of oil supplies does have an impact on prices, as food production is energy intensive and is particularly exposed to sudden change in oil and gas prices.", + "media_hash": "2079d80cafd55baf6b592a33a670e97f7fa5b23b49b06b2ed25d563c", + "sequence": 10, + "claim_type": [ + "correlation" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6127849999999997 + } + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", + "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", + "sequence": 33, + "claimer": [ + { + "name": "GPs", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.6127849999999997, + "scottish_elections": 2.6127849999999997, + "clinical_health": 2.6127849999999997 + }, + "demo": { + "health": 2.6127849999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "GPs urge next Scottish government to take drastic action on poverty", + "publication_date": "2026-03-31T05:00:32", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", + "media_type": "news_article", + "sentence": { + "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", + "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", + "sequence": 30, + "claim_type": [ + "predictions" + ], + "claimer": [ + { + "name": "Royal College of General Practitioners Scotland", + "link": "", + "entity_type": "GENAI" + }, + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.579765, + "scottish_elections": 2.579765, + "clinical_health": 2.579765 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.579765 + } + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "Up to 30% of processed ammonia, used as the raw material in fertiliser, passes through the Gulf.", + "media_hash": "62511a379abfa1d64292cd41b219b223c5e8d1d4cca5a4def1295ebe", + "sequence": 14, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5769 + } + } + } +}, +{ + "title": "Online tool finds \u00a384,800 in unclaimed benefits", + "publication_date": "2026-03-31T05:00:47", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", + "media_type": "news_article", + "sentence": { + "text": "Peterborough City Council says it has helped 68 households claim \u00a384,000 in unclaimed benefits", + "media_hash": "7c8ef629f9b0d60929049359e1496995db5f51422f7ec9b29942eef7", + "sequence": 8, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5769 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "HMRC Child Benefit rates going up from April 6 and how much you'll get", + "publication_date": "2026-03-31T12:53:32", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/personal-finance/hmrc-child-benefit-rates-going-36949200", + "media_type": "news_article", + "sentence": { + "text": "Since April 2025, over 928,000 parents have utilised the HMRC app to manage their Child Benefit account, including:", + "media_hash": "f4452a773532ec0377acfc5c18750e178027c108134df429c0dbead9", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Online tool finds \u00a384,800 in unclaimed benefits", + "publication_date": "2026-03-31T05:00:47", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", + "media_type": "news_article", + "sentence": { + "text": "An online tool has identified more than \u00a384,800 in unclaimed benefits since it went live in January, a local authority has said.", + "media_hash": "cb079d1aef8353227e266fdbc2c7ad2ffa4ce45606820623cb90c661", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Peterborough City Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997 + }, + "demo": { + "finance": 2.5459449999999997 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "HMRC Child Benefit rates going up from April 6 and how much you'll get", + "publication_date": "2026-03-31T12:53:32", + "publication": "mirror-money", + "url": "https://www.mirror.co.uk/money/personal-finance/hmrc-child-benefit-rates-going-36949200", + "media_type": "news_article", + "sentence": { + "text": "Recent statistics found that, while over 6.9 million families receive Child Benefit payments, only 72% of families claimed it during their baby's first year.", + "media_hash": "47bafe0c2e845f66227898c9f4d7badf72d8eb9c82c89a1df58050af", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Why are food prices set to spike in Scotland?", + "publication_date": "2026-03-31T15:18:35", + "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", + "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", + "media_type": "news_article", + "sentence": { + "text": "The key shipping route sees around one fifth of the UK's oil consumption pass through the Strait, on average around 20 million barrels of crude oil per day.", + "media_hash": "e075650a2b031411122ede4a28c429519bbf3b487afd25eb1aac32ba", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997 + } + } + } +}, +{ + "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", + "publication_date": "2026-03-31T13:42:58", + "publication": "heraldscotland", + "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", + "media_type": "news_article", + "sentence": { + "text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", + "media_hash": "9cef34f6bfc4e4b0fe9d04700870d76316ef410ee522304c6ccb16e3", + "sequence": 3, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Dumfries and Galloway Council", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "health": 4.834525, + "politics_of_food": 4.834525, + "nutrition_": 4.834525 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", + "media_hash": "f5e55bce795c0f0df9a6882b9a033678d5a3e4edab983fc4d2fbab35", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.51499, + "politics_of_food": 2.51499 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Online tool finds \u00a384,800 in unclaimed benefits", + "publication_date": "2026-03-31T05:00:47", + "publication": "bbc-business", + "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", + "media_type": "news_article", + "sentence": { + "text": "A report by the analytics company, Policy in Practice, estimated there may be about 31,000 people across Peterborough that were entitled to unclaimed benefits they have not yet claimed.", + "media_hash": "80bd404baac0233d4122fe655a925542772df89912e3c6307a272d1c", + "sequence": 15, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Policy in Practice", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997 + }, + "demo": { + "finance": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", + "publication_date": "2026-03-31T05:00:15", + "publication": "scotsman", + "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", + "media_type": "news_article", + "sentence": { + "text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", + "media_hash": "e8dc3bfc8a9d48d61488b1cbe8cb37d9a58a8b1627948729f1a80f57", + "sequence": 27, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Helen Stewart", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5459449999999997, + "scottish_elections": 2.5459449999999997 + }, + "demo": { + "nutrition_": 2.970815, + "politics_of_food": 2.970815 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 2.5459449999999997 + } + } + } +}, +{ + "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", + "publication_date": "2026-03-31T05:00:34", + "publication": "scotsman", + "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", + "media_type": "news_article", + "sentence": { + "text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", + "media_hash": "53e476109777e393fe8c484ecc8d69c8d79804c00cddfb880ae741dd", + "sequence": 17, + "claim_type": [ + "correlation", + "other" + ], + "claimer": [ + { + "name": "Dr Chris Provan", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "poverty": 2.5219199999999997, + "clinical_health": 2.5219199999999997 + }, + "demo": { + "health": 4.52192 + }, + "pa-media": {}, + "fullfact-policy": { + "climate_change": 4.7201 + } + } + } +}, +{ + "title": "Frail mum's screams as XL bullies son-in-law left her with mauled her to death", + "publication_date": "2026-03-31T14:09:05", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/frail-mums-screams-xl-bullies-36949914", + "media_type": "news_article", + "sentence": { + "text": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", + "media_hash": "41c2dcd2ba839f2fe7afadfe71b15673123ae283e6ef629b0b838377", + "sequence": 9, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "transport": 4.66662 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "\u2018What Labour can learn from Denmark\u2019s \u2018pigs and water\u2019 election?\u2019", + "publication_date": "2026-03-31T05:00:06", + "publication": "labourlist", + "url": "https://labourlist.org/2026/03/what-labour-can-learn-from-denmarks-pigs-and-water-election/", + "media_type": "news_article", + "sentence": { + "text": "Political trust tends to scale: if a governing party - be it the Social Democrats or Labour - is seen as not being able to deal with the potholes on our roads and the price of our groceries, why trust it to manage public service reform or geopolitical turmoil?", + "media_hash": "4383f814493dab90f440c62e4090f0d04f09a704dc79053b4909856e", + "sequence": 25, + "checkworthiness": { + "fullfact": { + "transport": 4.386095 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", + "publication_date": "2026-03-31T11:15:43", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/uk-drivers-getting-up-2500-36948211", + "media_type": "news_article", + "sentence": { + "text": "If an accident occurs due to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", + "media_hash": "5d7bd4cc8f75516b1926b846e036cfe9e8e18ebb8883d6092824294d", + "sequence": 12, + "claim_type": [ + "correlation", + "rules" + ], + "checkworthiness": { + "fullfact": { + "transport": 4.073585 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", + "publication_date": "2026-03-31T11:35:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", + "media_type": "news_article", + "sentence": { + "text": "Should an accident occur owing to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", + "media_hash": "07877ddaf535ead3f05156cd78c98b8e17c0c89aab1ce272a054263b", + "sequence": 11, + "claim_type": [ + "rules" + ], + "checkworthiness": { + "fullfact": { + "transport": 3.95176 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", + "publication_date": "2026-03-31T11:35:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", + "media_type": "news_article", + "sentence": { + "text": "This follows MSE publishing fresh guidance encouraging motorists to contemplate submitting claims if their vehicles sustain damage from hitting potholes.", + "media_hash": "9665de0a256c28a82714c0c028dd37cc94346442fa0f792858e90c80", + "sequence": 6, + "claim_type": [ + "other" + ], + "checkworthiness": { + "fullfact": { + "transport": 3.5503549999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", + "publication_date": "2026-03-31T11:35:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", + "media_type": "news_article", + "sentence": { + "text": "The latest figures show there's a record \u00a318 billion pothole repair backlog!", + "media_hash": "c096f81c2f87eb807eaeaff1094f59d4a6b49a48af73b88b7477c762", + "sequence": 21, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "transport": 2.7091849999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", + "publication_date": "2026-03-31T11:35:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", + "media_type": "news_article", + "sentence": { + "text": "There's a record \u00a318 billion backlog of damage to local roads in England and Wales (stock image) (Image: Getty )", + "media_hash": "80818a2d9be4b40ee000a6c95b1d37b1284144df587f73d85d375e03", + "sequence": 1, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "transport": 2.556405 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", + "publication_date": "2026-03-31T10:09:35", + "publication": "metro", + "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", + "media_type": "news_article", + "sentence": { + "text": "Arrow MORE: A massive pothole wrecked my van and I'm over \u00a31,000 out of pocket", + "media_hash": "d1c583b7d0bea0b7acbd47b5b69ff0f31431188515c088f61c5763df", + "sequence": 57, + "claim_type": [ + "quantity" + ], + "checkworthiness": { + "fullfact": { + "transport": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "maldita": { + "transport": 2.5459449999999997 + }, + "fullfact-policy": {} + } + } +}, +{ + "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", + "publication_date": "2026-03-31T11:35:00", + "publication": "express-finance", + "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", + "media_type": "news_article", + "sentence": { + "text": "Motorists who have lodged claims following pothole-related vehicle damage have secured compensation payments of up to \u00a32,500, according to Money Saving Expert (MSE).", + "media_hash": "2d21797735c5c1153101bbb2f8c8a42ff0a3be85e49f4a321dae2e01", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Money Saving Expert", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "transport": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +}, +{ + "title": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", + "publication_date": "2026-03-31T11:15:43", + "publication": "mirror-news", + "url": "https://www.mirror.co.uk/news/uk-news/uk-drivers-getting-up-2500-36948211", + "media_type": "news_article", + "sentence": { + "text": "Some UK drivers who have put in a claim after a pothole caused damage to their car have been paid up to \u00a32,500 in compensation, according to Money Saving Expert (MSE).", + "media_hash": "ec2c07a56465796d956eec3ee3b15405fee9d16d40b2d1c1657a4e8a", + "sequence": 2, + "claim_type": [ + "quantity" + ], + "claimer": [ + { + "name": "Money Saving Expert", + "link": "", + "entity_type": "GENAI" + } + ], + "checkworthiness": { + "fullfact": { + "transport": 2.5459449999999997 + }, + "demo": {}, + "pa-media": {}, + "fullfact-policy": {} + } + } +} +] \ No newline at end of file From 96c99244ad81d6c636874b1ab52578535704c60c Mon Sep 17 00:00:00 2001 From: David Corney Date: Thu, 2 Apr 2026 13:39:49 +0100 Subject: [PATCH 03/11] Updating file path --- scripts/encoder_experiment/label_sentences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/encoder_experiment/label_sentences.py b/scripts/encoder_experiment/label_sentences.py index c03954c..ee0d418 100644 --- a/scripts/encoder_experiment/label_sentences.py +++ b/scripts/encoder_experiment/label_sentences.py @@ -146,7 +146,7 @@ def parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser(description=__doc__) parser.add_argument( "--input", - default="/Users/davidcorney/fullfact/data-science-scripts/data/elastic_searcher/fullfact-2026-03-31-claims.jsonl", + default="scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl", help="Path to input file (.json FullFact claims export or .jsonl pastel training format)", ) parser.add_argument( From b3c40d38a9e5dba456b58563fb6814787485c999 Mon Sep 17 00:00:00 2001 From: David Corney Date: Thu, 2 Apr 2026 14:10:32 +0100 Subject: [PATCH 04/11] Bigger training data set --- .../labelled_sentences.jsonl | 939 ++++++++++++++++++ 1 file changed, 939 insertions(+) diff --git a/scripts/encoder_experiment/labelled_sentences.jsonl b/scripts/encoder_experiment/labelled_sentences.jsonl index 3443ab8..cf41782 100644 --- a/scripts/encoder_experiment/labelled_sentences.jsonl +++ b/scripts/encoder_experiment/labelled_sentences.jsonl @@ -78,3 +78,942 @@ {"sentence_text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging £8.80 per 1,000 kcal compared to £4.30 for less healthy foods.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} {"sentence_text": "A sizable proportion are adult learners who have come via the workplace, but there have also been huge increases in take-up by 16- to 24-year-olds, and there is a growing level of participation among diverse ethnicities.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} {"sentence_text": "Which is why you had stock out and I think that was driven by fear of shortage but also price increase.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is slowing up approaching for the four six five to Stan Darcy at 43 and for the A four seventy to Coton interchange, but the rest of the approaches are moving well and at the moment still moving on the A fifty five.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's the latest, more on the roads just after nine.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The maximum award for heating oil has been increased from £500 to £750 and people can now apply up to twice within a 12-month period.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The maximum award for heating oil has been increased from 500 pounds to 750.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Uh, you had a reaction to the initial crisis, sales went up 40% over three days, which is unsustainable.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The funding for this measure comes from the 3.8 million pounds given to Welsh ministers by the UK government as part of a package of support for those struggling with the recent jump in the cost of heating oil.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, sales are becoming slower, and the margin is smaller, so we're selling less fuel at a lower margin, but our costs remain the same in terms of staffing and business rates etcetera.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And we used to have a five-day delivery window, we're now on a six-day delivery window which helps hugely.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yeah, the cost of our fuel's gone up dramatically, so prior to this crisis I would be paying 44,000 pounds for a load of fuel, it's about 56,000 pounds now.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of £734m.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The budget had already been revised upwards to £1.1bn in 2023.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The original budget, set back in 2016, consisted of £164m from the European Union, £445m from the Welsh Government and the £1.3bn City Deal for the Cardiff Capital Region, and £125m from the UK Government.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We were working on that basis and you can absorb one or two pence increase in costs, um, we've had three weeks where costs went up 16 pence, six pence and 12 pence.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "More broadly, a recent report by the Welsh language commissioner emphasised that while the number of speakers has remained stable over decades, it has not risen to reflect significant growth in the population as a whole.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That final projected cost has now edged up to around £1.3bn.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A lot of fuel is bought on what's called Platts lagged, so the average price of the fuel last week is my price for the fuel this week.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now it has emerged that while there is a £4.1m publicly funded furlough scheme to save jobs at the plant, ADL are pursuing the axing of a quarter of its workforce in Scotland.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to Scottish Government records, ADL received £58m of public 'subsidy' for green vehicles since 2020 under two schemes aimed at transitioning Scotland to green buses - despite the company having embarked on a 2020 plan to axe a third of its Scottish workforce.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", "score": 4.89529, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Scottish Government plans to cut nearly 20,000 public sector jobs by the end of the decade cannot be done without cutting frontline services and could see Scotland \"sleepwalking into austerity\", a new report has warned.", "score": 4.775650000000001, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", "score": 4.761455, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Continued delayed cancer treatment waits 'unacceptable ́, says Cancer Research", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Continued delayed cancer treatment waits 'unacceptable ́ says Cancer Research", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, IPPR Scotland suggests that the primary mechanism for this-a \"managed, downward workforce trajectory of 0.5% on average per annum to 2029-30\"-is a \"political choice\" that could have devastating consequences for those who rely on these services most.", "score": 4.66132, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In June 2025, the company announced plans to end manufacturing altogether in Falkirk and Larbert, consolidating operations at its English site in Scarborough-putting up to 400 jobs at risk in Scotland.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with £6.1million in dirty cash uncovered in a money laundering probe.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There are 32 councils in Scotland, with the majority of them recognising Easter Monday as a public holiday - though there are some notable exceptions.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Out of 32 councils in Scotland, 27 recognise Easter Monday, this year falling on April 6, as a bank holiday:", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fewer houses are being built across Scotland.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Transport Scotland announced £45 million in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland team news: Scotland manager Steve Clarke has hinted at making six or seven changes from the side that faced Japan to rotate his squad.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There are then five councils in Scotland which don't consider Easter Monday a public holiday.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It received 285 responses from GPs across Scotland.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And it said there was no such relief for the more than 2,000 premises in Scotland with a rateable value of more than £100,000.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer is the least popular political figure in Scotland.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (μg/g), which England and Wales have since adopted.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK leader Nigel Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for his Scottish leader Lord Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The Scottish Greens would roll out 1,140 hours of funded childcare to all two-year-olds in Scotland and provide 570 hours of funded childcare to every child from six months to two years old,\" she added.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Deer numbers, while unknown to the exact figure, are believed to have doubled in Scotland since the 1990s and are sitting at about one million, according to environmental groups.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Transport Scotland announced last Wednesday that £45m in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47 per cent for Prime Minister Sir Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The poll also revealed the popularity of several politicians in Scotland, with John Swinney continuing to be the most popular political leader in Scotland, with a net favourability rating of minus 10%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Private providers play a significantly smaller role in the NHS in Scotland than in England.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes as the Scottish Retail Consortium (SRC) warned that medium and larger shops in Scotland will pay £162 million more than their English counterparts over the next three years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Data compiled from pump price comparison website PetrolPrices.com shows a litre of diesel costs up to 217.0p at some forecourts in rural Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A total of 84 of Scotland's primary schools ensure that almost ever primary seven pupil is up to standard in reading, writing, numeracy, listening and talking according to a new league table.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scottish social housing builds fall to lowest level since 2014", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL said the proposal would safeguard approximately 200 skilled manufacturing and support jobs previously at risk of redundancy and would retain approximately 350 roles within Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Currently, the public sector in Scotland employs 22.2% of workers, compared with 18.1% in the UK as a whole.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "⚡️💸 Scotland is a net exporter of electricity, yet households here are hit with some of the highest standing charges in the UK.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some £4.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional £5.4m.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This compared with minus 47 per cent for Prime Minister Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for Reform's Scottish leader Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A total of 1,197 primary schools provided data for the annual Achievement in Curriculum for Excellence Levels publications, with the remaining 729 on the government database not participating, either because no children were up to standard, the school roll was too small or the data was not collected centrally.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By the time the 2020 jobs cut was in place, ADL had already received over £8m in 'job securing' taxpayer funding which was promoted as supporting building a new greener business in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK leader Nigel Farage has a minus 31% rating in Scotland, compared with minus 15% for his Scottish leader Lord Malcolm Offord, although 55% of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "65% of voters would back Mr Swinney over the Reform UK Scotland boss, while 35% would support Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "McBurnie hasn't played for Scotland for five years - and may never again - but he has 13 goals and seven assists in 30 games in the English Championship.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland had 14 shots to Ivory Coast's 12 and four on target to their opponents' three.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey also found SNP leader John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10 per cent.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47% for Prime Minister Sir Keir Starmer and minus 25% for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was perhaps her experience that drove attitudes in the recent Logos survey of Christians in Scotland, which found that more than 80 per cent of participants said they were worried about the negative reaction or criticism that Christian politicians have received.", "score": 4.545945, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Grangemouth refinery produced 97% of Scotland's aviation fuel before it closed.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", "score": 4.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Britain's biggest bus and coach manufacturer which has been propped up by tens of millions in public money in Scotland has set out plans to axed a quarter of ifs staff despite a government-rescue bid sparked by its threat to move to England.", "score": 4.496495, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland's energy workers face redundancies on an industrial scale thanks to Labour's crippling tax on Scotland's energy with 1000 jobs a month at risk - for Anas Sarwar to pose as the friend of Scottish industry is a kick in the teeth to workers across Scotland.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This will be Scotland's first time in a World Cup since 1998.", "score": 4.46844, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", "score": 4.460005, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", "score": 4.429455, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "GMB Scotland warned that public money intended to support green jobs is instead flowing abroad, undermining domestic industry and putting livelihoods at risk.", "score": 4.36914, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "READ MORE: John Swinney vows new childcare system for Scotland if SNP win Holyrood election with £500m spending boost", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This was Scotland's last game before Clarke picks the 26 for America.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But successive 1-0 defeats to Japan and Ivory Coast have underlined the need for no further distractions as Scotland prepare to return to the World Cup for the first time since 1998.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest loss - 1-0 against Ivory Coast in Liverpool - means Scotland now have only two games to work on improvements before their tournament gets underway against Haiti in Boston on 13 June.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", "score": 4.331365, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @STVNews: Thousands of ex-battery hens need new homes across Scotland or face death.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", "score": 4.263805, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Traffic Scotland confirms that from the evening of April 2 until the morning of April 15, the stretch from River Garry to Shierglas will have temporary traffic lights in operation at all times, alongside a 10mph convoy system overnight and a 30mph restriction outside working hours.", "score": 4.2553, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "April 1 marks the start of the new non‐domestic rating year and the Scotland‐wide revaluation with many firms facing a significant jump in their bills.", "score": 4.233315, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He likely knows the majority of the 26 he'll be taking to Scotland's Charlotte, South Carolina base, but there are still a select number of slots to be claimed between now and then.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK are set to become Scotland's second-largest party at Holyrood elections in May, according to a new poll.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The people of Scotland deserve better from their cancer strategy.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The report warns: \"If austerity is taken to refer to a degradation of public services in pursuit of balanced public finances, then the workforce reduction target risks Scotland slipping into austerity.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A spokesperson for the group said: \"We did say closing Scotland's only refinery would leave us fuel insecure - an oil producing country relying solely on imports in a volatile world with potential conflict, shipping problems, and at the very end of a supply chain.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Year-round childcare support, 52 weeks a year, for every child from nine months old, right until they leave primary school - that's what an SNP government on Scotland's side will deliver.", "score": 4.097144999999999, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland have failed to score in over 180 minutes of friendly football against admittedly very good opposition.", "score": 4.0921199999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week it was announced that Alexander Dennis had won an order for 123 vehicles through the Scottish Zero Emission Bus Challenge Fund (ScotZEB3) led by Transport Scotland and administered on its behalf by the Energy Savings Trust.", "score": 4.0921199999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland is Europe's second biggest oil producer. We now have to import all our oil products at inflated prices,\" he said.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year, Scotland faced what has been described as the UK's largest wildfire incident.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ministers are facing growing calls to scrap subsidy schemes after the UK's biggest bus manufacturer moved to axe more than a quarter of its workforce - despite receiving millions in public funding to keep jobs in Scotland.", "score": 4.071625, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a £500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Herald previously revealed that the move followed a row between ministers and ADL over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which have been worth a total of £155.8m to date.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL is one of the largest manufacturing employers in central Scotland with many roles in engineering, apprenticeships, and high-skill technical jobs.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John O'Connell, chief executive of the TaxPayers' Alliance, said it was \"shocking\" that the Scottish government had \"doubled down on on its multi-million pound bribe\" to Alexander Dennis with a furlough scheme in a \"desperate attempt\" to keep it operating in Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Herald previously revealed that the move to consolidate operations in Scarborough followed a row between ministers and company executives over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which up till last year was worth a total of £155.8m to date.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But when Christie and McTominay got in each other's way trying to get on the end of a Robertson cross from Kieran Tierney's through-ball Scotland were punished on the counter, having committed five players to the attack.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland fans face £60 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The report also finds that median public sector pay in Scotland remains below pre-austerity levels and argues that lower pay elsewhere in the UK \"does not constitute a good argument that it is excessive in Scotland\".", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said the Lib Dems are poised to beat the SNP in 10 constituencies across Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I'm focused on delivering as many MSPs as I can for the Lib Dems and that's happening in 10 seats across Scotland, or wherever you are, on that peach ballot paper, the regional vote, where we can win.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Scottish Liberal Democrat Falkirk West candidate, Lucy Smith, said: \"Just days after Transport Scotland announced millions of pounds in support for Alexander Dennis we get the terrible news that more than a hundred workers in Falkirk are at risk of redundancy.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Families can enjoy the one-hour Signature Tour, which explores 500 million years of natural history, folklore, and scientific research surrounding Scotland's most famous legend.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ivory Coast star Benie Traore was happy with the side's 4-0 thrashing of South Korea on Saturday and is hopeful they can deliver a similar performance against Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland head coach Steve Clarke admitted his side need to find more quality in the final third after their 1-0 defeat to the Ivory Coast at Everton's Hill Dickinson Stadium.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A much-changed Scotland suffered another friendly defeat with the 1-0 loss to Ivory Coast offering manager Steve Clarke few solutions to their creativity problems as he prepares for the nation's first World Cup since 1998.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", "score": 4.059075, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", "score": 4.059075, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour pledge two weeks of funded summer childcare in Scotland", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scotsman's election hustings with Scotland 2050 is taking place at the Assembly Rooms in Edinburgh from 6pm", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was further cause to feel worried about Scotland's lack of edge up front.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland head coach Steve Clarke watches on as his team lost 1-0 to Ivory Coast.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This includes all three games in the group phase and in the knockout stages, if Scotland progresses further.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for £300 of support with their bills.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Tens of thousands of Scotland fans will be in the American city for Scotland's opening two games against Haiti and Morocco.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As things currently stand Alexander Dennis will close its Falkirk site and convert its Larbert facility into a chassis manufacturing hub, retaining roughly 350 staff in Scotland.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "IPPR Scotland adds that \"by failing to present (at the Scottish Parliament election in May 2026, for instance) the costs of constraining public services (in order to keep taxes down), politicians risk sleepwalking Scotland into similar outcomes\" to the UK Government's 2010 austerity programme.", "score": 3.98733, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"This is a short-sighted decision that removes the only diving facility in the west of Scotland. Once it's gone, it's gone-and the community will not get it back.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Grangemouth produced jet fuel for all of Scotland. The UK Government let it shut,\" he said.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth refinery closure", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pupils in Scotland whose exam performance is affected by circumstances outwith their control may be entitled to special consideration under the Exam Exceptional Circumstances Consideration Service (EECCS).", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Pubs will be allowed to open until 30 minutes after the final whistle for Scotland games, but there are different rules for other matches.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has been argued that losing manufacturing in Larbert and Falkirk would diminish Scotland's ability to innovate and scale production in green mobility - a strategic disadvantage amid increasing global demand for clean public transport.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The loss of the diving pool means there will be no diving provision in the west of Scotland, with the nearest facilities located in Edinburgh, and described the proposed leisure centre as offering \"less\" than the existing Citadel.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland will play in Liverpool for the fourth time tonight against a third different country.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", "score": 3.898845, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Men's and Women's 10K Glasgow are among the most distinctive and inspiring mass-participation running events in Scotland, and what makes them especially memorable is that they are two separate events taking place on the same day.", "score": 3.8939399999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Easter holidays are just around the corner, and so families all over Scotland will be trying to decide how best to make the most of the time off.", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It backfired when an estimated 50,000 Tartan Army fans saw Don Masson convert a penalty and Kenny Dalglish head Scotland to Argentina.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland's only oil refinery closed in April last year, leading to around 400 jobs being lost as the facility owners, Petroineos, said the site would transition to becoming an import terminal to \"meet Scotland's demand for transport fuels\".", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland were though lucky to avoid going 2-0 down on 25 minutes when Wahi's 25-yard effort landed on top of the goalnet.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @ewangibbs: Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "England handed a debut to the Reverend Kennie Hunt, but couldn't get a win over the Scots in front of 38,000 at Goodison Park after Newcastle United striker Alexander Higgins scored for Scotland.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland are currently battling with the world's best curlers at the Men's World Curling Championship in Ogden, Utah, in the USA.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A \"life-saving\" charity is today celebrating 50 years of supporting people affected by domestic abuse and reshaping responses to the crime in Scotland.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", "score": 3.860895, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", "score": 3.788715, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"That is a political choice, and Scotland is paying the price.\"", "score": 3.7623699999999998, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"I'd rather watch Scotland get hammered having a go than get beaten not having a go. There was a substantial crowd at Hampden for a friendly, who paid a lot of money for tickets and travel. Quite simply, the fans deserved far better than the dross put on a show. Sorry, John McGinn, there was no justification, and the boos were deserved.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Opposition politicians accused SNP ministers of presiding over a growing workforce crisis in Scotland's NHS.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform's focus right now is on non-white speakers of other languages, but Welsh has taken a bit of an attack, and I think it is scary for Gaelic speakers because we are such a small proportion of the population in Scotland compared to Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scotland boss heard more jeers ring out around Everton's Hill Dickinson Stadium at both half time and full time in the latest friendly defeat to Ivory Coast.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One is making Scotland's clean energy infrastructure safer and more efficient.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Edinburgh Festival Fringe is experiencing a huge surge in artists and companies taking part in this year's event - despite widespread concerns over the cost of taking a show to Scotland's biggest cultural showcase.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motorists across Scotland faced soaring prices at the pumps", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Boyd, the director of IPPR Scotland, said: \"With a Scottish election approaching, voters deserve a more honest debate about the future of public services, and the taxation needed to sustain them.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "For the first episode, which starts on Tuesday, Vicky and Jonny travel to the capital to discover more about another of Scotland's most infamous murderers, William Burke and William Hare.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He says the party is centre-right and is focusing his initial pitch on \"unleashing the potential of the people of Scotland who are over-taxed and over-regulated\".", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scottish Labour leader Anas Sarwar said: \"When Scotland needs more buses built by Scottish firms, it is devastating to see Alexander Dennis downscale and workers' lives thrown into uncertainty.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added: \"I'm focused on delivering as many Lib Dem MSPs (as possible) and our vision, fixing our health service, driving down the cost of living, lifting up Scottish education and getting Scotland moving again.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Farage has not made any explicit attacks on the Gaelic language yet, but Munro said that is likely because it hasn't entered his consciousness given it is not as widely spoken in Scotland as Welsh is in Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Swinney said: \"The impact of the ongoing conflict in the Middle East on people and businesses in Scotland is becoming more significant by the day.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although Scotland made a spirited enough attempt to rectify matters, the early goal remained the difference.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sheep farmer Tim Eagle, who is standing for the Scottish Conservatives in Moray, said: 'Serious questions must be asked about whether these consultancy fees have been value for money for two of the most dangerous roads in Scotland when so few improvements, if any in the case of the A96, have been made.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He promised that a Scottish Labour government will build and buy more in Scotland, \"so public money backs Scottish jobs, Scottish businesses and Scottish communities\".", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"The family farm tax put Scotland's world class produce under threat and the rise in employer's national insurance is making it harder for firms to make ends meet.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK TV channel: Live television coverage will be provided by BBC Scotland and BBC Two.", "score": 3.74449, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A spokesman for Transport Scotland said: 'On complex, high-value projects, specialist advice is required to ensure contracts meet contractual and legal requirements whilst meeting policy objectives.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Good Friday is a public holiday in Scotland, which is followed by the early May bank holiday - but not Easter Monday.", "score": 3.73294, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is an expectation that a disastrous result for Labour in Scotland, as well as in elections in England and Wales in May, will prompt an effort to oust Sir Keir among Labour MPs.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To celebrate Easter, Graham's Family Dairy will turn the whole of Scotland into a giant treasure map.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There will also be a joint effort with Police Scotland to patrol areas that are most at risk.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS staff in the region will join those from across Scotland in being given the holiday on June 15 to mark the national team's opening match of the tournament.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Andy Robertson will become Scotland's second-most capped player should be appear against Ivory Coast tonight.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland and Ivory Coast will face off for the first time tonight.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On 7 May, Scotland will hold a general election for our devolved parliament in Holyrood, Edinburgh.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland will face Haiti, Morocco and Brazil in their World Cup group.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pubs will be allowed to open late for all of Scotland games.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Team Scotland are looking to win a second successive World Curling Championship gold.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Commenting, Ms Adamson said: \"Scotland's musicians are renowned across the world, and international touring plays a vital role in helping artists build sustainable careers, reach new audiences and showcase our country's creativity on the global stage.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One is giving people in social housing the right to a healthy, sustainable home.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Holyrood is there to represent Scotland in all its diversity, and faith continues to play an important part in the lives of, at least, a very significant minority of the population.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", "score": 3.697825, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", "score": 3.66573, "claim_types": ["rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"An SNP majority would be a disaster for Scotland's economy, but voters can stop this nightmare scenario by backing the Scottish Conservatives on their peach ballot paper.\"", "score": 3.64377, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", "score": 3.635935, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", "score": 3.635935, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"They do have powers in Wales under legislation that came in this year, but we don't have the same powers in Scotland.", "score": 3.634205, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"A far more ambitious approach is required from those political parties seeking to form the next Scottish Government, one that at the very least ensures a competitive level playing field with England and which delivers on the industry's vision to make Scotland the best place in the UK to grow a retail business.\"", "score": 3.6342049999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "... whereas Scotland has always had and continued to have a different legal system, different education system, different church system, so Gaelic is less of a factor for people in terms of national identity I would say.", "score": 3.6342049999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The public funding is contentious because substantial taxpayer money - allocated to secure jobs and promote clean, local manufacturing in Scotland has coincided with offshore production, reduced domestic orders, and now a possible factory closure and mass redundancies.", "score": 3.6342049999999997, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", "score": 3.612245, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"We need a proper industrial strategy so we build more of our ferries, buses, trains, wind turbines and vital infrastructure here in Scotland.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Mr Sarwar is expected to say: \"A Scottish Labour government will build and buy more in Scotland so public money backs Scottish jobs, Scottish businesses and Scottish communities.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Mr Swinney's pledge would provide year-round childcare for every child from nine months to 12 years of age, with a promise that \"every single family in Scotland will get help\" towards the costs.", "score": 3.599205, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scots urged to submit meter readings this week to avoid higher energy bills", "score": 3.59665, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "John McGinn may be a Scotland hero.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At 31, McGinn knows this could be his last crack at a World Cup for Scotland.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Also, Scotland's publicly owned water and ferry companies do not have equivalents in other parts of the UK.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although they pressed in the second half, with Ipswich Town striker George Hirst getting into good positions, Scotland lacked cutting edge.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On the Radio Scotland Breakfast travel in Glasgow, there are emergency repairs, so there's one lane closed on Cathedral Street going west at North Frederick Street.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Murdo Fraser is a Scottish Conservative MSP for Mid-Scotland and Fife", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typically the arrival of Easter also marks the beginning of school holidays around Scotland, with many councils lining up the spring term break with the annual celebration.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "MLS side Charlotte are coached by Dean Smith, the former Aston Villa manager and pal of Clarke, his assistant is the Scotland boss' former Kilmarnock player, Gary Dicker and the club's technical director is Clarke's ex-St Mirren team-mate, Tommy Smith.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RCGP Scotland's annual membership survey was carried out between July 28 and August 20 last year.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Clarke afterwards confirmed that Scotland will play Bolivia in New Jersey on 6 June.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kevin Hobbs, CMAL Chief Executive, added: \"It is a proud moment to see MV Isle of Islay carry passengers for the first time. Her entry to service is a clear demonstration of the progress being made to rejuvenate Scotland's ferry fleet. Our focus is now on expediting the delivery of her three sister vessels, which will provide further flexibility and resilience across the west coast network.\"", "score": 3.5723399999999996, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", "score": 3.562025, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"It's the best I've ever seen Scotland play, it's outstanding.\"", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It offers a strong possibility of Scotland qualifying from a group stage for the first time ever - but positive momentum is needed.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The search for the killer became Scotland's biggest manhunt and newspapers at the time labelled him Bible John after a witness said he quoted scripture.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"My party would fundamentally overhaul Scotland's business rates system to make them fair and transparent.", "score": 3.559555, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The vessel, which will provide a mainland link for the people of Islay and Jura, arrived in Scotland at the end of February.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People were quick to draw comparisons with Gellalty's game and the world-famous Grand Theft Auto series, which is also created in Scotland with studios in Dundee and Edinburgh, by Rockstar Games.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In order to access the funding, Alexander Dennis had to provide evidence of sufficient orders to sustain its operations in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added: \"This matter remains under active consideration as part of our wider approach to supporting Scotland's learning estate.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Swinney got year-long warning England-bound bus firm was 'reconsidering' Scotland", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is also lots on offer for the whole family in terms of food, from a bustling pizzeria in the heart of the Scottish capital to a rooftop venue with views out over one of Scotland's top golf courses.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The crime boss left Scotland in 2006 and had been living in Dubai, but was expelled from the United Arab Emirates (UAE) last September after a number of headlines on the Scottish gangster began to circulate.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For Scotland, Naismith admitted getting it right for \"travel and humidity\" was paramount.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"John Swinney's strong leadership is firmly focused on the priorities of the people of Scotland and our landmark childcare policy is a clear demonstration of the type of Scotland we will build - that's what's on the ballot in May.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Mr Findlay said: \". Reform candidates are quitting before they've even begun. It's complete chaos and we're the only party with a credible, common-sense plan for Scotland.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The fear is that the wind could be knocked out of Scotland's sails all over again, just as it was on the road to Germany two summers ago.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a recent survey, the 'Pregnant then Screwed Scotland' group revealed the impact childcare is having on mothers in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The actor visits Glasgow in a new Sky History programme to find out more about Scotland's notorious serial killer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vicky added: \"The dark nature of their crimes made them Scotland's first serial killer celebrities.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It's the Scotland atmosphere.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Plans to make the day after Scotland men's team's first participation in the World Cup for the first time in 28 years a holiday have fallen foul of council officers for financial reasons.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy historian at Glasgow University, Dr Ewan Gibbs, also expressed his frustration as he wrote on Twitter/X: \"Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a strange and angry pocket of the Tartan Army, there is a section of Scotland supporters who have taken to booing the head coach and the team.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Clarke refused to talk about his future beyond the World Cup - he has yet to agree an extension to stay on beyond Scotland's first appearance since 1998 - but confirmed their final warm-up match will be against Bolivia in New Jersey on June 6.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They took the lead shortly afterwards with a quick break that saw them inflict maximum punishment on an exposed Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police Scotland has previously said it will continue with its current policy.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ultimately, Scotland lost to Nicolas Pepe's first-half tap-in.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chasing the game is not Scotland's strength but McTominay forced Lafont to concede a corner with a shot from distance after three team-mates had pressured Christ Inao Oulai into losing possession.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Substitute Nathan Patterson's well-timed tackle in the penalty area prevented Amad Diallo pulling the trigger after a break from a Scotland corner while Bain pulled off a good save to deny the Manchester United winger, before Monaco's on-loan Sunderland winger Simon Adingra hit the post in added-time.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Malcolm Offord is the leader of Reform UK in Scotland and the party's candidate for Inverclyde.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, March 31, 2026, police received a report that a man had fallen from a flat in Dougrie Place, Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Responding to news of the consultation, a Scottish Government spokesperson said: \"The Scottish Government remains in regular contact with Alexander Dennis and trades unions and stands ready to discuss all options, across a range of areas, to protect skilled jobs and achieve the best economic outcome for Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SNP candidate for Edinburgh Central added: \"There is no room for complacency, but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "VIRAL experimental math-rockers Angine De Poitrine from Quebec are coming to Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On his search for Scotland's World Cup base camp, the head coach found the one in North Carolina, with a wee hand from a few familiar faces.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With the help of Charlotte assistant Dicker and Scotland assistant Steven Naismith, BBC Scotland gets the lowdown on \"one of the best facilities in the MLS\" and the national team's summer set-up.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is not in the interests of Scotland's economy for shop owners to be incentivised to invest in Berwick-upon-Tweed over Bothwell, Buckhaven, or Blairgowrie.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He mans a ship off the West Coast of Scotland and he's also, uh, very, very lyrical.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland job cuts plan risks austerity, IPPR Scotland warns", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland needs change after 20 years of SNP government,\" the Scottish Labour leader said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @theSNP: A historic SNP majority can unlock transformational change with independence - and make Nigel Farage irrelevant in Scotland's Parliament.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Steve Clarke has called for an end to speculation about his future so he can concentrate on the World Cup after Scotland suffered a second friendly defeat in succession.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He claimed that if Scotland go gung-ho against top teams, we run the risk of being left embarrassed.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But from early on here, Scotland's intent was clear.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He is a former Scotland Office minister, but has got himself into hot water recently with some of his past comments.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "🏴󠁧󠁢󠁳󠁣󠁴󠁿 Scotland's energy must be in Scotland's hands, and that can only happen with independence.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The company is a leader in zero-emission bus technology - electric and hydrogen buses - and plays a key role in delivering Scotland's and the UK's green transport ambitions.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As the ECHO spoke to James Milne, 41, from Shetland, and Andy Irvine, 32, from Paisley, outside the venue, a line of Scotland fans emerged from inside the pub.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Alexander Dennis workers have been on furlough since last September while awaiting the outcome of the latest round of bus funding, with ministers hoping fresh contracts would stabilise the firm's long-term future in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added that the wider economic environment was driving companies away from Scotland.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The criticism comes as questions mount over the effectiveness of Scotland's flagship green transport funding schemes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "BBC Scotland News understands that one of the individuals who submitted the complaint against him was Maggie Chapman, who will now take Ingerson's place at the top of the list.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The stories of refugees integrating their lives to Scotland are the subject of a new drama project being launched in Stirling next week.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland's Assisted Dying Bill was opposed by people for a range of reasons, not just religious faith (Picture: Jeff J Mitchell) | Getty Images", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week First Minister John Swinney announced NHS staff would be given a one-off national holiday to mark Scotland's men's football team participating in its first FIFA World Cup since 1998.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland's been very badly run for two decades by the SNP,\" he said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Deputy First Minister added: \"Meanwhile, the UK Government has been sitting on its hands when it comes to the policy levers which would make a vital difference to order numbers at Alexander Dennis and support domestic bus manufacturing in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"We are aware of the arrest of a Scottish nominal in Bali and we are working closely with European partners.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was First Minister John Swinney that confirmed the new furlough support for ADL which he said would need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.\"", "score": 3.5503549999999997, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Earning fans thanks to its bustling and family-friendly atmosphere, Vittoria on the Walk specialises in Italian classics made with ingredients from both Italy and Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS in Scotland plan 'is working' says First Minister John Swinney", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The gaffer here obviously knows Steve well, I think they know they'll be looked after quite well. He worked with John McGinn and a few other Scotland players, so having that connection, understanding what teams need and being flexible with it, really helps.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Russell Findlay has promised to cut taxes permanently for businesses in Scotland if his party wins the Holyrood election.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government, and parents need a break from John Swinney's failures draining their hard-earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the same time, SNP leader John Swinney was braving the stormy winds at the St Fergus gas terminal to push the case for independence - saying this would \"put the region's energy future in Scotland's hands\".", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And they're the perfect opponents to for Scotland to play tonight, according to midfielder John McGinn.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A man that knows a fair few things about the benefit or otherwise of a World Cup warm up match is the former Scotland striker Darren Jackson, went of course and played in France 98. Darren Morning to you.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland 's big bus to Germany two years ago began to stall and splutter at around this exact same stage in the journey.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the paper, Employment, Productivity and Reform in the Scottish Public Sector, the thinktank IPPR Scotland argues that the SNP plan for public service reform is based on flawed assumptions and includes multiple strategies \"pulling in contradictory directions\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland have to get back to what has brought them joy in the recent past - huge tempo, dangerous deliveries from wide, a flooding of an opponent's penalty box, a creation of chaos, a flick-on, a ricochet, a breaking ball launched into a net.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The African side were unsettled by Scotland in the opening ten minutes but asserted themselves following Pepe's goal and hit the post late on.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Falkirk goalkeeper Scott Bain and Bologna midfielder Lewis Ferguson replaced Kelly and McTominay for the second half in which Scotland stepped up the pressure but still struggled to create clear-cut chances.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scots gangland figure arrested in Indonesia following Police Scotland raids", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Niall said it was a good time to be supporting Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said: 'For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Herald has asked Qualifications Scotland (formerly known as the SQA) to confirm whether those impacted by the disruption on Arran would be eligible to receive this form of support.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There's a lot of people in Scotland who really don't like Gaelic and don't think it should have money spent on it and it's concerning there could be that opportunism there from Reform to try and capitalise on that at a time when money is tight across everything, but it's also a really important time for the language.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police Scotland were called to the address after concerns were raised about the occupant.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last month, NHS Tayside told the Local Democracy Reporting Service it was awaiting direction from the Scottish Government about the public holiday after the First Minister and Perthshire North MSP John Swinney's proposal to make June 15 a bank holiday in Scotland was approved by His Majesty King Charles.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Officers from Police Scotland say his death is currently being treated as unexplained.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland are the defending Men's World Curling Champions - so no pressure!", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pubs in the Highlands have been given the go-ahead to stay open late for all of Scotland's World Cup games this summer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And Scotland is paying the price for it.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", "score": 3.5503549999999997, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland,\" she said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Our man Ryan McDonald handled the phone lines today ahead of Scotland's friendly against Ivory Coast", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"As for the booing of a Celtic player, this is a common thing even when they are playing for Scotland, ask Davie Hay.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland. Since February, we've seen a clear drop in the proportion of voters who say they 'don't know' their view of each party leader, indicating that engagement is increasing as the election draws nearer.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lyons - one of Scotland's most high-profile gangland figures - was detained shortly after landing at Bali's I Gusti Ngurah Rai International Airport on a flight from Singapore on Saturday, only days after he was deported from Qatar.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Clarke's former Killie midfielder Dicker agreed it's \"a really good central base\" with flights to both Scotland's match cities only a couple of hours.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scottish Liberal Democrat finance and economy spokesperson Jamie Greene MSP said: \"The Tories like to talk the big talk on business, but when it comes down to it, the Lib Dems actually get stuff done for Scotland's hard-pressed SMEs.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard-earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since 1976, Scottish Women's Aid has helped women, children and young people and has driven change in policy, law and public understanding in its drive to create a Scotland that no longer needs its services.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland's voters deserve better.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "They visit Glasgow to find out more about Scotland's notorious serial killer who cops believed murdered three women Patricia Docker, Jemima MacDonald and Helen Puttock in the late 1960s.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Liverpool city centre was packed with Scotland fans ahead of the World Cup warm up match at the Hill Dickinson Stadium", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The unfolding situation has exposed tensions at the heart of industrial policy in Scotland and across the UK.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland,\" he said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Unions said the scheme was critical to the short-term sustainability of ADL's future in Scotland after the company previously announced in June 2025 it intended to centralise its manufacturing operations at a single site in Scarborough.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We want to make the most of Scotland's participation in this global sporting event by ensuring people have the opportunity to come together and celebrate - no matter the outcome of the match.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This reaction was all the more surprising given it was no secret that Forbes was a member of the Free Church of Scotland, and it was entirely reasonable to expect that her views would be in line with her church's teaching.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Labour leader has accused John Swinney ́s party of failing to invest in Scotland (Robert Perry/PA)", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was cause to be disappointed in the way Scotland conceded from a counter-attack, a run from Nicolas Pepe that wasn't tracked by Billy Gilmour, a defensive lapse that wasn't recovered by Kieran Tierney, and a shot that Liam Kelly presumed was going in until it came off a post.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland have already scheduled a World Cup farewell against Curacao at Hampden on 30 May.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "McTominay hit the post early on against Japan on Saturday night but the ball screwed off the woodwork to safety rather than into the net or back out to a Scotland player.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On Tuesday, Police Scotland confirmed it is working alongside European authorities in relation to the arrest.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Armchair sports fans once again discovered a passion for curling at the Winter Olympics earlier this year - enjoying three weeks of thrills and spills on ice for Team GB (who, as ever, were from Scotland).", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eddie also had his say after Daizen Maeda was jeered by Scotland fans.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "FIRST Minister John Swinney has called for Scotland and other devolved nations to be involved in a planned UK Government Cobra meeting on Tuesday after no receiving any invitation.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Scottish Government has released a statement detailing the First Minister has requested an invite be extended to Scotland, Wales and Northern Ireland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steve Clarke's former Kilmarnock midfielder Gary Dicker is assistant coach at MLS side Charlotte FC - where Clarke's Scotland squad will be based for the World Cup", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Stewart said she hopes the expansion of Fair Feast will be some sort of blueprint for other communities across Scotland and beyond.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We had JJ Bule on, uh, radio Scotland last week, who did a, I think you could like an LCD sound system kind of very funky hipster kind of track.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, IPPR Scotland argues this does not mean the sector is \"bloated.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL positions Scotland at the forefront of zero-emission transport technology, aligning with national climate targets and global export opportunities.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mathew Street was lined with Scotland fans just before 2pm, with constant chanting for midfielders Scott McTominay and John McGinn.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was back down to earth with a bump for Scotland at the weekend.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Robert Deavy, senior organiser in manufacturing at GMB Scotland, said: \"How many jobs must be lost and factories closed in Scotland before our governments stop sending contracts around the world?", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It's meant that there are portions of people across Scotland who do not support Gaelic being funded in any way.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland manager Steve Clarke specifically requested a match against strong African opposition to prepare for their World Cup group stage game against Morocco this summer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In her letter, Ms Hyslop said Transport for Scotland had been engaging with the UK Department for Transport over a trial being conducted in England.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That reflects a deeper, structural issue which is driving up the cost of doing business in Scotland.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The roar Nathan Patterson received when he replaced Ross McCrorie after 61 minutes suggested many Evertonians had responded to manager David Moyes' call to come out and support Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ryan Christie had a weak, close-range shot at the end of a promising Scotland attack - and seconds later the Africans were opening the scoring at the other end through Pepe.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motherwell and Wishaw Clare Adamson has welcomed new Scottish Government funding to support Scotland-based musicians with the rising costs of international touring.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Malcolm Offord from Reform UK is next saying the best form of opportunity is a good job, and says Scotland is the best country in the world for financial resources and people.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Former Olympic silver medalist Ross Whyte is captaining Team Scotland at the 2026 Mens World Curling Championship.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Green source told BBC Scotland that this was not the only complaint that had been made against Guy Ingerson.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite financial education already being included in the Curriculum for Excellence, the Scottish public believes schools should do more to teach students about money.", "score": 3.5299199999999997, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If local authorities in Scotland wish to implement a trial it would mean their acceptance that any crossing, under trial conditions, may be unenforceable which comes with risks. A collective way forward may be to proceed with shared discussions on the potential risks, benefits and opportunities of trialling and ultimately introducing side road zebra crossings in Scotland.\"", "score": 3.52944, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations according to research.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", "score": 3.47393, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Unlike other areas of the UK, however, Scotland doesn't recognise Easter Monday as a national public holiday, meaning that not everyone is entitled to an extra day off.", "score": 3.46698, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity has also pioneered the recognition of children as victims of domestic abuse in their own right and influenced the introduction of the Domestic Abuse (Scotland) Act, which criminalises psychological abuse, coercive control and controlling behaviour.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Earlier today, councillors decided to grant a general extension of opening hours for all of Scotland's matches until 30 minutes after the final whistle.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An update for this week's meeting of the committee says: \"The Cabinet Secretary responded but offered no current legislative route to allow the introduction of continental style zebra crossings on public roads in Scotland. The decision of the committee taken on 3 April 2025 is therefore that the proposed study should not proceed.\"", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said: \"In relation to licensed premises that have a full premises license and have televised sport if a Scotland match is played beyond the core licensing hours, there'll be late opening until 30 minutes after the final whistle.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops and our fear is this could see a shift in investment down south.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Macdonald went on to say that further work on Scotland's maritime history is expected to reveal more details about transport between the islands, and between the islands and the mainland.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops, and our fear is this could see a shift in investment down south.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gordon Strachan has urged everyone associated with the Scotland national team to not even think about Steve Clarke's long-term future until afrer the World Cup.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government acting now.\"", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Mr Sarwar told voters he is standing as first minister to \"fix the mess, get the basics right, and build a better future for Scotland\".", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He added: \"I'm standing to fix the mess, get the basics right, and build a better future for Scotland.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The First Minister previously he wants \"as many people as possible to celebrate\" Scotland's return to the World Cup.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I've said before, I'll play for Scotland until I'm told I'm not good enough.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Thirteen arrested in organised crime raids in Scotland and Spain", "score": 3.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is vital that the UK Government ensures a long-term pipeline of orders and a supportive approach to reserved matters such as subsidy and procurement. A first step would be changes to the Subsidy Control Act 2022 in order to create that pathway for procurement reform. The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government to acting now.\"", "score": 3.299735, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", "score": 3.290645, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Despite some areas of Scotland being hit with snow last week, Easter is almost here - bringing with it a lovely long weekend.", "score": 3.25971, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Alarmingly, more than 140,000 of these were for families with at least one child.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John Swinney said: \"Scotland will be on the world stage this summer and I want as many people as possible to be able to celebrate that moment.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "THE UK Government has been told the closure of Grangemouth oil refinery has made Scotland \"vulnerable\" to supply shortages as the last shipment of jet fuel from the Middle East is to be received this week.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mairi McAllan, SNP candidate for Clydesdale, said: \"Our transformational childcare package will be a complete game-changer for families across Scotland.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "First Minister John Swinney confirmed the support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was First Minister John Swinney who confirmed the furlough support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SRC has also been campaigning for reforms to the way businesses in Scotland are taxed.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "SNP MP Stephen Flynn has criticised the UK Government over its decision not to intervene and save the Grangemouth refinery from closure, as he said \"Scotland's resources should be controlled by Scotland\".", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We remain grateful to the Scottish Government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Following the consultation announcement, Deputy First Minister Kate Forbes has called on the UK Government to \"urgently deliver\" on the promises made to Alexander Dennis and help secure vital manufacturing jobs in Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Just one example, we've delivered social security Scotland and the national investment bank bringing jobs and investment to the economy. We've used progressive taxation to fund policies like free tuition and prescriptions. We believe in using Scotland's energy wealth and becoming an independent county and re-joining the EU.\"", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The leader of the Liberal Democrats has called for the Scottish Parliament to be recalled to address the crisis engulfing Scotland's ferry network.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Davies added: \"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Scots council pays £30k after child given food they were allergic to", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", "score": 3.16655, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dumfries and Galloway Council recently forked out £30,000 in compensation to a family after a child was repeatedly given food they were allergic to.", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over a third (34.5%) of mothers said they often find themselves choosing between paying for childcare and household essentials.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bowel Cancer UK found that around a third of people who are eligible here don't complete their test.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's now consistently true that majorities of young people in each of Scotland, Wales and Northern Ireland want to leave the UK, and the coming elections in Scotland and Wales will almost certainly bear that out.", "score": 3.1144249999999998, "claim_types": ["rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New figures from the RAC Foundation show that the cost of the Middle East conflict has cost drivers across the country more than half-a-billion pounds in higher fuel prices.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I have asked Transport Scotland officials to seek further legal confirmation, as they consider the effectiveness of this type of crossing upon review of the published trial findings.", "score": 3.096735, "claim_types": ["rules", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"But listen, Scotland needs change, and if there is an opportunity to get rid of the SNP and deliver change with fairness in its heart, which shares our values, of course, we'll look at that.\"", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Scotland's Deputy First Minister Kate Forbes called for action from the UK Government.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "RUSSELL Findlay has promised to establish Canary Wharf-style enterprise zones in Scotland.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", "score": 3.063685, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"And given that the council recently paid out £30,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", "score": 3.061215, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", "score": 3.023415, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Survation poll on Tuesday suggested the SNP could win 62 seats at Holyrood, Reform 19, Labour 18, Tories 13, the Greens 10 and Lib Dems 7.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Union says 1600 Scots jobs at risk if government doesn't act in 'national interest'", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price of filing up at the pump has been steadily rising since the war in the Middle East broke out just over a month ago.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The most important ones in my view are those where 20% or more speak the language and that's where the extra funding will be.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "James said: \"It's my first time in Liverpool. It's amazing. I love the accent. It's just an extended city of Scotland.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It makes me happy to help people unlock their creative potential and show Scotland their captivating stories of dignity, resilience, and the desire to make the world a better place, starting with oneself.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Amongst the many hustings events I'm doing during the Scottish Parliament election campaign, I took part in one last week hosted by Christian think tank Logos Scotland.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Moving to Scotland with two young children as a single mother made it impossible to continue my acting career at that time.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Guy Ingerson was due to top the regional list for the party in the North East of Scotland in May.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He has served as an MSP for South Scotland since 2021 and has played a key role on Holyrood's standards committee", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scores of Torry residents faced losing thousands as they were told to sell up their homes for less than market value, after they were deemed unsafe and earmarked for demolition.", "score": 2.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He explained: \"The worst for pollution and litter is polysterene.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", "score": 2.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"And, of course, John Swinney only cares about independence, when breaking up the UK would instantly make our great country poorer, less stable and less safe and bring joy to despots like Putin.", "score": 2.851145, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's clearly wrong that individuals are tortured or coerced in an attempt to change their sexuality or gender identities, but such behaviour is almost certainly already illegal.", "score": 2.81209, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I hope that this project will help refugees overcome trauma and send a strong message to the world that wars and violations of human rights have always been harmful to humanity and to women.\"", "score": 2.805745, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", "score": 2.799985, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, the £80million spent on the A96 hasn't resulted in any dualling at all.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Critics argue that despite tens of millions of pounds in public backing over recent years, jobs are still being lost and production remains under threat.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", "score": 2.753175, "claim_types": ["predictions", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Leon Ward, chief executive of Money Ready, comments: \"We are seeing a massive public consensus that current levels of financial literacy are just not up to scratch. The 'cost of not knowing' is not just a phrase - it is the missed compound interest on a pension, the struggle to manage bills, and the anxiety of not understanding a credit score. By the time many people realise what they don't know, they have already missed out on years of potential financial growth and opportunities.\"", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As an ageing property, the building presents several risks, primarily due to the use of the building beyond its intended lifespan as CLASP buildings were only expected to last in the region of 50 years, yet Dumbarton Health Centre remains in use.", "score": 2.7436800000000003, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Winds quite light with loads of 6 to 9 Celsius.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The pair killed 16 people in 10 months in 1828 selling the corpses to anatomist Robert Knox who would dissect them in his anatomy lectures.", "score": 2.72832, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Linden, the former leader of North Lanarkshire Council, was convicted of 10 offences last week, including five sexual assaults between 2011 and 2021.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", "score": 2.712725, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.5}} +{"sentence_text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Business rates thresholds have barely moved in recent years, while inflation has pushed up costs and rateable values.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A total of 12 per cent reported a significant increase in those presentations, and zero reported seeing a decrease.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The research found that two-thirds (66.1%) of mums agreed or strongly agreed that their childcare costs are the same or more than their income.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity works with more than 50,000 people across the UK every year delivering financial education programmes.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The planned job losses are a key plank of the government's plan to fill a looming £4.7 billion black hole in the public finances.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figures are based on average daily pump price rises and last year's fuel consumption rate.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The polling also reveals that 73% of firms expect to increase prices over the coming quarter.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average cost of petrol is 152.8p per litre, an increase of 20p since the war began.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As Swinney pointed out last year, by 2030, there will be 1 million young Scots eligible to vote, who weren't in 2014 - more than a fifth of the electorate.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scots motorists have been dealt a 'hammer blow' as the cost of petrol has soared to more than £2 a litre - the highest in the UK.", "score": 2.67708, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was undoubtedly the case that some of those opposing assisted dying came at the issue from a faith perspective, but many more did so because of the belief that the weak, vulnerable and disabled would be put at risk should the law be changed in this way.", "score": 2.67029, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By the time Scots come to cast their vote in the Holyrood elections on May 7, we could be in the throes of the worst economic shock since the 2007 crash.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "READ MORE: Reform plan to stuff Lords with '900 peers' to push deportation plans", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Otherwise, there is only one conclusion to draw - that Swinney is not on the side of the victims of Linden's sexual abuse, but on the side of those who covered up for him, with the SNP putting party before the victims of sexual abuse yet again.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Unite and other unions warned that up to a multiplier of 1,600 jobs could be affected in the wider supply chain and support services if the closures proceed.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The report, authored by Stephen Boyd, Dave Hawkey, and Casey Smith, states: \"The estimate that if frontline protection means freezing teacher numbers and seeing NHS staff increase at 1% cent per year, the government's target would imply employment reductions elsewhere of 3,600 per year, or 18,000 over five years.\"", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The report authors say that if the burden is to fall on \"non-frontline\" roles in these areas, the cuts could be roughly equivalent to how many jobs \"were lost from local government in the first five years of 2010s austerity\".", "score": 2.631525, "claim_types": ["quantity", "correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Glasgow supermarket worker shot with BB gun in attempted robbery", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's a massive turnout for a 10K and hearing people cheering you on really helps when you're digging deep.", "score": 2.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"By bringing check-ups and advice into everyday community settings - from workplaces and pharmacies to football clubs and shopping centres - we can reach people who might not otherwise come forward, particularly in more disadvantaged communities where the burden of ill health is greatest,\" the First Minister said.", "score": 2.6147650000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So we kind of know that this stuff's out there and that people are finding their news online and you might have also heard earlier this month on Radio Wales and across BBC Wales, my investigation into political deep fakes, I found more than a dozen pages on Facebook sharing fake news about British politicians along with some AI generated images and examples of deep fake videos of Welsh politicians, although those were labeled as satirical.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Welcome Break's Woodall Services on the M1 in Sheffield has the highest price for petrol, at 189.9p per litre.", "score": 2.58736, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", "score": 2.579765, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The most expensive motorway service area for diesel is Euro Garages' Rivington Services on the M61 in Bolton, Greater Manchester, where the price is 200.9p per litre.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The bus manufacturing sector in the UK suffered in 2025, with 51% of all zero-emission buses purchased being sourced from overseas.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the area covered by the Fife Council a total of 10 received at least 380 points - with three earning full marks.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But just 14 of those new vehicles are understood to be double deckers - the type of bus that ADL specialises in building in Falkirk.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK's most expensive petrol is being sold for 199.9p per litre at Avenue Garage in Northwich, Cheshire.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This consists of £409 million for diesel and £135 million for petrol.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight CalMac ferries are currently out of action, four of them for planned maintenance and the others due to technical issues.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He later contested the 2024 general election for Westminster in North East Fife, finishing second with 9,905 votes behind Lib Dem Wendy Chamberlain, who received 23,384 votes.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Also scoring the full 400 points with fewer than 10 per cent of pupils from 'very disadvantaged' families is Wormit Primary School, in the village on the bank of the River Tay opposite Dundee.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The school has nine teachers and an average class size of 22.8 puils.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Following that win against Craig Levein's St Johnstone there were still 12 games to and there proved to be plenty of twists in turns.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is understood that about 85 employees have since left the business.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Dunfermline statement reads: \"With over 9,000 tickets now sold for our upcoming semi-Final tie with Falkirk, the club can confirm we have been allocated a further 2,000 tickets for the match.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Contacted by the Local Democracy Reporting the First Minister's office detailed that in 2026-27, West Lothian Council will receive £498.9 million to fund local services.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This policy alone accounted for around 7,500 new staff in local government.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Liberal Democrats are projected to receive 8% on both ballots.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The application attracted six public representations, a formal objection from Sandwick Community Council, and a petition signed by 40 residents.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average diesel prices at UK forecourts on Tuesday were 182.8p per litre, up 40p since the start of the conflict in the Middle East on February 28, the RAC said.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On that occasion, in April 2009, 17,124 supporters watched Falkirk run out 2-0 victors to earn a place in the final against Rangers.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Again, fewer than 10 per cent of pupils are 'very disadvantaged' and the school has a 93 percent attendance rate.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This included 2,159 exceeding two years, which was down 45 compared to January.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We have fewer police, we are all paying the highest taxes in the UK.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK's largest bus manufacturer is at the centre of a row over the planned axing of a quarter of its staff after over £90m in taxpayer support.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Lack of access to a disabled bay can have a severely detrimental impact on a person's life.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But after a promising start as Scotland felt their way back into the 3-5-2 system that had been dusted down to try to cope with the physical challenge of Ivory Coast, things began to go awry just 12 minutes in as Nicolas Pepe bundled in the opener for the so-called home team.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The teams who have qualified are United States, Canada, Japan, China, South Korea, Sweden, Switzerland, Scotland, Italy, Germany, Czech Republic, Poland and Norway.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices have led to motorists paying an additional £544 million for petrol and diesel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The poll also projected the SNP would win 62 seats at the Holyrood contests on 7 May, which would leave the nationalist party three seats short of a majority.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey of 1,068 people, carried out between 16 to 23 March, put the SNP on 35 per cent support in the Holyrood constituency vote and 32 per cent in the regional list.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight CalMac ferries are out of action, four of them for planned maintenance and the others due to technical issues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Pars were initially allocated just over 9,000 briefs for the April 18 clash with their bitter rivals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than half (51%) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week, it was announced that the firm was due to receive orders for more than 100 zero-emission vehicles through a Scottish Government scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some £11.2m of those jobs grants from Scottish Enterprise came in 2023, three years after concerns were raised over ADL embarking on major job cuts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK would receive 19 per cent of the constituency vote and 18 per cent of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Irn-Bru maker AG Barr serves up £437m in sales and sets out goal to double in size: shares fizz", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the LibDems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Malcolm Offord (-15) and Nigel Farge (-31) fare better than their Labour counterparts, although at the time of polling, most Scots (55%) had no opinion on Lord Offord.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Asked to choose who they would back in a hypothetical 1v1 scenario; 55% of voters said they would prefer Mr Swinney over Mr Sarwar, while 45% said they would support Mr Sarwar over the current First Minister.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 300 people are waiting for their applications to be processed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For every £80 parents pay in, they would get £20 from the UK Government and £10 from the Scottish Government.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL says it has faced an \"uneven playing field\" due to policies that favour foreign competitors, including Chinese electric bus manufacturers, whose market share last year rose from 10% to 35% in the UK market", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bus firm off to England in £90m Scots public funding row may get even more millions", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 29-year-old has scored 11 times in 45 caps and in each of the games where he has found the back of the net, the Dark Blues have won.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Dark Blues have lost four of our seven meetings against CAF nations, winning only two in total.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She added: \"We're . Gaelic speakers only 2% of the Scottish population but that means we should have two or three MSPs who speak the language or at least very supportive of it to make sure that that community's voice is heard.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Pollsters predict a 99.7% chance of a pro-independence majority - that is, a majority held by the Scottish National party and Scottish Greens, both of which support Scottish independence.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of the 10 opinion polls on Scottish independence so far this year, \"yes\" has been ahead in seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The study by financial education charity Money Ready revealed that 78 per cent of Scottish adults think schools are not providing enough financial education.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour followed closely behind in the survey, with 19% of respondents backing the party in constituencies and 17% in regional votes, equalling 18 Holyrood seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Northern Ireland's travelling contingent did their best to generate a lively atmosphere, but there is only so much 300 people can do.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "SNP ministers have blown a 'jaw-dropping' £340million on design consultants and planners to dual just 11 miles of key Highland routes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is below the SNP's pledged 95% target which has not been met since 2012.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SNP could win 62 seats in May's Scottish Parliament election, with Reform UK narrowly in second place over Labour, a new poll has suggested.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That means it costs £100.52 to fill a 55-litre family car, breaching the £100 mark for the first time since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The company retains the option to evidence a claim for up to £4.1 million of Scottish Government funding to support its staff furlough scheme, subject to conditions being met. No claim has yet been received.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dunfermline have been handed an extra 2,000 tickets for their Scottish Cup semi-final against Falkirk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year, 400 jobs were at risk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The school is expected to reopen later this year after the extensive works which saw 60% of the original building torn down because of RAAC crumbling concrete roof panels.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The company said in June that it still needed to find orders for at least 300 buses a year to safeguard production in Falkirk over the long term.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35 per cent of the Holyrood constituency vote and 32 per cent of the regional list, leaving the party just three seats short of the majority.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "THE SNP could win 62 seats in the Holyrood election with Reform UK narrowly in second place, a new poll has suggested.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey of 1068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority needed to trigger a mandate for a second independence referendum.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SNP comes first on both the constituency and list ballots, with thirty-five percent and 32% of the vote.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, 58% of Scots would choose Mr Sarwar over Lord Offord, while 42% prefer the former Tory donor.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We'll also know from data from Ofcom that here in Wales, more than half of us use social media as a news source, Facebook alone in 2022 was the second most news source in Wales after BBC One.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Welsh government estimates that between 20 and 25,000 households will get the 200 pound payment and says other people in severe hardship can apply to their local councils' discretionary assistance fund, where the maximum award for heating oil has been increased from 500 pounds to 700.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "During the school holidays, only 57 per cent of households say all childcare is free or funded.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They expect the introduction of the Isle of Ila will bring some relief, however five out of Calmac's eleven major vessels are still out of action as well as a chartered catamaran and two smaller ferries.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under the existing UK-wide scheme, for every £8 parents pay for their childcare, the Labour Government adds another £2.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The maximum top up you can get for each child is £500 every three months and up to £2,000 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Sarwar Government would add an extra £1 for every £8 parents pay, boosting the discount from 25% to 37.5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour said the annual cap will increase from £2,000 to £3,000 per child and from £4,000 to £6,000 for disabled children.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"In just one quarter, we have seen a significant jump in the number of firms telling us that rates are a major pressure.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The AA said the gap between supermarket and non-supermarket retailers has widened from 5.4p per litre for petrol before the war to 7.6p a litre and diesel as much as 8.8p a litre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scottish Conservatives unearthed the figures showing A9 expert fees alone have soared to £261.3million, meaning the cost of each mile is close to £24million with another 72 miles of the route yet to be finished.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only captain Andy Robertson - winning his 92nd cap to put him only 10 behind the all-time appearance leader Dalglish - and Scott McTominay kept their places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Inexplicable, when an order for another 33 double deckers for Falkirk for nearly £20,000 less subsidy lost to a comparative bid from First Bus buying from China.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After Alexander Dennis (ADL) proposed to move its operations to England last year some £4.1m was allocated in publicly funded support for a furlough scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL employs around 1,850 people in the UK, with a significant proportion based in Falkirk and Larbert.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week it emerged that ADL was to receive orders for more than 100 zero-emission vehicles through a Government scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We've committed £15.6 billion through the Spending Review to help local leaders improve transport and support the transition to greener buses.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The negative view amongst the party leadership did not seem to be, in the end, broadly reflected amongst the SNP's membership, 48 per cent of whom voted for Forbes to be leader, meaning she missed out on becoming First Minister by a whisker.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Money Ready research identified the key areas of reform Scots would like to see, including: government intervention to ensure people receive financial education (79 per cent); financial education being provided across higher education and workplaces (75 per cent), and teachers being better trained to teach financial education (70 per cent).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes after the Scottish Government spending review, announced in January, highlighted an investment of £4.1 billion health capital over four years which did not include a new health centre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey put the Tories on 13 seats, with 11 per cent of the constituency vote and 13 per cent of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new vessel has capacity for up to 450 passengers and 100 cars, or 14 commercial vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This boosts vehicle and freight capacity on the route by 40%, improving the overall resilience of the wider fleet.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to £3,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost of living crisis.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Alexander Dennis, which previously proposed shutting down both Scottish bases, claimed it would save around 350 jobs under the new scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "First Minister John Swinney pledged approximately £4 million in funding towards the furlough scheme until work could recommence at the Falkirk site back in September.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Without it the council faces a 20-year repayment on borrowed fundswhich would cost it £30m.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL said the proposals would secure jobs for 200 skilled manufacturing staff, with a further 115 roles now at risk of redundancy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Sunday Times report used data submitted by schools in each of the four categories to come up with a mark out of a maximum of 400.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Less than 10 per cent of its pupils come from a background classed as 'very disadvantaged'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And some £30m of jobs grants for research and development over 10 years has come from the Scottish Government's economic development agency Scottish Enterprise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rangers moved into second place with a 4-1 romp of Aberdeen before the international break, three points behind leaders Hearts and two clear of Celtic.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That gap to their Old Firm rivals remained intact when the champions went down 2-0 to Dundee United at Tannadice 24 hours later.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Conservatives will lose almost 20 seats, returning 13 MSPs, followed by the Scottish Greens with 10 MSPs and the Liberal Democrats with seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform and Labour are tied for second place with 19% each on the constituency ballot.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scottish Conservatives are projected to earn 11% and 13% of the vote on the constituency and list ballots, while the Scottish Greens are expected to pick up 8% and 11%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By contrast, Prime Minister Keir Starmer has a net favourability rating of -47 among Scots, and the leader of the Scottish party, Anas Sarwar, has a net favourability rating of -25.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"By contrast, I used those budget negotiations as leverage to squeeze the SNP for every penny I could and, as a result, secured £178 million in rates relief for pubs, clubs, restaurants, hotels and self-caterers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The researchers also highlight that while there has been a recent uptick in the number of local government jobs, this is almost entirely driven by the expansion of funded childcare for three and four-year-olds to 1,140 hours.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With adult social services and teachers at levels close to 2010, the IPPR calculates that this \"leaves the rest of local government around 12,500 FTE members of staff below 2010 levels.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SRC said Scots firms were paying £54 million a year more than those down south, or £162 million over the three-year rates period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Islanders elsewhere have also been hit hard with the price of diesel setting motorists back £2.17 a litre at one forecourt on Arran and £2.11 a litre at another in Portree, Skye.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This includes £409million for diesel and £135million for petrol, with figures based on average daily pump price rises and last year's fuel consumption rate.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ministers spend £24m a mile on consultants to dual just 11 miles of A9!", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A UK Government spokesman said: \"The UK is a global leader in bus manufacturing, with around 60% of buses funded through our zero-emission bus programme built by UK-based companies, supporting skilled jobs and a cleaner transport network.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour followed closely behind in the survey, with 19 per cent of respondents backing the party in constituencies and 17 per cent in regional votes, equalling 18 Holyrood seats.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than half (51 per cent) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The council has used £20m of its own resources and has made repeated calls to the Scottish Government to cover the last £15m needed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nationalists would be just three seats short of majority, with Labour third and Tories fourth", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prime Minister Keir Starmer has a popularity rating of minus 47% for and minus 25% for Scottish Labour leader Anas Sarwar.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures obtained by the Diffley Partnership predict that voters will elect 62 nationalist MSPs, two seats fewer than in 2021.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Using polling conducted by Survation between March 16 and 23, elections guru Mark Diffley contends that the Reform will form the official opposition to the SNP, securing 19 seats, while Scottish Labour will come third with 18 seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We are offering 52 weeks support, Labour are offering two.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As first reported by The Herald, a major restructuring to try and cut costs was revealed to staff and members earlier this month as the organisation looks to cut costs by 20%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Isle of Islay, left, is smaller and uses a more conventional propulsion system than Glen Sannox, right", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It adds: \"This is a significant number: Outside local government, the NHS and the civil service, there are only around 65,000 public sector workers and it seems implausible that all 18,000 job losses (representing nearly a quarter of these workers) could be absorbed here.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, according to former SNP minister Michael Matheson with 523 vehicles ordered, only 162 - less than a third - were built by Scottish manufacturers like Alexander Dennis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Before the Scottish Government-backed furlough scheme, the company had received some £90m of taxpayer cash over the past ten years and tens of millions since a 2020 plan to axe a third of its Scottish workforce in advance of June's plan to exit to England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ex Rangers winger and current Manchester United star Diallo bagged an assist in that game, meaning he has been involved in seven of his country's goals in his last nine caps.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We're happy with the result and the fact we scored 4 goals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 26-week scheme ended on March 22 of this year with the Scottish Government picking up an estimated tab of £4 million to cover 80% of workers' wages while Alexander Dennis secured the additional work needed to resume operations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to £3,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost-of-living crisis.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Industry leaders have warned that some individual valuations have soared by as much as 500%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes as prices on the comparison website listed a top price of £2.10 a litre for petrol and £2.20 a litre for diesel at the Skerries Co-Operative Society pumps on the Shetland isle of Bruray - though to be the most expensive in the UK.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Stac has now supported more than 120 start-ups, facilitated in excess of £50m in investment into its portfolio, and helped create some 400 jobs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cost of filling a typical family car with diesel has exceeded £100 for the first time in more than three years, new figures show.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This would put it ahead of Labour (18 seats), the Tories (13 seats), the Scottish Greens (10 seats) and the Liberal Democrats (7 seats), the research found.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform would receive 19 per cent of the constituency vote and 18 per cent of the list, with Labour following closely behind with 19 per cent backing the party in constituencies and 17 oer cent in regional votes, according to the poll.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the previous Scottish Parliament elections, held in 2021, the SNP won 64 seats, while the Tories won 31 seats and Labour won 22 seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While ticket prices are normally $20 (£15.14) for the return fare, it was reported the local transport authority will now charge $80 (£60.55) for all games at the World Cup.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The company had previously set out plans to close its facilities in Falkirk and Larbert, with the loss of 400 jobs, and move production to Yorkshire.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, on the regional list, Reform's support (18%) outstrips that of Labour (17%).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile the troubled MV Glen Sannox, which only entered service last year between Troon and Brodick on the island of Arran, is facing £3.2m of further costs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Here in Wales, the Welsh government has offered a one-off payment of 200 pounds for low income households who rely on heating oil, as prices have in some cases more than doubled.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over 7000 people were interviewed and over 4000 statements were taken but no arrests were made.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ADL had already secured tens of millions in public money after first proposing to cut around one-third of its Scottish workforce, including facilities in Falkirk and Larbert in 2020 and then admitting it is looking to move to England last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Niall said he had forked out around £20,000 to go to the World Cup this summer, which included 10 nights in New York and six nights in Miami.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scottish Government had stepped in with what it described as an unprecedented £4.1 million furlough scheme to support workers while new orders were secured.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes one week after the £45 million Scottish Zero Emission Bus Challenge Fund (ScotZEB3) confirmed that 334 zero emission vehicles are to be built - with 123 buses awarded to ADL and 166 awarded to Chinese company Yutong.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to a survey by the Chamber, 48% of businesses say rates are their primary concern.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Scottish Government shelled out £260million of taxpayers' cash on the fees for the A9 dualling programme and a further £80million on the A96.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'£261.3m has been spent on consultancy fees on the A9 out of an estimated total scheme cost of £3.97billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scots hit with extortionate pump prices of as much as £2.17 a litre for diesel as Middle East fuel crisis starts to bite", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motorists travelling on the NC500 route are also seeing 'astronomical' prices with the cost of petrol listed just 4.1p off £2 at Lairg, and diesel sitting at £2.17 a litre at one forecourt in Thurso, Caithness.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steve Gooding, director of the RAC Foundation, however, said the price paid at the pumps by drivers is 'currently rising by £37million a day'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The announcement comes as the accelerator centre begins fundraising for its first dedicated deep tech fund, targeting between £15 million and £30m to significantly scale its capacity to back Scottish founders.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Additionally, UK policies under the Subsidy Control Act 2022 limit the ability to favour domestic suppliers in public funding, while Scottish rules require UK-based firms to meet Fair Work First standards, which it is claimed put ADL at a competitive disadvantage compared to international rivals who are not bound by these conditions.", "score": 2.5438549999999998, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The crime lord is the head of the Lyons clan, which originated in Cumbernauld, North Lanarkshire, and has been involved in a bloody battle with rival Glasgow-based group Daniel for more than 20 years.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"For twenty years, councils have been forced into annual cuts. This cannot continue,\" he said.", "score": 2.502525, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Every year, thousands of participants choose to support causes close to their hearts, turning each step of the journey into something meaningful beyond the finish line.", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", "score": 2.57747, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It would earn around £3.5bn a year from the energy profits levy on North Sea oil and an extra £2.4bn from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The RAC has also suggested the Government could earn an extra £2bn from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research by the Institute of Directors recorded business confidence dropping to a net figure of -76 in March, compared to -63 in February.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Business confidence has dropped to a record low.", "score": 2.511005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Heart disease remains one of the biggest killers in the UK, responsible for more than 460 deaths a day - roughly one every three minutes.", "score": 5.6796, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show that tamoxifen patients are nearly three times more likely to develop deadly blood clots and endometrial cancer.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK lags behind other countries in cancer outcomes and faces a major shortage of staff and diagnostic scanners compared to countries like Germany, Sweden and Italy.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The earlier bowel cancer is found, the more treatable it's likely to be, with more than nine-in-10 people surviving the disease when diagnosed at the earliest stage.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over the course of the study the researchers found that more people who are susceptible to diabetes are now developing the disease than in the past.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Latest data suggests Long Covid still occurs in about 3 in 100 cases.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies have also shown that getting enough vitamin E - around 4mg a day for men and 3mg for women, roughly the equivalent of a tablespoon of sunflower seeds - may help reduce the risk of heart disease.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Latest data suggests Long Covid still occurs in about three in 100 cases.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crucially, research also shows that tamoxifen can slash the risk of breast cancer developing by as much as 50 per cent.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With nearly six million people in the UK thought to be living with diabetes, the need for realistic and effective interventions has never been greater.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Radiotherapy on its own, meanwhile, eradicates around 40 per cent of cancers and also brings side-effects, such as skin irritation around the treatment area.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Children and young people living in the most deprived communities were more than three times more likely to have a tooth extracted due to decay than those in more affluent areas, data also showed.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'If you give women who are at an increased risk of developing breast cancer a drug like tamoxifen, then you can significantly reduce their risk of developing the disease by up to 50 per cent.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At 12 trusts, more than half of cancer patients waited too long to start treatment after being referred by their GP or other doctor.", "score": 5.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It could explain the relatively low uptake among women for cancer screening - tests and checks that save thousands of lives each year.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Higher olive oil intake, specifically extra virgin olive oil which contains more health-promoting polyphenols (as not all olive oils are created equal), has been associated with lower rates of heart disease and early death.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has long been suggested that sufferers may need to overhaul their lifestyle to keep the disease at bay, with approximately 90 per cent of cases being type 2 diabetes - which has been linked with obesity, lack of exercise and chronic stress.", "score": 5.53285, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nearly 5 million people with chronic illnesses lack access to essential medications, while life-saving treatments like radiation treatments for cancer and dialysis for kidney disease have been interrupted for 16,000 and 2,800 patients, respectively.", "score": 5.517510000000001, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While in recent years revolutionary new drug treatments have increased the number of patients who beat breast cancer, it still kills more than 11,000 every year in the UK.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One person is diagnosed with cancer in the UK every 75 seconds following a surge in cases over the past decade.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than a million people with heart disease are to be prescribed the weight loss jab Wegovy to prevent them from having heart attacks or strokes.", "score": 5.51636, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Long Covid is when the symptoms of Covid-19 last longer than 12 weeks, according to the NHS website.", "score": 5.47096, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research from the charity shows awareness of the five gynaecological cancers remains low in the UK, with stigma and embarrassment continuing to delay seeking medical advice, which results in thousands of women dying.", "score": 5.47096, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, only a small number of women - those considered to be at high-risk of developing breast cancer - are offered tamoxifen for this purpose on the NHS.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity Bowel Cancer UK found that around a third of people who were eligible here, don't complete the test.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And also, you know, even those who have suspected disorders, they face incredibly long waiting lists of sometimes years, which is unthinkable for a say, six-year-old child with severe ADHD.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His various studies suggest that as few as one to four minutes of incidental vilpa each day may reduce your risk of heart attack, stroke and even certain cancers.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those that had received CBA3656 excreted significantly higher levels of plastics in their feces than the control group, providing direct evidence that the bacterium could bind nanoplastics in a live intestine and help flush them out of the body.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When tested in simulated intestinal fluid, a laboratory proxy for the human gut complete with bile salts, Leuconostoc mesenteroides CBA3656 adsorbed an impressive 57 percent of nanoplastics, far outpacing the others.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crucially, the drug also reduced by 30 per cent the rate of major events such as heart attacks, strokes or death due to heart disease.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year, scientists found aspartame, which is found in products like Muller Light yoghurts, contributed to a worrying rise in diabetes risk - with those who consumed a cocktail of additives at a more than 10 per cent increased risk than those who steered clear of the artificial ingredients.", "score": 5.36473, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK's miserly rate of statutory sick pay - one of the lowest in the developed world - thus became a factor in the spread of Covid-19.", "score": 5.36473, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Also, it's the fourth most common cancer, but why are more than a third of people not taking up the offer of bowel cancer screening?", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show women who develop breast cancer are significantly more likely to see it return later in life - at which point it is often harder to treat.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Addressing the six pillars of lifestyle medicine including eating a plant-based diet, exercising regularly, and prioritising sleep could help reverse type 2 diabetes, experts said today.", "score": 5.350285, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "More than a million people with heart disease will be prescribed a weight loss jab to prevent them from having heart attacks or strokes.", "score": 5.34754, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The plastics seemed to give cancer cells a survival boost, making them more likely to spread and migrate to new sites.", "score": 5.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, it can also result in more serious issues, including asthma attacks and problems for those with respiratory or cardiovascular diseases, with the risk of respiratory infections also raised.", "score": 5.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One 2024 study found that getting less than six hours of sleep a night could increase the risk of type 2 diabetes by 16 per cent - with the odds remaining high even when people ate well, suggesting a healthy diet cannot compensate for sleep deprivation.", "score": 5.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cancer charities warn such delays slash survival chances, can make some treatments less effective and increase anxiety.", "score": 5.20488, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It turns out that my estrogen levels were really, really low and that I've probably been in perimenopause for a lot longer than I thought.", "score": 5.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, a major study, soon to be published, found that a breast cancer diagnosis can cost women up to £12,000 a year, in large part due to lost wages, childcare and travel costs.", "score": 5.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "READ MORE: Walking for just 30 minutes could help ward off breast cancer", "score": 5.158329999999999, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Conall Watson, consultant epidemiologist at UKHSA, said: \"RSV lung infection is less well known than Covid or flu but for older adults it puts thousands in hospital each year with a risk to life.", "score": 5.0636849999999995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some people are at a greater genetic risk than others, with experts now suggesting that more of these 'at-risk' people are developing diabetes than before due to modern lifestyles.", "score": 5.0636849999999995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now then, it's the fourth most common cancer and the second biggest killer, but a charity is warning too many people aren't taking a potentially life-saving screening for bowel cancer.", "score": 5.0636849999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scientists have said Cicada can spread faster than other variants, and one of the UK's top microbiologists has revealed emerging evidence that it could spread most in children with no COVID immunity, increasing the risk of a new wave.", "score": 5.0521, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When you have cancer the first time around you are on a curative pathway so the idea is that they're treating you to a point where you are cured.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It can make babies larger, and can also cause a premature birth and lead to Type 2 diabetes developing in the mother.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And everybody does it, you know, in the end of the day, so, you know, if we don't, if we don't check it, then, unfortunately, you risk yourself of maybe having bowel cancer and not getting treated early enough.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But but take ADHD. You know, if a child is acting up in class, unable to concentrate, um, you know, struggling to sort of sit still, then the support that that child needs would depend on whether or not they have ADHD. Is that not true, Dennis, of any condition? I mean, you know, if you want to get treated for your, let's take an obvious, if you want insulin for example, then you're probably going to have to get diagnosed with diabetes first. If you need chemotherapy, you're probably going to have to have a cancer diagnosis first. So it's not so much about incentives, that's just how the medical system works, isn't it? To get treatment or get support, you have to have a diagnosis.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Certain warning signs could mean you have early diabetes or liver disease (stock image) (Image: Getty)", "score": 5.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is crucial because many types of breast cancer feed off oestrogen.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health experts are urging caution as the Cicada Covid variant spreads, with sore throat the most common symptom and advice to consult doctors about booster jabs", "score": 5.0220400000000005, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A vaccine that is injected directly into tumours could boost survival rates from hard-to-treat cancers.", "score": 5.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Long Covid is when the symptoms of Covid-19 - extreme fatigue, shortness of breath, joint pain, aching muscles and brain fog - last longer than 12 weeks", "score": 5.0067, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A record 106,810 cancer patients waited more than 62 days to start urgent treatment on the NHS last year, damning new analysis reveals.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And really, we, you know, the prevalence of psychiatric disorders in that population, for example, ADHD is significantly lower than what you would expect in England.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And just 63.6 per cent of women invited for mammograms to screen for breast cancer in England attended last year (2024/25).", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in several European countries between Nov 2025 and Jan 2026 (Image: Getty)", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She argues that, on this low tamoxifen dose, patients typically only suffer one hot flush a day, while also seeing their risk of cancer drastically cut.", "score": 4.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A study from February 2026 found that prolonged, low-level exposure to tiny plastic particles - just 20 nanometers wide - made colorectal cancer cells behave more aggressively.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Matt Sample, senior health policy manager at Cancer Research UK, said: 'Far too many people with cancer are still waiting longer than they should to begin treatment in England.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health officials observed that the symptoms linked with Cicada are consistent with earlier versions of COVID-19.", "score": 4.884875, "claim_types": ["correlation", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new COVID strain sweeping the UK could disproportionately affect children (Image: Getty)", "score": 4.88213, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert, sparking controversy among doctors.", "score": 4.87995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert - sparking controversy among doctors.", "score": 4.87995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "An ultrasound scan in July 2024 led to the 'earth-shattering' diagnosis of stage three breast cancer.", "score": 4.8539200000000005, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", "score": 4.8539200000000005, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The party said it would deliver this through 200 extra staffed radiotherapy machines, new radiotherapy centres to end 'radiotherapy deserts', and over 3,000 more cancer nurses to ensure everyone has a specialist supporting them.", "score": 4.834525, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "In a bid to combat the increasing prevalence of type 2 diabetes, the NHS launched its soup and shake diet - which incorporates pillars of lifestyle medicine - which has now been shown to help thousands put their type 2 diabetes into remission.", "score": 4.8334, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new strain of Covid-19 has been detected in the UK amongst a further 22 countries across the world.", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You may be offered a COVID-19 vaccine in spring if you are aged 75 or over, are aged six months to 74 years and have a weakened immune system because of a health condition or treatment, or live in a care home for older adults.", "score": 4.770545, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But it works less well in cancer that has spread - and, as it targets both healthy and cancerous cells, it causes side-effects from nausea to hair loss and heart palpitations.", "score": 4.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She says the major intervention is needed to combat the rising number of young women developing breast cancer.", "score": 4.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I'm still active, you know, um, fit and, um, you know, nothing to worry about, if you like, none of the symptoms which, um, you look out for, if you like, but, um, you know, it just goes to prove, you know, because, you know, when you read up on bowel cancer, it does state, you know, some articles I've read where you can take up to 10 years to get symptoms and by then, it could be further, further down the track in terms of the stages.", "score": 4.743765, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has long been recommended that women at moderate to high risk of breast cancer should be offered preventive treatments such as tamoxifen", "score": 4.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "They said: \"Sunburn increases your risk of skin cancer. Sunburn does not just happen on holiday. You can burn in the UK, even when it's cloudy.\"", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Type 2 diabetes occurs when the body doesn't make enough of the hormone insulin, or the insulin it makes doesn't work properly.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is because tamoxifen has a number of side-effects, including hot flushes and night sweats, mood changes and fatigue.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Common symptoms are similar to most Covid-19 cases with some being resolved with rest, hydration, and over-the-counter medications.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Springtime can bring a range of seasonal health concerns, including hay fever, allergies and asthma flare-ups due to increased pollen levels.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In tests on mice with bowel cancer, the vaccine was 100 per cent effective at completely eradicating tumours.", "score": 4.730845, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So that's that's the conclusion of this review, that too many children and young adults are being incentivized to get diagnosed with conditions like ADHD and autism and that there is an ongoing, this is the phrase, medicalization of distress. And I slight different points there. They're slightly kind of different conversations. But I think we're going to try and do both together because I want your thoughts fundamentally on whether you think that's right. And you might want to comment specifically on the idea that people are being overly incentivized to get diagnosed as neurodivergent. You might want to comment on the suggestion that there is a medicalization of distress that we tell too many people they're mentally ill when actually they're just sad or a bit stressed. Or you might want to comment on both. Either way, would love to hear your thoughts. Are those conclusions right? Are too many people being overly incentivized to get diagnosed with ADHD and autism? And is it true to say that there is a medicalization of normal day-to-day distress? That's been the argument for politicians for quite some time. This review has to some extent, at least, endorsed that view. Do you agree with it? Do you think it's right? 03456060973 is the number for your thoughts. You can text me on 8450, or send a comment to LBC. Before I come to your calls, let's talk about it with Dennis O'Grady, a professor of child psychiatry at Queen Mary University in London. Professor, good to have you with us. Um, let's start, shall we, with the the incentive suggestion that children and young adults are being incentivized to get diagnosed with ADHD and autism. What would be the incentive to get a diagnosis?", "score": 4.7201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It will target people with conditions such as chronic obstructive pulmonary disease (COPD), asthma, and cardiovascular disease, which can be worsened by cold and damp living conditions.", "score": 4.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The study, involving patients with type 1 and type 2 diabetes, found almost all of the participants found to have heart failure had preserved ejection fraction, which can be difficult to detect without dedicated testing.", "score": 4.712725, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was further noted that this advice applies particularly to the six most vulnerable groups: minors, elderly people, those with chronic respiratory or cardiac conditions, like asthma or bronchitis, pregnant women, outdoor workers, and finally, smokers.", "score": 4.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Surveys have shown that only 2 per cent of women who receive regular breast cancer screening - meaning they are scanned for the disease every few years - have heard of tamoxifen.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite this spread, it has not led to a notable rise in overall Covid infection rates compared with previous years.", "score": 4.698725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's because the colon believes its primary job is absorbing water - and it does so astonishingly well, absorbing up to five litres of fluid per day, meaning there's only so much that drinking extra water can counteract this action.", "score": 4.698725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of the key concerns is norovirus, which can survive on clothing and fabrics for up to a month in almost any condition.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show that, via this mechanism, drugs like tamoxifen can stop breast cancer from spreading and - in combination with other treatments like chemo and surgery - can cure patients.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Complications during breast cancer treatment are also common.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although the acute phase of the pandemic has passed, COVID-19 continues to pose a considerable health burden.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The elderly and immunosuppressed are particularly vulnerable to Covid(Image: Getty Images)", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other concerning research has suggested that artificial sweeteners added to supposedly 'healthier' fizzy drinks like Diet Coke could trigger type 2 diabetes.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the pandemic's most severe phase has ended, COVID-19 remains a significant health concern.", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Others argue that lifestyle changes - like losing excess weight, exercising regularly, and limiting smoking - are effective at lowering the risk of breast cancer, without any of the potential complications of medicines like tamoxifen.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Dr Rebekah Law, a breast cancer surgeon at the prestigious Royal Marsden hospital, believes the 45p pill, tamoxifen, should be offered 'in the same way as statins' - the safe and highly effective daily tablets taken by millions to cut their risk of deadly heart disease.", "score": 4.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place, including the fact that those who develop it are more likely to see it return later in life, by which point it often harder to treat.", "score": 4.636725, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Significantly, Dr Law argues that any women - regardless of family history or genetics - who is concerned about developing breast cancer should be allowed to request a tamoxifen prescription.", "score": 4.634255, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But in the past ten to 15 years, treatment of some cancers has been transformed by immunotherapy drugs.", "score": 4.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cicada's mutations to the spike protein mean that our antibodies take longer to recognise it as the invading Covid-19 virus.", "score": 4.612785, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And there is no shortage of questionnaires and no shortage of influences who will tell you that you have ADHD and you should be proud of it.", "score": 4.612785, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts also point out that, today, a breast cancer diagnosis is not a death sentence.", "score": 4.55922, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This new generation of medicines - including pembrolizumab (used to treat advanced skin, lung, bladder, breast and bowel cancers) and nivolumab (for tumours of the kidneys, head and neck) - work by taking the brakes off the immune system, so it can attack and destroy rogue, cancerous cells.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It needs to be tight to produce clear images, which are vital to detecting cancer, particularly early-stage cancers.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This can include conditions like sunburn or long-lasting issues like wrinkles, fine lines, leathery skin and pre-cancerous patches.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Edward Piper, medical director at AstraZeneca UK, said: \"Delayed diagnosis and treatment of heart failure in people with type 2 diabetes contributes to poor long-term outcomes.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Currently, tamoxifen is mainly used on the NHS to treat women who already have breast cancer - or to prevent the disease from returning.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Influencers are telling their audiences that injectable peptides are the \"glow up potion\" they need for everything from clearing up hormonal acne, thickening hair, relieving back pain and even treating chronic UTIs.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Terry's nails can also indicate other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Terry's nails can also signal other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There's a tendency to instantly think of expensive IV drips and elite supplements when longevity is mentioned, but fibre is actually proven to balance blood sugar, help manage cholesterol, support healthy weight and even reduce the risk of diseases like type 2 diabetes, heart disease and certain cancers,\" says nutritionist and author Emma Bardwell, who just published a bible on the topic, The Fibre Effect.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This can result in ailments such as sunburn, as well as enduring problems like wrinkles, fine lines, weathered skin, and precancerous spots.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "gestational diabetes is a temporary form of high blood sugar that can develop during pregnancy when the hormones block insulin function.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research has linked nanoplastics to cancer, though the International Agency for Research on Cancer (IARC) has not yet classified them as carcinogens.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These peptides, intended for research purposes (as some influencers do point out) and not approved for human use, are being increasingly sold through unregulated online channels.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Whilst further research is needed to understand the link between a lack of sleep and diabetes, the researchers highlighted other studies that have linked sleep deprivation to high blood pressure, heart disease and stroke.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The treatment has had a major impact in cancers such as malignant melanoma, an often lethal form of skin cancer, for which there used to be little treatment.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A growing body of research has linked them to chronic diseases, including obesity, cancer, heart disease, type 2 diabetes and metabolic problems.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Padmaja Pater, president of the ALCM, said: 'Too often, chronic disease like type 2 diabetes is managed as a condition that patients must live with indefinitely.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Children get infections all the time but this might be something to do with the fact that they have never been exposed to Covid vaccines.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of the main concerns is norovirus, which can remain on clothing and fabrics for up to a month in virtually any conditions.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hydrogen sulfide can exacerbate existing conditions, including asthma and chronic pulmonary disease.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bonning says injectable tanning peptides, which have also been spruiked online, carry \"... a risk of it causing skin cancers, and there are also reports of significant kidney dysfunction and swelling of the brain after taking that kind of injectable\".", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although cancer cells do already produce antigens, they often give off a weak signal, helping the tumour to escape the full force of the immune system.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said young children could have early anorexia or avoidant/restrictive food intake disorder (Arfid), characterised by limiting food type or quantity.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Ms Yau said: 'Heart disease is characterized by high blood pressure, a weak or irregular heartbeat, and red streaks of haemorrhage.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Analysis has shown those aged 75 to 79 already getting the vaccine are much less likely to be hospitalised.", "score": 4.545945, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations, according to research.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, crucially, they have not yet detected an overall increase in COVID cases there compared to previous years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scientists reported in the journal Bioresource Technology that CBA3656 absorbed 57 percent of nanoplastics in intestinal fluid to mimic the human gut, outperforming other tested strains by as much as 19-fold.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, crucially, they have not yet detected an overall increase in Covid cases there compared to previous years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Analysis published last March by UK Health Security Agency (UKHSA) showed there were 30% fewer hospital admissions among 75 to 79-year-olds as a result of the RSV vaccine.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 65.5% uptake figure for Wales highlights that there's still an opportunity for more people to take part in bowel cancer screening.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The study, which began more than three years ago, involved more than 700 people with diabetes from the two health board areas who had at least one other risk factor for heart failure.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Their role is to amplify the garden's message of confronting the silence that costs the lives of 21 women a day and spark conversations with visitors about women's gynaecological health to reduce the stigma and silence about the deadly cancers.", "score": 4.545585, "claim_types": ["correlation", "opinion", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Experts from Cancer Research UK and the British Association of Dermatologists recommend adopting sun safety measures between March and October.", "score": 4.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "New Covid strain sweeping UK 'could be most dangerous to kids'", "score": 4.53232, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health officials are monitoring symptoms linked to Covid-19 as a new 'cicada' variant spreads amid warnings it could disproportionately affect kids", "score": 4.52192, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr says new Covid Cicada variant 'detected in UK' could 'avoid immune system' - symptoms", "score": 4.52077, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The National Health Service (NHS) identifies the following as potential symptoms of COVID-19:", "score": 4.52077, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health officials have warned of red flag symptoms of a new Covid-19 variant set to sweep Britain.", "score": 4.52077, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Law concedes that, since, historically, tamoxifen studies have only involved patients over the age of 30, there is currently no data on how effective it is at preventing cancer in younger people.", "score": 4.498455, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was the second time Woods has been arrested for a DUI not as a result of the influence of alcohol.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ireland is \"no better prepared\" for a pandemic than it was six years ago, a panel looking at the country's response to Covid-19 has heard.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS sonographers who carry out scans at 12 and 20 weeks of pregnancy and help diagnose cancers, warn that one in four job posts are currently vacant across England at a time when the NHS is already under acute stress.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Unlike statins, which have to be taken for life, Dr Law argues that patients only need to be on tamoxifen for five years in order to lower their risk of breast cancer for the following 20 years.", "score": 4.483945, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It ́s much more like a wartime economy.\"", "score": 4.45262, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And yet, it seems that that vast numbers of young people are doing exactly that with conditions like autism and others.", "score": 4.440635, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Tamoxifen should be offered in the same way as statins to all women at risk of breast cancer ,' she says.", "score": 4.4165849999999995, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "This five-minute procedure is used to detect human papillomavirus, or HPV, which can cause cell changes in the cervix that may develop into cancer - it's offered to women aged 25 to 64 in the UK.", "score": 4.40644, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The soap star, who played Liz McDonald on the ITV programme on and off for 30 years, revealed earlier this year that she had been diagnosed with the early stages of breast cancer and underwent her first bout of surgery shortly afterwards.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In many cases, Terry's nails suggest a chronic condition, such as liver failure or diabetes.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Jade also plans on making a donation to Tommy's Journey, a fundraiser for a five-year-old boy from Sale suffering from an aggressive form of cancer.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In many cases, Terry's nails indicate a chronic condition, such as liver failure or diabetes.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government published its National Cancer Plan in February this year, promising to embrace a robotic revolution to boost survival rates.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This patient would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", "score": 4.400095, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This 'patient zero' would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", "score": 4.400095, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"And the evidence is clear that the RSV vaccine offered to pregnant women is providing excellent protection to babies. When you are offered the vaccine, don't hesitate.\"", "score": 4.38448, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "More than a million people with heart disease are set to be offered weight-loss injections on the NHS in a major shift in how the condition is treated.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer.", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kimberley said: \"So just to make this clear, had you not been offered that trial that day, you potentially would not have found out that you had breast cancer for maybe another 10 years. Which is terrifying, but also amazing. Like, this is what this is all about.\"", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The actor, 28, who is best known for playing Ryan Power on the BBC drama series, is currently battling Stage 3 skin cancer.", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Covid cicada variant is sweeping the UK as a leading microbiologist who is analysing the BA.3.2 strain here tells the Mirror it could disproportionately affect children", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They say this is leading to pregnant women and cancer patients facing delays for vital ultrasound scans, which could be really dangerous for the patient.", "score": 4.36914, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, though, a large trial has shown benefit in 3,655 people who hadn't previously had a heart attack but did have type 2 diabetes.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Bowel cancer is Scotland's third most common cancer, but screening is one of the best ways to spot the disease early or remove polyps that might develop into cancer.", "score": 4.33462, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The need for better ways to prevent breast cancer is clear.", "score": 4.3342600000000004, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Writing in The Lancet's Diabetes and Endocrinology journal, the researchers said: 'We believe it is possible to view this as closely linked to societal changes that may be more conducive to developing diabetes.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And it's also partly on the edges at least to do with weight loss drugs that companies that supply packaged goods like Unilever believe that their market is likely to be damaged as the widespread use of weight loss drugs means that consumers are likely to buy less of their products.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The consultant paediatrician Dr Lee Hudson said eating disorders had become more common but pointed out that the term covered a wide spectrum of conditions, not just anorexia.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Urgent flu warning issued to Aussies after worst year on record killed 1,738 people https://t.co/EE6Qr45J65", "score": 4.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} From 7631fc7a9bedcea54de25a4c5cf1ce8cf649a9d1 Mon Sep 17 00:00:00 2001 From: David Corney Date: Mon, 6 Apr 2026 09:53:48 +0100 Subject: [PATCH 05/11] Bigger (complete) training set of lablled sentences --- .gitignore | 5 +- pyproject.toml | 12 +- .../encoder_experiment/finetune_encoder.py | 2 +- scripts/encoder_experiment/label_sentences.py | 8 +- .../labelled_sentences.jsonl | 2823 +++++++++++++++++ uv.lock | 1734 +++++++--- 6 files changed, 4122 insertions(+), 462 deletions(-) diff --git a/.gitignore b/.gitignore index 50b6993..9767218 100644 --- a/.gitignore +++ b/.gitignore @@ -163,4 +163,7 @@ cython_debug/ .devenv/ .direnv/ .vscode/ -responses.db \ No newline at end of file +responses.db + +# Encoder experiment outputs +scripts/encoder_experiment/results/ diff --git a/pyproject.toml b/pyproject.toml index 64b7693..6f06876 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ maintainers = [ ] readme = "README.md" license = {file = "LICENSE.md"} -requires-python = ">=3.10,<3.14" +requires-python = ">=3.12,<3.14" dependencies = [ "google-cloud-core>=2.4.3", "pydantic>=2.11.7", @@ -41,6 +41,16 @@ dev = [ "pytest>=7.4.0", "pytest-asyncio>=0.21.1", ] +ml-labeller = [ + "transformers>=4.40", + "datasets>=4.8.4", + "torch>=2.10.0", + "accelerate>=1.13.0", + "scikit-learn>=1.8.0", + "sentencepiece>=0.2.1", + "tiktoken>=0.12.0", +] + [tool.pytest.ini_options] diff --git a/scripts/encoder_experiment/finetune_encoder.py b/scripts/encoder_experiment/finetune_encoder.py index dc60415..5c27f5b 100644 --- a/scripts/encoder_experiment/finetune_encoder.py +++ b/scripts/encoder_experiment/finetune_encoder.py @@ -53,7 +53,7 @@ def setup_logging(output_dir: Path) -> None: } RANDOM_SEED = 42 -MAX_LENGTH = 128 +MAX_LENGTH = 128 # 128 is enough for c.95% of sentences; 256 would cover them all TEST_FRACTION = 0.2 diff --git a/scripts/encoder_experiment/label_sentences.py b/scripts/encoder_experiment/label_sentences.py index ee0d418..982d41f 100644 --- a/scripts/encoder_experiment/label_sentences.py +++ b/scripts/encoder_experiment/label_sentences.py @@ -31,6 +31,8 @@ logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s") logging.getLogger("google.ai.generativelanguage").setLevel(logging.WARNING) +# supress noisy messages "AFC is enabled with max remote calls: 10.": +logging.getLogger("google_genai.models").setLevel(logging.WARNING) logger = logging.getLogger(__name__) @@ -206,8 +208,10 @@ async def main() -> None: logger.info( " Written %d records (total so far: %d)", len(records), total_written ) - if i >= 5: - break + # not sure if needed; might reduce rate limits/threading errors: + await asyncio.sleep(1.0) + # if i >= 200: + # break logger.info("Done. %d sentences labelled -> %s", total_written, output_path) # Allow gRPC background threads (used by the Gemini client) to drain diff --git a/scripts/encoder_experiment/labelled_sentences.jsonl b/scripts/encoder_experiment/labelled_sentences.jsonl index cf41782..62a630d 100644 --- a/scripts/encoder_experiment/labelled_sentences.jsonl +++ b/scripts/encoder_experiment/labelled_sentences.jsonl @@ -1017,3 +1017,2826 @@ {"sentence_text": "And it's also partly on the edges at least to do with weight loss drugs that companies that supply packaged goods like Unilever believe that their market is likely to be damaged as the widespread use of weight loss drugs means that consumers are likely to buy less of their products.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} {"sentence_text": "The consultant paediatrician Dr Lee Hudson said eating disorders had become more common but pointed out that the term covered a wide spectrum of conditions, not just anorexia.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} {"sentence_text": "Urgent flu warning issued to Aussies after worst year on record killed 1,738 people https://t.co/EE6Qr45J65", "score": 4.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prof Gupta was leading part of the research group which reported the first evidence for immune escape for Covid-19 during the pandemic.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Professor Ravi Gupta, of Cambridge University, who advised the Government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New 'Cicada' Covid strain spreads to 23 countries as UK health chiefs on high alert", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK health authorities are monitoring the BA.3.2 COVID variant, dubbed the 'cicada' strain, which has been detected in at least 23 countries and is likely already circulating at low levels domestically", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ed Davey, leader of the Liberal Democrats, which analysed the NHS England data, said: 'Like millions of people, my life was turned upside down by cancer, which took both my parents when I was young.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The influencer, 43, has amassed a legion of followers on social media over the years, and documented her husband's battle with cancer online.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In some cases, it is offered to women with a strong family history of the disease or cancer-causing genetic mutations, to prevent the disease from occurring.", "score": 4.285765, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So because somebody's declared that they're autistic, or have autism, it doesn't mean that they necessarily should qualify for support.", "score": 4.273495, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Covid may not dominate daily life - bit it still demands respect'", "score": 4.24868, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "However, speaking exclusively to the Daily Mail at the European Breast Cancer Conference in Barcelona, Dr Law argued that women with an increased risk of the disease - such as those with a close family history of breast cancer, for example in a mother or sister - should be offered the chance to take tamoxifen.", "score": 4.23285, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Specialists from Cancer Research UK and the British Association of Dermatologists suggest that people should take sun safety precautions between March and October.", "score": 4.21566, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Where Street in the Health Secretary was one of those who came out, you might remember, fairly recently, end of last year, and said he thought that was going on. He thought that was part of the problem. He launched a new a review, um, to investigate why there was such an increase in demand for mental health services and conditions, um, like ADHD and autism. And that review has concluded today that the people are being overly incentivized. That's the word that it uses to go and get diagnoses with ADHD and autism. And that there has been, what the review called, a medicalization of distress. Which is a sort of scientific academic way of saying that too many people who are just going through the normal ups and downs of life are being told there's something clinically medically wrong with them. So maybe they're very anxious because they live in poverty and they've got an unstable job and they worry about how they're going to pay the rent at the end of the month. In which case, I would say almost, it would be strange if they weren't feeling anxious all the time. And yet in the modern world, perhaps they go to the doctor and they get told you have anxiety, you need pills. Or perhaps they go through a very difficult time, a divorce or bereavement and rather than just being told, look, yes, you feel very sad, but that's, it's difficult, but it's normal. They get told you have depression or you have this condition. Here is some tablets.", "score": 4.213585, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new COVID strain, which has been named after an insect, is set to become dominant in the UK and could disproportionately affect children, a leading microbiologist has warned.", "score": 4.1991700000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, I mean, that is true about insulin and diabetes, that is true. Um, but you know, if a child is unable to read, then you don't need a diagnosis to understand that that particular child needs support.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The emergence of the Cicada Covid variant is a stark reminder that this virus has not gone away.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scientists say cicada spreads faster than other variants and one of the country's top microbiologists has told of emerging evidence that it could spread most in children who have no Covid immunity - which could drive a new wave.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When researchers tested the same particles in zebrafish, they watched the cancer spread faster in real time.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "US scientists have recently raised concerns that the current Covid vaccines may be less effective against this new variant.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Something interesting about MS is how much the symptoms fluctuate.", "score": 4.15696, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'That's why the Liberal Democrats will make improving cancer care a top priority, and fight every day for better care for you and your loved ones.", "score": 4.154895, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "US citizens have been urged to stay vigilant after a new COVID-19 variant has been detected in over 24 states.", "score": 4.151565, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But at the same time, it chemically reprogrammes cancer cells so they proactively attract the attention of killer T-cells.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK health bosses are keeping a close eye on a new Covid variant dubbed the \"cicada\" strain that's spreading like wildfire across the globe.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Children get infections all the time, but this might be something to do with the fact that they have never been exposed to COVID vaccines.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Plastic surgeon Richard Wain, an expert in skin cancer, said: 'It can happen in any nail - on your hands or feet - and unlike other forms of melanoma, it's not related to UV exposure.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Similar to earlier versions, it contains alterations to the virus's spike protein - the component which allows entry into human cells - potentially influencing both its transmissibility and its ability to bypass existing immunity.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They can differ from person to person and may improve with rest, fluids, and over-the-counter medicines.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'We believe remission for type 2 diabetes and many other chronic conditions should be the North Star outcome guiding care.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Many will be familiar with the effect of the very well researched glucagon-like peptide 1 (GLP-1): \"it's what's made Ozempic and Wegovy and Mounjaro so fundamentally different to other weight loss drugs,\" says Bonning, who is the chair of public health for the association.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Children are being incentivised to get diagnoses for conditions like ADHD and autism", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But in rare instances, cancer is discovered.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Phytoestrogens mimic oestrogen in the body and dock onto oestrogen receptors to help modulate oestrogen dominance, which has been linked to breast cancer,' Johnston explained.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vernon Kay said \"As a man with many important women in my life, it's vital that I understand the language, symptoms and warning signs around gynaecological cancers so we can have open conversations and encourage early detection. These cancers affect half the population directly, and the other half through the women we love and care about. It's time to bring these often-overlooked cancers into the national spotlight and give them the same awareness and attention we've seen with some men's cancer charities.\"", "score": 4.1233249999999995, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Liberal Democrats are campaigning for a guarantee that every patient starts treatment for cancer within 62 days from urgent referral, with this right written into law.", "score": 4.118985, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Woods, who has been involved in other crashes over the years, is charged with driving under the influence, property damage and refusal to submit to a lawful test.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said after going public with her complaint, other individuals contacted her to report similar experiences of trolling and harassment involving the same doctor during Covid.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new Covid strain named after a tropical insect is set to become dominant in the UK and could disproportionately affect children, a top expert says.", "score": 4.04754, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place.", "score": 4.013675, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A cheap fermented vegetable and staple of Korean cuisine may help in combating a build-up of harmful microplastics linked to heart disease, cancer, inflammation and brain damage.", "score": 4.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So when you hear words like ADHD and autism and it's like the cost it's the benefits bill.", "score": 4.006385, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In How Not to Take Supplements, the dietitian reveals how many products are missold to consumers, with some containing far less of their key ingredient than advertised.", "score": 3.986895, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His father, a heroin addict, has largely been a background character in Odom's life, and his mother died of colon cancer when he was 10.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Separate laboratory tests on human breast cancer cells produced similar results, with the vaccine resulting in their complete destruction.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She can tell that she lost performing and then she got ill and cancelled the rest of that tour, there was covid and then she cancelled it and there's sort of people being, she had a couple of, um, appearances since then, that the Paris Olympics and she was at the Grammys presenting Taylor Swift with the album of the year for Midnights that year.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It involves a speculum being used to hold open the vagina, then a hysteroscope (a telescope-like device, with a camera and light) being inserted through the cervix (the neck of the womb - a narrow space, which can sometimes be very rigid), before fluid is pumped inside to distend the womb to make it easier to see what's going on.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, in heartland regions such as Anglesey (Ynys Môn) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cancer was later ruled out, although doctors were struggling to test Ronnie's bone marrow as it was so sparse.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ed Davey, leader of the Liberal Democrats, said it is 'heartbreaking' to see how many people are forced to wait too long to start cancer treatment.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The businessman, who was 21 years Lorna's senior, battled stage four adrenal cancer after being diagnosed in April 2023.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is maybe a small segment of the population, typically very affluent families, who can afford private healthcare, who do seek these diagnoses specifically.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "READ THE FULL STORY: New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'We don't want to impact an otherwise healthy woman's quality of life and sexual wellness just because there is a slight risk she might develop the disease further down the line,' says Dr Pascal Pujol, a cancer expert at the University Hospital of Montpellier in France.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Your music is also partly informed by your own experience with your own health, overcoming breast cancer, the bodily changes as well.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cases of the COVID-19 'cicada' strain linked to international travel have included detections among individuals returning to the United States from several countries, including the UK", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bev found out she had cancer on the set of Irish soap Fair City , which she joined earlier this year as Lily Patterson.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Influencer and Instagram star has announced a major life update is on the way - just weeks after her husband John Andrews passed away following a long battle with cancer", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He told the Mirror : This is different from the (Covid-19) viruses we have been dealing with for the last two years.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A brave Airdrie mum battling stage three bowel cancer says she can see a \"light at the end of the tunnel\".", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nicola has spoken about her ongoing fight as part of Bowel Cancer Awareness Month (BCAM).", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the time, he said: \"I'm really looking forward to working closely with Neuroblastoma UK to raise awareness of this cruel cancer and hopefully raise lots of money to help save more young lives.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Which cancers the drug will be tested on first and what side-effects it may cause are as yet unclear.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite thinking she was low risk, she was diagnosed with cancer but has now been given the all-clear, reports the Mirror.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'In practice, I've seen this approach help many women with symptoms linked to hormonal imbalance, including PMS, irregular periods and the mood and energy fluctuations that often accompany perimenopause,' Johnston said.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dawn had been referred to hospital after a routine blood test showed raised CA125 levels - a possible indicator of ovarian cancer - and after scans revealed a polyp, her consultant wanted to examine the area with a camera.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They lost their mother, Carroll, in 2020 to cancer", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The National Health Service (NHS) lists the following as possible symptoms of COVID-19:", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Let's speak now to John Woodland from Blackwood in Cardiff, who was diagnosed at 52 years old with stage two bowel cancer back in November 2023.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Covid strain that is a spin-off of Omicron has swept the US and already arrived in the UK, health chiefs have confirmed.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Finnian, who has 18-month-old daughter Saoirse, recently said he was diagnosed with Stage 3 skin cancer, which has sadly spread to his neck.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prof Gupta was a key member of the research group that reported the first evidence of immune escape in COVID-19 during the pandemic.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The former BBC radio host first supported Neuroblastoma UK after a friend's daughter was diagnosed with this aggressive cancer.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Accused suffers from ADHD and was initially helping kids", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a new interview with Prima, Hermione responded to speculation the show would return after six years off air as well as discussing her struggle with long Covid and her children flying the nest.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Centers for Disease Control and Prevention (CDC) reported that from November 2025 to January 2026, weekly detections of BA.3.2 increased to make up around 30% of Covid-19 sequences reported in Denmark, Germany, and the Netherlands.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The CDC reported that between November 2025 and January 2026, weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in Denmark, Germany and the Netherlands.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The actress recently updated fans saying, \"I haven't got the all clear... In three to four weeks I'll find out if it's gone into my lymph nodes. If I am cancer free and if they managed to get it all on the left side then I begin radiotherapy so it's quite a long way to go. I am not insurmountable. I have some good days and I do have some really bad days especially if I'm over tired. But more often than not I'm doing well.\"", "score": 3.970545, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", "score": 3.94427, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you are eligible and wish to do so, you can receive the MenB vaccine, which offers protection against the infection.", "score": 3.9372949999999998, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "When tested in mice, those given the bacterium excreted significantly more plastic in their feces than untreated mice, which was evidence that it latched onto the particles and helped flush them out.", "score": 3.9334350000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Trinny Woodall added: \"I'm looking forward to being a Lady Garden Foundation Host Ambassador at RHS Chelsea and speaking to as many visitors as possible at the 'Silent No More' Garden. It's a platform to raise awareness, break taboos and encourage more open conversations about gynaecological cancers amongst its visitors. I've supported the Lady Garden Foundation since it was founded in 2014 and I'm proud to be part of a bold charity that is helping to revolutionise women's health. By educating and empowering people to recognise symptoms and talk more openly about gynaecological health, we can help drive earlier diagnoses and ultimately save more women's lives.\"", "score": 3.925145, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "This includes placing restrictions on platform access for customers where necessary and an ongoing partnership with Drinkaware to implement further alcohol safety measures, including clear signposting to support resources.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Experts have said that while current vaccines may be less effective against Cicada, vaccination still offers significant protection against severe disease.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts said the findings demonstrate the extent of unrecognised heart failure in people with diabetes, and how the condition can be easily detected using a widely available blood test (NT-proBNP) that measures how much strain the heart is under.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms associated with BA.3.2 seem largely comparable to other strains of COVID-19.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"With Clubcard Challenges on fresh, frozen and tinned fruit, veg and pulses, we're committed to helping customers get more of the healthy food they need for less.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "two minutes after 11 is the time this Tuesday night you are listening to late nights with Ben Kentish here on LBC. Very pleased that you are. Great to have you with us. Very, very good evening indeed if you are just joining me on the program this evening. We've been talking about Donald Trump. Suspect we'll talk lots more about his relationship with Kier Starmer and this state visit in the days and weeks ahead. But lots more. Um, topics for us to get our teeth into. After 12, we're going to be talking a lot more about divorce. Amid more warnings today that it's on the increase, specifically divorce linked to financial difficulties. Look at that after 12 o'clock. Um, for now though, want to get your thoughts on a topic that we've we've discussed fairly frequently together over the months. Um, but it's one that is very, very significant right now because it touches the lives of so many people. Um, in this country at the moment and that is the issue of neurodivergent and particularly the massive increase in the number of people being diagnosed with conditions like ADHD and autism.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And I think because a lot of things are very time critical in obstetrics, that is where the workforce tends to, to gravitate to and it is the general ultrasound that tends to suffer more and then we're trying to do patients that are on cancer pathways.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For you, you can't just say I have autism without somebody who is an expert having told you that you have autism.", "score": 3.89304, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"But I won't lie, having cancer is hard.", "score": 3.89304, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Additionally, colds and respiratory infections remain common as temperatures fluctuate.", "score": 3.88572, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Pharmacists can also support those with long-term conditions, such as diabetes or heart disease, ensuring they have the medications and advice needed to stay well over the holiday period.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Poo normally should be a chocolate brown: bile - a digestive fluid produced by the liver - is a yellowish brown to dark green, and when mixed with our gut bacteria, it turns dark brown.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Covid-19 Cicada was first identified in in South Africa on November 22, 2024 with between 70-75 mutations with some having the potential to reduce protection from a previous infection or vaccination, according to the Centers for Disease Control and Prevention (CDC).", "score": 3.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prof Ravi Gupta, of Cambridge University, who advised the UK government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Annette Illing, a 39-year-old mother of three, is the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The TARTAN-HF trial found one in four of patients with diabetes who had at least one other risk factor for heart failure had undiagnosed heart failure that was detected through screening using a new blood test and ultrasound scanning of the heart.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Williams, a retired civil servant who is undergoing cancer treatment, considers her pension to be \"fairly decent,\" but as the US cost of living has risen, she has had to dip into her savings.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The vaccine was initially made available in September 2024 to older adults as they turned 75, with a catch-up programme for those aged 75 to 80, plus women from 28 weeks of pregnancy.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As well as the brilliant 5-a-day-hub on the Tesco Real Food website, you'll find hundreds of healthy, easy-to-make recipes, plus heart and diabetes-friendly meal suggestions, created in conjunction with the British Heart Foundation and Diabetes UK.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Having had breast cancer, I, the relationship I had to my body was very different because, you know, you, you have a baby, you, your body goes through all of those physical changes, external, internal, then you can nurture that baby if you choose to nurse your child and then you go through these other physical changes when you get to a certain age, we go through menopause, we, it's such an extraordinary, um, machine that we have here.", "score": 3.832275, "claim_types": ["personal", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I know how difficult it's been for me, um throughout my life and when I was in school that there was nobody to say, um you might be ADHD so we might need to make adjustments.", "score": 3.832275, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mother-of-three Annette Illing, 39, is the first person to be successfully treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal, which was established after the singer died in 2021 at 39 after battling the illness.", "score": 3.8320299999999996, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For decades, cancer treatment revolved around long-established techniques such as chemotherapy - where powerful drugs are given to stop malignant cells from reproducing - and radiotherapy, when high-energy radiation is fired at tumours to destroy their DNA, halting their spread.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms are similar to other Covid strains - the usual suspects like fever, cough, and fatigue that can be treated with rest and over-the-counter meds.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Covid symptoms are no longer hallmarked by the loss of taste and smell as they were in the first couple years of the pandemic, although that can still happen.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If I'm cancer-free, then, a few weeks after that, I will begin radiotherapy. If I'm not cancer-free, then we'll cross that bridge when we get to it. But I have a feeling I will be. I don't why I have that feeling but I just have.\"", "score": 3.799255, "claim_types": ["personal", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite the fact that he was also diagnosed with prostate cancer which was subsequently treated and is waiting for another skin cancer operation, the PCI procedure has given him a new lease of life.", "score": 3.795165, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "My world had fallen apart; I was too young to have cancer.", "score": 3.7723649999999997, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"When I received the cancer diagnosis it was earth-shattering news, we weren't ready. You never think it is going to happen to you. It was really, really surprising but not in a good way.\"", "score": 3.7723649999999997, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pam claims her kids' plant-based diet has stopped them from needing the doctor for childhood illnesses like the flu.", "score": 3.7723649999999997, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John had battled stage four adrenal cancer after the disease returned in 2024, having initially been diagnosed in April 2023.", "score": 3.76621, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts say that while current vaccines may be less effective against cicada, vaccination still offers significant protection against severe Covid disease.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mills is no longer a patron for the charity, which aims to fund research into more effective treatments for children diagnosed with the cancer.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She thought she was low risk but ended up being diagnosed with cancer.", "score": 3.74141, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Sometimes I worry that my cancer has become the talk of the town and it's all people see in me.", "score": 3.74141, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But within two years, the keen flute player from Bracknell, Berkshire, was forced to have part of her middle finger amputated due to the discovery of a life-threatening cancer.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Katie Houston was diagnosed with stage 2 bowel cancer in August 2022, at the age of just 43.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three months later, Helen suffered from a chest rash and scans sadly revealed her cancer had returned to her lymph nodes and neck as secondary stage three breast cancer.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the hospital, it was found she had suffered a bilateral pulmonary thromboembolism, where blood clots obstruct arteries in both lungs.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Amid Cain's health battle, after being diagnosed with aggressive prostate cancer, there's an accident next week that leaves his life on the line.", "score": 3.735255, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That led doctors to give Elizabeth the devastating news that she should have part of her finger removed in July 2022 because the cancer had already occurred twice.", "score": 3.735255, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While most respiratory viruses spread mainly through airborne particles, norovirus is different.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Customers can also earn extra Clubcard points through Clubcard Challenges by buying frozen and tinned fruit and veg, beans and pulses.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While most respiratory viruses transmit mainly through airborne particles, norovirus is different.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These low-dose X-rays detect early signs of breast cancer and are routinely offered to women aged 50 to 70 in the UK in a national screening programme.", "score": 3.73294, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People who smoked daily during more waves of young adulthood were significantly more likely to still be smoking later in life.", "score": 3.7310499999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I also meet with my cancer nurse every six months.", "score": 3.720035, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Immunotherapy drugs stop that protein from binding to immune cells - allowing them to identify cancer cells as foreign and launch an all-out attack on them.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms linked to BA.3.2 appear broadly similar to other forms of COVID-19.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The antigen serves as a red flag to the immune system, almost inviting it to dispatch soldier cells to attack and destroy the cancer.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Holidays reflected the needs of the farming calendar, while Esslemont School's old log books recorded closures for epidemics of measles and whooping cough in the days before vaccinations.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The drugs were developed because some cancer cells 'hide' from the body's defences by releasing a protein, called PD-L1, which binds to the surface of immune cells, instructing them not to attack.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It tends to be the first investigation for a lot of patients both in obstetrics and obviously for cancer as well.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Until now, medicines such as Wegovy and Ozempic have been used mainly for obesity and diabetes.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And so, really, you know, and and there are very effective treatments as well, specifically for ADHD.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Unlike many forms of skin cancer, subungual melanoma is not linked to sun exposure.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Diabetes was confirmed by self-report questionnaires and blood glucose readings.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing T-cells to kill off the tumour", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new non-hormonal drug has been approved to treat menopausal hot flushes.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK health officials are keeping a watchful eye on the emergence of a fresh COVID-19 variant, BA.3.2 - dubbed the \"cicada\" strain - as it makes its way across numerous nations worldwide.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They can vary between individuals and may ease with rest, plenty of fluids, and medicines available without prescription.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is standard practice when melanoma is suspected, as the cancer develops in the nail bed - the skin beneath the nail - rather than the nail itself.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By midlife, about one in 10 reported that their memory was 'fair' or 'poor.'", "score": 3.700095, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Iranian media reported Tuesday that a wave of US-Israeli strikes hit military bases, a religious site and a cancer drug plant in the more than month-old war rocking the Middle East and roiling the world economy.", "score": 3.6937550000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Law also argues that it is better to prevent breast cancer from occurring than to treat it.", "score": 3.674385, "claim_types": ["rules", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Covid-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", "score": 3.67103, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "COVID-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", "score": 3.67103, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A large analysis of nearly 80,000 participants found just 15 minutes of fast walking can cut your risk of early death by 20 per cent.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One analysis found that just 30 to 60 minutes of muscle strengthening activity every week is associated with a 10 to 20 per cent lower risk of death from all causes.", "score": 3.6691399999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Each year, more than 200,000 people suffer a heart attack or stroke.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Data from Healthwatch has shown that millions are struggling to access NHS dental care, with some forced to travel hundreds of miles or face waits of months.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But while fruit and veg ought to make up a third of what we eat, government figures show that fewer than one in five adults and under one in 10 children are getting their 5-a-day.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Roughly 28 million Americans have alcohol use disorder, nearly 19 million have cannabis use disorder and approximately 29 million smoke cigarettes, making each condition a major public health threat.", "score": 3.6691400000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Stephen spent the last eight years of his life battling cancer with the same indomitable energy he brought to his lifelong work: the unending struggle for justice and dignity for every human life,\" his family said in a statement released shortly after his death.", "score": 3.660125, "claim_types": ["personal", "quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new Covid variant is set to become dominant in the UK(Image: Getty Images/iStockphoto)", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said: \"So, the next stage, is, in about four weeks, we will find out if she managed to get all the cancer out and we'll also get the results of whether it was in the lymph nodes or not.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the new vaccine - called iVAC (intratumoural vaccination chimera) - could boost the chances of defeating cancer, according to results published in February in the journal Nature.", "score": 3.653625, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Department of Health and Social Care also claimed the NHS will meet all of its existing cancer targets by March 2029.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Through my long-term ambassador work with the Lady Garden Foundation, I think it's incredibly important that we start having open conversations with friends and family about the five gynaecological cancers and what the symptoms can feel like. Knowing my mum had ovarian cancer has also made me take proactive steps with my own health. I've undergone genetic testing for the BRCA gene, as well as other genes that can increase the risk of ovarian cancer. Being aware of your body and taking preventative action can make a huge difference to an earlier diagnosis\"", "score": 3.636075, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The former lobbyist had contracted Covid-19 in March 2020, and in the months and years that followed, he had one of the worst cases of the virus.", "score": 3.635935, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I think about all the people during Covid that didn't have that, and I think about all the circumstances when people don't have that.", "score": 3.62671, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'm so much better after the long Covid, but I feel different, physiologically.", "score": 3.605585, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I wanted to play the flute but I want to live more.", "score": 3.605585, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The fluid, which contains lung cells and bacteria, is sent to the lab for testing.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some 10 per cent of bacterial cases are fatal.", "score": 3.57942, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Kieran Docherty, clinical senior lecturer at the University of Glasgow's School of Cardiovascular & Metabolic Health, said: \"Our results from the landmark TARTAN-HF trial identified heart failure in a large proportion of people living with diabetes, emphasising the need for a heart failure screening strategy in this group of patients.", "score": 3.566845, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The main reason for economic inactivity in the UK is long-term sickness - accounting for about a third of cases, which is a record high.", "score": 3.5589250000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the subjects the two discussed were Hedberg's dream date (Martha Stewart), among other things.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A brave West Lothian cancer survivor has shared her own story ahead of Bowel Cancer Awareness Month.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS Lanarkshire have collaborated with a number of partners to provide new research into diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Genevieve Edwards, chief executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"At the same time as I was waiting to hear back, Bowel Cancer Awareness Month had just started.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tim Elliott, a professor of immuno-oncology at the University of Oxford, said this kind of approach - using drugs that both stop immune evasion and make cancer cells attract killer T-cells - is hugely promising.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Celebrity supporters of the gynaecological charity Lady Garden Foundation have pledged their support to the charity's 'Silent No More' Garden at the RHS Chelsea Flower Show, which has been designed to break the silence and stigma surrounding the five gynaecological cancers - vulval, ovarian, cervical, womb and vaginal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Davina McCall whose mother had ovarian cancer, is a long-term supporter of the Lady Garden Foundation.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "EXCLUSIVE: Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "President Donald Trump, whose former daughter-in-law Vanessa is dating Woods, was asked about the golfer when he landed in Miami on Friday afternoon for an investment summit.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To see if the strain could hold up in the human gut, the team tested it in simulated intestinal fluid containing bile salts, a notoriously harsh environment that can disrupt bacterial cell walls and render them ineffective at binding plastics.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK following his axing from BBC Radio 2, which was announced on 30 March", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kimberley Walsh met with a mum who was treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Club Chemistry has since set up a COVID-like 'track and trace' system which will allow it to contact club-goers if further cases emerge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour MP Antonia Bance says she is 'gutted' at the British Medical Association for refusing their pay increase offer to resident doctors.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His wife, Carroll Taylor Wiseman, a nurse in a newborn intensive care unit, died at the age of 46 in 2020 following a battle with cancer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Karl Peggs, a professor of cancer immunotherapy at University College London Hospitals NHS Foundation Trust, agrees.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"At Anthony Nolan we give hope to families affected by blood cancers and disorders, but we can't do it without the lifesavers that sign up to our register.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Alongside the meal plan, patients are provided with one-to-one support and guidance to help them sustain a healthy lifestyle for longer and reintroduce healthy foods and maintain weight loss, while medications for type 2 diabetes and blood pressure are stopped.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Kimberley Walsh met the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New cases of the Covid-19 Cicada strain have been detected in the UK", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity, it is also available under the different brand name Ozempic for the treatment of type 2 diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A second fan felt the diabetes idea made sense, especially as executive producer Ben Wadey promised a series \"red herrings\" leading up to the New Year's Day special, in which Penny's child will feature.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity and, under the name Ozempic, for the treatment of type 2 diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One major study which followed more than 90,000 people over a period of 28 years, found those who ate the most olive oil (more than half a tablespoon a day) had a 19 per cent lower risk of death from any cause, compared to people who never or rarely used olive oil.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "During the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A study published in the Lancet last year reported a 65% increase in annual hospital admissions between 2012-3 and 2021-2 for children and young people aged five to 18 with mental health concerns.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nearly half of primary teachers report pupil eating disorders, according to survey", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than a million to be prescribed weight loss drug to prevent heart attacks and strokes", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Cicada variant - technical name BA.3.2 - is better at evading the body's immune defences as it has around 75 genetic changes in its spike protein, the part of the virus that helps it get into cells.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of those who survive, one in three suffer complications, including brain damage and hearing loss.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the NHS, Rett syndrome affects around one in 10,000 girls, which results in severe mental and physical disability and there's currently no cure.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Throughout the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yet one in three women experience severe pain during a hysteroscopy, rating it at least seven out of ten, according to the Royal College of Obstetricians and Gynaecologists.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Aplastic anaemia can affect anyone at any age, but is more common in people aged between 10 and 20, and those over 60.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show every four-week delay reduces patient survival by an average of 10 per cent.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'When all five physical measures were combined, mortality prediction improved even further in groups with preexisting health conditions.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In young adulthood, participants averaged two waves of binge drinking, defined as having five or more drinks in a row in the past two weeks.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Each wave of heavy drinking raised the odds by 13 percent, and that risk persisted 30 to 40 years later, when they reached their 50s and 60s.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids in a study", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They averaged just over one wave of daily smoking and less than one wave of heavy alcohol use - drinking 20 or more days a month - or frequent cannabis use, which involves using 20 or more days a month.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even after accounting for midlife smoking, each additional wave of daily smoking in young adulthood raised the odds of poor memory decades later by about five percent.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Known as the soups and shakes diet, the intervention aims to help followers lose between 22lb and 33lb(10kg to 15kg), which is enough for most people to reverse the condition, experts say.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Estimates suggest around 175,000 people aged over 65 visit their GP with RSV every year, and the virus causes around 8,000 deaths among older people annually.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A 2021 trial found that patients with constipation who ate two green kiwis a day, 100g prunes a day, or 12g of psyllium per day for four weeks all equally increased poo frequency and decreased straining during a bowel movement.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By age 35, more than a quarter of participants showed signs of alcohol use disorder, six percent had cannabis use disorder - meaning their use of marijuana had caused significant life problems or loss of control - and nine percent smoked a pack of cigarettes or more a day.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Doses of medicinal cannabis products can be especially potent, containing up to 27% tetrahydrocannabinol (THC), the psychoactive compound in cannabis.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Street cannabis is thought to contain between 15% and 20% THC.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It demonstrates a heightened ability to bypass existing immune defences due to approximately 75 mutations within its spike protein - the specific component the virus uses to enter human cells.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People with alcohol use disorder at 35 were 32 percent more likely to report poor memory in late midlife compared to those who drank without disorder.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Disease might be prevented in around seven in 10 cases, experts estimate, based on best evidence.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Between November 2025 and January 2026, BA.3.2 represented approximately 30% of sequenced COVID-19 cases in nations including Denmark, Germany and the Netherlands.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Between November 2025 and January 2026, BA.3.2 accounted for roughly 30% of sequenced COVID-19 cases in countries such as Denmark, Germany and the Netherlands.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By late 2025, it was accounting for about 30% of Covid cases in countries like Denmark and Germany.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Still hoping the baby will be Vinny's and Penny has gestational diabetes, which would explain the baby being larger,\" said a fan.", "score": 3.545675, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Thousands of people suffer from viral meningitis every year in the UK.", "score": 3.53287, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The one-off jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing disease-fighting T-cells to kill off the tumour.", "score": 3.5194, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A survey published in the European Heart Journal informs us that short bursts of activity, such as running upstairs, can slash your risk of dementia by 63 per cent.", "score": 3.5175099999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An NHS survey of 2,000 women last year found that a fifth of women said they preferred not to have a mammogram as they've heard it's painful.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 10,000 under-50s are diagnosed with the disease every year in the UK now - 10 per cent more than in 2010.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Once considered largely eradicated in the UK, tuberculosis (TB) is rising again, with cases up by more than 13 per cent and London among the most affected areas.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Recent figures from the British Dental Association show that around nine in 10 NHS practices are not accepting new adult patients.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Up to two million people in Britain are currently thought to be using weight-loss jabs, the vast majority paying for them privately.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Through the programme, we've donated more than 10 million portions of fresh fruit and veg to schools across the UK to date, increasing access to healthy food and helping children to discover a love for fresh produce.\"", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Many melanoma patients are still alive ten years after their diagnosis; in the 1990s, average survival time was just six months.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Covid may no longer dominate daily life, but it still demands respect.", "score": 3.50221, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An estimated seven million Americans, meanwhile, live with Alzheimer's Disease.", "score": 3.5019150000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's so much we don't know about women's health and the connections between everything but I do believe there's a really strong link between ADHD and autoimmune diseases.", "score": 3.5002750000000002, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Edi, a single mother has died young, from cancer.", "score": 3.4201550000000003, "claim_types": ["personal", "quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When we get to a certain age, night-time trips to urinate become more likely - especially for men who may have enlarged prostate glands (which can prevent the bladder emptying fully).", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added: \"I would encourage everyone who becomes eligible for the RSV vaccine from April to come forward and get vaccinated as soon as they have been invited to do so by their GP.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Now 40, I have made a full physical recovery from my cholangiopathy and still attend NA meetings, but now I am one of the people who reassure newcomers that there is hope.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, and at the same time, even when I was going through breast cancer, I felt, wow, my body's extraordinary, it's still helping me heal, it's still helping me get to the next phase.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'd love to hear from you if you've got a diagnosis or you're currently trying to get a diagnosis for a condition like ADHD or autism.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Um so I'm 51, um and I was diagnosed with ADHD just two weeks ago.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "with long Covid , my focus is on being well and healthy.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um so I've been reading up on ADHD for the last four or five years trying to um understand it because a few people that know me have sent to me you know I think you might be ADHD have you ever thought about it.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cut to 2020 and Covid, and I was working really hard.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We'd love to hear from you if you've been diagnosed with ADHD or autism.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The former lobbyist had caught Covid-19 in March 2020, and in the months and years that followed, he endured one of the most severe cases of the virus.", "score": 3.3959650000000003, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As the weeks passed, though, that couple of glasses in the evening became three, then four, then the whole bottle.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK Health Security Agency has issued a warning after 13 travel-associated cholera cases were reported in 2025, a 56% increase from the previous year", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The data reveals 13 travel-related Cholera cases plus one additional case in a person who drank water from an endemic country were recorded in 2025 - representing a 56 per cent rise.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Treasury officials said suspicious activity reports related to health care rose 20 percent in 2025 compared with 2024, but warned that the reports likely represent only a small share of the fraud occurring nationwide.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Life expectancy for about half of those with the condition is between just two and give years from the onset of symptoms.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said the mortality rate for over-70s who \"cocooned\" at home was no different to the general population, but mortality rates for people of the same age in residential facilities was 21 times higher.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It happens when the bone marrow cannot make enough new blood cells for the body to work normally, with around 100 to 150 new cases in the UK every year.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The family was told his levels were at 5% with very few cells, when a baby his age should have 100%.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was a 20% reduced risk of a major heart event among the 17,604 people who took part in the study.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Indeed, figures from the Office for National Statistics show that ketamine use among women is on the rise; in 2023, female deaths from ketamine were three times higher than pre-2020.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "My team's findings, published in the journal JAMA Network Open, concluded that having an old gastrointestinal injury, such as a stomach ulcer, was associated with a 76 per cent increased risk of later developing Parkinson's.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show the five-year survival rate in melanoma patients on the drugs has improved by around 50 per cent since they were introduced", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the 17,604 people who took part in the study, there was a 20% reduced risk of a major heart event.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She also bled for several weeks (normally, if there is bleeding it lasts no more than a couple of days).", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than five million women in England are not up to date with their routine cervical screenings, for instance, according to 2024 data.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around eight million people in the UK are living with cardiovascular disease, with an estimated 1.2 million thought to have a body mass index (BMI) above 27 and therefore meeting the new eligibility criteria.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A person who engaged in heavy alcohol use in their 20s was not just at slightly higher risk of memory problems in their 30s.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show the five-year survival rate in melanoma patients on the drugs (given via weekly or fortnightly infusions into a vein in one arm) has improved by around 50 per cent since they were introduced.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And a recent study of more than 5,000 people in the US, Canada and the UK found 34 per cent of those aged 18 to 34 experienced at least one bowel disorder (e.g. chronic constipation or diarrhoea) - in contrast to 22 per cent of those over 65.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He had lost his job and taken out a payday loan to fund his prescription, which was now costing up to £1,000 a month.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figures show 13 travel-associated Cholera cases and an additional case in an individual who consumed water from an endemic country were reported in 2025 - a 56 per cent increase.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One 2021 clinical trial found that people with high blood pressure who ate around four tablespoons of flax seeds a day experienced significant reductions in body mass index (BMI), total cholesterol levels and blood pressure.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For each additional wave of daily smoking in their 20s, they were nearly twice as likely to be smoking a pack or more a day at 35.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Participants with at least one of 131 common illnesses were considered 'unhealthy.", "score": 3.38124, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I was immersed into a tank with the worst things you've ever seen and that was terrifying,\" says Bev.", "score": 3.357955, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As days get hotter and the sun becomes more intense, people risk skin damage from sun exposure.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Collagen is not going to give you the same benefits as certain skincare treatments, using sunscreen, drinking more water and reducing alcohol or smoking.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This stomach bug can remain on fabric for up to a month, making contaminated clothing a more significant transmission risk.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This stomach bug can survive on fabric for up to a month, making contaminated clothing a greater transmission risk.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Patients with conditions such as peripheral arterial disease, or those who have already experienced a heart attack or stroke, face a significantly higher risk of another potentially fatal event.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 or over in addition to other medicines, such as statins, and alongside a reduced calorie diet and increased exercise to prevent heart attacks and strokes.", "score": 3.3502850000000004, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Anyone can be affected but at-risk people include those aged under five, 15-to-24 and over 45.", "score": 3.3502850000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'It's positive to see the UK Government commit to meeting cancer wait time targets by 2029.", "score": 3.34943, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions more will be eligible for the potentially life-saving jab (Image: Getty)", "score": 3.3475400000000004, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"When it comes back at that point it is no longer curative, you are then on a palliative pathway. It is no longer about can we get you better, no cancer, it's about how many years can we keep you alive and comfortable. That's incredibly hard news to deal with when you've got two young children and you want to be there to bring them up.\"", "score": 3.347495, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said how this latest incident leaves Moira \"worried\" amid her fears she will lose Cain as he battles cancer.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She also has ADHD.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ronnie, from Merseyside, was diagnosed with the rare blood disorder aplastic anaemia just before his first birthday.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I really hope so and that this is all a red herring by Wadey to throw us off,\" the fan said before adding: \"The diabetes thing would make sense too.\"", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said: \"My mother had ovarian cancer, and in those days no one talked about women's gynaecological cancers, their symptoms, or how they affected women's bodies - it's like there was a real sense of shame and embarrassment.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hermione Norris has revealed she has suffered from long Covid, which left her concerned about her ability to take on physical challenges.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"I also use an infrared sauna for my autoimmune condition. I get really stiff joints. I'm so much better after the long Covid, but I feel different, physiologically. It gave me a shock, as I've always been quite fit and strong.\"", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Describing how her battle with bowel cancer began, Nicola said: \"It was so frustrating knowing that something wasn't right, but also feeling like the people who were meant to be helping me, just weren't listening.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's been particularly tough as my mother died of lung cancer at a relatively young age, but she did smoke and I never have.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Beverley Callard, who played Liz McDonald on Coronation Street, has tearfully explained that she is \"in denial\" amid her cancer battle as she waits for results to come back following an operation", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Coronation Street legend Beverley Callard was on the verge of tears as she admitted she is \"in denial\" amid her cancer battle.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And nothing to panic about, whether it be blood or whether it be, and nothing I'd found in the diary or anything of that, any of the symptoms, so as I say, you know, for me, it was definitely a shock without a doubt because, you know, we all believe, um, you can say cancer free if you stay fit and healthy and all those things, but it just goes to prove that isn't the case.", "score": 3.347495, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Thousands of people living with motor neurone disease could be given the chance to live longer, thanks to a new drug which has been shown to slow the progression of the most common form of the degenerative illness.", "score": 3.31933, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when NICE approved Wegovy for weight loss on the NHS.", "score": 3.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when the National Institute for Health and Care Excellence (Nice) approved Wegovy for weight loss on the NHS", "score": 3.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since the cameras stopped rolling, Bev has been diagnosed with breast cancer and is currently undergoing treatment.", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month.", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Weisman lost his wife Carroll (left) to cancer in 2020", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is recommended for those with a Body Mass Index (BMI) classed as overweight or obese - higher or equal to 27.", "score": 3.3040900000000004, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Never hold in a poo - the longer it sits in your colon, the more water will be drawn out of it, making it harder to go.", "score": 3.2821300000000004, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "In 2022, the World Health Organization recorded a worldwide surge in cholera notifications, with more cases emerging from a growing number of nations.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Almost 424,000 people now receive the devastating news each year, with the frequency up from once every 90 seconds just ten years ago.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show only around 40 per cent fully respond to them.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Its popularity as a recreational drug has surged in recent years - particularly among young people - largely because it is cheap compared to other drugs.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'The earlier we can diagnose and treat ALS, the greater the potential to preserve function and maintain quality of life for longer, which are key to making ALS livable until we can cure it.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When looking at walking speed, the team found slow walkers were more likely to have higher resting heart rates than brisk walkers, which signals increased stress on the heart.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Preliminary analysis indicates the cicada variant may be more capable of evading antibodies generated through prior infection or vaccination, raising concerns about reduced immune protection.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These metrics can show how much stress essential organs like the heart are under on a day-to-day basis, but improving them can take months or years of dieting, exercise and medication.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And similarly, when we think about some of the physical health outcomes, cardio metabolically, so for our hearts and for lots of different bio markers, from activities like dance, and actually direct trials have compared dance to non-dance exercise, are often showing greater benefits physically from the dance compared to the non-artistic equivalent.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Moreover, tamoxifen patients are warned not to get pregnant while on the drug as it significantly raises the risk of birth defects, including physical deformities and genetic diseases.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Early research suggests the cicada variant may possess a greater ability to sidestep antibodies produced by previous infection or vaccination, sparking worries about diminished immune defence.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is particularly important for older people or those with weakened immunity, with studies showing it can reduce the number of infections.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show that half of women who have breast surgery will experience persistent pain after the procedure.", "score": 3.226865, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'In practice this could cut around three to five major cardiovascular events per 100 patients every few years.", "score": 3.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People who used cannabis frequently in young adulthood were more likely to report poor memory decades later - an eight percent increase in risk for each wave of heavy use.", "score": 3.226865, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eating an excess of sweets and chocolate is directly linked to poor dental health in children, due to the foods' high sugar content.", "score": 3.2202399999999995, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These months are when the UV Index can reach three or higher, which is when people should take measures to protect themselves from the harmful effects before they happen.", "score": 3.2139949999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "These months mark when the UV Index can climb to three or above, which is when people should take steps to shield themselves from the damaging effects before they occur.", "score": 3.2139949999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.", "score": 3.20373, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An alert has been issued following 13 cases of a potentially deadly disease that can prove \"fatal within hours\" being identified in individuals returning to the UK from four destinations.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Heavy marijuana use in one's 20s raised the odds of developing cannabis use disorder by age 35.", "score": 3.197505, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Her oxygen levels quickly plummeted to 65% - which is lethal.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To date, it has gathered 8,000 testimonies of women with shocking stories that echo Dawn's - many report not being informed that a hysteroscopy can be painful or being given information about pain relief options.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Weight-loss jab Wegovy will be offered for free on the NHS to more than a million people in England at risk of heart attacks and strokes.", "score": 3.19476, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another,\" she said.", "score": 3.18436, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A warning has been issued after 13 cases of potentially lethal disease which is 'fatal within hours' were detected in people returning to the UK from four destinations.", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's thought that artificial sweeteners can significantly alter the make-up of bacteria in the gut.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Expired sunscreen can lose its effectiveness, failing to protect your skin from the sun damage you think you're covered from.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tooth decay remains the most common reason for hospital admissions in children aged five to nine.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eating pumpkin seeds can also help support hair health, the nutritionist adds, with one of the most notable symptoms of a zinc deficiency being hair loss.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And if they're feeling stressed and anxious and a bit sad about that that's not a medical condition.", "score": 3.15833, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ultra-processed foods (UPFs) have changed how we poo - and not for the better.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Low sick pay is making Britain sicker", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As temperatures rise and sunlight becomes stronger in the coming months, people may face an increased risk of skin damage from UV exposure.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even on overcast days during early spring and autumn, UV levels can still be strong enough to cause harm, specialists warn.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Specialists warn that shortfalls in worldwide genomic monitoring mean BA.3.2's actual distribution may be greater than currently understood.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Furthermore, the fact that, since 2014-2016, women have lost almost four years of healthy life expectancy and men have lost three years demonstrates just how systemic the problem has become.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disease affects around 58,000 women every year.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The analysis also finds that the majority of workers (58 per cent) reported working when they didn't feel well enough, and a third of these cited sick pay as one of the financial reasons for working through illness.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The National Education Union (NEU) poll also revealed that two-thirds (68%) of secondary school teachers who responded regularly encountered absenteeism linked to students' mental ill-health.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Almost half of teachers (48%) who responded said they regularly witnessed chronic anxiety among pupils, while almost a third (31%) saw students living with social isolation.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With around 17,600 new cases of melanoma in Britain every year, and between one and three per cent are subungual melanoma.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to analysis of that data shared exclusively with the New Statesman by the Centre for Progressive Change think tank, 10 per cent of the workforce - 3.7 million people - have worked through illness in the past year because they couldn't live on statutory sick pay alone.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Each year in the UK, there are around 100,000 hospital admissions due to heart attacks, another 100,000 people experience a stroke and around 350,000 people live with peripheral arterial disease.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And those who developed the disorder were 36 percent more likely to report poor memory later in life compared to those who used cannabis without developing a disorder.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That figure is slated to double by 2060, driven by the rapid aging of the baby boomer population as well as an overall rise in the number of Americans living into old age - the leading risk factor of the disease.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I mean, this report finds that one in ten young adults self-identify as autistic.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ronnie, from Merseyside, had just started crawling when his mother Laura noticed he was bruising more.", "score": 3.120805, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ronnie was rushed to hospital where medics initially suspected he had leukaemia, a type of blood cancer.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nicola added: \"On April 4, 2019, I was called into the hospital and told I had stage 3 bowel cancer.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Speaking after her second melanoma was removed - leaving her cancer free - she added: 'The whole way along I never felt I was going to die because the surgeon was very reassuring that it was cancer but it was very treatable as it was diagnosed early.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But for one woman, it turned out to be the only signs of a rare, deadly kind of cancer that ultimately cost her part of her finger.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Iranian government also said airstrikes had hit a plant making cancer drugs and anaesthetics, claims AFP could not independently verify.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2025, cases were reported in 33 countries across 5 WHO regions, with the highest number of cases in the Eastern Mediterranean, followed by Africa, South-East Asia, the Americas and the Western Pacific .", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The team reported 33,318 deaths.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But, other experts say even the smaller dose could put women at needless risk of side-effects and complications.", "score": 3.083055, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health", "score": 3.04313, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If the majority of your nail beds appear pale and washed out, with a thin reddish-brown strip near the tip, this could be a sign of 'Terry's nails'.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Limb amputation is a potential side effect if septicaemia (blood poisoning) occurs.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This hormone is needed to bring down high blood sugar levels - which left unchecked can increase the risk of heart attack and stroke as well as problems with the eyes, kidneys and feet.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This, experts say, changed the way the body absorbs and regulates blood sugar, which over time increases the risk of developing the disease.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kids could be particularly susceptible to catching cicada(Image: Getty Images)", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Quitting by age 35 did not erase the risk.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"High LDLs over a lifetime increase your risk.\"", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Evidence suggests that low sick pay means workers battle on regardless of their symptoms, or return to work too soon - spreading disease and making themselves sicker.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Changes in colour, width, or pigment spreading onto the surrounding skin should also raise concern.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "statins and tamoxifen and yet because we haven't normalised it in society, women aren't aware of its potentially life-saving effects.", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As MND gets worse, a sufferer may experience problems breathing, swallowing and speaking.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A daily smoking habit in young adulthood predicted worse self-reported memory by age 50, regardless of whether the person had quit by age 35.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Alcohol use disorder, meanwhile, is defined as meeting two or more diagnostic criteria for problem drinking over the past five years, including loss of control, cravings or continued use despite harm to oneself.", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Looking at your smartphone on the loo is a modern-day habit - but a study my team ran, published in the journal PLoS One last year, proved this is something you should never do, as it is associated with a significantly heightened risk of haemorrhoids.", "score": 3.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "For this reason, experts liken the side-effects of tamoxifen to an early menopause - though most women find that their periods return if they stop taking the tablets.", "score": 3.00555, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The actress, who is still awaiting her results which will indicate whether she is cancer-free or not, has relocated to Ireland to star in the soap opera Fair City so had to go through the rigmarole of changing the GP she was registered with, but the process made her realise that she has not been letting herself really think about the situation at all.", "score": 2.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has also called for a new 'Cancer Fellowship' scheme to welcome scientists from the US whose cancer research has been defunded by the Trump administration.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "One of the key pieces of medical evidence cited during the trial was a 1989 academic paper by Canadian neonatologist Dr Shoo Lee, which examined how air embolisms present in babies.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UKHSA revealed that across England, Wales and Northern Ireland, 14 confirmed cholera cases were recorded in 2025, marking a 56% rise compared to 2024 when 9 cases were documented.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around 5,000 adults in the UK have the condition and there is a one in 300 risk of developing it over the course of a lifetime.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NHS hospitals performed 56,143 extractions on children and teenagers in the financial year ending 2025 - up 14 per cent on the previous year's total of 49,112.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the UK between one and three times a day is normal - while in eastern India, the average is 14 stools per day (partly down to local diet, which is heavier in fibre and spice).", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At 500 million bacteria per milliliter, the strain trapped 87 percent of the plastics, its peak performance under ideal conditions.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Freedom of information data from NHS Business Services Authority showed there were 659,293 unlicensed cannabis products privately prescribed in 2024, more than double the 282,920 issued in 2023.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In fact, one small study found a 10-minute walk immediately after eating had a greater benefit than a 30-minute walk 30 minutes after eating.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Boyle pointed out more than 1,500 adverse incidents from GLP-1's reported by the FDA, which Writesman contended could be even higher.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And the injections may only be given if someone's LDL is higher than 3.5 mm/L, while taking the maximum doses of statins and ezetimibe.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hospital visits increase during these events, \"even up to five days after the episode ends\".", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UKHSA said that in England, Wales and Northern Ireland there were 14 confirmed cholera cases reported in 2025, which represents a 56% increase to 2024 where 9 cases were reported.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were 336,023 people in the healthy group and 71,546 in the unhealthy group.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Treatment typically involves a combination of potent antibiotics over a long period (over 18 months in my case and the infection is still there).", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Throughout 2021, these bouts of pain became more frequent and intense, and on 14 occasions I went to A&E.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK Health Security Agency has released data showinga 56 per cent increase as symptoms explained", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, figures released by the British Association of Aesthetic Plastic Surgeons revealed that in 2023 there were 4,641 procedures carried out in both the NHS and private sectors.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around one in four (24.9%) of those screened were found to have the condition within six months, in contrast to only 1% in the group continuing their usual care.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scope, a charity that supports people with disabilities, puts the average at £1,095 a month.I do all these things, like physio and personal training, to help my mobility so that I don't rely on the NHS.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When replacing cholesterol and blood pressure, NRI improved 11 percent for women and 14 percent for men.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The numbers might look small at first glance, but what makes them significant is that these risks did not fade after a few years.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People exposed to passive smoking or with suppressed immune systems, such as patients undergoing chemotherapy, are also more at risk.", "score": 2.93364, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Taking paracetamol and ibuprofen about an hour before the procedure can help with cramping.", "score": 2.93117, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Researchers discovered that the mutant strain 'Circada' surged globally in September 2025.", "score": 2.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'd obviously signed up to some kind of trial at the time, and they were checking up on people post-Covid.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She told Prima magazine : \"I'm not great at extreme discomfort. I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack. But we did a couple of massive walks and I was fine. I was pleasantly surprised.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I also organised a \"let's talk\" session with a disabled influencer who has endometriosis.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's really good with my ADHD brain because it ties into my competitiveness and also gives me a focus, so that I'm not thinking about how well I'm standing and therefore I'm often more stable when I'm doing the exercise.", "score": 2.922625, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'I don't think that is an unusual concern but that is outside of my influence to change even were I to make a prevention of future deaths report.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Before delving into the evidence with resident GP Dr Margaret McCartney, James finds out what it feels like to have a hot flush.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Instead, she is calling for patients to be offered a smaller daily dose - a quarter of the current amount - in order to avoid these side-effects.", "score": 2.9201050000000004, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He had been diagnosed with stomach cancer eight years ago.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pressing on your nailbeds may temporarily make the discolouration disappear, though this is not a cure for Terry's nails.", "score": 2.9158299999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's also possible to use a local anaesthetic gel and, if the cervix needs to be held steady, a small anaesthetic injection can numb the area.", "score": 2.9158299999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions are being urged to act after a huge change in guidance.", "score": 2.91556, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "They are also more likely to suffer financially as a result of their illness and to develop long-term complications such as chronic pain.", "score": 2.9142349999999997, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Doctors should also prescribe lifestyle changes that include eating healthily and getting enough exercise to help people keep the weight off.", "score": 2.90771, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", "score": 2.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "So, one 'hit' a night became two - and then one during the day, too.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Annette had received a letter inviting her to take part in a trial funded by The Sarah Harding Breast Cancer Appeal.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Beverley Callard breaks down in tears as she issues update after breast cancer surgery", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Elizabeth was a keen flute player before having her finger amputated", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She may develop scoliosis.", "score": 2.884875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Once the coil is in place, the uterus may briefly contract - a feeling like period pain.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For example, a drop in the hormone oestrogen after the menopause means vaginal tissue can be thinner and drier, making the insertion of a speculum more painful.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, for those whose heavy drinking, whether frequent or episodic, continued into their 30s and led to alcohol use disorder by age 35, the effect was significant.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A three-tablespoon serving contains over a third of an adult's daily magnesium, which helps calm the nervous system and regulate circadian rhythms - playing a crucial role in sleep-wake cycles.", "score": 2.88131, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A mother who 'hates' the way she looks with her 'heavy and saggy' size 40K-cup breasts is desperately fundraising for surgery after claiming the NHS turned her down at least 20 times.", "score": 2.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Today's guidance will no doubt help save lives as cardiovascular disease is still one of the country's biggest killers.\"", "score": 2.875965, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These changes include more sedentary lifestyles, unhealthy ultra-processed foods which make it harder to maintain a healthy weight, and more high-pressure working environments which drive stress levels and impact sleep.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Besides being good for the gut, regularly eating flaxseeds - especially in their milled form - has been shown to reduce total and so-called bad cholesterol levels, decrease blood pressure and improve blood sugar control.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Cholesterol-lowering drugs that are alternatives to statins may become more widely used after a major trial has shown they can stop heart attacks and strokes even in people not thought to be at the highest risk.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So many people seem to believe that lurking in your colon are 'toxins', and the longer your poo stays in your intestines, the more dangerous these are.", "score": 2.8717300000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Drug trials suggest Wegovy can help slash the risk of future heart and circulation problems.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Swedish researchers, who tracked nearly 250,000 Britons, said their findings should serve as a 'reminder that sleep plays an important role in health.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "walking pace was the strongest individual predictor of mortality, particularly in those with a prevalent health condition,' the researchers wrote.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'There are lots of people out there who have got complex coronary disease which they've been told can't be treated or they have not been offered a treatment,' says Dr Hanratty.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 and above in addition to other medicines, such as statins, and alongside a reduced-calorie diet and increased exercise.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Today, the NHS typically prescribes only a small number of licensed CBMPs - those approved by the medicines regulator - for conditions such as severe epilepsy, multiple sclerosis and chemotherapy-related pain.", "score": 2.856485, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meningitis patients 'may have been left disabled' because of hospital delay", "score": 2.85392, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR6bMj https://t.co/YQoQMBYDJE", "score": 2.85392, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR5DWL https://t.co/Ge4yc8pRu5", "score": 2.85392, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In fact, research shows that nine in ten women are alive five years after diagnosis.", "score": 2.850355, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An alert has been issued after a potentially deadly disease was identified in individuals returning to the UK from four destinations", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the National Institute on Drug Abuse, opioids are 'addictive'.", "score": 2.83094, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts can't seem to agree on the magic number of steps per day for optimal health - is it 5,000, 7,000 or 10,000?", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'No one should have to endure racial harassment from a registered medical practitioner.", "score": 2.81209, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, having fewer people in the workforce - whether for health or any other reasons - almost inevitably means a smaller economy.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However if more people become infected, then a similar proportion of those who experience severe disease becomes a bigger total number.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So for example, for depression outcomes, we see greater reductions in depression when people are engaged in arts-based social groups compared to non-arts social groups.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies show that women who get the disease are significantly more likely to see it return later in life.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some people may live for up to 10 years, and, in rarer circumstances, even longer.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just, if they've got that test sitting in the loo waiting to be done, just do it today.", "score": 2.7863350000000002, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The narrative that seems to be being pushed out there saying are we need to spend more money on defense and we can't be spending money on benefits.", "score": 2.7846200000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The condition can also affect toenails, where it is even more likely to go unnoticed.", "score": 2.7820099999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fatty foods, for example, produce yellower poos as you produce more bile (which is yellow-ish green) to digest them: anyone on a keto diet - which is high in fat, low in carbohydrates - should watch out for this side-effect.", "score": 2.7808599999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "An army veteran has been given a £120 fine after he pulled over to have an anxiety attack in a car park.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Former firefighter Glenn Perkins would spend up to £60 a day on Uber Eats getting cider and other drinks.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yesterday, the manufacturers of the drug, Prilemia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a new study, 400,000 adults were divided into four groups based on their lifestyle habits, body mass index (BMI), cholesterol, blood pressure, age and death status.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a 2022 study, researchers assigned participants to eating the same diet for 11 days; the only difference was that one group's meals contained carbomethylcellulose, a common synthetic emulsifier in many UPFs.", "score": 2.772635, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yesterday, the manufacturers of the drug, Prilenia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Currently, treatment with Wegovy is limited to two years on the NHS through specialist services and its long-term risks are still being studied.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You know, three years of wait is could be a life sentence for that child.", "score": 2.7705450000000003, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, in the early stages, cirrhosis usually doesn't show many symptoms, or sometimes none at all.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But many other experts oppose the move, arguing that tamoxifen can have serious side-effects including debilitating symptoms - often likened to an early menopause - as well as significantly raising the risk of birth defects.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disease causes muscle weakness that gets worse over a few months or years,", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms typically first include stiff or weak hands, weak less and feet which may cause someone to trip over a lot, and twitches spasms or muscle cramps.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "During this window of heightened neuroplasticity, the brain is highly sensitive to rewards and more easily rewired by substances like alcohol, cannabis, and nicotine.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People who have already had one of these health issues are at higher risk of experiencing more problems and stand to benefit from medicines that can cut that risk.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Breasts are also more sensitive before a woman's period, while a cold examination room and sudden exposure to cold surfaces can increase sensitivity.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Small breasts can sometimes be more painful as there is less tissue to spread between the plates.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Another 2022 study found that people assigned to a diet containing common added sweeteners (e.g. aspartame, sucralose and saccharin) experienced new diarrhoea, constipation and pain after eating - symptoms that were all reduced for those assigned to diets with minimal sweeteners.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A dark line running from the base to the tip can be a sign of subungual melanoma - especially if it does not grow out or is getting wider.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Creatine is a performance enhancing compound which, when taken regularly, draws more water into the muscles increasing their fullness and potentially, their size and strength over time.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With signs, it spreads faster and may hit children harder; vigilance matters more than ever.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Claims of benefit are \"seriously and significantly\" overblown and can't be supported by any evidence, because most of these peptides have not been clinically trialled, Bonning says.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We've also committed, where possible, to ensuring that a healthier version of a product won't cost more than the standard version.\"", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bonning says topical products that contain peptides such as skin creams and lip treatments for skin hydration generally differ from injectables which involve changes to cell signalling, that can cause harm.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But actually, we've had randomized control trials that have directly compared arts engagement to non-creative social interaction, for example, and actually showing that the arts engagement is more effective for lots of these mental and physical health outcomes.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It can also lead to irregular periods or stop them altogether.", "score": 2.74701, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms may begin within hours to 5 days following exposure.", "score": 2.74701, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'I was worried about the long-term consequences like handwriting and playing the flute.", "score": 2.742565, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tributes to 'beautiful ́ autistic girl, seven, who drowned in golf course pond", "score": 2.7416799999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under new guidance, patients who have had a heart attack or stroke will be eligible for a weekly Wegovy jab to cut their chances of another life-threatening event.", "score": 2.7395899999999997, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Certain medications can also cause nail problems.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Certain medications can also trigger nail problems.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "LDL in the blood can stick to arteries, slowly building up plaques that block off the blood supply to the heart or trigger blood clots.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bacterial meningitis requires urgent treatment at hospital with antibiotics.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Thin loo paper is rougher on the skin, which can lead to damage to the anal area.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "TB is highly infectious to others, but NTM infections are not.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Headache is one of the main symptoms", "score": 2.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But cigarettes diverged from alcohol and cannabis.", "score": 2.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yellow, thickened or brittle nails are most commonly caused by fungal infections.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This rose to 80 per cent for children up to four years old and 86.5 per cent for those aged five to nine.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average age was 58, and participants were followed for about 16 years.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the UK, most PAO symbols range from six months to two years.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tesco has donated more than 10 million portions of fresh fruit and veg to schools across the UK", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They suggest a heart failure screening programme for diabetics could improve diagnosis rates, lead to earlier treatment and potentially reduce the risk of hospitalisation and death.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'If a woman is anxious, she'll be tense in the pelvic floor .", "score": 2.716055, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Suspended dust is expected to negatively impact the air quality, weather forecasts indicate.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We have one example of someone, a lady in Kentucky, she had only been on the drug for one month and had kidney failure. Now, let's just take that example and say that there was a bad batch and a thousand people got that drug and had to have kidney transplants. The finger is going to be pointed back at the FDA on that, and we don't have a thousand . kidneys],\" she said.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But two young people, including sixth-form pupil Juliette Kenny, died of meningitis during the outbreak.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sebnem Avsar Tuna, general manager of Wegovy manufacturer Novo Nordisk UK, said it means clinicians now have access to the first GLP-1 receptor agonist proven to reduce the risk of heart attack, stroke or cardiovascular death in this high-risk group.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Brice says she has requested a breast reduction through the NHS at least 20 times since 2000, citing both physical pain and mental health struggles.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reportedly on a cocaine binge in the days before the brothel incident, Odom suffered kidney failure, multiple heart attacks and 12 strokes.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This was the fourth time Woods has been involved in a car crash, most recently in February 2021 when his SUV ran off a coastal road in Los Angeles at a high rate of speed, leading to multiple leg and ankle injuries.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chemotherapy can be very effective.", "score": 2.704505, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Be mindful of those around you, what may feel like a minor illness to one person could pose a serious risk to someone else.", "score": 2.7004400000000004, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The federal government provided more than $2 billion annually for mental health between 2019-2024.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is currently £118.75 a week, still one of the lowest among advanced economies.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A promise to keep prices low on thousands of products from more than 1,000 of the nation's most-loved brands, including Heinz Baked Beans and Weetabix.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some people with MCI stay stable; a small percentage even improve (stock)", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now after a period of going dormant cicada has spread to 23 countries and is spreading across the US, being detected in the wastewater systems of 29 states.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some 40 per cent of smartphone users spent more than five minutes on the loo to poo, compared with only 7 per cent of non-users.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than four in five trusts (83 per cent) missed the key target of treating 85 per cent of patients within this time frame.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Next, the society of radiographers has said that the demand for ultrasounds has increased, but that there aren't enough people being trained to do the work.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of extractions because of tooth decay made up 60.5 per cent of all tooth extractions for those aged up to 19.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And nationally, the longstanding target of treating 85 per cent of patients within 62 days has not been met since 2014.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three-quarters (76%) regularly saw their students experiencing social difficulties, while the number of teachers complaining that their school did not have a counsellor rose from 29% to 40% in three years.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest global data is from February, so the strain may have spread more widely since then.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight out of ten are alive a decade later.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2025, cases were confirmed in 33 countries spanning 5 WHO regions, with the Eastern Mediterranean recording the highest numbers, followed by Africa, South-East Asia, the Americas and the Western Pacific, reports the Mirror.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The highest amount of PIP you can get each month is about £750 or £800, yet costs can be way higher.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said from early on \"there was no one on it with serious epidemiological experience\" and that by the end of the pandemic it had up to 50 members, adding \"you can't run a committee with 50 people\".", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But of course, you know, 10% of the population is not autistic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2022, the World Health Organization reported a global increase of cholera notifications, with more cases reported from an increasing number of countries.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They lower LDL levels by 60 to 70 per cent, compared with 30 to 50 per cent for statins.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Decades of study have concluded that anywhere from three times per day to once every three days is within the healthy range.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In lab experiments, the bacterium trapped up to 87 percent of nanoplastics and 57 percent of them in gut-like conditions.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Known as 'Cicada', the new variant is set to affect the vulnerable members of society the most, with the elderly, chronically ill and children told to stay indoors.", "score": 2.698365, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "You can naturally get enough omega 3 by eating two portions of oily fish throughout the week.", "score": 2.6831300000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Paddy had his operation and his life improved until he had a resurgence of a skin cancer that had been on his head.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John was originally diagnosed with a rare form of cancer in 2023, but after a period of remission his cancer returned the following year, spreading to his brain.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "John went into remission in November 2023 but sadly, his cancer had returned by May 2024 and had spread to his brain.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It can be fatal.", "score": 2.67931, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Your nails can reveal a lot about your overall health, often offering crucial hints about parts of your body that might need further examination.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But there is limited evidence that cannabis is a suitable treatment for depression.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They also contain healthy fats, essential amino acids our bodies can't make on their own and powerful antioxidants that can ward off the visible signs of aging whilst protecting our hearts.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Poppy seeds are a great source of calcium for people who don't eat a lot of animal products, which isn't only great for bone health but also for nerve signalling,' Johnston said.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The typical symptoms of meningitis include a high temperature, seizures, cold hands and feet, and being very sleepy or difficult to wake.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Sonya Babu-Narayan, clinical director at the British Heart Foundation, said: \"So-called 'weight loss drugs' like semaglutide have proven benefits beyond reducing the number on the scales - they are now considered important medicines for preventing deadly heart attacks and strokes.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Flax seeds are absolutely incredible for not only your gut but also your heart and overall health,' Johnston explains.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Khan explained that vaccines and boosters remain a tool for protection even as the virus evolves over time.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other early symptoms of heart failure can include fatigue, shortness of breath, or leg swelling.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So much stigma surrounds mothers who fall into drug abuse, and it keeps women silent and trapped in their addiction.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Viral is rarely life-threatening but can cause long-lasting effects, such as headaches, fatigue and memory problems.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although ineffective, antibiotics may be given when patients arrive at hospital just in case they are suffering from the bacterial form of the disease.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You certainly don't have pounds of poo sitting around for weeks inside your colon that only an intense juice cleanse can fix.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Poor memory is a common sign of early dementia.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And most MCI never becomes Alzheimer's - it can be caused by vascular issues, depression, medication or sleep disorders.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Your nails can tell you a great deal about your overall health, often providing vital clues about areas of your body that may require closer attention.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Out-of-date sun cream can lose potency, leaving your skin vulnerable to sun damage you thought you were shielded from.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "High \"bad cholesterol\", also known as low-density lipoprotein (LDL), is one of the major causes of heart attacks and strokes.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vaccines are available against certain strains of bacteria that cause meningitis, such as tuberculosis.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It might seem fine to use what is left of an old bottle of sunscreen from last year, but there is a symbol that tells you exactly how long it is good for.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research has shown that eating a healthy diet, exercising regularly and prioritising sleep can help ward off the disease", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nails can reveal a lot about your overall health through changes in colour, shape and texture", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ketamine is an anaesthetic drug, used on humans and animals, and also used to treat depression", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RSV is a common cause of coughs and colds and usually resolves on its own, but it can cause severe illness in babies and older adults.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's very difficult, then, to have regular, predictable bowel movements and support gut health on an ultra-processed diet.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Blood pressure, weight and cholesterol are considered the top measures for predicting a person's overall health and how long they may live.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The human brain continues developing well into a person's mid-20s, particularly in regions responsible for impulse control, decision-making and long-term planning -the functions needed for someone to recognize when a habit is becoming a problem.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The firm says if an Uber courier has concerns about the validity of a person's ID or their sobriety, they are instructed not to complete the delivery and return the alcohol delivery to the store.", "score": 2.66521, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Rather, young adult users were more likely to develop the disorder, and that disorder caused the memory problems.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of the reasons that people are maybe less inclined to offer some of these patients treatment is that they're concerned about the potential for complications, the potential for risk.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "at least that's the conclusion of a government review today into the number of people who have been diagnosed with those conditions and why that has shot up so much in the last few years", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With multiple pregnancies, uh, some women are having scans every two weeks, or if a problem is identified in the community, they'll be brought in and a scan really needs to be done within 24 to 48 hours.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's important to stress because we don't want to alarm women, especially if they're pregnant, that you know, there is necessarily a correlation between a need for more scans in pregnancy and a riskier pregnancy.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And we see that particularly when people have had arteries that have been blocked for a very long time, and which is regarded as more challenging to treat.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It had been used by another 16-year-old, Adam Raine in California, who in April 2025 took his own life after what his family's lawyers allege in an ongoing lawsuit was 'months of encouragement' by the AI chatbot.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "DS Garry Knight from the British Transport Police told the inquest that digital forensics teams had found he had been using ChatGPT at around 12.30am asking for advice on suicide.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Jewish people could be going to get a procedure done by someone threatening to kill people.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was also discovered that the teen had been using ChatGPT the night before to plan his suicide.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'When it's treated later, you may have to remove the finger - and it can kill, absolutely it can.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scraps from earlier in the novel - about voices in the head, suicide attempts, even a seemingly uncrucial factoid about Josef Mengele injecting adrenaline into children's eyes to change their colour - re-emerge as pre-echoes, ancestral kinship.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We are very worried that the regime is seeking to exhaust (Mohammadi), to wear her down, slowly killing her,\" Ardakani said.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Though if it is not caught quickly it can be aggressive and highly dangerous.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Whilst it's currently not approved by any regulatory authority, researchers believe the global study, which will involve more than 500 participants, could pave the way for therapeutic treatments that slow down the progression of the disease.", "score": 2.649215, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nanoplastics are tiny plastic particles even smaller than microplastics, measuring just one micrometer (μm) or less in diameter, making them invisible to the naked eye.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is a stark omission, given the government's focus on the huge rise in people dropping out of the economy because of illness.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most therapeutic peptides are prescription only, with some on the list of prohibited medications, Bonning says.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The report also cites the growing use of weight loss drugs as a key part of the change compared to recent years.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The menB jab was introduced on the NHS for babies in 2015, meaning the majority of young people born before then are not protected against it unless they have had the vaccine privately.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Oliver's law\" calls for a ban on prescriptions for people with serious mental illness, mandatory consultation with NHS mental health teams, face-to-face assessments for complex cases rather than video consultations, tougher CQC oversight (including routine audits and publication of prescribing data), mandatory reporting of serious harms and clearer General Medical Council sanctions for unsafe prescribing.", "score": 2.634255, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "An 'academically gifted' teenager asked ChatGPT for advice about how to kill himself before taking his own life the next day, an inquest heard.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Luca Walker, 16, asked the AI chat bot about suicide hours before his death on a train track.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A senior Perth doctor has been suspended amid explosive allegations he ran a covert online trolling network that targeted fellow medical professionals with antisemitic and racially abusive attacks.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Throughout the UK, most PAO markings indicate a range of six months to two years.", "score": 2.6153500000000003, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We need to make sure everybody gets their cholesterol down as quickly as possible and as low as possible,\" said Dr Joseph Cheriyan, a heart researcher at the University of Cambridge.", "score": 2.6147650000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Sales of heart, liver, and kidneys soar as 'nose to tail' eating has a resurgence", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And so because of that, and because these patients are maybe limited by symptoms, but they're out in the community, they're just left to kind of trundle along and perhaps their quality of life isn't that good and they aren't able to do much.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In other words, frequent cannabis use in young adulthood only mattered if it continued into midlife and became a disorder.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A faint brown line under a fingernail might not seem like a cause for concern.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was found that he had written 14 messages for his family and friends in his notes apps to say 'farewell' and 'I love you'.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kerry is stunned to hear how bad things are, and she's made everything 10 times worse.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Researchers then counted how many of those waves a person engaged in heavy use, such as daily smoking, binge drinking or using cannabis 20 or more times a month.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK is lagging behind the latest recommendations from countries such as the US, where new guidelines say people should start getting their cholesterol levels tested from the age of 30 (Photo: fcafotodigital/E+/Getty)", "score": 2.6046199999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In some areas, patients have reported waiting over a year for routine treatment - while others cannot register with an NHS dentist at all.", "score": 2.6046199999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Disabled people get a lot of abuse online.", "score": 2.6042500000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's worth checking the side effects of any medicine you are currently taking.", "score": 2.59917, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The pain from a hysteroscopy - used to examine the womb for polyps or causes of infertility - usually happens as the camera (typically less than 4mm) enters the womb and saline solution is injected to dilate it and make it easier to see inside.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some users were enraged at the amount of chocolate Gemma had bought her children and called it 'greedy' and 'unhealthy'.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scientists say the variant called cicada - technical name BA.3.2 - appears to spread faster than other variants and one of the UK's top microbiologists has told of emerging evidence that it could disproportionately affect children.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'They said it's melanoma, stage 1A meaning it's invasive but not hugely,' she said.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'In people with existing health conditions, replacing blood pressure and cholesterol measurement with self-reported walking pace improved the model's ability to predict mortality, meaning people were reclassified into a more-appropriate risk category.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nice said that evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His wound became infected and he now has permanently limited use of his hand, restricting what jobs he can do and how much he can work.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Helen Williams, national clinical director for cardiovascular disease prevention at NHS England, added: \"For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health.", "score": 2.5893050000000004, "claim_types": ["quantity", "correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "All of which can trigger pain.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And also partly maybe can explain some difficulties that these families face with their children.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You know, there is a percentage of kids who cannot sit still, who cannot concentrate, or impulsive.", "score": 2.586125, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Because the nail-producing cells sit in the nail bed, removing this tissue usually means the nail will not grow back normally.", "score": 2.58383, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some people also experience gastrointestinal issues like nausea or diarrhoea, according to the CDC.", "score": 2.58268, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some of the screenshots show the 55-year-old had ordered 16 items over a five-day period, totalling £80.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around 45,000 coils are fitted every year in the UK.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Indeed, one study from the 1990s at the University of Bristol on the bowel patterns of nearly 1,900 people found that the most common time of day to poo is between 7am and 9am, with a second peak after about 6pm (when people eat what is typically the largest meal of the day).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The next closest strain managed only about 18 percent", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There are the two standard scans at 12 weeks and 20 weeks, but women are obviously all assessed and there are a lot more that are deemed high risk, so they come in and they need growth scans further in the pregnancy.", "score": 2.5769, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the UK, the target is 2.0 mm/L.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some 33,976 of these were due to a primary diagnosis of tooth decay, marking an increase of 11 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Swansea Bay and Cumtaf Morgano Health Board have the least number of people taking part in screening at 64%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By her first daughter's birth in 1996, she was a 38DD and by her second daughter's birth in 2000, a 40EE", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fibre helps maintain healthy habits because it ensures we retain more water in our faeces as it passes through our system, making it easier to pass.", "score": 2.5686799999999996, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's why Tesco is committed to helping the nation get more of its 5-a-day.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The evidence from the clinical trial is compelling. It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.\"", "score": 2.56732, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Amyotrophic lateral sclerosis (ALS) is the most common form of motor neurone disease, a muscle wasting condition progressively damages parts of the nervous system and is incurable.", "score": 2.5633350000000004, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prop Gupta, of the Cambridge Immunology Network, said: \"The immunocompromised and the elderly are at the biggest risk but vaccines should prevent some of the most severe complications in most people.", "score": 2.5633350000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Their privates will smell like rotting fish, I'm not joking.", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity looked at the latest screening data from 2024 and found that Pales Teaching Health Board and Holza Health Board have the joint highest uptake for screening at 67%.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "9. \"Uncircumcised men have to retract their foreskin to wash their penises properly. Not doing so can cause recurrent yeast and bacterial infections in their partner's vagina. Not washing properly is also a cause of UTIs for men.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Fingernail warning sign could be early symptom of heart failure or liver disease", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cholera is an acute, severe diarrhoeal illness triggered by consuming food or water tainted with the Vibrio cholerae bacterium.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It leads to rapid, serious dehydration and vomiting, which can prove deadly within hours without treatment, although many instances are mild.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disease flourishes in locations with poor sanitation.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They include sudden onset of severe, painless, watery diarrhoea, vomiting, and rapid dehydration.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is thought to be because T-cells - the 'killer' cells released by the immune system - can become over-stimulated by a tumour's presence, which weakens their ability to attack effectively.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The agency said the schemes often involve \"nonexistent, exploitative, substandard, or unnecessary medical care,\" with fraudsters illicitly obtaining the names and identification numbers of beneficiaries and using \"kickbacks and bribes to complicit medical professionals\" to secure federal payments.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These particles have built up in the environment as well as the human body since the plastic boom of the last century, where their continued presence is increasingly linked to adverse health effects.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The book is called Art Cure, the Science of How the Arts Transform Our Health.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts warn that tamoxifen also raises the risk of life-threatening complications.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'We can often treat it locally, but if it's very thick, we have to amputate the whole finger.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Yau said this is because fungi damage keratin - 'a protein that helps form the cells for your hair, nails and skin' - leaving nails weakened and discoloured.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The most common NTM infection, MAC, is known as Lady Windermere Syndrome because it's associated with elderly, white, underweight women with suppressed coughs.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vibrio cholerae bacteria spreads via the faecal-oral pathway, typically through contaminated water sources, ice, or food.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The agency added: \"Cholera is an acute diarrhoeal disease caused by ingestion of food or water contaminated with toxigenic strains of V. cholerae.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Khan said: \"The vaccine still is effective, boosters can be effective. At least some of the data suggest the virus is obviously mutating, and that's how it's going to dodge some of the immunity from the vaccines.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meningitis is inflammation of the membranes that surround and protect the brain and spinal cord.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rett syndrome is a rare genetic disorder that affects brain development, resulting in severe mental and physical disability.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This can lead to what's known as a 'visceral' reaction, triggering nausea or labour-like cramps.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"As stroke survivors live with the worrying threat of further strokes, it's vital they have options to help prevent that from happening, which suit their own circumstances.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'As stroke survivors live with the worrying risk of further strokes, it's vital they have options to help prevent that from happening,' she said.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The bacterium, Leuconostoc mesenteroides, relied on a surface binding process that trapped nanoplastics before they infiltrated human tissue.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Studies have shown these particles can cross the blood-brain barrier, raising concerns about potential long-term neurological harm (stock)", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For binge drinking and cannabis, the harm to memory was indirect: heavy use in young adulthood raised the odds of developing a substance use disorder by midlife, and that disorder directly damaged cognitive health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bonning stresses these research peptides are not approved for human use, and people could be getting \"something that's very dangerous\" because they carry unknown toxicity profiles.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Specialists say the key warning sign is a single dark line running from the base of the nail to the tip that does not fade or grow out.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nails that widen and curve around the fingertip may be a sign of low oxygen levels in the blood.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This can be linked to lung disease or heart problems.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The organisms are found in soil and water and cause opportunistic infections in people with pre-existing lung conditions or weakened immunity.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Symptoms include acute, profuse watery diarrhoea 'rice water stools' and vomiting, and can lead rapidly to severe dehydration.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cholera is an acute, severe diarrhoeal infection caused by ingesting food or water contaminated with the bacterium Vibrio cholerae.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It causes rapid, severe dehydration and vomiting, which can be fatal within hours if untreated, though many cases are mild.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vibrio cholerae bacteria spread through the faecal-oral route, usually via contaminated water supplies, ice, or food.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Chia seeds are also packed full of antioxidants, including compounds such as caffeic acid and kaempferol, which have powerful anti-ageing properties,' she said.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It gradually stops patients being able to move, talk, swallow and even eat.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's no cure for Rett syndrome, so treatment focuses on managing the symptoms.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "(We noted that stomach ulcers, as well as being aggravated by stress, are prevented by dopamine, the very chemical that is depleted in the brains of people with Parkinson's.)", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People whose meals included the emulsifier experienced increased abdominal discomfort after eating.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An obvious one is red or black, which can indicate bleeding.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms include tiredness, shortness of breath, headaches, bleeding from the nose or gums, and infections.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New research points to the effects someone's risky behavior in their 20s has on their cognitive health in their 50s and beyond.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In other words, the damage from cigarettes appears to come from cumulative exposure in young adulthood itself, not from whether the habit continued into midlife.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Occasional experimentation, over repeated exposure, strengthens neural pathways that reinforce compulsive use, making it harder to stop even as consequences mount.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The people spruiking peptides are \"often the same people who are telling you to not trust the milk you drink or the bread you buy,\" citing health and safety concerns, he says.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a 2017 study titled: \"Terry's Nails: A Sign of Systemic Disease\", researchers stated: \"Although the abnormality can occur with normal aging, Terry's nails can also be an indication of an underlying medical condition, most notably, cirrhosis, chronic renal failure, and congestive heart failure.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These include sudden onset of severe, painless, watery diarrhoea, vomiting, and swift dehydration.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Grip strength is a well-established biomarker of overall health and is strongly associated with lower all-cause mortality,\" says Aaron Deere, health and performance director at Hooke Fitness (where my longevity fitness parameters were assessed).", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Balance training improves neuromuscular co-ordination and proprioception, which are critical for preventing falls - one of the leading causes of morbidity and loss of independence in older adults,\" Deere explains.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's also a risk of epileptic seizures, there's breathing difficulties.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Lucy Hooper says endometriosis can affect how nerve endings sense pain", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's this idea that has led to wellness detoxes, enemas and colon cleanses.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, there are some colours that are concerning, and demand medical attention.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Silver poo - highly rare - is a medical emergency, as it is the result of a blocked bile duct and bleeding from your upper gastrointestinal tract.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is because the anal area is highly sensitive - dense with nerve endings and is not meant to be scrubbed harshly.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is different enough from the JN.1 strains that the vaccine may not do as good a job of priming the immune system against it, allowing it to evade detection.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And among the new measures, walking speed was the 'strongest predictor of death.'", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Symptoms seem to appear similar to other recent variants, and include a sore throat, cough, congestion, fatigue, headache and fever.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The SARS-CoV-2 variant BA.3.2, nicknamed Cicada, is a highly mutated strain that could be very contagious and cases are continuing to rise across the world.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Even if someone did have data - you can't be sure what you are getting in your little vial is actually what they say it is, firstly, and secondly, that it's made to a standard that is safe to put in your body.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This causes a type of white blood cell that is essential for fighting bacterial infections to become abnormally low.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typically, subungual melanoma is first detected when someone visits their doctor after noticing what they believe is a bruise under the nail that isn't going away.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In younger people, they can sometimes signal illness or nutritional deficiencies.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Alterations in shape, ridges, bumps and discolouration can all indicate underlying conditions.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, in the early stages, cirrhosis usually doesn't present many symptoms, or sometimes none at all.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The NHS backs the idea that people need to exercise particular care between 11am and 3pm.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, she underscored how it is not a replacement for good diet and exercise.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Oh, without a doubt, you know, it can, can't emphasize enough how much tests save your life potentially, that's the purpose of them.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We know that many of the symptoms and signs of heart failure are non-specific, and may go unrecognised as potentially being due to heart failure for a long time.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There is no safe dosing or amount that someone can take, because we just don't know what's in there,\" Bonning says.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On Tuesday health experts took part in a discussion with Ireland's Covid-19 Evaluation Panel, set up to examine the planning for and handling of the pandemic in Ireland.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lewis spent a lifetime fighting for causes close to his heart - including human rights, equality for women and the plight of African families decimated by AIDS.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To begin with, two bags would last a week, costing £30, so it was significantly cheaper than my old wine habit.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Compared to this time last year, sales for lamb liver have spiked by 33 per cent, lamb kidneys by 25 per cent, lamb hearts by 91 per cent, and beef rump heart steak by 88 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It lowered their cholesterol levels by a further 50 per cent, compared with those who got placebo treatment.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Another showed 15 items ordered over a three-day period and totalling £67.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Loveden's video of the eggs has racked up more than nearly 2,000 comments and 25,000 likes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Weekly figures from the UK Health Security Agency show that, among positive cases analysed in England between February and March, only 2.13% were identified as the BA.3 strain.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Stanley Family Foundation announced another $280 million for the Stanley Center for Psychiatric Research at Broad Institute earlier this month, bringing its total contributions to the Massachusetts-based nonprofit over $1 billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But lesser-spotted in the government's flagship workers' rights reforms is that the rate has not actually gone above inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said the government can pay whistleblowers \"up to a 30% reward for the recovered funds.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A further 18 people were admitted to hospital.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Like around 60,000 women in the UK each year, Dawn underwent a hysteroscopy in May 2023 - a procedure to look inside the womb, which the NHS generally regards as routine and low risk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A YouGov survey last year of 3,000 women found 42 per cent found it painful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, after a period of dormancy, Cicada has spread to 23 countries and is spreading across the US, with detections in wastewater systems in 29 states.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The jabs can cost between £75 and £100.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Waitrose has seen a 91 per cent increase in sales of heart, a 33 per cent increase in liver, and a 25 per cent increase in kidneys, compared to this time last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But, a few days later, he received an email with a £120 fine, but if he paid within 24 hours would be reduced to £70.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A third of people who are eligible for screenings here in Wales don't take their tests.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new study, published earlier this month in the journal Mayo Clinic Proceedings, looked at 407,569 adults from the database UK Biobank ages 40 to 69.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NICE said clinical trials have also indicated the drug works directly on the heart and blood vessels - and it expects that 1.2 million people across England could benefit.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 80,000 people in the UK are thought to be in receipt of a private prescription.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So far, clinical studies have demonstrated its safety and efficacy with data from more than 1,600 patients, some of which have received active treatment for seven years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'At the moment they have seven each but it may go up to about nine plus each.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We found 66 per cent of the participants used their smartphones while pooing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "No, he admitted to a Question Time audience, he could not live on statutory sick pay, which was £94 a week at the time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those on the drug were 20 per cent less likely to suffer a major heart event, such as a heart attack or stroke, than those given a placebo.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It allows kids to pick up a free piece of fruit in store during the school holidays, and we've given away more than four million apples so far.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The team found that replacing blood pressure and cholesterol metrics with the five new measures improved mortality risk classification by 10 percent for women and 19 percent for men.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It follows the impact of Storm Theresa, which hit the region hard, generating upwards of 700 litres of rain per square metre in some spots.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 13,000 adults in England were enrolled on the 800-calorie-a-day plan in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government reported about 5,000 NHS prescriptions for licensed CBMPs in 2023.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His father devoted $825 million altogether.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It warns that one in four NHS sonographer job posts are vacant in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The highest number of reported cases occurred in early December, marking a turning point in its spread.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Wales has the lowest average screening uptake compared to all of the UK nations, they say.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They're now £170.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's much better when I can go out with my powered wheelchair, which was £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yet it wasn't until September 2025 that worldwide detections started climbing substantially.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While confirmed UK case numbers stay relatively small, the variant's identification amongst international travellers and its appearance throughout Europe indicates it is probably already spreading at modest levels within Britain.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Matching the prices of selected Tesco products against comparable or identical branded products at Aldi - two thirds of which are deemed healthy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The family raised over £8,000 for the charity Meningitis Now over the weekend.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The mother is now warning other parents be vigilant and react quickly if they notice symptoms following the recent outbreak of the infection in Kent - which killed two young people.", "score": 2.54548, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The injections are more expensive, so NHS guidelines say they should be reserved for people who have already had a heart attack or stroke, and cannot tolerate statins because of side effects, or for whom statins aren't reducing their cholesterol enough.", "score": 2.5438549999999998, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "State coroners and pathologists warn the new rules could bog them down with paperwork and cause more trouble than help, insisting their existing standards protect families well enough, the outlet reported.", "score": 2.5438549999999998, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Issues affecting your liver, lungs, and heart can all show up in your nails, so it's beneficial to keep an eye on them regularly.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "However, certain warning signs could imply you have early-stage heart failure or liver disease, and necessitate a visit to your GP.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "With MS, it's really important to keep your body moving.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Health authorities have urged people to refrain from staying outside for extended periods, keep windows shut, and steer clear of heavy physical exertion outside.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "People are being encouraged to look out for specific warning signs on their nails that could suggest early-stage heart failure or liver disease, including cirrhosis.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It's worth examining the side effects of any medication you're currently on.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "However, certain warning signs could suggest you have early-stage heart failure or liver disease, and warrant a visit to your GP.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Ms Yau said: 'If you suspect white patches are due to a vitamin or mineral deficiency, you should get a blood test to be sure.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Dr Hanratty says if you have been diagnosed with a heart issue and you feel that the treatment you have been receiving hasn't been working for you, then it is worth asking for a second opinion, particularly if your quality of life has been badly affected.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "10 years ago, the 46-year-old had a near-fatal overdose and suffered kidney failure, 12 strokes and six heart attacks.", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Glenn Perkins died after spending up to £60 a day having alcohol delivered to his home", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning https://t.co/oFoTjDDeyj", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2024, I found that Parkinson's disease could be predicted by gut problems decades before people developed tremors.", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Club Chemistry, where the meningitis outbreak began, will reopen its doors this Thursday with a kissing warning", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'We have continued to improve ChatGPT's training to recognise and respond to signs of mental or emotional distress, de-escalate conversations, and guide people toward real-world support.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is not fully understood why MND occurs and there are currently no treatments to halt its cruel march - instead doctors focus on alleviating the worst of the symptoms.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fingernail symptom could be early warning sign of heart failure or liver disease", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People are being urged to watch for specific warning signs on their nails that could indicate early-stage heart failure or liver disease, including cirrhosis.", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Our analysis found that walking pace was the strongest single predictor of death,' Professor Tom Yates, paper author and physical activity researcher at the University of Leicester in the UK, said.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An expanding body of scientific research has linked nanoplastics in the brain to cause a range of pathological changes, including inflammation, oxidative stress, an accumulation of Alzheimer's-associated amyloid plaques, as well as Parkinson's-linked Alpha-synuclein proteins.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ALS claimed the life of Grey's Anatomy star Eric Danes at just 53-years-old earlier this year and the acclaimed scientist Stephen Hawking famously suffered from it.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tiger Woods had two loose opioid pills in his pocket when he was arrested for DUI in Florida on Friday.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The NHS claims that people need to be most vigilant between 11am and 3pm.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Romero said her two-year-old was buried without her heart and is now behind new legislative change", "score": 2.5146300000000004, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, it was not until September 2025 that global detections began to rise significantly.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'MS symptoms can change from one day to the next, one week to the next, and that makes it really frustrating', says Georgina", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The body produces collagen naturally from protein rich foods such as chicken, fish, eggs and dairy, but millions of people have begun supplementing it on top of their regular diet following studies suggesting it can slow the visible signs of ageing.", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health Secretary Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A new deal for the NHS with £4 billion to build new hospitals, same-day mental health support and a new focus on women's health", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health Secretary Wes Streeting said it meant that 'for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000'.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The PM has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over it's costing that the government even more money because now because of the staffing gaps that they have, they need to employ temporary staff that will be at higher rates, whether they're consultants, whether there's resident doctors, they're higher rates and of course when the strikes go ahead, they the rates are higher as well for doctors to step in and to make sure the staff are at safe, um, at a safe number.", "score": 4.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Because I, I fully accept that that resident doctors have lost out over the past 17 years.", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The union said this was not enough, given inflation is expected to rise, and that pay for resident doctors has not kept pace with inflation since 2008.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Resident doctors make up nearly half of medics working in the NHS - two thirds of them are BMA members.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I, I don't think resident doctors should be striking at all, but if they are, I mean, six days really is far too long, isn't it?", "score": 4.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Invest £4 billion in a Hospitals of the Future Fund to build state-of-the-art new hospitals, including replacing Wrexham Maelor Hospital and University Hospital Wales, and a major hospital development in West Wales", "score": 4.636345, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "That means resident doctors have to, when this short staffing, they have to look after more patients that they probably wouldn't have if the it was well staffed, more acutely unwell patients, could be probably complex medical patients, where they miss their breaks, miss their lunch, and have to stay overtime.", "score": 4.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer gave the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics given a pay rise of 35% over three years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer accused the BMA of rejecting a \"historic deal\" that would have delivered \"another above-inflation pay rise this year\" of 3.5% to bring their total pay rise since 2023 to 25.5%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Out-of-pocket expenses for things like exam fees were also to be covered, while progression through the five resident doctors pay bands was to be speeded up.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It will be the joint longest since the dispute began - only once before have resident doctors taken part in a six-day walkout.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The deal also included a commitment to create at least 4,000 new specialty training posts in the NHS, for which resident doctors - previously known as junior doctors - can apply after their first two years of training.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Resident doctors in the final stages of speciality training, who now earn £73,992 in basic pay, would earn £77,348.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week, the BMA's resident doctors' committee rejected an offer worth up to 7.1 per cent for this year without even putting it to members for a vote.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has given the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said that the deal meant \"for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000\".", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BMA argues that, despite the pay rises of the last three years, resident doctors' pay is still a fifth lower than it was in 2008, once inflation is taken into account.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We're seeing waiting lists coming down slightly, we're seeing urgent and emergency care improving, we're seeing the NHS hitting its financial targets for the first time in nearly 10 years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Resident doctors will be worse off.", "score": 4.489365, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer has threatened to withdraw an offer of thousands more NHS jobs should resident doctors go ahead with strike action next week", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the deal, which currently includes an offer of thousands of extra NHS training posts.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "So with the thousand places that Keir Starmer is saying, it's a step in the right direction, but when you have 18,000, over 18,000 doctors waiting to get into GP training, these are applicants that have passed the exam, are on the waiting list to get into GP training.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Here Keir Starmer has accused junior doctors of being reckless after they rejected a deal which would have paid some of them more than 100,000 pounds a year.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The walkout, which is due to run from 7am on April 7 until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The walk out, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, it is happening under a Labour government, from April the 7th, there will be no resident doctors working in our hospitals for six whole days.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has threatened to withdraw the offer of thousands of new training positions for resident doctors if the British Medical Association (BMA) doesn't call off strike action within 48 hours.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The BMA said the ballot raises the prospect of all secondary care doctors in England taking industrial action during the same period in a major blow to patients and Labour's pledge to tackle long waiting lists.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And I think that's a signature pledge, uh, in our manifesto that is not present in others, building three new hospitals across Wales.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has threatened to withdraw an offer of thousands of extra NHS training posts if resident doctors do not call off a six-day strike after Easter.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I think resident doctors need to be a special case because it's a long-term investment in the NHS.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Because the truth is this: no one benefits from rejecting this deal. Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", "score": 4.182605000000001, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "You look at Plaid, for example, they they're saying, well, we don't expect waiting lists to drop in the first three months of of a Plaid led government, whereas we know already under Labour, that they are dropping.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", "score": 4.16355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", "score": 4.132820000000001, "claim_types": ["correlation", "rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Jack Fletcher, chairman of the resident doctors committee of the union, said: \"It is wrong for Government to withhold desperately-needed jobs as part of negotiating tactics.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said waiting lists have built up since the pandemic and if they are not tackled they will become \"our starting point for the next big crisis\".", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Addressing resident doctors, Prime Minister Sir Keir Starmer wrote in The Times: \"The truth is this: no-one benefits from rejecting this deal.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer claimed \"patients will pay the price\" if resident doctors go ahead with \"reckless\" strikes, as a furious row erupted with union bosses.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I feel like the Prime Minister Keir Starmer's statement seems quite threatening in nature.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes after the Prime Minister accused resident doctors of \"recklessly\" walking away from the deal without putting it to members for a vote.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "@bbcnickrobinson presses Dr Jack Fletcher, from the BMA, on previous pay increases and the planned industrial action by resident doctors over a pay dispute with the government.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The bitter war erupting between Keir Starmer and the British Medical Association (BMA) means patients are once again caught squarely in the crossfire.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a deadline to reconsider a deal on pay and jobs which includes an offer of thousands of extra NHS training posts.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And yet you look at other people in the NHS, you look at nurses, for example, or ancillary workers, they haven't anywhere near caught up, and their pay is far, far less than resident doctors.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than £100,000 a year - and given them 48 hours to call off their planned strike.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Prime Minister Sir Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than £100,000 a year - and given them 48 hours to call off their planned strike", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And doing so without even giving resident doctors the chance to vote on it makes it worse.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And doing so without even giving resident doctors themselves the chance to vote on it makes it even worse.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BMA then announced that resident doctors would go on strike after Easter.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The walkout, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Resident doctors are in the front line working hard and if you're losing these doctors, and they're leaving the NHS, they're going to countries like Australia, Canada, America, this short staffing, that means that it's affecting patient care overall.", "score": 4.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The prime minister has now given the doctors' union an ultimatum, demanding that they cancel the resident doctors' strike action within 48 hours.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'm not sure Keir Starmer ever envisaged him being in a position after 18 months as Prime Minister where he'd essentially have to issue threats to resident doctors.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's a staffing pressure because this staffing pressure when you're not retaining doctors, and doctors are leaning towards leaving the NHS or going to these different countries, there's a lot of pressure on resident doctors on the shop floor.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer said it would be 'reckless' for resident doctors to walk away from the offer.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steve Thomas, a public health professor at Trinity College Dublin, warned that waiting lists and healthcare staff morale need to be tackled.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer marched into the 2024 general election campaign vowing to end the NHS strikes that brought misery to millions of patients under the Conservatives.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I mean if I had a pot of money and I was going to dole it out, having seen that the the resident doctors have had such a big pay rise last year, they would not be first in the queue.", "score": 3.922175, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If the strike goes ahead, it will be the 15th round of action by resident doctors since 2023.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The British Medical Association has dared Sir Keir Starmer to follow through on his threat to ditch thousands of training places if the union refuses to agree a pay deal.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Resident doctors will be worse off. Instead of improved pay, progression and support, they will receive the standard pay award this year, with none of the reforms that would have strengthened their working lives.\"", "score": 3.851805, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It seems like it will have a negative impact on the NHS in the future, because he's, um, he's threatening to remove the extra training posts he wanted to give when he knows that there's a big job crisis in the NHS with resident doctors.", "score": 3.851805, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about. Ministers effectively moved the goalposts on the deal at the last minute.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crunch talks between resident doctors and the Government are set to continue in a bid to avert strike action.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I think that that resident doctors are underpaid.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, I would say that he needs to take this seriously, Keir Starmer, and Lisa, actually understand that there's a big job crisis, it's causing unemployment, and it's causing a lack of job security as well.", "score": 3.6886, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crunch talks are to take place between resident doctors and the Government after ministers threatened to remove a key element of the deal currently on the table.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The British Medical Association has hit back at Keir Starmer's call for the union to cancel next week's strikes or risk losing the current deal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has accused resident doctors of \"recklessly\" walking away from a Government pay deal without putting it to members for a vote.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer has issued an ultimatum to resident doctors to call off their strikes or lose the deal on the table.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Sir Keir Starmer is \"ramping up the war of words\" with the doctors' union by giving resident doctors 48 hours to reconsider their upcoming strike, reports @ashishskynews.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Keir Starmer has criticised resident doctors for \"recklessly\" abandoning a government pay deal without presenting it to members for a vote.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But with the junior doctors, resident doctors, there's never an element of that conversation where it feels like actually they do understand that there is another side to this.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Writing in the Times, Sir Keir Starmer said the decision to announce the 15th walkout of the long-running dispute was \"reckless\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer gives 48-hour deadline to resident doctors to call off strikes", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It is understood that the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in an ongoing row over jobs and pay.", "score": 3.539295, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Addressing the resident doctors, he added: \"There are still 48 hours left to choose a better path. For patients, the NHS, and our doctors - I urge you to take it.\"", "score": 3.499645, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He added: \"So I say this to the BMA's resident doctors' committee: reconsider.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It says Sir Keir Starmer warns resident doctors to call off next week's walkout within 48 hours or risk losing new NHS training posts.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Their last six-day walkout cost the NHS a staggering £250 million, but it's the human cost that is sparking the biggest fear.", "score": 3.4061450000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said resident doctors, the NHS and patients will be \"worse off\", highlighting that each strike costs the health service £250 million.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'There are patients right now being treated in corridors in A&E and yet we are turning tens of thousands of resident doctors away from training places in the NHS.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Each strike costs the NHS £250million in paying for cover.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But I think that leaders are really really keen to get back to the business of driving down waiting lists of improving emergency care and of transforming the NHS.", "score": 3.363845, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions face fresh misery as a new six-day strike looms from April 7, threatening cancelled operations and stretched hospital corridors already at breaking point.", "score": 3.31818, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the working conditions are getting worse for them, this grueling hours, this overtime, this mis-breaks, this causing them fatigue, causing them to burn out.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It is completely unacceptable that vulnerable individuals are left waiting months, in some cases nearly two years, for appropriate mental health care.\"", "score": 3.18436, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We are an under doctored country compared to the rest of the OECD.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In terms of the pay, like you mentioned, I think it's really important and I think sometimes people sort of forget that doctors have faced the largest pay erosion in the public sector over the last decade and a bit.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is understood the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in a row over jobs and pay.", "score": 3.1144249999999998, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of these jobs, 1,000 would have opened for applications this month, but the PM has now warned they \"will be gone if this deal isn't put to a vote on Thursday\".", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As we'll be discussing after 9 o'clock this evening, Sir Keir Starmer has told the British Medical Association that it needs to come to an agreement on resident doctors pay by tomorrow night, or see the current offer withdrawn.", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service, you will find decay.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "2024: January 2024 saw the longest strike in NHS history at the time - six days - over their pay erosion, and another in February.", "score": 2.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The prime minister has accused resident doctors of 'recklessly' walking away from an offer that would have seen some earn more than £100,000 a year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir yesterday gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "93% of them are telling doctors to stay at work.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nobody else has seen a pay increase like that over the last...", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although I seem to remember a massive pay rise for resident doctors that restating almost as soon as the election was over.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Starmer says that if the BMA doesn't cancel the strikes, the government will withdraw the extra 1,000 speciality training posts it has promised.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Some doctors are set to lose more than £2,000 from their retirement pots as a result of the strikes that have been taking place since the start of last summer, calculations for The i Paper show.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BMA is demanding that consultants who cover for striking junior doctors get paid up to £2,500 per shift to do so.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The prime minister has given the British Medical Association 48 hours to call off the six-day doctor strike after Easter in England or face losing 1,000 extra training places.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "little prediction that by 2048 would be 11 to 15,000 consultants short based on population I think the media was talking about the fact they're being paid as they just want more money but actually the jobs is quite an important part too", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I understand from the news that these junior doctors, these student doctors, they get only 18 pounds something an hour.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Health secretary Wes Streeting said the pay offer meant that 'for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000'.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On Monday, Sir Keir gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Now, the Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor's strike in England after Easter, or face losing 1,000 extra training places.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Oh, well let's let's give every doctor 100,000 pounds a year then.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "We've seen the largest pay erosion in the public sector.", "score": 2.9358750000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Anyone who works in the NHS knows that patients need these 4,000 jobs created as soon as possible.", "score": 2.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "So if Jack Fletcher, the, uh, head of the resident doctors' committee, the BMA rang you up today and said, look, um, Rida, I want your advice, I'm not sure what to do here, I don't want to put these training posts at risk.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "and I I fail to see why it is always the resident doctors who should get a better deal than any other group.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister has threatened to withdraw an offer of thousands more NHS jobs if the strike goes ahead.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"He promised to end year-long waits in the NHS by the end of this month, but tens of thousands of Scots are still suffering these outrageous delays on his watch.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", "score": 2.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the prime minister said.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So without having any, uh, surgical skills by just having letters signed by by other people or from other departments, for example, and so essentially you don't act you don't actually have to have any surgical skill to be appointed as a surgeon.", "score": 2.884875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister has issued the resident doctors committee of the British Medical Association (BMA) a 48-hour ultimatum to reconsider the offer, which would have granted medics a pay increase of up to 7.1 per cent this year.", "score": 2.856485, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, everyone's facing cost of living pressures, I also know that MPs got a 3% pay rise.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I just don't think that it's, it's valuable or useful to be making threats in the media to withdraw jobs from doctors because ultimately that's bad for doctors and bad for patients.", "score": 2.805745, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant short based on population.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant shortfall based on population.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We're running a poll in the article online now, do you support the BMA resident doctors strike and subscribers are having their say, Hugo, more than 16,000 votes in so far.", "score": 2.7846200000000003, "claim_types": ["voting"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I don't recall the conservative government indulging in this sort of thing because he's essentially saying to them, unless you agree by the end of Thursday to the terms of the offer that you've already got, we are going to abolish 4 and a half thousand training places for resident doctors.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Well, I think that's, that's all true, but the fact is, if he delivers on this threat, you're going to be a thousand, I think 1500 worse off this year, and four and a half thousand all together if he then repeats it for the next two years.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He's given them a deadline of Thursday evening, think that's right, to accept the terms of this new offer, or he will withdraw more than a thousand training places.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The BMA's resident doctor committee hasn't barged on the plan six day strike planned between April the 7th and April the 13th.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Completely, because it's 26% pay increase they've asked for, because they've not got that, they've got an they had a very good offer, they're going to go out on strike. That's so irresponsible.", "score": 2.75796, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the issue is, you're not going to retain doctors.", "score": 2.73922, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "FSCS protection for your savings and current accounts has risen to 120,000 pounds per eligible person at UK authorized banks, building societies and credit unions.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Leyla Hannbeck, chief executive of the Independent Pharmacies Association, said medicine shortages pose a 'serious and growing threat to patients'.", "score": 2.7201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Every time doctors strike, they lose pay, with those who have taken part in each strike day losing thousands of pounds overall.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "and at the moment there basically aren't enough specialty training jobs to match the number of doctors.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK imports about three quarters of its drugs and many others made from materials that are shipped from the likes of China and India.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Every year, they accrue 1/54th of their salary as an income each year in retirement, and this is uprated every year by inflation plus an additional 1.5 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Also on the table are thousands of extra NHS training posts.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The British Medical Association says they're unhappy with the government's proposed 3.5% pay rise.", "score": 2.6975749999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", "score": 2.6746749999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Covid nearly broke NHS - 'never again can nursing and the public be failed like this'", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I mean, just speaking for myself, but I think a lot of my colleagues, there's there's all of these targets that are being imposed on us, mean that, for example, if I want to schedule patients for surgery, sometimes I have to prioritize patients who've been waiting, um, a long time over patients who have been waiting less time, but who have cancer or more urgent conditions, um, just because, uh, a certain target or patient would breach a target.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So all of this is costing the NHS way more money than it would if they actually just negotiate.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "They have to apply to positions, very slim chance of getting it and right now universities offers are going out and we're probably turning back three out of every four people who could become doctors are probably going to be rejected because we don't have enough training places, which we should be making more.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Participating junior doctors will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The medics will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is more than many NHS staff in other roles will earn at the peak of their career.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Or the suggestion is he'll withdraw the offer of thousands more places for doctor training.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, the union said this was not enough, given inflation is expected to rise and that pay for resident doctors has not kept pace with inflation since 2008.", "score": 2.631525, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the the net effect will be a significant loss.", "score": 2.6158, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The blockade of the Strait has already pushed up oil prices and is expected to have a major knock-on effect on the rate of inflation.", "score": 2.6158, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Medicine shortages pose a serious and growing threat to patients across the UK, and the Government must act now to ensure people are not left without the vital treatments they depend on.", "score": 2.6147650000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And this is really, really over the years going to affect the NHS.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And if he doesn't win, and in a sense, everyone's a loser.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Seastrums threatening to withdraw thousands of specialty training places if the strike is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The union said this was not enough given inflation is expected to rise because of the war with Iran and the fact the pay of resident doctors, who used to be called junior doctors, has not kept pace with inflation since 2008.", "score": 2.61247, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Suggesting that Simon's threatening to withdraw thousands of specialty training places is that the stoppage is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Not just that, he's saying that he'll abolish 4 and a half thousand training places for doctors, which Zoe, it it's brinkmanship, which I wouldn't have necessarily expected from someone like Kier Starmer.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So Thomas is threatening to withdraw thousands of specialty training places if the stoppage is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Given the increase that you've already seen from the government, and given the context that we're talking to you in right now, is your position really morally justifiable?", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I think the Prime Minister is one of them.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BMA said global events such as the Iran war, plus the rising cost of living, mean doctors are facing further pay erosion, causing them to leave the UK to work elsewhere.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the Prime Minister said.", "score": 2.57747, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "but it does progress up to 40, 50, 60, 70,000.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well I'd give them a minimum of 20 pounds.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And for consultants, a 2% pay rise.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "My, my point is that last year, there was, I can't remember whether it was 22 or 29%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 1,000 extra training places, which were to be created this year, were part of a package of measures that would see a total of at least 4,000 extra speciality posts created over the next three years under the deal put forward by the government.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, Sham, I could talk to you for the rest of the program, but we have only got 10 and a half minutes left.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure is clearly bad for patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure, is clearly bad for patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We've now seen threats to withdraw jobs for doctors at a time when we are seeing corridor care rife as the norm in A&E in a lot of places, as well as seeing patients this morning who were trying to get a GP appointment, calling their GPs and facing hold music because there aren't enough of them, and yet we've got the government saying that they're going to cut training places for resident doctors even further.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We know that these intolerable waits, which were virtually eradicated by the previous UK Conservative government, have a devastating impact on patients' physical and mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This overtime causes burnout, causes fatigue, causes them to be demoralized, low morale, and then they drop out of medicine or they want to just completely move to a different country.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On the table is an above-inflation pay rise, along with government funding for postgraduate exams that doctors have historically paid for themselves, and an offer of 4,500 additional specialty training places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "First-year doctors fresh out of medical school would earn on average £52,000 a year, £12,000 more than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the NHS, the waiting list in England was 7.29m in December 2025, even after the NHS delivered a record 18.4m treatments and operations in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As medics also earn on average an extra £20,500 a year for overtime, weekends and night shifts, the highest earners could take home more than £100,000 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People are still waiting more than two years, way more than the situation in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Quilter's calculations suggest that a first-year foundation doctor - those just out of medical school - would lose around £2,230 of pay if they were involved in all 21 days of strike action, while the most experienced resident doctors could lose around £4,260.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir said union leaders had rejected a \"historic\" offer - including another above-inflation pay rise of 3.5% this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I think 95% of appointments were managed and kept during the last period of strike action.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Consultants and other senior doctors are to be balloted on industrial action after ministers announced they would be getting a 3.5% pay award.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The deal sets out a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the elements of his offer was a 4.9% uplift to average basic pay between 2026 and 2027, which would make them an average of 35.2% better off compared to four years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of course, what Streeting fails to do is put that \"35.2% better off\" into proper context:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But I've talked about those 1,000 extra jobs, the 1,000 extra jobs is part of a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, at the moment, for example, for GP, there's over 18,000, um, trainee doctors that are waiting to get into GP training with over 4,000, probably just over 4,000 places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, I mean doctors are paid far more than the average of anybody in the UK, admittedly in their first year they they're not paid a huge amount, it's about 38,000 I think.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We had a 65% turnout and 83% of residents rejected.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour won the general election in July, and the new government offered a 22% pay rise over two years, which junior doctors accepted two months later, ending the strikes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By December 2024, only 71.1 per cent of A&E patients were admitted, transferred or discharged within four hours, far below the NHS standard of 95 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The union has rejected a pay rise of up to 7.1% this year without putting it to members, but says it's keen to attend fresh talks.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 3.5% rise that is coming to them in April was recommended by the independent pay review body and covers all doctors.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It will be the fourth strike by members of the British Medical Association (BMA) since last July, with 21 days of industrial action having taken place since then.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's a 10% pay rise for doctors in their first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The goalposts were changed at the last minute by the government where the investment offer was reduced and stretched to over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And on the face of it, it's a reasonable offer, three and a half percent pay rise this year, that's slightly more than inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Department of Health and Social Care said basic pay for new senior doctors has increased by 28.5 per cent over the past four years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We had a 65% turnout and 83% of residents rejected it, just did we been telling the government and therefore we've not put this to members because we don't think it's a good deal on pay.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week the government announced that doctors would get a 3.5% pay rise after agreeing a recommendation from the pay review body.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last summer there were 30,000 applicants for around 10,000 jobs, although some of those were doctors applying from abroad.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Doctors to lose £2,000 from pensions due to 21 days of strikes", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But they also lose entitlement to some of their generous defined benefit pensions, with calculations by wealth manager Quilter suggesting this could total over £2,000 for many doctors over a 20-year retirement.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BMA announced the strike as it emerged doctors were to be given a 3.5% pay rise this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the same way that inflation between January 2022 and January 2026 was around 28%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But a six-day strike, and the previous strikes weren't six days.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And when you when you put it in an hourly rate like that, it doesn't sound very much but if you multiply 20 pounds an hour by 52 weeks of the year, um, it's a reasonably sizable sum.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of these positions, 1,000 would have been available for applications this month, but the PM has now cautioned they \"will be gone if this deal isn't put to a vote on Thursday\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And I think that we've had a much more constructive set of discussions over the last six months or so, certainly over the last three months or so, much more conciliatory and really trying to find a solution.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures released on Tuesday confirmed the pledge had been missed, with 44,000 waits of a year or more still ongoing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government pledged to create 4,000 extra training places over three years, including 1,000 places this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It warns that one in four NHS sonographer job posts are vacant in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We had a 65% turnout and 83% of residents rejected it.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The deal, which was rejected last week by the union's leadership without consulting members, would see a pay rise of up to 7.1% this year and the creation of 4,000 specialty training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The union, which is to stage a walkout from 7 April to 13 April, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For 21 days of strike action, the most experienced resident doctors could lose £78.83 per year; over 25 years, because of the way pensions are uprated, that could be worth £114.38, adjusted for inflation.Over a 20 year retirement, that is worth £2,280 before tax.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week, the BMA resident doctors' committee rejected an offer that would have given doctors a pay rise of up to 7.1% this year, without putting it to members for a vote.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under a new deal on pay, which the medics have rejected, some of them would have been on over 100,000 pounds a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He's accused them of being reckless for walking away from a pay deal under which at least some would have earned more than £100,000 a year when overtime and night payments are added.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You know, a first year doctor, fresh out of medical school would earn £12,000 more than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And for those in their second to fifth year, a 3.5% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And frankly, with the current inflation rates, we think that is about 20%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the government's offer of 10% for junior doctors and 2% for consultants is significantly below that.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After entering No10, Starmer agreed to pay rises worth 22% over two years, with further increases following last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The PM went on to reiterate the terms of the rejected deal, mentioning a total pay rise of 35% over three years, reimbursements for Royal College exams, and 4,500 new speciality training posts over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although a figure of 4,000 has been mentioned, but I think that's over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They have budgeted the government 250 million pounds for these jobs, which is about a week's worth of strike action, which is what seems to be going ahead next month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"But what I think we should be looking at today is that we've got nine months of continuous reductions in long waits for outpatient and inpatient treatment - that's thousands and thousands of people receiving the healthcare treatment they require and more and more people getting treatment within the 12-week period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The union's rejected a pay rise of up to 7.1% this year but says it's keen to attend fresh talks.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'm not sure anybody knows anybody who's been given a pay rise of what 28%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week the BMA called the strike after rejecting a deal which would see doctors receive a 3.5% pay rise this year, some expenses including exam fees paid for, and an increase in the number of training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, he said, new graduates entering the profession would earn on average £12,000 more annually than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The union, which is set to stage a walkout from April 7 to April 13, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The walkout, which is due to begin at 07:00 BST on Tuesday, will be the joint longest of the dispute - only once before have resident doctors taken part in a six-day strike.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the government have offered to create an extra 4,000 training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yet last year, there were 13 fully qualified doctors who were applying for every job in NHS to train to be an any.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And that's why it's only 10% for those in their first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour leader hopeful Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, last week the BMA called the strike over a deal which would see doctors receive a 3.5 percent pay rise this year, so slightly above inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some expenses, including exam fees paid for, and an increase in the number of training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And also in terms of those jobs existing in the first place, those 1,000 extra jobs, which is part of the deal.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Can you tell us what the settlement was after the election that West Streeter came to, because we were told something like 22%.", "score": 2.5459449999999997, "claim_types": ["quantity", "voting", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And I think that we've had a much more constructive set of discussions over the last six months or so, or certainly over the last three months or so, much more conciliatory, um, and and really trying to find a solution.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"In the 2015 structure, any reduction in pensionable pay creates a gap that compounds because each year's accrual is uprated.\"", "score": 2.5315000000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And a dog owner has been convicted after his XL bully attacked and killed an elderly man in Cheshire.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We've already had a couple of supply shocks in the last 12,18, months or so.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And at the point might be made that, well, the 4,000 specialty jobs, we all need them.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.5, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So, you know, those numbers do sound large because they're taken over a number of years, inflation peaks and troughs during that time.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just 8% said it \"rarely\" or \"never\" has an impact on classrooms - compared to almost a third of teachers (31%) in private schools, according to a major survey by the National Education Union.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The NEU said the different outcomes between state and private schools showed \"the roles that resourcing, class size and pupil to adult ratios play in behaviour\".", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Plans by Spain's socialist prime minister to hit British expats with a tax of up to 100% of the value of their holiday home purchases have stalled.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the National Fraud Intelligence Bureau, 4,441 cases of rental scams were reported in the past year across England, Wales and Northern Ireland, with people aged between 20 and 29 years old proving the most likely to fall prey.", "score": 3.3647299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The world's second-most visited country after France is also among the European nations where public anger is most acute over affordable housing shortages, with rental supply halving since the pandemic.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As part of our investigation, we have spoken to four other people who say they lost more than £6,000 between them in the same scam.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Foreigners made up 20% of all buyers last year, unchanged from a year earlier.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This represents a 15% increase from 2020 while there are thought to be many more that operate without an official licence.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Brits remained the largest group of foreign purchasers, at around 8%, preliminary official data showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Latest figures show nearly 190 London police officers were sacked and barred from returning to the service in 2025.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prime Minister Anthony Albanese has warned of a growing threat from extremist ideologies as he declared he felt 'no sympathy' for self-proclaimed sovereign citizen Dezi Freeman, who killed two Victorian police officers.", "score": 4.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The £65 million inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded.", "score": 4.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Hurst also raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Duggar, who starred with his parents and siblings in TLC's \"19 Kids and Counting,\" was arrested March 18 in Tontitown, Arkansas, after police officers interviewed a 14-year-old girl who told them Duggar had molested her several times during a family trip to Panama City Beach, Florida, when she was 9.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Residents have described 'people sitting on the stairs, smoking crack cocaine' and a rampant issue with knife crime.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The animal had to be shot 10 times by police officers who were called to the scene.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Video shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand in the middle.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dezi Freeman murdered two police officers and fled", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He had been on the run for seven months after killing police officers Neal Thompson and Vadim de Waart-Hottart as they served a warrant related to alleged child sex offences.", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Christine Hurst raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers", "score": 4.4703800000000005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'(It) will be laser focused on grooming gangs and will explicitly examine the role of ethnicity, religion and culture of the offenders and in the response of institutions.", "score": 4.41762, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Woodhouse, who was targeted, groomed and abused as a teenager, was part of Restore Britain MP Rupert Lowe's private investigation into grooming gangs, which has claimed to have found child sexual exploitation in 85 local authorities in the UK.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dezi Freeman, wanted for shooting dead two police officers on a property near the town, was killed on Monday roughly 150km away in Thologolong, after seven months on the run.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'He made the decision to murder two police officers.", "score": 4.300755, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Conservative Party leader Kemi Badenoch said: 'This appears to be a significantly strengthened terms of reference for the national grooming gangs inquiry.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Conservative Party leader Kemi Badenoch said the terms of reference appeared to have been \"significantly strengthened\", but Reform UK leader Nigel Farage said he has \"absolutely no faith\" that the grooming gangs inquiry will get justice for victims.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A photo from the scene shows three police officers taking a suspect, who was allegedly under the influence, into custody", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In each area, the inquiry will conduct 'local investigations' into 'serious failures identified in response to child sexual exploitation by grooming gangs'.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The problem is any third party inquiry is a waste of space unless you can subpoena police officers, social services, civil servants, who were all part of of turning the collective blind eye, and I think everything this Government has done on this issue is an attempt to literally kick the can down the road, to not fully open this up.", "score": 4.25444, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The audit found systemic failures and institutional paralysis had enabled grooming gangs to operate for many years.", "score": 4.25444, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The people behind this showed absolutely no regard for the driver, the local community or police officers, whose lives could have been put at risk,\" she said.", "score": 4.228095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Farage said: \"I've wanted a national grooming gangs inquiry, I've done everything I can to try and push the Government into it.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers and vehicles continued to surround the property on Tuesday, 24 hours after Freeman was killed in a hail of bullets after refusing to surrender.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In its 'terms of reference' published this morning, the inquiry said it would 'investigate how grooming gangs operated and how institutions, including police, local authorities, health services, social care services, and schools, responded to abuse'.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Marcus Johnstone, managing director of PCD Solicitors, said: 'Grooming gangs have not disappeared, but simply evolved their tactics to largely escape detection.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nahom Medhanie was shot dead in a car outside Euston Station in London - Metropolitan Police officers were called to reports of gunshots at 11pm on Saturday", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The grooming gangs inquiry was set up in response to a recommendation from Baroness Louise Casey's National Audit on Group-based Child Sexual Exploitation and Abuse.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage posted on social media showed police officers watching on as an army of feral youngsters stormed through the supermarket.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers in Tontitown had the father call Duggar with a detective on the line, and he again admitted to the actions, according to the affidavit.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Scottish man identified as Steven Lyons, who is described as a senior figure in an international crime syndicate, center, is escorted by police officers at the regional police headquarters in Denpasar, Bali, Indonesia, Tuesday, March 31, 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He described it as a reckless attack, which could have endangered local people and police officers.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Home Secretary Shabana Mahmood said: 'The grooming gangs scandal is one of the darkest moments in our country's history - where the most vulnerable people were abused and exploited at the hands of evil child rapists.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to reports, Brueckner has repeatedly tested police officers' patience in the period since - especially when drinking alcohol.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New footage shows the moment an army of youths caused chaos in a Marks and Spencer shop in London as police officers watched.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A child sexual exploitation survivor has urged the grooming gangs inquiry to investigate every council and police force in the UK after the probe outlined its terms of reference.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "🔴 Police officers who failed to investigate Asian grooming gangs will be held to account by the public inquiry into the scandal, its head has pledged.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Uh, well, the national inquiry into grooming gangs, Hugo, will not flinch from uncomfortable truths, its chair has announced as a three-year investigation begins.", "score": 3.9255500000000003, "claim_types": ["correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Met Police officers then swooped on the scene, with hundreds of children sent fleeing through Soho after the sound of sirens brought the stunt to an abrupt close.", "score": 3.862985, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded to abuse.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'I have full confidence that the National Crime Agency will expose and prosecute the grooming gangs.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Local investigations will be carried out in areas where serious failures have been identified in response to child sexual exploitation by grooming gangs.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tory leader Kemi Badenoch said the terms of reference of the inquiry had been 'significantly strengthened ́ (Yui Mok/PA)", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand helpless in the middle.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Members of the public are entitled to accept the highest standards from police officers and to ensure they do not abuse their power and position.", "score": 3.7404349999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For the families of the police officers and also Freeman's, they will get a clear outline on what occurred through the coronial process.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A dangerous social media trend is turning US cities \"into The Purge\" with police officers overwhelmed after already dealing with Spring Break.", "score": 3.62201, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'That ideology led him to murder two police officers in cold blood,' Albanese said.", "score": 3.563255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The reward was one of the largest ever offered in Australia, and came amid a search involving 450 police officers and members of the defence force", "score": 3.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Met Police officers appear to try and control the group by gently pushing a few of the teens, which has little impact", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Its findings are calamitous for London's transport and policing bodies and for Mayor of London Sadiq Khan: the committee's chair, Marina Ahmad, said that while she expected 'to find a problem, what we found was a crisis'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Greater Manchester Police officers are currently responding to a concern for welfare on Barton Bridge on the M60, reported at around 9:40am this morning.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers are at the scene responding to a concern for welfare.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Met Police officers then swooped in on the scene, with hundreds of children sent fleeing through the streets after the sound of sirens brought the stunt to an abrupt stop.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers were joined by an ambulance crew and they managed to get Gornall to safety.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Underneath the surface, this series is a nuanced character drama about two police officers - and supposed colleagues - operating on opposite sides of the law. Throughout the season, Harry goes head-to-head with his long-time adversary and corrupt detective Tom Waaler,\" reports the Express.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers were spotted at both schools on the Monday and armed officers were photographed at Eastern High in Trowbridge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That came after police officers found Woods slumped at the wheel of his car near his home.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Greater Manchester Police officers are responding to the incident at the scene.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers were seen at both schools on the Monday and armed officers were pictured at Eastern High in Trowbridge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers in Lanarkshire have issued advice to residents over keyless car theft.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police officers search the area.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Their Sky History show examines unsolved murders, miscarriages of justice and milestone cases that have changed the law, and the co-hosts speak to historians, police officers, victims' families and a number of other contributors along the way.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just a few seconds later, police officers in the parking lot walked back to the car and realized their suspect had fled.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New video shows the moment an army of youths caused chaos in a Marks and Spencer store in London as police officers watched on powerless.", "score": 3.5194, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Devices were seized, and analysis discovered 64 \"child sexual abuse material files\" which were deemed to be category C.", "score": 3.450375, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'The initial draft did not, amongst other things, examine ethnicity and religion, nor did it ensure those in positions of authority like politicians or police officers would be investigated.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Oldham is the only area that has been confirmed, it means that local investigations won't begin until at least a year after Sir Keir Starmer announced this national inquiry, that itself came after his U-turn because he previously insisted that a national inquiry into abuse was not necessary.", "score": 3.436025, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He had been on the run since August 26 after killing two Victorian police officers and injuring another when cops raided his remote Porepunkah property over historic sex offence allegations.", "score": 3.4142900000000003, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police who failed to investigate child sex grooming gangs will be held to account, the new independent inquiry's head pledged today - as she promised issues of ethnicity, culture and religion will also be scrutinised.", "score": 3.40507, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The street value of the retrieved cocaine was estimated between £719,040 and £898,000.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Stats out in 2024 show Black men were 2.4 times as likely to be arrested as white men and Black people were 3.7 times more likely to be stopped and searched compared to white people.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across no less than a third of the country, not a single case of this devastating crime was cracked by constabularies.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Excesses are regularly in the thousands.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ten police officers had attended his property he shared with his wife, Mali and their two children, to serve a warrant on August 26 2025.", "score": 3.2291, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Longfield said that the inquiry will examine cases in which public officials and police officers were reluctant to investigate allegations because of concerns about how it may look.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And Sarah Champion, Labour MP for Rotherham, who first called for action on grooming gangs, has criticised the amount of time the inquiry has taken to get going and believes its budget would be better spent on supporting the National Crime Agency bringing gangs to justice.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The 13-year-old girl from the Bayside area was charged with 52 offences including reckless conduct endanger serious injury, multiple counts of theft, multiple counts of theft of motor vehicle, burglary, handle stolen goods, and threaten physical harm or property damage on ground of a protected attribute.", "score": 3.1637750000000002, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The £65m inquiry, to conclude no later than March 2029, 'will examine why children were so often disbelieved, dismissed, or blamed for their own abuse'.", "score": 3.09782, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Overall crime on the network has risen almost eight percent in the last three years alone.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of all public transport crime reports in 2025 almost a fifth, 4,593, related to VAWG and another 1,724 were incidents of hate crime.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only a handful of incidents ever led to a charge, and a suspect was not identified in 58 per cent and 66 per cent of VAWG and hate crime incidents respectively.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Almost half of travellers - 45 per cent - say they're either 'very' or 'fairly' worried about being harassed while commuting, and more than half say they have little to no confidence in TfL, the Met and the BTP to take action.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just 1 per cent of these disgusting robberies leads to anyone being punished.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NCHIs were introduced in 2014 by the College of Policing, and saw a 400% increase in police recorded hate crimes in the decade from 2012, based on analysis of force figures.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In its report, the Independent Scrutiny and Oversight Board (ISOB) said just six of the 44 forces covered by the PRAP have publicly acknowledged institutional racism.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With a further 240 RSOs either in custody or in hospital.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crime on London's public transport network has risen by almost 50 per cent since the pandemic - with 'unacceptable' levels of violence against women and girls, according to a devastating new report.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disgraced BBC News presenter Huw was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", "score": 3.08627, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", "score": 3.03734, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The expert warned that if he were set free, his probability of committing another serious offence within two years could be between 30 and 50 per cent.", "score": 2.983715, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A modern day Fagin ran gangs of teenage robbers who stole more than £100,000 worth of mobile phones in two weeks, a court heard.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "COPFS said the street value of the cocaine was estimated to be between £719,040 and £898,000.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of 562 investigations into alleged sex offences reported in 2025 involving CCTV evidence, 250 either had no CCTV available, or was of unusable quality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Arrow MORE: Thieves steal £8,000,000 worth of paintings in just three minutes", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cost of living crisis has made food and beverages an increasingly attractive target, with thefts rising as much as 79% in 2024 according to one report.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shockingly, out of 185,000 cases of forced entry where an investigation occurred last year, the police were unable to identify a suspect in 143,000 of them.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "London TravelWatch estimates as many as 80 per cent of incidents go unreported.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three teenagers charged with murder of girl, 16, who was stabbed to death", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Southport killer Axel Rudakubana, who murdered three schoolgirls at a dance class in Southport in 2024, is alleged to have launched his horror knife rampage out of an incel hatred of women.", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Perth prisoner has been put on the sex offenders register after he was heard shouting rape threats at visiting children, aged between one and eight to one.", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So why does a Californian-based non-working royal, raking in £75m from Netflix and £20m from his book Spare, think a nation facing a cost-of-living crisis should fork out for his security detail, let alone police protection officers?", "score": 2.93986, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'It is a terrible truth that violence, abuse, assault and in the worst cases, murder, can often come at the hands of a partner.", "score": 2.9264200000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We can never eliminate risk entirely, but sexual reoffending rates of RSOs remain very low.", "score": 2.925415, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Brueckner has repeatedly tested police officers' patience since being released from jail, including one incident when he is said to have briefly managed to escape them on a bicycle", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ashley Warren, 41, has been jailed for more than 10 years after owning one of two XL bully dogs that mauled 68-year-old Esther Martin to death at his home in Jaywick, Essex", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A £20,000 reward from Crimestoppers remains in place in connection with the murder of Donna.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is also revealed that across the north-east, there are 469 registered sex offenders in the community.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The law makes it a criminal offence to own or possess an XL bully dog in England and Wales without a certificate of exemption.", "score": 2.8912199999999997, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steven Lyons is escorted by police officers at the Bali police headquarters", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the first police officers, who were unarmed, could not get to Mr McColl.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An aspiring rapper has been jailed for more than 10 years after he was found guilty of owning an XL bully dog that mauled a pensioner to death.", "score": 2.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He is the first juvenile to be charged with murder after the passage of Queensland's controversial \"adult crime, adult time\" laws, mandating he will face a life sentence if found guilty.", "score": 2.8512649999999997, "claim_types": ["quantity", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Arrow MORE: Rapper whose XL bully mauled gran to death is sentenced to 10 years in prison", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children two years ago.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Metropolitan Police detective has been sacked after using sex workers and class A drugs while on trips aboard over a seven-year period.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A former Merkinch youth worker caught with indecent images of children has been jailed for 14 months.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He warns they can often grow into \"altercations that turn into gunplay with potential fatalities\".", "score": 2.805745, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'The biggest development in child abuse happens on encrypted web sites, social media and apps, where the police are hopeless at investigating.", "score": 2.78525, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two women feared for their life after thug put knife to their faces during Glasgow attack", "score": 2.7736400000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In just one raid on the Three store in Woolwich, southeast London, the gang snatched £30,000 worth of goods.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 80% of trucks on the road, estimate the RHA, are from firms with six trucks or fewer.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By most estimates, there are twice as many trucks on UK roads than there are places for them to pull up.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage shows the moment Ashley Warren (left) told police poodles are 'more aggressive' than XL Bullies days before his dogs mauled a grandmother to death", "score": 2.72471, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The teenage boy who accused Mills of serious sexual offences in the 1990s was under 16, it was claimed today.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Seven people suffered serious injuries when a Suzuki Swift mounted a pavement and mowed down pedestrians at 9.30pm in Friar Gate on Saturday 28 March", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disgraced BBC News presenter was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The wound quickly proved fatal and he bled to death on the driveway of the house where he had collapsed. For four of the five men in the BMW those thoughtlessly discarded cigarette butts were to prove their undoing. Each had left traces of DNA on one of more of the cigarette butts.\"", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "PC David Wren, 57, who had been investigating 13 incidents of domestic violence inflicted on the woman ended up exchanging hundreds of personal messages with her.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Perth jewellery maker bit his wife's face in a drunken attack, forcing her to spend £400 on reparative skin treatment to remove his teeth marks.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The chains can be five or six deep, the profit margins getting smaller each time.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About a quarter of all the theft Dawber sees comes from curtain-slashing.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Insurance premiums rise with every claim.", "score": 2.6831300000000002, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A drug dealer fled police in his underwear while his accomplice flooded a bathroom in a bid to flush £10,000 worth of heroin down a toilet.", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A woman was held at knife point when four armed men ransacked her Brisbane home, breaking her finger while attempting to call the cops", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If we are serious about ending violence against women and girls, the system has to work for those who currently trust it least.", "score": 2.671075, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "We are sliding towards becoming a society in which we suffer some of the worst aspects of a police state - above all, an insidious and dangerous erosion of our freedom of speech - with none of the more tolerable aspects of authoritarianism, specifically its stern punishment of petty offenders.", "score": 2.664635, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He quietly watched his victim before walking up to his home and stabbing him", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In addition to raping the woman, who has since died, Brueckner has convictions for child abuse and drug trafficking.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those responsible for the hijacking of a delivery driver and the attack on the PSNI station in Lurgan have nothing to offer our communities but harm, fear, and disruption.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"A teenage boy was taken to hospital with a stab wound to his lower back.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Delivery driver threatened at gunpoint in attack on police station", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died on Saturday morning after suffering stab wounds", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just before 8.30pm yesterday, were called to a report of a stabbing inside McDonald's on Elmhurst Drive.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The investigation related to allegations of serious sexual offences against a teenage boy.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Double cop-killer Freeman was shot dead by an elite specialist police crew after he was tracked down to his rural lair, before firing on cops with a gun he stole from one of his victims.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three teenagers charged with murdering 16-year-old girl", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Shoot her, shoot her,' another man urged.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Teen among three people charged with murder of girl found 'stabbed in back' https://t.co/9jUMuBDXYs", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died at the weekend after suffering stab wounds 'in her back' following an alleged 'row over a boy'.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She had been stabbed in the back and there was quite a bit of blood.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 36-year-old also faces other charges, including attempted murder.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mould - posing as the woman, but using a fake name for her - went on to send the sick clips to a fellow paedophile, who was later snared with the videos.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is understood that Mills' departure relates to a historic police investigation into alleged \"serious sexual offences\" against a teenage boy.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He brandished a kitchen knife and swung at the victim, and caused a piercing wound to his chest.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cop killer Dezi Freeman was shot dead by an elite specialist police crew on Monday", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The hour-long standoff ended in bloody chaos after Freeman shot two officers dead as they attempted to pry open his door.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sen Const Vadim De Waart-Hottart and Det Leading Sen Const Neal Thompson were murdered by Freeman", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Detectives poring over the welter of material released by the US Department of Justice have set up a Gold Group of specialists to look into allegations of sexual offending, including abuse, exploitation and trafficking carried out in the UK.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He died in prison in 2019 after being found hanged in his cell while awaiting trial for child trafficking offences.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The device, which was placed in the boot of the car, has been described as \"about the size of a briefcase\" and was said to have \"carried a huge amount of danger\", putting both the driver of the car and those in the station at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The assessed threat level for dissident republican attacks in Northern Ireland remains substantial.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After her uncle forced her into oral sex, she collected his biological material and presented it to other family members, who subsequently reported the crimes to the police.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Everard was abducted, raped and killed by serving Metropolitan Police officer Wayne Couzens in south London on 3 March 2021.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She was hit on the head and face, strangled then stabbed in the neck.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's rare for drivers to be assaulted, though people within the industry told me stories of drivers being threatened with knives, machetes, baseball bats and, on one occasion, a gun.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I utterly condemn the reckless act of violence overnight in Lurgan directed at the police, which forced dozens of families from their homes and put people's lives at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Police say pregnant mum, 18, shot dead by 29-year-old boyfriend in Philadelphia", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is the moment a man who smothered his ex to death with blue tape the day after they broke up confessed to police 'I've killed my girlfriend' on the side of a motorway.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Neighbour Wayne Mallows described how he tried to save the girl but she had been stabbed in the back.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Baroness Anne Longfield, a former children's commissioner for England, who is chairing the inquiry, said: 'Children across England and Wales were and are sexually abused and exploited.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Chloe Watson was attacked after a party in Austhorpe, Leeds, at 5.55am on Saturday before being rushed to hospital where she was sadly pronounced dead.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage showed the stolen Hyundai sedan making a right-hand turn from the wrong lane and female occupants appearing to yell 'f*** Jews' at the group of Jewish men.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The report into the racist murder of the 18-year-old in 1993 found the Metropolitan Police had been incompetent and was institutionally racist.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A teenage girl \"stabbed in the back over a boy\" reportedly messaged a friend asking to be picked up from an \"out of hand\" house party moments before.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Met police has said the former BBC Radio 2 presenter Scott Mills was investigated in 2016 in relation to allegations of his stanoic serious sexual offenses against a teenage boy.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A teenage girl and boy accused of stabbing a 16-year-old girl to death have been pictured for the first time.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Delivery driver held at gunpoint and forced to take suspicious object to police station", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And the father of another Rotherham grooming gang victim said police and officials who turned a blind eye or covered up the abuse of girls by Asian gangs should be jailed and forfeit their pensions.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A striking thing about the cargo crime crisis is that the firms most affected are doing little to alleviate it.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A fifth arrest has been made after a 16-year-old girl died after being stabbed in Leeds.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is where truck parking is most oversubscribed and where regional crime gangs in Leeds, Liverpool and Birmingham overlap.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Paterson dumped nine kilos of the class A drug concealed in a black box beside a housing estate near Hogganfield Loch in the city's East End.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Following Wheeler-Spink's arrest, officers discovered two lock knives, a dagger and a knife in a sheath alongside almost £12,000 worth of cocaine and cannabis.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She added about 100 homes have been evacuated as a result of the incident and that a controlled explosion has taken place.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Judge Talbot-Hedley said there was 'a clear power imbalance' in their relationship with him being a police officer and her being a victim of domestic violence involving 16 cases of abuse in 2021.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Modern-day Fagin ran gang of teens to steal £100k of phones in two weeks and used old man with Motability car as getaway vehicle", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At a previous hearing, the court heard how Paterson had thrown a box of cocaine worth hundreds of thousands of pounds from a car window into the street during a police pursuit in March 2023.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Another of McGowan's phones was confiscated which held a video displaying what seemed to be 11kg blocks of cocaine and heroin.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A fifth teenager, a 17-year-old boy, was arrested on suspicion of murder on Monday after four others were held over the weekend.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "During the one-and-a-half day hearing the panel heard that the senior officer sent sexually inappropriate messages to his younger, more junior, colleague whilst on and off duty, over several months.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A senior South Wales Police officer who \"should have been a role model\" preyed on a younger, more junior colleague for months with \"malign intent for sexual gratification\".", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Given the seriousness of the allegations and the risk of the suspect fleeing, the DPCA requested preventive detention, along with additional measures including a search of his property and access to his digital data.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The bullet struck the officer below his bulletproof vest, mortally wounding him.", "score": 2.58268, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If carried out by dissidents, it would be one of the most serious attacks since the shooting of senior detective John Caldwell in Omagh in February 2023.", "score": 2.57747, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The online appeal had raised more than £13,000 by Monday evening.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He travels about 30,000 miles a year and brings his own sandwiches.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Footage shows the moment an aspiring drill rapper told police poodles are 'more aggressive' than XL Bullies just days before his dogs mauled a pensioner to death.", "score": 2.56732, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Met, with a workforce of 33,293, had the highest number of dismissals, followed by Greater Manchester, Thames Valley and West Midlands forces.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The biggest breakfast show in the country currently brings in a weekly audience of some 6.5million, after listeners lost under Mills' predecessor Zoe Ball returned.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "People clash with Serbian police officers during a local election, in Crvenka, small town located in the municipality of Kula, Serbia, Sunday, March 29, 2026.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crime dipped three percent on buses, 2.7 per cent on the Docklands Light Railway and 40 per cent on Trams in the same time period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Last year we received a 20 per cent increase in reports, showing us that more passengers know how to report crime to us and have the confidence to do so, knowing they will be believed and taken seriously.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Phone records reveal that on one instance, 70 messages were dispatched to numerous contacts within a 10-minute timeframe.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nottinghamshire Police detectives confiscated assets belonging to McGowan including £28,186 in cryptocurrency and bank holdings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since 2017, when Dawber joined Navcis, the number of cases that reach him have more than tripled, to about 5,000 each year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Drivers can reach it from the ports at Dover and Felixstowe; drivers departing Leicester with goods can reach 95% of the country in their allotted driving time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the College of Policing, the Metropolitan Police had 183 of the 735 UK-wide dismissed in the year to March 31, 2025 - about one in four.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A relative of Chloe's has launched an online fundraising appeal which had accumulated nearly £15,000 by Tuesday morning.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of Chloe's relatives has set up an online fundraising page which had raised nearly £15,000 by Tuesday morning.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Between 2023 and 2025, crimes on the Underground rose 12.5 per cent, while they rose 60.4 on the newest part of the network, the Elizabeth Line, and rose 15 per cent on the Overground.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research published this week shows British police forces failed to solve 92 per cent of burglaries in a year ending last March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mills receives between £355,000 and £359,999 per year for his BBC duties, based on the 2024-2025 remuneration report.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When accounting for lost revenues, VAT and insurance costs, cargo crime is estimated to cost the UK economy about £700m a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ever since, about 70 or so companies pay an annual fee (from £700 to £2,500 depending on turnover) for access to the one-man cargo-crime department that is Mike Dawber.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of the 5,000 cases that Dawber deals with each year, only 300 or so result in arrests.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the 500,000 present, there were just 25 arrests reported, two of which were for protesters attempting to climb columns at the National Gallery, and 18 of which were due to alleged support for Palestine Action.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "British police forces failed to solve more than nine in ten burglaries in a year ending last March", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Four of the seven victims - four men and three women aged between 36 and 52 - have been discharged from hospital, police confirmed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mills, who earned between £355,000 and £359,999 annually for his work at the BBC, according to the 2024-2025 pay report, was reportedly sacked over the weekend.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Witnesses reported seeing more than 10 police vehicles at the hotel on Monday evening.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dawber didn't know what eyelash technology was, exactly, but he later learned that a pallet of it was worth more than £500,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One supermarket chain fired 75 drivers last year on suspicion of collusion with thieves, yet the firm only reported seven of those to the police.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When they did, they substantially downplayed the size of the protest, quoting a Metropolitan Police figure suggesting 50,000 attendees - around 10% of what was reported almost everywhere else.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "City of London Police had six - taking the total across the capital to 189.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After dedicating over 25 years to BBC radio and television output, he stands as the broadcaster's 11th highest-earning presenter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When I first spoke with him last spring, he was investigating a case of stolen plastic drinking cups worth about £70,000, and laptops worth £250,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This was on top of the 1,300 investigations each year he assisted, the 300 or so arrests in which he played a key role, and the 50 or so police operations, from stakeouts to searches, he took part in.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of those, only about 10% result in convictions.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 20 officers were in attendance on Well Road on the day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The inquiry has a maximum duration of three years, to conclude no later than March 2029, and has a budget of £65 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Glasgow drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around 48,000 crimes were reported across Transport for London (TfL) services in 2025 - up 46 per cent against a pre-pandemic average of 16,544.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the members of Yarword's company, there were more than 400 losses of this type in 2024, compared with a handful of thefts from truck stops.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Given the most recent statistics indicate 11.2 arrests annually per 1000 people in England and Wales overall, for 0.005% of march attendees to have been arrested on any charge shows that Saturday's march was extremely safe and peaceful, and claims or predictions of \"unrest\" were nothing short of anti-leftist scaremongering", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'This proactive approach saw a 44 per cent increase in arrests last year, while shoplifting across London fell by four per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It currently sits as the fifth most-watched TV programme, and presently maintains a 90% score on review aggregator Rotten Tomatoes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three people have been charged with murder over the fatal stabbing of a 16-year-old girl in Leeds.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three teenagers have been charged with the murder of a 16-year-old girl who was found stabbed in the back in the street.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two members of the group remained outside, one sitting on a bike and the other patrolling the pavement, waving a huge machete to ward off any intervention.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three people were charged with murder today", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two males, aged 17 and 18, have been arrested and charged in connection with assault to endangerment of life, breach of the peace and weapons offences.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gunmen hijacked a car, placed a device inside and forced the occupant to drive the vehicle to a police station in Northern Ireland on Monday, prompting a security alert and the evacuation of about 100 homes.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For six of the raids, teenagers wearing gloves, balaclavas and hoodies stormed into the shops threatening violence to staff as they stuffed their bags with phones.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The man in question had a £1,000-a-week crack habit.", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We're describing this as a viable device so yes, we would say lives were at risk,\" he said.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scott Mills 'probed by police over serious sex offences against teenage boy'", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The schoolgirl later died in hospital from knife wounds to her back.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The text alerted users that the line was actively accepting orders and customers would call the Vic Line number to purchase drugs.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bar staff laughed in face of machete robber thinking he was 'prankster neighbour'", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Warning for millions as rising energy bills could hit £27,286 per year", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Read more: Energy bills predicted to surge by nearly £300 a year from July", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average energy bills in the UK are also forecast to rise an average of £288 a year from July for a typical dual-fuel household.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July while motorists are already counting the cost of the war, with drivers paying £544 million extra for fuel since the US-Israeli bombing campaign began.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills https://t.co/JvIVvWPeg9", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills are predicted to surge by nearly £300 starting from July.", "score": 5.1947600000000005, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills are predicted to surge by £288 in July because of the ongoing Middle East war, households have been warned.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict (Yui Mok/PA)", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills are expected to soar by £288 a year from July after Donald Trump's war in Iran sent wholesale costs rocketing.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ed Miliband's 'mad plan' slammed as energy bills to rise by £288 a year from July", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills predicted to surge by £288 a year from July as rise 'unavoidable ́", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills 'to rise by almost a fifth' in just three months", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's a mad mechanism that in 2023 added 43 billion pounds to our energy bills unnecessarily.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This caused people's energy bills to drastically increase - although the Conservative Government provided financial support to all households.", "score": 4.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The forecast hike is £288 a year higher than the £1,641 cap on energy bills set for April to June after the Iran war pushed the UK's gas market past three-year highs in recent weeks.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills 'to rise by almost a fifth' in just three months https://t.co/Mf6hLucbfI", "score": 4.9398599999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills predicted to surge by nearly £300 a year from July https://t.co/h8bqxvMjCj", "score": 4.9398599999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "5 million people in our country can't afford to pay their energy bills, why are they paying VAT on top of that?", "score": 4.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cheap Power Plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", "score": 4.90684, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", "score": 4.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of households are being offered the chance to slash their energy bills", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister pointed to the reduction of energy bills by £117 a year for the average household, a rise in the national minimum wage to £10.85 and in the national living wage to £12.71, the start of the £1 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of households are being handed the opportunity to cut their energy bills by nearly £100 annually - with a simple change.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills predicted to surge by nearly £300 a year from July", "score": 4.66777, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills in Great Britain forecast to hit almost £2,000 a year this summer", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy price cap forecast to hit £1,929 in July but that's LOWER than feared", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be £300 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be by £288 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Institute of Grocery Distribution has warned that a shock spike in energy bills could heap an extra £150 on the average household's annual grocery bill.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It already has the highest inflation in the G7, and investors also fear it could embark on a borrowing splurge to protect households from surging energy bills.", "score": 4.641985, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills is forecast to jump in July after a three month reprieve following an April cut", "score": 4.62122, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lorraine Hammer, 79, was thrilled to get solar panels attached to the roof of her Ontario house so her costly energy bills would drop in price, but instead she's been left shelling out more cash for nothing in return.", "score": 4.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", "score": 4.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of households are being offered the chance to slash their energy bills by almost £100 a year - by shifting when they use electricity.", "score": 4.562435, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ofgem has announced that the energy price cap will fall from £1,758 to £1,641 in April for the average household.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average pump price of a litre of unleaded petrol in the UK stood at 148.8p on Monday March 30, up 4.6p week on week and a jump of 16.6p, or 13%, since March 2, according to figures published by the Department for Energy Security & Net Zero (DESNZ).", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Back in September 2022, PM Liz Truss tried to shield households by capping average energy bills at £2,500.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This follows further announcements made on March 16 including cutting the energy price cap until the end of June, extending the cut in fuel duty until September, and providing £53 million for households that are most exposed to heating oil rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to £2,394 on average.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Government estimates that a typical UK home could save £70 to £110 a year on their energy bills from plug-in solar, meaning a family could make their money back in around four years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If customers commit to every Sunday Saver challenge and flex their energy use, they could achieve an average of 266 hours of free electricity on Sundays, and £96 on their annual energy bills.\"", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Household energy bills could also increase by £288 a year in July, according to latest forecasts from analysts Cornwall Insight.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They talk about average household energy bills falling by over 100 pounds from tomorrow.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cornwall Insights estimates revised July energy price cap at £1,929, a rise of £288 on April's price cap.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those who completed every challenge throughout 2025 built up an average of 266 hours of free electricity across the year - worth around £96 off their annual energy bills.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a post on social media, they pointed out that the Ofgem energy price cap is dropping on Wednesday by 6.7%, and this means your bills may drop too.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest forecast by Cornwall Insight is a slight fall from its forecast earlier this month, which had seen the energy price cap surging to £1,973 in July.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When it comes to the energy needed to operate machinery or equipment, 78% of small businesses said they were affected by rising energy prices, with 41% of respondents saying they would have to pay more than £1,000 extra a month to cover energy bills.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government changed the law so that wind farms no longer have to provide expensive and time consuming like for like compensation for the birds they kill.", "score": 4.543855, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average council tax for a typical band D property in England is currently £2,280.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The typical household will spend £1,641 a year on gas and electricity bills, according to the regulator Ofgem's energy price cap.", "score": 4.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prosecutors had argued that Jones and Dowling bribed Public Utilities Commission of Ohio chair-to-be Sam Randazzo for legislative and regulatory favors, most notably his work championing House Bill 6, a $1 billion bailout for two aging FirstEnergy-affiliated nuclear plants at the center of the bribery scheme.", "score": 4.49814, "claim_types": ["quantity", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A typical home with rooftop solar panels could save around £500 a year on its energy bills, according to Government figures.", "score": 4.4978, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills forecast to surge by £288 a year from July due to Iran war", "score": 4.491165, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There are fears that the conflict in the Middle East will trigger a crippling hike in energy bills in Britain this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As part of its local elections campaign, the Conservative Party have also called for a cut in VAT on domestic energy bills and the scrapping of green taxes on power generation, saying these measures will cut bills by £200.", "score": 4.431615, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of EDF Energy customers can cut their energy bills by up to £96 a year with a simple change", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Conservatives are urging Ms Reeves to slash household energy costs by £200 immediately by taking VAT, taxes and levies off energy bills.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"The Government must adopt the Conservatives' Cheap Power Plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny. We would cut bills for everyone rather than taxing working people to fund yet another bailout for people on benefits.\"", "score": 4.398595, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The energy price cap is the maximum amount of energy suppliers can charge you for each unit of gas and electricity, as well as the standing charge to have your home connected to the energy grid if you're on a standard variable tariff.", "score": 4.386215, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills will increase by almost a fifth when the price cap is next updated in July, according to energy market experts.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Ofgem energy price cap is expected to leap by 18 per cent after June as households brace for the impact of spiralling oil and gas prices.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills are not yet increasing in line with the crisis in the Middle East but are expected to go up later in the year as a result.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills expected to rise again in July, with forecasts predicting an 18% increase", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Treasury is set to rake in billions from higher VAT on fuel and the windfall tax on oil and gas.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills 'set to soar by £288 more a year' due to Iran war https://t.co/68uq6ZPRQm", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills could increase by £288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem's price cap, according to the latest forecasts.", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills could increase by nearly £300 a year in July due to the Iran war, experts have warned.", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shadow energy secretary Claire Coutinho said: \"The Government must adopt the Conservatives' cheap power plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", "score": 4.349745, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Latest forecasts by experts at Cornwall Insight predicted that Ofgem's energy price cap from July to September will be £1,929 for a typical dual fuel household.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This Bill would stop the lawfare and free our oil and gas industry to start drilling, creating new jobs and bringing in revenue to get energy bills down.", "score": 4.33582, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The government is under mounting pressure to announce what help it will provide with energy bills from the summer onwards as households are facing a huge surge due to the Middle East war", "score": 4.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.5}} +{"sentence_text": "Sir Howard, a former deputy governor at the Bank of England, warned that 'splurging' money on a big energy bills bailout could panic international investors and send borrowing rates even higher.", "score": 4.276675, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of households are being given the opportunity to reduce their energy bills by nearly £100 annually - by adjusting when they use electricity.", "score": 4.240835, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Today, millions of people up and down the country will see energy bills go down by £117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this Government has taken.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The energy price cap that governs most people's bills could be less than previously feared from July, according to a respected forecaster.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cornwall Insight has published its latest forecast for the energy price cap, and claims household energy bills will increase by almost a fifth in July.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cut to the energy price cap comes on top of the £150 Warm Home Discount that around six million families will have received this winter following its expansion last year.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The energy bills price cap is expected to increase in the summer by £332 to £1,963 annually", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While Ofgem's latest price cap will reduce energy bills by £117 on average, this saving will be more than cancelled out by increases elsewhere.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "From tomorrow, the new energy price cap kicks in and will save the typical working family around £117 a year off their energy bills.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", "score": 4.224345, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Today, millions of people up and down the country will see energy bills go down by £117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this government has taken.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax bills will rise by as much as 15 per cent on April 1.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tomorrow's change to the energy price cap comes alongside a raft of annual rises for households, including hikes to water, broadband and council tax bills.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She believes thrift cuts her energy bills by almost two-thirds.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although UK energy bills have not yet risen because the price cap was set beforehand.", "score": 4.186764999999999, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Catch up now on yesterday's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to @ClaireCoutinho the shadow energy secretary, who says the Government could cut your energy bills by drilling more in the North Sea, but chooses not to...", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "This election will boil down to a straight choice for the people of Scotland - a permanent cost-of-living crisis under Westminster or lower energy bills with independence", "score": 4.150510000000001, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Are you saying it's likely that energy bills don't rise after July?\"", "score": 4.1384050000000006, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The BRC said the Government could fuel further inflation if it fails to listen to calls for relief from looming costs, including red tape on workers' rights and green levies on energy bills.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Miliband is slamming his foot down on the net zero charge, and driving us into a ditch.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, some fixed tariffs can be lower than the energy price cap, so it might be worth shopping around for the best rates, according to Martin Lewis.", "score": 4.088055000000001, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The rise in energy bills is likely to spark fears among economists that inflation will surge in the middle of the year as a chain reaction of higher prices dampens consumer demand and knocks GDP.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The exact discount you'll receive on your energy bills will depend on the size of your household and the type of household, as well as the location, building type, how you pay your bills, and how much energy you regularly consume.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", "score": 4.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Department for Energy Security & Net Zero publishes monthly figures on the average price of heating oil.", "score": 4.0467200000000005, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Recalls yesterday from opposition politicians for the government to remove VAT from household energy bills for the next three years.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But people will know that whatever happens over the next three months in the Middle East, energy bills will be lower here.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is growing pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Principal consultant Dr Craig Lowrey said a surge in energy bills was \"pretty much unavoidable\" as international market changes will now have been \"baked in\" to forecasts.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kemi Badenoch has been talking about this for a few days, but she also keeps saying it's not actually going to reduce bills even if we do drill.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rachel Reeves thinks our net zero targets to the answer to the economic crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kemi Badenoch has urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Household energy bills set to soar by £288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills set to soar by £288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn https://t.co/8LhrGd37kQ", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Households looking to cut their energy bills could get free electricity on four days over the coming weeks under a scheme from EDF Energy.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But they can know that from tomorrow, because of the energy price cap, bills will come down rather than going up.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This will pile more pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "What I can point to to go back to my original point is, you know, people thinking about what's happening tomorrow, they know that their energy bills will come down.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer will chair a meeting of the Cobra crisis committee to consider the impact on households and the wider economy from soaring energy costs.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "🗓️ TOMORROW's energy price cap fall will put more money back into the pockets of families across #CardiffEast.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "MSE shared a warning ahead of April 1, reminding Brits that energy bills are about to change.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But equally, I think if there are big rises in energy bills to come, and we don't yet know if there are, then the government might need to go further in terms of providing targeted support to some households.", "score": 3.861005, "claim_types": ["correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Cornwall Insight said a hike in energy bills this summer is 'pretty much unavoidable' - and they warned an even greater hit to household finances could come in October.", "score": 3.851805, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy bills could increase by £288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem ́s price cap, according to the latest forecasts (Jacob King/PA)", "score": 3.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So I think our tax system needs a whole bunch of reforms and I would start with taking VAT off of energy bills and I would add it to flying to keep it fiscally neutral.", "score": 3.7754250000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Absolutely, of course, it should be used to alleviate the burden that is being faced by motorists and indeed households right now, but what would be far better for the country would be if they were to remove the windfall tax, remove the energy profits levy from the oil and gas industry so it could generate yet more revenue from the treasury.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Greg Marsh, CEO of Nous.co, said: 'This calculator shows how quickly lower energy bills are cancelled out by other rising costs.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "On the environment, both offshore and onshore wind farms encroach far more on the British coastlines and countryside, and the species that live there.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The increased windfall tax take was based on analysis of Office for Budget Responsibility figures from 2025 by Chris Wheaton, of financial services firm Stifel.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Tune in now to today's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to shadow energy secretary @ClaireCoutinho who says the Government could cut your energy bills by drilling more in the North Sea....", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Cornwall Insight has published its latest forecast for the energy price cap, ahead of a fall in gas and electricity bills coming into effect tomorrow.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "President Donald Trump has apparently told aides he is considering ending his military campaign even if Tehran does not reopen the critical Strait of Hormuz - through which around a fifth of the world's oil supplies normally pass.", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Welsh Conservative spokesperson said \"this one-off payment will only go so far for families already under pressure\", adding that the UK Conservatives had launched an enhanced Cheap Power Plan to cut energy bills by £200 to help families with the cost of living.", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The energy price cap will fall on April 1 (Picture: Getty Images)", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And are you saying it is likely then that energy bills don't rise after July?", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There should be no mass subsidy of domestic energy bills.", "score": 3.712335, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "You know, I think a lot of people will be seeing the news from the Middle East and will see the instability and the uncertainty and might be worried about what's going to happen to energy bills in the months ahead.", "score": 3.6825799999999997, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For example, one thing the government could do that would be short of the probably unaffordable universal support provided in 2022, would be some sort of targeted discount on energy bills for low income households.", "score": 3.661095, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Jørgensen said although he doesn ́t foresee a repeat of the 2022 natural gas crisis where companies reaped huge profits from a massive gas price hike, a one-time \"windfall tax\" on such companies \"is a possibility.\"", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The National Emergency Plan for Fuel is produced by the Department for Energy Security and Net Zero.", "score": 3.61976, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "📉 Our @UKLabour Government is taking decisive action to lower energy bills.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yeah, I don't think we should have VAT on our energy bills at all, because VAT is a luxury tax.", "score": 3.5980049999999997, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But what we can do is to shield people from those prices on their energy bills through the energy price cap that I've talked about, and also by making contingency plans for the future.", "score": 3.566845, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Unlike households, these businesses are not shielded by an energy price cap and have more energy requirements, according to Novuna.", "score": 3.562025, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Through its partnership with SGN, they've been handing out energy packs to support people in fuel poverty.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The forecast Cornwall insight has raised its forecast for the July energy price cap.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The estimates come as Sir Keir Starmer hosts another Cobra emergency meeting over the looming hit from the Iran crisis, with the Tories insisting he take action instead of holding more talks.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Sir Keir Starmer is hosting another Cobra emergency meeting today over the looming hit from the Iran crisis", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kemi Badenoch urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Energy consultancy Cornwall Insight said a hike in Ofgem's energy price cap was now 'effectively unavoidable'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy and Net Zero Secretary Claire Coutinho was questioned on #BBCBreakfast about plans to annually award licences for oil and gas projects in the North Sea", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Kemi Badenoch and other figures on the right have shouted about exploiting North Sea gas instead.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Reform said Labour had undermined energy security with net zero madness and the Welsh Conservatives said the help would only go so far for families already under pressure.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Speaking to the Press Association on a visit to Hertfordshire, she said the Tories would cut VAT off energy bills for three years and scrap \"unnecessary\" green levies.", "score": 3.541385, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Separate figures showed the collective debt of two million British households to their energy supplier reached a record high of £4.55bn at the end of last year, according to official data published by Ofgem, after climbing by £7m over the final three months of 2025.", "score": 3.5163600000000006, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform has also announced tax cuts on VAT on domestic fuel and green levies, including the Carbon Price Support and Renewables Obligation, but has not said how it would fund any of these cuts.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Martin McCluskey, the Minister for Energy Consumers, said: 'Action taken by this government on bills will see the energy price cap coming down from tomorrow.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Martin McCluskey, Minister for Energy Consumers, said: \"Action taken by this government on bills will see the energy price cap coming down from tomorrow.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The party claims more drilling would secure cheap, reliable energy and cut energy bills - in addition to making Britain more resilient to global energy supply and price shock.", "score": 3.4269350000000003, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock as he warned: 'The Government can't do it on its own'.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Addressing leading figures from multinationals, including Shell, BP, Centrica and HSBC, the PM acknowledged public fears that the economic impact is 'going to hit them and their families and their households... and I think probably uppermost in their minds at the moment is energy bills, petrol and also food prices.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Traditionally, tumble driers are one of the biggest energy eaters - costing households as much as £275 in electricity a year, which Katherine is now able to save.", "score": 3.4061450000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to new data, since the Iran war, 82% of UK small businesses have already felt the impact of rising energy prices.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, it has twice the power output of the above and will last for twice the time so the real comparison figure is one fourth - £10bn - and, of course, it will kill no wildlife.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK Chancellor earlier this month confirmed that more than £50 million will be provided for low-income families who have to heat their homes with oil.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The closure of the Strait of Hormuz has put pressure on global fuel supplies, with diesel reaching more than $3 a litre in Australia and more than 500 service stations suffering from petrol or fuel shortages in NSW and Victoria.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "No, I think people should go about their lives as normal, knowing that the government is taking action to bring energy bills down.", "score": 3.363845, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "This would be in contrast to the universal support provided by the previous Tory government in 2022, when Russia's invasion of Ukraine caused energy bills to soar.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform used a press conference at Heathrow Airport today to criticise net zero policies and announce their plan to scrap Air Passenger Duty on short-haul flights if they won power.", "score": 3.299735, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Reduce by 50% - gain the maximum 16 hours weekly", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He said: \"With around 22 million households on their supplier's Standard Variable Rate, most are paying the maximum allowed by the regulator. Check your current contract, and if you haven't switched in the past year, it's likely you'll be free to leave - and you could save up to £917.\"", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about £40 from a DIY store, which can be used to water the garden rather than using a hosepipe.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "THE latest forecasts suggest household energy bills are set to soar as a result of wholesale costs caused by the Iran war.", "score": 3.2544399999999998, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Conservative leader Kemi Badenoch said her party's Get Britain Drilling Now Bill would \"stop the lawfare and free our oil and gas industry\".", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The energy price cap, which was announced by Ofgem before the Iran war began, will see costs fall between April and the end of June - but that will change again in July.", "score": 3.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Dickinson also flagged charges added to businesses' energy bills, echoing criticism from Marks & Spencer boss Stuart Machin last week, who said these were 'just not sustainable'.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Indeed, prices have nearly doubled since the start of the war.", "score": 3.17364, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In addition, more than three in four small business owners said business worries keep them awake at night with concerns over economic volatility and geo-political uncertainty reaching a record high (52%).", "score": 3.134055, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Respected energy analyst Cornwall Insight has said electricity costs for businesses have increased by between 10% to 30% since the conflict began in late February, while gas prices have soared by between 25% and 80%.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Government's own numbers say that 93 per cent of the oil and gas which could be extracted from the North Sea fields has been extracted.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The strait usually carries 20% of the world's oil and gas supplies and since it has been closed the global economy has been hit hard with soaring fuel prices.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said the EU's executive arm is preparing a string of measures designed to help families and businesses weather the huge spike in oil prices that have resulted in about a 70% price hike for gas and 60% for oil in Europe.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'They now make up over half our bill.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Strait of Hormuz, which typically handles roughly one-fifth of global oil supply, has seen traffic collapse by as much as 95 percent since the conflict began, according to maritime intelligence estimates, with shipping severely curtailed amid security threats and mounting restrictions tied to Iran's actions.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The impact here of a war more than 7,000km (4,300 miles) away is being felt strongly - with the country's jeepney drivers among the worst affected.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started Feb. 28 when the U.S. and Israel attacked Iran.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "FRANKFURT, Germany (AP) - Europe's inflation rate rose to 2.5% in March, according to official figures released Tuesday, as the Iran war sent fuel prices sharply higher.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's only half the job. They left wholesale prices to be driven by global markets and in the last energy crisis, 2022, wholesale prices over took retail and it bankrupted half the players in the energy market.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Its blockage and the disruption to supply, combined with attacks and stoppages at energy infrastructure across the Middle East, has sent gas prices soaring and the cost of crude surging past 100 US dollars a barrel since the conflict started on February 28.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Conservatives have called on the Government to take urgent action to support all households and businesses by cutting VAT, taxes and levies off energy bills.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He also said that the UK has the most expensive industrial energy prices in the world.", "score": 3.074145, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Make UK estimate that the average cost to a manufacturer will be £100,000, rising to £250,000 by 2030.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And when it comes to energy, consultancy Cornwall Insight has said that bills could go up by £332 in July when Ofgem sets the new price cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the end, the final cost was closer to £27billion, but we can't even afford that today.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Even when you look at the means-tested State pension - which is for people who reach that age without having sufficient social insurance contributions to qualify for a contributory pension, so we know those people are on low incomes - only 56 per cent of those qualify for fuel allowance.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Shutting down the North Sea means we are losing out on £25 billion in tax receipts that we could use to cut bills and reduce the cost of living.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Filling up: Brent crude has reached nearly $117 a barrel as prices for petrol and diesel continue to climb amid fears of a repeat of the 2022 energy crisis", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Small businesses across the UK say that the estimated hike in energy prices following the war in the Middle East will cost them an average of £2,273.90 a month, coming to a whopping £27,286 over a 12-month period.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @DailyTPodcast: By 2035, we would only need to import 6% of liquified natural gas from abroad if we drilled in the North Sea...", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Opposition leaders argue the €250million fuel-relief package announced this week does not go far enough, while one leading economist said wealthy people driving 'big SUVs' will benefit most from the measures.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since the start of the war, the EU ́s bill for imported fossil fuels has jumped by 14 billion euros, according to Jørgensen.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Diesel went from about €1.72 per litre to €2.30 cent per litre, meaning an increase of 11 cent per litre in the 23 per cent VAT take.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They said rising energy prices mean they will pay an average of £753.56 more each month for transport, travel and logistics and an average of £734.42 more each month to heat their office/workplace.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"This is why people are now concerned that there's a developing shortage of diesel and jet fuel - jet fuel prices have gone up 50% since the war began and I think they'll go up further.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Chancellor can expect a multibillion-pound windfall in tax as the war drives up energy prices at petrol pumps", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Mumbai - a city of more than 22 million people - as many as a fifth of all hotels and restaurants fully or partially shut in the first weeks of March.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The concept of fracking has the support of 41 per cent to 30 per cent opposed.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Farage stated that household bills have been 15-20% higher for \"the best part of two decades\" due to these subsidies.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nuclear projects currently face up to eight separate regulators, multi-year planning battles, and a legal environment where any local challenge can derail nationally significant infrastructure for years.", "score": 2.93752, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Because this is the second one of this decade already, you'll probably realize, it's only 2026, this is our second one, there'll probably be a third one for all over.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nearly everyone in England, Wales and Scotland is benefiting from the cut irrespective of their tariff, although the amounts will vary between households.", "score": 2.88131, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A bath typically uses 100 litres of water while taking a four-minute shower with a £20 water-saving shower head uses just 32 litres.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Every kWh delivered by green energy is less use of oil / gas.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He explained: \"If supplies are cut by 20%, then someone is using 20% less.\"", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A washing machine requires up to 150 litres of water per wash.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mistreatment or hostility will only slow communication and resolution.", "score": 2.867685, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", "score": 2.8610100000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the UK petrol stations have already started to run dry, with closures reported from as far as Northern Ireland to Essex at the start of this week.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "From mortgage rates to the price of fuel, cost of living pressures are increasing and there seems to be no signs of relief anytime soon.", "score": 2.8194, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At the same time, refusing to fully exploit North Sea oil and gas just forces us to import dirtier energy, lose jobs, and weaken our economy.", "score": 2.8109650000000004, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts fear that Brent crude could reach all-time highs of $150 a barrel if the conflict continues.", "score": 2.78611, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With conflict in the Middle East driving volatility in the energy market, the cheapest tariff is now priced at a similar level to the upcoming cap rather than saving you anything.", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, the attacks on energy infrastructure in the region have only served to push prices higher.", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The annual cost of essentials, including council tax and water, will increase by more than £200 from April even before the economic impact of the Iran war is felt by UK consumers.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, there will barely be a chance to enjoy the savings, amounting to around £10 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said that the fuel increases, especially the record increase for diesel, would have a devastating result on the cost of logistics and transportation, with knock-on effects on inflation in coming months.", "score": 2.7756499999999997, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir said he was focused on 'de-escalation' of the crisis that has led to the blocking of the Strait of Hormuz, which normally carries 20 per cent of the world's oil.", "score": 2.76525, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Green energy is the cleanest and cheapest energy available.", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If your provider can't install one, they must offer you an 'assessed charge', which could save you money. Around 2.5 million households are also eligible for social tariffs, with average discounts of around 40%.\"", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The average figures quoted for additional monthly costs are national averages that include those not affected by price rises.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In terms of unit costs under the April cap, the maximum that households on a default tariff are paying is 24.67p/kWh for electricity and 5.74p/kWh for gas, with standing charges of 57.21p and 29.09p respectively.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Water bills in England and Wales are also due to rise, by an average of £33 a household from April, up 5.4% to £639.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some households could also save costs by installing a water meter - those who switch typically save up to £100 a year.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "BT, EE, Plusnet and Virgin Media are all hiking broadband prices by £4 a month, Sky by £3, and Vodafone by £3.50 - adding nearly £50 more per year to bills.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The estimated 22 million households still languishing on their supplier's Standard Variable Rate are paying the maximum allowed by the regulator.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At around £400, these panels are much cheaper than traditional rooftop solar and can be put on balconies, in outdoor spaces or fixed to an outside wall that catches the sun.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Food price inflation came in at a relatively moderate 2.4% while services, a broad category ranging from medical care to haircuts, rose 3.2%.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nuclear power's safety record, measured by deaths per unit of energy produced, is better than oil, gas and coal, and comparable to wind and solar.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While 16% of businesses said they may need to reduce staff numbers, 34% are looking to automation to cut long-term costs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This crucial waterway has global significance for Asia, serving as the gateway for 20% of global Liquified Natural Gas (LNG) and 25% of seaborne oil.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the UK does have among the highest industrial energy prices in the developed world, this is primarily because the country is more reliant on gas for generating electricity compared to other European countries.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Petrol and diesel combined come to €1,195,000 a day.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With 80 per cent of regional energy currently dependent on imported oil, the crisis has accelerated the push for local clean energy generation.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The economy barely grew at the end of last year, official figures confirm, leaving it vulnerable to a further downturn triggered by the latest energy price shock.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is worth noting that current wholesale costs remain well below the extremes of 2022, which means that, despite the turbulence, the scale of this crisis is not yet comparable to the price shock households faced three years ago.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While reducing emissions is a factor, for these nations responsible for just 0.03 per cent of global conditions, the primary driver is energy security.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over two in five said they are likely to raise their prices; 20% said they would reassess their funding arrangements with lenders to free up more working capital; and 17% said now was the time to explore renewable or green energy options to lower costs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "On average, those taking part currently secure approximately 18 hours of complimentary electricity monthly, based on company figures.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has approximately 1.2 billion barrels of onshore crude inventories, Kpler estimates.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The additional revenue includes billions of pounds levied from North Sea oil and gas profits, power generators and VAT on petrol sales.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gas and electricity bills are set to fall by £117 a year on average from April 1, to £1,641 a year for a typical household.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Because back then the amount of goods - not just oil but also fertiliser, aluminium, all sorts of other products - was a lot less than what we are dependent on today.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gas prices are climbing just as quickly, and with 26million UK homes relying on boilers, we're more exposed than most.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Fewer than 30 per cent of people in receipt of the State pension get fuel allowance.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Production has been falling for a long time - last year, production was about 20 per cent of what it was in 2000, near its peak.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On average, customers taking part earn around 18 hours of free electricity per month.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Customers have racked up more than 20.5 million free hours of electricity", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It's always hard to be 100 percent, but we can detect more than 90 percent of what's happening in real time.\"", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Oil has almost doubled from around $60 a barrel to almost $120.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the US, it takes an average of eight years for a hydroelectricity facility to become fully licensed.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mobile customers can save an average of £304 switching from a handset contract to a SIM-only contract.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Electricity is measured in kilowatt-hours (kWh) - with one unit equivalent to a 100-watt light bulb running for 10 hours, or a 200-watt fridge for five hours.", "score": 2.6831300000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We need far more oil and gas as part of our overall national energy situation.", "score": 2.6746749999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The Strait of Hormuz, through which about one fifth of all global oil traded passes, has been a contentious point in the conflict.", "score": 2.67238, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, instead, the first response of the government seemed to be to to whip up a storm about profiteering, which was, you know, extremely unhelpful and, you know, annoyed petrol retailers and actually put some of their staff at risk of, um, verbal and physical assault.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was no reduction in the home-heating oil tax, which Age Action Ireland has predicted will contribute to a 'significant rise' in poverty amongst elderly people.", "score": 2.649215, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Experts are warning that when the Government's quarterly price cap comes in at the end of June, bills are expected to jump by £332 to an average of £1,972 a year.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "What they never add is that they'll rise by almost 300 pounds come July.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, I mean, for example, we had the publication this morning of the latest estimates from Cornwall Insight, a very sensible people who forecast what the off-jam cap might be in July, and they were predicting an 18% rise, which would be clearly very painful, but we're nowhere near as big as the rises that we saw in 2022.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Iran is blockading the Strait of Hormuz in response to air strikes by Israel and the US, preventing about 20% of the world's oil trade from passing through.", "score": 2.648555, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The biggest . challenge] is just the lack of awareness of our solution, but that's really flipped in the last nine months. We still keep our 40-50% tax credit, while wind and solar [equivalents are sunsetting,\" says Davies, referring to the Trump administration eliminating Biden-era federal subsidies for solar and wind energy ventures.", "score": 2.641985, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"There is almost no crude oil arriving\" in Asia currently, and no viable alternatives to energy imports from the Middle East while \"inventories are being depleted\", Maynier said.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Zero Carbon Analytics energy transition researcher Amy Kong said small economies were already spending huge proportions of GDP on fuel imports.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The energy experts warned a rise in Ofgem's price cap in July was 'effectively unavoidable' with rocketing wholesale prices over March now locked into the calculation and little chance that they will fall below pre-war levels in the coming weeks.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other parts of the world in Asia, they're having four day weeks and rationing and stuff like that already because they depend on the Middle East and Gulf states for their oil supply, we don't.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, with gas prices soaring once again - before they even had a chance to recover from the spikes generated by the Ukraine war - it is becoming blindingly obvious that solar and wind power are the way to go.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Labour may have lost grip of the national spirit.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "£400 plug-in solar panels will quietly change the whole country", "score": 2.603815, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The deal hinges on households cutting their usage during peak weekday hours - typically between 4pm and 7pm - when demand on the grid is highest.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He now pays just £70 a month on gas and electricity bills.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over four weeks, that adds up to a maximum of 64 free hours.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But if you wash using the eco-mode setting it can be just 50 litres.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nearly a third of homes in Ceredigion and Powys are reliant on oil, as well as 24% in Carmarthenshire.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That amounts to €1,045,000 per day, based on around 9.5million litres of diesel being sold per day in March 2025.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 7% of households in Wales depend on oil as their primary heat source, but there are much higher proportions in rural communities.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is a 7 per cent drop.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Through the Discretionary Assistance Fund, the maximum award for heating oil has increased from £500 to £750.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That is £148 a month on average - 48 pc more than Gloria.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That equates to roughly £6.6 million in total bill savings", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We've just had another stark report out from the UN detailing just how real and urgent the climate crisis is. Ditching green policies that lower bills, reduce pollution and make our communities safer and healthier, is exactly what I'd expect from a party funded by the fossil fuel industry and billionaires.\"", "score": 2.5649800000000003, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most households in England and Wales will see an increase of about 5% in their council tax, while in Scotland bills will go up by between 4% and 10%.", "score": 2.55971, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fuel costs are the airline group's single biggest expense and accounted for around 30% of its spending in recent months, the spokesperson added.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This all comes with the price tag of £49bn in today's money, making it the most expensive reactor in the world.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average price of unleaded petrol in the UK has climbed to its highest level since May 2024 (Simon Belcher/Alamy)", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's why the nuclear Nimby's safety and environmental concerns must be met head-on.On safety, the accidents that shaped public perception involved older designs and, in two cases, catastrophically outdated regulatory cultures.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"However, the key word is responsible. You can't put something up just for the sake of harnessing the energy, while at the same time doing harm . or potentially doing harm to the environment and the human and non-human life that depend on that environment.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "It is perhaps also worth pointing out to the anti-nuclear zealots like John Swinney that nuclear reactors produce the products required for medical procedures like CT and PET scans and radiotherapy treatment for cancer patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To qualify for the Council Tax Reduction Scheme residents need to be receiving one of the following, and have less than £16,000 in savings and property:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "All in all, her energy saving tricks have cut her monthly bills in half to just £100, she believes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409m for diesel and £135m for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They could total around £12billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That is set to rise by at least €117million this year, with a new rate for carbon tax to be introduced in May.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And according to estimates, the Government was taking in more than €1million extra per day on petrol and diesel VAT alone, ahead of the new relief package, compared to before the Iran crisis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Petrol prices went from about €1.73 cent per litre to €2 per litre, meaning a VAT increase of 5 cents per litre, according to UCD energy economist Ciarán Mac Domhnaill.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That equates to an extra €150,000 per day, based on the CSO's record of around three million litres of petrol sold per day in March 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The CSO's report noted older households benefited the most from temporary supports in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It would represent a £288 rise from the cap set between April and June.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shadow energy secretary Claire Coutinho urged the government to capitalise on North Sea oil supplies as she suggested it could yield £25bn more in tax receipts, which could be used to support households through the crisis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Analysis in The Times has suggested that the government's levies on energy companies' profits was making the government around £20m more a day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cornwall Insight said its prediction for the Ofgem's price cap from July to September now stands at £1929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, this is less than people were originally promised by the Chancellor, as the cut was expected to be around £150.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Octopus Energy, the UK's largest energy supplier, has seen a 54 per cent jump in solar panel sales since the start of the Iran conflict as households look to protect themselves from the scourge of soaring gas prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409 million for diesel and £135 million for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Read more: Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's now predicting it will be 1929 pounds, almost 300 more than its previous forecast.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But their pump prices are slipping like a third higher than they were at the start of the year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Coutinho said: \"Shutting down the North Sea means we are losing out on £25 billion in tax receipts that we could use to cut bills and reduce the cost of living.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under the cap fell by 7% from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shipments from Yanbu have surged to around 5 million barrels per day of crude, along with additional refined products, offering a critical - though incomplete - offset to the disruption of roughly 15 million barrels per day that typically move through the Strait.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million a day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The RAC has also suggested the Government could earn an extra £2billion from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Industry experts Cornwall Insight hiked its latest forecast for Ofgem's price cap by 18% to £1,929 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cap is actually due to fall by 7% to an average £1,641 a year from tomorrow thanks to measures taken by Chancellor Rachel Reeves in the autumn Budget.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average price of jet fuel rose to nearly $200 (£151.45) a barrel on 20 March, more than double what it was in February, according to the latest International Air Transport Association figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The study finds that nuclear generation at Torness has been more than £2 billion cheaper than the market baseload price over this period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On drilling for oil in the North Sea, Britons are supportive by 57 per cent to 15 per cent against.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On average, participants currently earn about 18 hours of free electricity per month, according to company data.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Power supplier EDF Energy is launching four \"free electricity\" Sundays this spring through its \"Sunday Saver\" initiative, offering customers the chance to bank up to 64 hours of complimentary power over the coming month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The most engaged participants in 2025 secured an average of 266 hours free throughout the year", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "82% of UK small businesses have already felt the effects of rising energy prices (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The rise in marine power generation is happening at a time when, across the Great Lakes, electricity prices for residential and industrial consumers have surged.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The current there gets to about 2.3 to 2.5 knots, which is pretty slow for turbine technologies. But it's very easy for Vivace to harness that power,\" he says.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Northern Ireland rates are due to increase between 1.96% and 4.5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Hundreds of licences issued between 2010 and 2024 have delivered the equivalent of just 36 days' extra gas.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While predictions have dipped slightly in the past few days - £44 since 19 March - the forecast still represents... pic.twitter.com/Q2hJm3zDz8", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £33; Potential savings: £100", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price 'hike': minus £117; Potential savings: £338", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Seventeen commodities vessels crossed the the strait over the weekend, 12 of them on Saturday, making it one of the busiest days for crossings since March 1, according to Kpler.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year's energy tax yield breaks down to €2.737billion in levies for petrol and diesel, as confirmed in response to a parliamentary question from Independent TD Carol Nolan - €545million in VAT on gas and electricity, Finance Minister Simon Harris said in response to queries from Sinn Féin TD Pa Daly and €1.174billion in carbon taxes, according to figures from the Government's Tax Strategy Group (TSG).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy prices increased 4.9% percent in March compared to a 3.1% decline in February, Eurostat figures showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Watching the pennies: Energy prices are set to rise from July - but the forecast has been reduced from what was previously expected", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While this would still represent a £288 or 18 per cent rise from April's cap, it is £44 lower than Cornwall Insight's previous prediction of £1,973 per year, made on 19 March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under the cap fall by 7 per cent from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And by the way, it was helping the Tories had decided to jack up the tax rate to something like 75% for North Sea sending a major disincentive.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to £1,973 in July.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In March, flows were about 3.8 million barrels a day, above February ́s 3.2 million but still below the mid-2023 peak of 3.9 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said one day a week of working from home would 'save about a fifth, or around 20 per cent, of fuel consumption'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or £117 a year, to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, esteemed energy analyst Cornwall Insight has projected that the regulator's price cap for July to September will now be £1,929 for a typical dual fuel household - a rise of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Heating is expected to add a further £734.42 each month (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These new findings come at a time when Novuna Business Finance's tracking research revealed the growth outlook of UK small business owners was already fragile, with just 27% predicting growth for the first three months of 2026.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When it came to travel, transportation and logistics costs, 21% of small businesses expected energy costs each month to rise by more than £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The much maligned Hinkley Point C nuclear power station is now reckoned to cost near £40bn.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Government has announced a £53 million package of support for heating oil customers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Diesel has climbed to an average of 182.77p a litre, taking the cost of filling a typical 55-litre family car to over £100 for the first time since early December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A full tank of petrol is setting drivers back £84 after pump prices climbed to an average of 152.83p.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Petrol prices at supermarket forecourts were an average of 7.6p a litre lower last week than at other sites, the AA said, compared with a price difference of 5.4p before the conflict in the Middle East began late last month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is the highest price for unleaded petrol since May 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Diesel peaked at 199.2p per litre in July 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motoring research charity the RAC Foundation estimates the increase in road fuel prices have led to motorists paying a cumulative additional £544 million for petrol and diesel since the start of the conflict.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Switching can save broadband customers an average of £329, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In some - albeit temporary - good news, the price most households pay for energy will fall by 7% from April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fixed energy deals that can save you money have been disappearing from the market, with the best fixed tariff at the moment coming in £9 above the April price cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For July, it predicts that the cap will increase from £1,641 to £1,921, but its confidence in this prediction is very low.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This left 22 million households lumbered with variable-rate deals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The TSG's estimated carbon tax take for this year is €1.291billion, a rise of €117million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "From April 1, the energy regulator's price cap, which controls how much you can be charged, will drop from £1,758 to £1,641, which is a reduction of £117, fixed until the end of June.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This means that a typical household using electricity and gas will see its bills slashed by £117 for three months, or around £10 per month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, forecaster Cornwall Insight has reduced its estimate, cutting it to £1,929 per year for a dual-fuel household with average usage.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'The size of the increase depends on the duration of the conflict.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They went slower and now we've got about, I don't know, about three billion barrels of equivalent reserves which isn't that much.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yesterday, there was little sign of respite as oil prices surged again, with Brent crude climbing to a high of almost $117 a barrel, before falling back.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to Cornwall Insight, that will mean an increase of £288 or 18% in annual bills.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to analysis for The Times, the Government is set to get around £3.5billion a year from the energy profits levy on North Sea oil and an extra £2.4billion from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Torness nuclear power station saved Britain's electricity system more than £2 billion since the 2021 energy crisis, according to industry analysis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is, clearly, a collective exhaustion with the cost of living, such that even local fracking is not a non-starter for more than a third of the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy giant EDF Energy is rolling out four \"free electricity\" Sundays this spring under its \"Sunday Saver\" scheme, with customers able to earn up to 64 hours of free power over the next month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The most active users in 2025 earned an average of 266 hours free across the year", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the headline offer of \"free electricity\" may sound generous, it requires households to actively shift when they use power - and in some cases cut peak usage by up to 50%.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "EDF suggests the scheme could slash roughly £96 yearly from bills for the most dedicated participants.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That is nearly four months of its overall seaborne crude imports, which cushion short term impacts from the war.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite the PM's stark warnings, last night it emerged that the Government is reportedly raking in an additional £20million a day through taxes and levies linked to oil and gas price rises.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For a household on a tariff governed by regulator Ofgem's price cap, and using a typical amount of gas and electricity, the annual bill will drop to £1,641.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest forecast by analysts at energy consultancy Cornwall Insight suggests the household with typical energy use will pay £1,929 a year from July, an 18% rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She says she has calculated that by just boiling enough for half a dozen cups a day, it can save almost £90 over the course of a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cost of phones and broadband are expected to rise by an average of £39.60 for an annual bill and £27.60 for a typical mobile contract, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average diesel prices on Tuesday stood at 182.8p per litre, up 40p since the start of the conflict on February 28.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figures estimate how much extra the rise in pump prices has cost UK drivers in total, compared with what would have been spent on petrol and diesel had prices remained at the same level they were on February 27.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average price per litre of gas oil stood at 99.5p in March, up 51% from 66.0p in February and the highest monthly figure since November 2022, when it reached 128.1p.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under the cap fall by 7% from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the Government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £72; Potential savings: £633", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, the reduction is lower than the average £150 cut to bills pledged by the Chancellor in November, when she moved 75% of the cost of the renewables obligation from household bills onto general taxation and scrapped the energy company obligation (Eco) scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of those, 120 were by oil tankers and gas carriers and most were travelling east out of the strait.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cheapest deals were fixed-rate tariffs, with variable rates normally reserved for households that had reached the end of their cheap tariff and not switched.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The relief package announced on Tuesday includes a 15 cent per litre reduction on petrol, 20 cent per litre off diesel and the removal of the two cent per litre National Oil Reserves Agency levy, all in effect until the end of May.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures collated by the MoS show that €4.456billion - 18 times the value of this week's package - was collected in energy taxes last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under the cap fall by 7% from April 1, or £117 a year to £1641, driven by the UK Government's pledge to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is an increase of £288 - or 18 per cent - on April's cap set by the energy regulator.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Roughly 60% of its liquefied petroleum gas (LPG) is imported, and about 90% of those shipments pass through the Strait of Hormuz.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under the cap fall by seven per cent from April 1, or £117 a year to £1,641.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "British Gas, Octopus, Eon, EDF, and OVO customers face £288 surge in bills", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The April price cap was set at £1,641 per year for a typical UK home by energy regulator Ofgem before the war in Iran resulted in a spike in costs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The field, which is about 80 miles north west of Shetland, is said to contain up to 300 million barrels of oil and some gas.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It built 56 reactors in 25 years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "EDF claims the initiative can knock around £96 a year off bills for the most committed users.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This amounts to approximately £6.6 million in combined bill reductions", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "29% of small businesses said monthly heating bills had gone up by up to £500, while 47% of respondents believed they would pay £1,000 or more extra a month, with 21% citing a figure over £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Drivers in the UK are already facing more than £500m in higher fuel prices owing to the oil crisis triggered by Iran's chokehold of global oil exports from the Gulf through the strait of Hormuz, according to the RAC Foundation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is the highest price for diesel since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This means it costs £100.52 to fill a 55-litre family car, breaching the £100 mark for the first time since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest figures, released on Tuesday, show the average price per litre of standard grade burning oil stood at 104.1p in March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Forecasts for July now sit at £1,929 per year for a typical dual‐fuel household.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million-a-day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hundreds of millions of pounds would also be raised in taxes from Britain's power generators, which have been charged excess profit levies since the outbreak of war in Ukraine.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But a week later, after her lender paid the company $83,200 for the job, workers walked away, leaving their materials behind.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Government is set to rake in well over €4.5billion in energy taxes this year, the Irish Mail on Sunday has learned.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £114; Potential savings: £570", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Industry body Water UK says bills are expected to increase by £33 a year - 5.4 per cent - on average to £639 a year from £606.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of £48 a year - an inflation-busting rise of 11 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by £332 in the summer to £1,963 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey also suggests the average price of a litre of diesel stood at 176.5p on Monday March 30, up 9.6p week on week and an increase of 34.4p, or 24%, since March 2.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ofgem's price cap will drop from the current £1,758 to £1,641 - a reduction of £117 or around £10 a month for the average household using both electricity and gas.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As of 1700 GMT on Monday, commodities vessels had made just 196 crossings of the waterway this month, a huge decrease from before the war.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The funding forms part of £3.8m allocated by the UK government on 16 March and it's estimated that between 20,000 to 25,000 households will be eligible in Wales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She said that while the oil company she used had offered her the chance to purchase 350 litres, it still cost £425, which was still a lot for half the amount she normally ordered.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That number is even greater in certain communities away from the main towns.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The scheme was expected to cost up to £150billion, funded by borrowing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The tax rate on the fuels such as home heating oil, green diesel, natural gas, and coal and peat, is due to increase from €63.50 per tonne to €71.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The £1,641 bill coming into effect from Wednesday will be a reduction of £117 from the first three months of the year due to Rachel Reeves' Budget moves to strip energy subsidy costs from the price cap and onto general taxation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to £1973 in July.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ofgem's price cap to drop by £117 from April 1, potentially lowering bills for standard variable tariff customers", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With an average installation cost of around £7,000, that means the investment is typically paid off in eight to 15 years, depending on the efficiency of the panels - and how much sun they see.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The annual rate for the 21 countries using the euro currency compared to 1.9% for February before the war started and blocked supplies of oil and gas from the Persian Gulf.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Shutting down the North Sea means we are losing out on £25billion in tax receipts that we could use to cut bills and reduce the cost of living.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since launching in 2024, EDF says customers have earned more than 20.5 million hours of free electricity through the scheme, saving a combined £6.6 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cornwall Insight's forecast is £44 a year lower than its previous estimate of £1,973 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis https://t.co/gRaZuUZaTz", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 200 interested parties want to take part in the upcoming public inquiry into the row.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Recent polling showed more than half of Scots back nuclear as the most popular form of energy generation in Scotland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I was speaking to one retailer and he said, you know, people think we're we're profiteering here, we're not, we make about six pence a litre out of every litre that we sell or we we we gather six pence a litre for every litre that we sell, but the government is taking something like 97 pence for every every litre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More Green voters support drilling in the North Sea (38 per cent) than oppose it (33 per cent), and 29 per cent of the party's voters support fracking in principle.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In fact, it is split - 36 per cent in favour to 35 per cent opposed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Customers have clocked up over 20.5 million free hours of electricity", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Its oil imports from Russia jumped to roughly 1.9 million barrels a day in March, from about 1 million barrels before the Iran war.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "From Wednesday, the amount most households pay for energy under Ofgem's cap will decrease by £117 per year to £1,641, spurred by the Government's pledge to reduce bills by an average of £150 through the removal of green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Small businesses also said that rising energy prices would cost them an average of £785.92 more per month to run machinery and equipment essential to their operations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Home to one of the largest deposits of freshwater on the planet, the Great Lakes region has on its shores some of the largest cities in North America in Chicago, Toronto, Montreal and Detroit, where electricity demand is growing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Scotland, the world's most powerful tidal hydro generator can power up to 2,000 homes.", "score": 2.5408099999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And and would they ever react more quickly than perhaps they need to, I wonder if there is a a kind of preemptive reasing of prices potentially ever.", "score": 2.53941, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keep in mind that the annual price quoted is only what the average household can expect to pay over the year.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Currently, adequate coal stocks are available at all power plants across the country.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household energy prices are poised to surge by 18 per cent in July, adding £288 to a typical annual bill, as the war on Iran pushes up the cost of gas https://t.co/s3QnCqPk07", "score": 2.5175099999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is unrealistic and dangerous and you can have your say now in the usual places.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A typical gas and electricity bill is now forecast to reach £1,929 a year from July under the industry regulator Ofgem's quarterly price cap, according to analysis by the energy consultancy Cornwall Insight.", "score": 2.51499, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the headline promise of \"free electricity\" might appear attractive, it demands households proactively adjust when they consume power - and sometimes slash peak consumption by as much as 50%.", "score": 2.512925, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Look, higher energy prices are not good news for anyone.", "score": 2.50677, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We know people will be concerned about energy costs and rising prices at the pump.", "score": 2.50677, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ofgem's cap limits the unit rate paid by tens of millions of households on standard variable tariffs.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The nation of 117 million is an early warning for Southeast Asia.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cap doesn't limit your total bill - energy companies charge for energy by the kilowatt hour (kWh).", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hospitality's tax burden - the highest in the economy - is suffocating the sector", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only must trust, it seems, needs to be reminded of what happened next with the national debt at a crippling 96% of gross domestic product.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, VCT tax relief will be slashed from 30 per cent to 20 per cent and inheritance tax relief on qualifying AIM shares will fall from 100 per cent to 50 per cent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "What do you think would happen if a country has a very high tax burden and some of the highest energy costs in the industrialized world?", "score": 4.9374, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", "score": 4.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The tax year also begins with frozen inheritance tax (IHT) thresholds, at £325,000 nil rate band and £175,000 residence nil rate band, regardless of any possible rise in property and asset values.", "score": 4.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most councils in England are hiking council tax by the maximum 4.99%, with seven councils given permission to exceed the cap, including North Somerset and Shropshire, which are nearly 9%.", "score": 4.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Income tax rates remained unchanged in last year's Budget but the threshold freeze will remain until at least 2031, intensifying fiscal drag.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And households endured a grim 2025, with real disposable incomes falling.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister pointed to the reduction of energy bills by £117 a year for the average household, a rise in the national minimum wage to £10.85 and in the national living wage to £12.71, the start of the £1 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "GDP per capita is thought to have decreased by 0.1 per cent in the last quarter but it increased by 1.1 per cent on the year.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The growing squeeze is compounded by income tax thresholds being frozen, pushing more workers into higher-rate bands where the PSA is cut in half from £1,000 to £500 - a 50% reduction.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Our new online calculator reveals how much household bills will rise from April 2026, as increases to council tax, water, broadband and mobile costs wipe out the benefits of falling energy prices for a typical household.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax is increasing by 4.9% on average, adding around £111 a year for many households, while some areas are seeing rises of up to 8.9%.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The thinktank estimates that UK companies invest the equivalent of 11.1% of GDP, well behind countries such as Japan at 18.2%, and European nations including France, at 12.7%, and Germany, at 12%.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills are falling from April 1, but are expected to rise by £332 per year from July, many broadband providers are hiking prices by almost £50 per year, water bills are rising to an average of £639 per year (up to £759 in some areas) and most councils are hiking council tax by 4.99%, with some rising by more than 8%.", "score": 4.66777, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be £300 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a joint plea for help, they said: 'Hospitality's tax burden - the highest in the economy - is suffocating the sector.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Hospitality's tax burden - the highest in the economy - is suffocating the sector,\" UKHospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster said in a statement.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Justifying her decision in the Budget, Reeves said she was targeting the industry because it was 'associated with the highest levels of harm'.", "score": 4.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", "score": 4.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across England, the average Band D council tax in 2026/27 will be £2,392 - an increase of £111 or 4.9% on 2025-26, according to the Ministry of Housing, Communities & Local Government.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The OECD predicted that gross domestic product (GDP) will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7% - the biggest cut to the growth outlook of all the countries in the G20.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The increases are on top of a 6.7 per cent rise for over 21s and 16.3 per cent rise for 18 to 20 year olds respectively in 2024, where there was also a spike in employers' National Insurance (NI) contributions.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "double quotation markGDP growth for Q4 was unchanged at 0.1% q/q, suggesting that the economy entered the current crisis with very little momentum, even though growth in 2025 as a whole was revised up slightly.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A high-ranking DWP minister has discussed the future of the triple lock policy, which is set to boost payments by 4.8 percent from April.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite the widespread increases, nearly one in five councils chose to raise council tax by less than the maximum.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The new post-2016 state pensioners will get up to £47.91 extra per month, assuming they have a full National Insurance record.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This payment is accessible for those who have reached the UK Government's qualifying retirement age, which is presently 66 for both men and women, and have contributed at least 10 years' worth of National Insurance (NI) payments.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Keir Starmer promised to ease the cost of living and freeze council tax, yet families now face back-to-back hikes and a total council tax take rising by £2.7billion - another broken promise.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The confirmation that real GDP grew by just 0.1 per cent in the fourth quarter of last year is a reminder that the economic backdrop is much weaker now than the last time energy prices surged in 2022,\" Dales said.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to £2,394 on average.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "GDP grew by just 0.1 per cent between October and December, the Office for National Statistics said, confirming its earlier estimate and matching the equally sluggish growth recorded in the third quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Real GDP per head decreased by 0.1 per cent in the final quarter of 2025, but it was up 0.6 per cent compared with the same quarter a year earlier - in an apparent reflection of the increased tax burden.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We've lifted 100,000 businesses out of rates, GDP figures show we outperformed the UK, Scotland has the highest levels of foreign direct investment outside of London and two global credit rating agencies have given Scotland a high investment grade - that's what you get with an SNP government on Scotland's side.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That means the average council tax for a Band D property in England will increase to £2,392 a year, up £111 on last year.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the ONS increased its GDP estimates for the year to 1.4 per cent, up from its previous 1.3 per cent estimate, more recent figures show the economy flatlined in January.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The ONS found that GDP rose 1.4 per cent across 2025, up from previous growth of 1.3 per cent.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The ONS also said real disposable income per head increased by 1.2% in the final quarter of last year, following a downwardly revised decrease of 1.2% in the third quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Office for National Statistics confirmed that gross domestic product grew by just 0.1% in the October to December quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It found that GDP increased by 0.1 per cent in the last quarter of the year, an unrevised figure on a previous estimate.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And real household disposable income expanded by 1.2 per cent in the last quarter, driven by an increase in wages and salaries.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So interesting little snippet in it, GDP per capita, which has been a bit of a problem for the UK economy did go up in 2025, just grew by 1.1% and something which I think people will find very, uh, counterintuitive, the savings ratio. so the proportion of income that's being saved rather than spent for households has gone up again, a bit to 9.9%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Older state pensioners will see their payments increase from £176.45 to £184.90, while new state pensioners will see theirs rise from the current £230.25 to £241.30 per week, for those with a full National Insurance record.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Each 'qualifying year' you add to your National Insurance record after April 5, 2016 will add a certain amount (about £6.57 a week in the 2025/26 financial year, this is £230.25 divided by 35) to your 'starting amount', until you reach the full amount of the new State Pension or you reach State Pension age, whichever happens first.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With national debt now almost 100% of GDP, another blanket bailout is simply not on the table.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Uh, the ONS looks again and comes back with a revision for GDP and often the numbers do get revised upwards when they take a second look, but unfortunately not this time, uh, in the last three months of last year, so the last quarter of 2025, the economy grew by 0.1% ONS says so they haven't changed the number on that, so it's hardly growing at all really.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The minimum wage increases are on top of a 6.7% rise for over-21s and a 16.3% rise for 18 to 20-year-olds respectively last year, when there was also a rise in employers' National Insurance contributions.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @WilfredFrost: Important to note that debt is NOT lower today than July 2024, & indeed will be higher at the end of the parliament than today - it will be up from 93.2% of GDP to 95.1%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax increases for the new financial year have now been finalised across England, with all 153 top-tier local authorities confirming how much bills will rise from April 1.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average council tax for a typical band D property in England is currently £2,280.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yesterday was the first day in British history when the amount paid out in welfare exceeded what was brought in through income tax, as quoted on Call Chemy last night.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "William Hill is preparing to close 200 shops just hours before tax rises smash the gambling industry, the Daily Star can reveal.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The escalating cost of the state pension prompts questions about the sustainability of the triple lock and whether ministers will need to transition to a model with less generous increases.", "score": 4.386095, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The OECD predicted that GDP will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7 per cent.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The day your State Pension is paid depends on your National Insurance number.", "score": 4.3705, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They've promised huge tax cuts and seem to think they would just pay for themselves...🧵(1/7)", "score": 4.329355, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cheng said: \"Each new tax year quietly brings more families into the inheritance tax net.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I see this in my constituency of Woking, but I talk to so many businesses who wanted to expand, wanted to grow our economy to lower that welfare bill, but because of national insurance increases, because of sort of Trump inflation, uh, the unpredictable world that we're in, then not growing.", "score": 4.318895, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax is a compulsory charge on properties in England, Scotland and Wales.", "score": 4.25617, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Band D households in the London Borough of Wandsworth will see their council tax rise by just £30 a year, compared to £209 in Shropshire.", "score": 4.2553, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They are massively out of step and siding with bad bosses, not working people.", "score": 4.25444, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Savers can also look to reduce their inheritance tax exposure by taking stock of estate values, as rising property prices can push estates closer to inheritance tax thresholds.", "score": 4.249805, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crucially, both of these will still be below the £12,570 Personal Allowance threshold for income tax.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The energy bills price cap is expected to increase in the summer by £332 to £1,963 annually", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", "score": 4.224345, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Council tax bills will rise by as much as 15 per cent on April 1.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The DWP has confirmed that the Triple Lock will result in an approximate £575 increase for new state pensioners from April.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eligibility for the over-80 pension doesn't depend on your National Insurance contribution record.", "score": 4.21887, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She added: \"Interest rates are higher than back then, and more savers are expected to see their savings income taxed in the years ahead due to fiscal drag.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", "score": 4.132820000000001, "claim_types": ["correlation", "rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The money is not paid automatically when someone reaches State Pension age as some people choose to defer making a claim in order to keep working and generate more towards their pension pot, especially if they have not paid the full quota of 35 years' worth of National Insurance Contributions, or were 'contracted out'.", "score": 4.118985, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With bills set to rise from April, households across England are likely to see higher council tax charges, with the exact increase depending on where they live.", "score": 4.0944199999999995, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Council tax, water, broadband and mobile bills are all going up at the same time.", "score": 4.0839, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Higher inflation will eat away at household disposable incomes and higher interest rates will diminish borrowing capacity, softening demand.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The rising cost of the state pension raises the question of how long the triple lock will be sustainable and if ministers will need to move to a model with less generous increases.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A host of local authorities in Scotland have increased council tax sharply.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament. That is the £30 billion increase in state pension expenditure over the course of this Parliament.\"", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ONS Director of Economic Statistics, Liz McKeown said: 'Our latest figures show GDP was unrevised in the last quarter of the year, with the economy growing a little.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", "score": 4.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even a small award can unlock help with housing costs, council tax and energy bills.", "score": 4.0489, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Not quite right, I think it's the first time it's not a particular day where this happens, but it is now true that on an annualised basis, we're spending more on welfare benefits than we get through income tax.", "score": 4.046805, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"It's almost certainly going to be a muted second quarter for spending and GDP growth as the worst of the inflation shock hits consumers,\" she warned.", "score": 4.037835, "claim_types": ["quantity", "correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you have qualifying years on your National Insurance record as at April 5, 2016, DWP works out a 'starting amount' for you for the new State Pension.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We've had some GDP numbers this morning, they're not new, but they are a bit of a fresh look at what happened at the end of last year, our business correspondent Dominica Connell is here, morning.", "score": 4.008475, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You have a completely rigid pension policy, which I don't agree with, and every time that there's somebody on pensions, they're not they're not earning and paying an income tax.", "score": 4.006385, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Martin Beck, chief economist at WPI Strategy, said: 'With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases. Analysts suggest this could become a significant strain over the next decade, forcing policymakers to review or amend the system to balance cost and fairness.\"", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Martin Beck, chief economist at WPI Strategy, said: \"With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.\"", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis, figures showed today.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cuba ́s gross domestic product has plummeted by 15% over the last six years, triggering a historic exodus.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This payment is available for those who have reached the UK Government's eligible retirement age and have paid at least 10 years' worth of National Insurance Contributions.", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The payment will typically appear in your bank account marked with a reference that begins with your National Insurance number followed by \"DWP WFP\".", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's also important to be aware deferred State Pensions increase each year in line with the September Consumer Price Index (CPI) inflation rate and not the highest measure of the Triple Lock policy.", "score": 3.932475, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The first State Pension payment might also be higher or lower than expected even with full National Insurance Contributions.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The growing squeeze is compounded by income tax thresholds being frozen (Image: Getty)", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In doing this, time and time again, after lockdown, after the crash, you end up with a government borrowing so much and so much in debt that the overall tax burden is crushing the growth out of the economy.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'While council tax is an important funding stream, it cannot solve the long-term pressures facing councils, raising different amounts in different parts of the country - unrelated to need.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They've got to start advertising them, they've got to put them in the budget for the next financial year, which as we know, we're coming to the end of that and the start of the next.", "score": 3.898845, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But it's not all about the national insurance payments and it's not all about the rather small instruments that have been done by this government.", "score": 3.894025, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some good news for the government is that increased petrol price means more tax coming in to the Treasury, the bad news is, uncertainty means they're paying more to service the national debt.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "April will bring cost increases set to hit household bills and businesses, even as Sir Keir Starmer touts Government measures \"bearing down on the cost of living\".", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Rachel Reeves appears to be overly influenced, if not controlled, by Ed Miliband's unfeasible Net Zero agenda, and remains determined to uphold the 5p increase in the Autumn Budget. She is either neglecting her responsibilities or acting ideologically by failing to do what her role requires: preventing inflation from rising, protecting jobs, supporting GDP growth, and maintaining consumer spending.\"", "score": 3.834115, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Broadband Genie says that vulnerable customers and those with less disposable income are likely to be on the cheapest tariffs, so the new regulations are set to affect these people the most.", "score": 3.786985, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There isn't much you can do, of course, about council tax, but when it comes to your other bills, things like your energy and your broadband.", "score": 3.7796950000000002, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "New figures show a spike in older Ford, VW and Vauxhall cars being scrapped due to Vehicle Excise Duty rises seeing owners facing big tax bills", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too expensive for the Government.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reports of Denby's imminent collapse come at a challenging time for businesses in Britain, hit by increases in employer National Insurance contributions, minimum wage hikes and high energy costs.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Many councils have faced having to increase council tax bills to try and protect services from further cutbacks at a time when they are acutely aware of the financial pressures facing households,' a spokesman said.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For months businesses have been anticipating the impact of a range of tax and regulatory measures announced by the government in the budget and in the weeks since.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government has kept in place the freeze on tax thresholds on income tax.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Northern Ireland uses a domestic rates system instead of council tax.", "score": 3.61976, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He urged people to check if they have any gaps in their National Insurance (NI) records that they can voluntarily top up, which could increase their state pension payments.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Motorists with the keys to older vehicles built between 1986 and 2001 are set to be face higher car tax bills within hours as changes come into effect from April 1.", "score": 3.599205, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The GOV.UK website explains: \"You cannot use this service if Self Assessment is the only way you pay Income Tax.\"", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Daily Star led a campaign last year to stop tax rises on horse racing bets.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When Chancellor Rachel Reeves announced the increases in the Budget last year, she said the cost of living was still the biggest issue for working people.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One question he was asked was whether or not he thinks the Government should keep the triple lock.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too costly for the Government.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prime Minister Sir Keir Starmer has highlighted the Government ́s cost-of-living measures (Stefan Rousseau/PA)", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since the run up to the 2025 Autumn Budget, the conversation surrounding the income tax trap has gathered speed with families scrambling to sort their finances in a bid to prevent being dragged into a higher tax band.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In response to the question, Mr Bell stated: \"We going to be keeping the triple lock, yes, through this Parliament.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Spencer says his business is being squeezed from every angle - as well as minimum wage, he has had increases in business rates, national insurance, and statutory sick pay.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the run-up to the Budget last year, the Daily Star led a campaign to stop Rachel Reeves from introducing tax rises on horse racing bets.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Certain elderly people believe that having savings or being homeowners would disqualify them from the means-tested benefit, which can additionally grant access to assistance with accommodation expenses, winter heating support and Council Tax.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Welsh Labour ministers say supporting people through cost of living pressures is a priority, and households receiving council tax support will be invited to apply for the payment if they rely on heating oil or LPG.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Mr Bell said in response: \"We going to be keeping the triple lock, yes, through this Parliament.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is part of Making Tax Digital (MTD) for Income Tax Self Assessment (ITSA).", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Guardian noted that manufacturing a medium-sized new vehicle may produce over 17 tonnes of CO2 - nearly equivalent to three years' worth of gas and electricity usage in the average UK household.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Welsh government says the one-off payment will be available to households which receive support from the council tax reduction scheme.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One you have a note of your Personal Allowance tax code, you can go to the GOV.UK website and use the online \"Check your Income Tax for the current year\" service.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"Someone who has or is about to move up an income tax band would be wise to use up their cash ISA allowance, or lose it, as it resets on 6 April,\" she said.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "He encouraged people to find out whether there are any gaps in their National Insurance (NI) records which they can fill in, potentially boosting their state pension entitlement.", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Isabella Galliers-Pratt, investment director at Rathbones, said: \"AIM shares and VCTs haven't lost their place entirely, but the tax advantages that once justified the risk have been diluted. For many investors, the sums involved, including the prospect of a six-figure inheritance tax bill, mean these decisions now demand far more scrutiny.\"", "score": 3.4092450000000003, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I thought Labour were supposed to be the party of working people.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dext said the \"AI slop impact\" on tax is so bad that just over a fifth (21 per cent) of accountants in Scotland warn that relying on generic AI could actually trigger insolvency or business failures this year.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Department for Work and Pensions (DWP) has announced tax changes that could cost disabled Motability users £400 each.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some $250 million intended to feed children from low-income families during the pandemic was fraudulently taken, according to the Department of Justice.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The payment needs to be claimed, or retirees could face a delay in receiving their first payment of up to £230.25 each week, or £921.00 every four-week pay period.", "score": 3.38007, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about £40 from a DIY store, which can be used to water the garden rather than using a hosepipe.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Howard Cox, the founder of FairFuelUK said that 36.4% of 3,678 sole traders, including bricklayers, plumbers, electricians, and others across the UK, have informed his organisation in an online survey that current pump prices could \"drive their businesses to the brink of collapse\" unless the Chancellor takes immediate action to reduce the cost of fuel, specifically diesel.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "UK GDP figures out, we'll assess the state of the UK economy and growth with the economist and commentator Liam Halligan.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of workers are being urged to check their payslips before the end of the tax year, as one small error could leave them overpaying tax by thousands of pounds.", "score": 3.21125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour pledged in its General Election campaign that it would keep the triple lock for the duration of this Parliament.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He was questioned about whether he believes the Government should maintain the triple lock.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A senior DWP minister has spoken about the future of the triple lock policy.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Labour promised during its General Election campaign that it would maintain the triple lock throughout this Parliament.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But America's got better conditions for growth than Europe does, and if we'd only look across to our cousins in the US, we might actually be able to create the conditions needed for growth, a lower regulatory burden, a lower tax burden and lower energy costs.", "score": 3.200295, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Millions are being pulled into paying tax on their nest eggs as frozen allowances and higher interest rates combine to erode protections once meant to shield them.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Millions of people on State Pension face future tax risk after April increase", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "👧🏻 Lifting 450,000 children out of poverty by removing the two-child cap", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And I think the government has been given a really bad hand by events by the Conservative government, but they have made awful decisions on national insurance contributions and other things that has meant our economy isn't growing the way it should.", "score": 3.120805, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I forgot how anti the national insurance rises the lib dems were.", "score": 3.09907, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As the organization raked in more than $3 million in reimbursements, he reportedly carved out at least $129,000 for himself.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "but 25% are not yet ready and that and that's quite a scary thought, this comes into effect next month.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figures contrast with headline CPI inflation of 3 per cent last month - although that is now expected to rise in response to the Middle East turmoil.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Wage expectations also inched up slightly, which could worry Bank of England policymakers concerned about inflation.", "score": 3.083055, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "DWP tax changes to Motability will cost users £400 each", "score": 3.074085, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now I started off for good debate on national insurance, but speaking to businesses in my constituency and beyond, that has been awful for our economy.", "score": 3.0681149999999997, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yeah, I agree with you, that's what I do the right thing and I get tax bills for it, whereas it's like said the barbershop or other service is like that.", "score": 3.0681149999999997, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One small mistake in your tax code could mean you are overpaying tax without realising and refunds from HMRc are not automatic.", "score": 3.044, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "All this while tax thresholds for working British people have been frozen since 2021 and are set to remain frozen into the 2030s.", "score": 3.0286850000000003, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Forecasts from the Organisation of Economic Cooperation and Development (OECD) last week gave Britain the biggest downgrade of all major economies.", "score": 2.981275, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "State pension age to be reviewed by UK Government amid fears that 45% of workers are not saving", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite pushing taxes to record highs, she's still spending £150billion more a year than she raises.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is a government which is borrowing something like 400 a day.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Make UK estimate that the average cost to a manufacturer will be £100,000, rising to £250,000 by 2030.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The gambling sector is preparing for online gambling duty to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The popular bookies have around 1,300 shops in the UK with approximately 15% of them set to close from May due to increased cost pressures including significant tax increases in the gambling sector", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I hate that. I hate the idea as shown by HMRC's forecast of this, that the government is going to make money on this, it's going to be 2.9 billion, the cost to the taxpayer and small businesses are buying software and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A big change is on its way when it comes to how self-employed workers and landlords earning more than £50,000 a year submit their tax returns and deal with HMRC.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This compared to a surge of 0.7 per cent in the first quarter of the year before President Trump's Liberation Day.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The combination of a smaller multiplier with a much higher value meant higher bills, with publicans and hoteliers claiming average valuation increases of more than 30%.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "HMRC has estimated that H M R C that introducing making tax tax digital will cost about 4.3 billion pounds, 1.4 billion of that being government spending and 2.9 billion being the cost to taxpayers and small businesses of buying software and employing accountants.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But then HMRC estimates will cost taxpayers and small businesses some 2.9 billion because they will have to buy the software, in some cases on which they make their tax digital and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rathbones estimates that more than 3,500 estates could face IHT bills breaching £500,000 by the end of the current tax year, up from 2,520 estates in the 2021 to 2022 tax year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rachel Reeves 'critical' warning as 1.3k businesses could be 'on brink of collapse'", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The warning comes ahead of the April 5 deadline, with experts saying many people are on the wrong tax code without realising it - the average taxpayer could be owed more than £3,000.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Energy bills could go up by £300 in July (Image: Getty)", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now this does apply in the first instance to those with a gross income above 50,000 pounds, all of this is kicking in next week.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The move comes just months after Chancellor Rachel Reeves made the decision to almost double taxes on online gambling from 21 to 40 per cent, while hiking sports betting from 15 to 25 per cent.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Think we need to acknowledge that the majority of that is on pensioners.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There is going to be a degree of excitement or at least people are going to be excited about the fact that they are going to be made to make their tax digital four times a year, rather than one and for some people who don't aren't able to get it for free, you will have to pay on average about 300 pounds for the pleasure of registering your tax return four or five times a year.", "score": 2.9597550000000004, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The trade body warned that increases to employment costs and business rates from Wednesday will cause job losses and harm business viability.", "score": 2.9142349999999997, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Industry experts had warned the move could cost 40,000 jobs and risk consigning the 500-year-old sport to the knacker's yard.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He admitted using the nonprofit Youth Inventors Lab as a shell company to siphon millions of dollars through fraudulent reimbursement claims for roughly 1.5 million meals that were never served to children in need.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ali admitted using a nonprofit as a shell company to siphon over $3 million in reimbursements for millions of meals that were never served to children, pocketing at least $129,000 for himself", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The DOJ said the scheme saw $250 million intended to feed children from low-income families during the pandemic fraudulently taken", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Almost half of Scottish accountants reported that clients trusting public AI have already been hit with real-world financial losses, from heavy HMRC penalties and overpaid tax to missed allowances.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A bath typically uses 100 litres of water while taking a four-minute shower with a £20 water-saving shower head uses just 32 litres.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Around 2.7 million people are set to receive a pay rise this week as the national minimum wage goes up by 50p to £12.71 for over 21s.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A washing machine requires up to 150 litres of water per wash.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", "score": 2.8610100000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you leave it, the mistake will simply roll into the next tax year - and you will keep overpaying without realising.", "score": 2.83673, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The national living wage for over-21s increases by more than 4% to £12.71, and to £10.85 for 18-20 year olds, an 8.5% hike.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It takes a couple of minutes to look at your payslip, and it could save you hundreds or even thousands of pounds.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Having more than one job or pension can also cause problems.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This can reduce your tax free allowance and result in higher deductions from your wages.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Even with transitional caps in place limiting increases, those increases will still compound and bills can more than double by the end of the cycle.\"", "score": 2.801995, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of course, backward looking is an understatement for Q4 data, the outlook for growth is now materially weaker for this year and 2027 as higher energy prices will squeeze real incomes and further weigh on an already weak employment market.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It kicks in for people, uh, with 50,000 pounds or more, but it is going to come down much, much lower over the course of the next few years, so it will get to you in the end.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Overall, a typical household is expected to be £143 worse off from the start of April.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Observers say the government's hand may eventually be forced given that Indonesia is required by law to keep its fiscal deficit under three percent of gross domestic product.", "score": 2.786985, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, there will barely be a chance to enjoy the savings, amounting to around £10 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Without it, you may be placed on an emergency tax code such as 1257L W1 or M1, which can result in higher deductions until the issue is resolved.", "score": 2.7705450000000003, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'F*** it, I'm opening a few daycares and a Medicare hospice care center, so you do a few years for several million dollars, which is a lot easier than working until you hit 70,' one comment read.", "score": 2.7679549999999997, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The state pension is guaranteed to increase every year based on one of three metrics - inflation, wage growth or a flat 2.5%, and this is protected by law for both the new post-2016 state pension and the older, basic state pension.", "score": 2.76698, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, and for the whole year, they've got a new number, 1.4% for the whole year of 2025.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The most common mistakes being found include incorrectly interpreting business expenses (61 per cent of cases), and messing up VAT claims (46 per cent).", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some households could also save costs by installing a water meter - those who switch typically save up to £100 a year.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Indeed Britain spending about 112 billion pounds this year servicing debt.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you haven't given it enough information, you're really at a high risk of undertaking a task or an activity or making a decision that could ultimately lead to business failure.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Accountants expect the risks to intensify this year if businesses continue relying on public AI tools without professional oversight.", "score": 2.716055, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I think the question's quite right, so look, welfare spending is at a record high.", "score": 2.7091849999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It means that cars which produce more than 225g of CO2 emissions per kilometre are hit by Vehicle Excise Duty (VED) - with those producing 201-225g/km paying £430, 226-255g/km £735 and over 255g/km £750.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over the past decade, basic-rate taxpayers alone have paid more than £4.7bn in tax on their savings interest, underlining how the allowance has failed to keep pace.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Treasury said around 2.7 million people are on minimum wage", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I think we just need to put that in context that the majority of welfare spending is on on pensioners.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "No, but the reason why this is such a huge increase in young people.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The cars affected are those which are older than 20 years - but they have to reach 40 to be considered 'classics' and be tax exempt.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, but more recent figures have shown the economy flatlined in January with zero output.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Annual growth for the whole of 2025 was, however, revised up slightly.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The overwhelming majority of town halls are imposing the maximum allowed without being obliged to trigger a referendum - with some strugglers given permission to smash the 5 per cent ceiling.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "🥣 Free breakfast clubs in schools - saving parents up to £450 a year", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But our economy's still growing faster than Europe.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There are also more than 700,000 older people eligible for a State Pension top-up of £4,300 annual income top-up.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But despite a sharp rise in interest rates over recent years, the thresholds have been left frozen - meaning more savers are now exceeding them.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Unfortunately, over a third (36%) of people have never heard of the PSA... This shows how the PSA has not moved along with the times.\"", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This category is also set to be affected by annual inflationary price hikes this April, with fees up by as much as £15.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For metropolitan areas the increase will be a 5.2 per cent, ad in shire areas it will be 4.6 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The full basic state pension will rise from £176.45 a week to £184.85 a week, or £9,612 annually.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Business rates, paid on bricks-and-mortar premises, are the means by which companies contribute to local government funding and are forecast to contribute £34bn in 2026-27.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Really interesting, we've done some research on this and about 70% of business owners that are impacted by making tax digital are aware of it.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gas and electricity bills are set to fall by £117 a year on average from April 1, to £1,641 a year for a typical household.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, household spending rose by only 0.1 per cent, while business investment dropped by 2.5 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pension Credit supplements weekly income to a guaranteed minimum threshold of £227.10 per week for individual pensioners or £346.60 for couples.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Services showed no growth, while production grew strongly, partially offset by a weak quarter from construction.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Meanwhile, the household savings ratio increased and remains high by historic standards.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'On top of that, many households are already overpaying by hundreds of pounds a year simply because it's so hard to keep track of everything.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We saw a huge increase in the number of people claiming entitlement related benefits particularly after the pandemic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dividend tax is also set to increase by two percentage points for most investors, tightening the tax net on income held outside tax-free wrappers such as pensions and ISAs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But because these cars are now worth very little - often under £1,500 - the annual tax bill can represent 25-50% of the car's total value and people are getting them scrapped.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Your State Pension increases by the equivalent of 1% for every nine weeks you defer, this works out as just under 5.8 per cent for every 52 weeks.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Debt interest alone is costing £112billion a year.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Inflation, meanwhile, has remained stubbornly above target, keeping interest rates higher for longer and tightening the squeeze on activity.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So people spent less on other items, so there's less VAT coming in on other purchases.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And on average, you will pay about 300 pounds a year for the privilege of doing something that was once free.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'From a business sense, coffee prices have gone up in the last three years by 40 per cent, milk has gone up from $2 to $3.15 and bacon has gone up from $46 to $59 - everything's going up.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mobile customers can save an average of £304 switching from a handset contract to a SIM-only contract.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So you think actually despite people not being ready, the system will allow for people to get used to this as it as it has becomes a necessity for people, not just in the first instance who aren't 50 grand a year, but 40, 30, 20 and then eventually to everybody.", "score": 2.6966349999999997, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Greece can actually borrow more cheaply than the UK.", "score": 2.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, the staggering amount, rich relief is in no position to do a giveaway right now.", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If you're not self-employed, do you see it as the right thing to do to self-employed people, to make them do their taxes more often to try and stop any, I don't know, what would we call it, any creativity in those accounts?", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is the end of the financial year and spirits are in the sky as a whole raft of changes are being brought in over the next few days and weeks that make life largely more expensive and more bureaucratic.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "First applied to those with a gross income above 50,000 pounds, but rolling out for everybody over the course of the next few years, a scheme which will cost the taxpayer some 1.4 billion in order to set it up.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some customers will see monthly costs rise by more than double than what they would've done under the previous system, according to Broadband Genie, with those on the cheapest packages hardest hit.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At first, you'll only have to do this if you make over 50,000 a year, but that amount will gradually come down over the next few years to mean that in effect, uh, even the children who come round offering to wash cars for pocket money will be feverishly been counting every quarter as the man from H M R C glowers at them.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Providers have not hesitated to raise customers' prices far beyond the rate of inflation, costing bill payers millions.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'These are people trying to keep up with costs that are rising faster than their wages,' Compare Club's head of research, Kate Browne, told the Daily Mail.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She needs to reverse her disastrous £26billion jobs tax, cut red tape and get the economy moving.", "score": 2.636345, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'This is part of a very large fraud scheme, the largest in the District of Minnesota and one of the largest ever in the country,' Brasel said, according to KARE.", "score": 2.62293, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some of the most desirable cars from 20 years ago are now virtually worthless and being scrapped because it costs too much to tax them.", "score": 2.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'The result is that most of us will be worse off overall - not better.", "score": 2.6158, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Industry experts had warned the move could cost 40,000 jobs and risked consigning the 500-year-old sport to the knacker's yard.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ali confessed that he and his co-conspirators relied on fake invoices for food and services, falsely claiming to have served over 1.5 million meals provided by S & S Catering in just seven months.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The criminals falsely claimed they had served 91 million meals.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And Trump's busy putting up tariffs that's damaging his economy and ours.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The impact is clear: more lost jobs; less investment; and business closures.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "' And increasing energy prices now threaten to 'accelerate all of these impacts', they added.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To what extent is it your fault because this has been in the making for some 10 years ago, there have been adverts about it, there have been conversations about it already.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You have you have actually outed yourself as the reason for why this has to happen because there is a person on payroll listening going, well hang on.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You usually multiply the number in the tax code by 10 to get the total amount of income they can earn before being taxed.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You typically need 35 years of NI contributions to get the full new state pension and 30 years of contributions to get the full basic state pension.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Generally, 35 years of NI contributions are required for the full new state pension, while 30 years are needed for the full basic state pension.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under existing rules, councils can raise tax by up to 4.99% without a local referendum.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Single-person households qualify for a 25% discount, full-time students can be fully exempt, and those on low incomes can apply for a reduction of up to 100%.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The planned change to the official age of retirement has been in legislation since 2014 with a further rise from 67 to 68 set to be implemented by the mid-2040s.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The policy ensures the state pension increases each April in line with the highest of inflation, the rise in average earnings or 2.5 percent.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The policy guarantees that the state pension rises each April in line with the highest of inflation, the increase in average earnings or 2.5 percent.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If they earn £30,000 per year, taxable income is £17,430 (£30,000 - £12,570).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Official figures show the average levy in England will rise 4.9 per cent next month, with a typical Band D property paying £111 more.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In London the typical figure is set to see a smaller 4.4 per cent rise to £2,068.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "However, the ONS did revise annual growth for the whole of 2025 up slightly, from 1.3% to 1.4%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It'll go up to 53, sorry, 54 pence a litre, at the moment it's 53 pence a litre, to fraction under on both, but, and then two pence a litre more, uh, in six months increments from then on.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But if you wash using the eco-mode setting it can be just 50 litres.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Personal Savings Allowance (PSA), introduced in April 2016, allows basic-rate taxpayers to earn up to £1,000 in savings interest tax-free, while higher-rate taxpayers can earn just £500.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to analysis from motor experts Pete Barden, older cars registered before March 2001 with large engines above 1549cc will pay £375 per year.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under the updates, owners of petrol and diesel cars with engines below 1549cc will pay £230 per year, a £10 rise on the current £220 annual charge.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The household saving ratio increased this quarter by 0.8 percentage points to 9.9%, which the ONS said was caused by higher non-pension saving and \"remains high by historic standards\".", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The full-year growth was previously estimated at 1.3 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hagger added: 'You need an average balance across the whole month of a minimum of £10 to enter the draw and each multiple of £10 gives you another entry, so the more you put in, the more chances you have.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Bath & North East Somerset: 4.99%Bedford: 4.99%Blackburn with Darwen: 4.99%Blackpool: 4.99%Bournemouth, Christchurch & Poole: 6.74%Bracknell Forest: 4.99%Brighton & Hove: 4.99%Bristol: 4.99%Buckinghamshire: 4.99%Central Bedfordshire: 4.99%Cheshire East: 4.99%Cheshire West & Chester: 4.99%Cornwall: 4.99%Cumberland: 4.99%Darlington: 4.99%Derby: 4.99%Dorset: 4.99%Durham: 1.99%East Riding of Yorkshire: 4.99%Halton: 4.99%Hartlepool: 1.98%Herefordshire: 4.99%Hull: 4.99%Isle of Wight: 4.99%Isles of Scilly: 4.99%Leicester: 4.99%Luton: 4.99%Medway: 4.99%Middlesbrough: 2.00%Milton Keynes: 4.99%North East Lincolnshire: 4.50%North Lincolnshire: 4.70%North Northamptonshire: 4.99%North Somerset: 8.99%North Yorkshire: 4.99%Northumberland: 4.99%Nottingham: 3.50%Peterborough: 4.99%Plymouth: 4.99%Portsmouth: 4.99%Reading: 4.99%Redcar & Cleveland: 4.99%Rutland: 2.00%Shropshire: 8.99%Slough: 4.99%Somerset: 4.99%South Gloucestershire: 4.99%Southampton: 4.99%Southend-on-Sea: 4.99%Stockton-on-Tees: 4.95%Stoke-on-Trent: 4.99%Swindon: 4.99%Telford & Wrekin: 4.99%Thurrock: 4.99%Torbay: 4.99%Warrington: 7.48%West Berkshire: 4.99%West Northamptonshire: 4.95%Westmorland & Furness: 4.99%Wiltshire: 4.99%Windsor & Maidenhead: 7.49%Wokingham: 4.99%York: 4.99%", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The saving ratio increased by 0.8 percentage points to 9.9 per cent in the fourth quarter.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We've got about eight or nine different bands.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A £4 monthly increase represents an 8 per cent increase on a £50 deal, compared with a 20 per cent increase on a £20 deal.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged, which followed unrevised growth of 0.1% in the previous three months.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across England, the pattern remains consistent, with most county councils, metropolitan boroughs and unitary authorities implementing rises of 4.99%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Pension Credit tops up this amount up to £238 per week, which is only a few pounds less than the new state pension anyway (£241.30).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By contrast, the same £20,000 placed in a leading cash ISA paying 4.45% would generate £890 completely tax-free.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged at 0.1%, which followed unrevised growth of 0.1% in the previous three months.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It means the number of £100,000 prizes will fall from 78 in the most recent draw, to an estimated 71 in April.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For every £10 you deposit, you get one entry into the monthly draw up to a maximum of £85,000.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Bournemouth, Christchurch and Poole Council set an increase of 6.74%, while Trafford, Warrington and Windsor and Maidenhead approved rises of around 7.5%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other lower rises include 1.99% in Durham and around 2% in several London boroughs, including Wandsworth and Westminster.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For most people with one job or pension, the standard tax code is 1257L.", "score": 2.5688, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Look, higher energy prices are not good news for anyone.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An accountant and professional adviser will always ask you more questions until they've got enough information to be able to come to a conclusion or the best plan of action.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The State Pension age is set to start rising from 66 to 67 in April, with the increase due to be completed for all men and women across the UK by 2028.", "score": 2.55971, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week, OECD forecasts delivered the biggest downgrade to Britain compared with other major economies, slashing its growth prediction by 0.5 percentage points to just 0.7 per cent.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The policy has resulted in substantial increases in payments in recent years, including a record 10.1 percent surge in April 2023, due to skyrocketing inflation the previous year.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The OECD warned last week the UK would face the biggest hit from trade disruption in the Middle East as growth could come to 0.7 per cent.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The policy has delivered sizeable increases in payments in recent years, including a record 10.1 percent hike in April 2023, thanks to soaring inflation the year before.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's not the highest ever that was during the COVID pandemic, but it is still pretty high.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Between 2024 and 2025, scrappage increased by 550%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among the providers applying the largest price rises as a percentage of their average monthly costs include Three, Hyperoptic, Virgin Media and TalkTalk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This represents an 18 per cent increase, as opposed to the 7.5 per cent rise that would've applied under the old rules.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1 per cent to 1.5 per cent growth that had previously been widely expected.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When you look at fuel prices, they're still lower than they were, um, three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Household incomes are still marginally higher than when Labour came to power, but remain below pre-Covid levels.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It also puts the UK at second lowest in the G7 in terms of economic growth this year, behind only Italy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is a £15 rise on the £360 fee currently paid by road users taxing one of these vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Customers served by Thames Water can expect their bills to rise by just £3 a year, compared to £57 for customers of United Utilities.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The OECD forecast the UK would see inflation jump to 4% this year, up from 3% in the latest official figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million a day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The RAC has also suggested the Government could earn an extra £2billion from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Business investment over the year was two per cent higher, with a fall of 2.5 per cent in the fourth quarter dragging down on the figure.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pensioners then experienced an 8.5 percent rise the following year, in line with the increase in earnings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There will also be a new online sports betting duty of 25% from 2027, covering all sports except horse racing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So that's actually something that is really tough. We've recently done some research that said that the average business owners spending multiple across the UK, multiple millions of pounds on financial tools.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than nine in ten UK accountants believe public AI tools should be regulated and/or restricted when providing financial advice, with 70 per cent calling for regulation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is making these changes to offset an additional £300m in taxes introduced in last year's autumn budget.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Costs have doubled for us in the last month and we only do short trips in the car.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Before the crisis, we used to fill up for $50 a day, now that's jumped up to $150 a day,' he said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "William Hill is set to close 200 of its UK shops in a hammer blow to Britain's high street.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The rises in national minimum wage and national living wage highlighted by Sir Keir represent a £1.4 billion additional annual increase for hospitality businesses, the body said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Show me, show me a government, any Prime Minister, you've had about seven of your guys in recent times, show me one of them who has actually created growth.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £33; Potential savings: £100", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price 'hike': minus £117; Potential savings: £338", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crossing the threshold triggers the tapering of the personal allowance, creating an effective 60 per cent marginal tax rate on income between £100,000 and £125,140, turning bonus and pay rises into a \"tax shock\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is the fourth year in a row that the England-wide increase has averaged around 5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Virgin Media's average monthly price is £22.86, with prices rising by £4 this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In April 2016, the state pension age was set at 66, which means that new state pensioners today are aged up to 76, though they could turn 77 just after April 6.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK borrowing costs are already the highest in the G7, with 10-year gilt yields recently topping 5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reeves once had around £23.6billion of fiscal headroom.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Savings over £10,000 are taken into account, but many people with modest savings still qualify.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That comfortably breaches the £500 PSA for higher-rate taxpayers and comes close to the £1,000 limit for basic-rate taxpayers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"This return in savings interest is shielded from tax due to the PSA for a basic-rate taxpayer, but only £500 is safe for higher-rate taxpayers.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The broader trend highlights a shift in household finances, with the UK savings ratio rising to 10.2% in the second quarter of 2025, up from 6.8% in the same period in 2016, according to official figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We know that there are 25,101 prizes in total, ranging from £5 to £25,000 - but we don't know the number of customers that are eligible or how big their balances are.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For every £25 you invest in Premium Bonds, the likelihood of winning £1million is 1 in 2,737,381,167.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This will lift payments by 4.8 percent this April, increasing the full new state pension from £230.25 a week to £241.30 a week, or £12,548 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The full basic state pension will go up from £176.45 a week to £184.85 a week, or 9,612 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And, uh, Heathrow was wanting to put up prices as a result, the Civil Aviation Authority have come out this morning and said, in essence, you can't spend the 10 billion, we'll allow 5.8 billion, so quite a big reverse for Heathrow and we'd like per passenger charges to go up from the current 28 pounds 40 per passenger to just, well, actually they give a range, the midpoint of the range is 28 pounds 80, so pretty flat actually.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Uh, and Heathrow was asking for just over 33 pounds, so it's a big, a lot.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Revised figures suggest that the economy grew by just 0.1% in the last quarter of 2025, a period where there was no war in the Gulf, and the price of Brent crude was around $70 a barrel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This will boost payments by 4.8 per cent this April, raising the full new state pension from £230.25 a week to £241.30 a week, or £12,548 annually.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or £117 a year, to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a member survey carried out by UKHospitality in February with other trade associations, 64% of hospitality businesses said they would slash jobs as a result of the cost increases, 51% said they would cancel investment plans, and 42% said they would reduce trading hours.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Today's rise in minimum wage rates will see pay for 18 to 20-year-olds jump by 8.5 per cent to £10.85 an hour, while those aged 21 and over will get a 4.1 per cent hike to £12.71.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ryan, a consultancy, has calculated that the overall bill will rise by £3.4billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Seven councils were granted this special permission to raise bills by more than 4.99%, including North Somerset, Shropshire and Worcestershire, each approving rises of up to 8.99%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Seven councils were granted this special permission to raise bills by more than 4.99% (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Faced with a backlash from landlords and political opponents, Ms Reeves announced a 15% cut to rates for pubs and live music venues, plus a two-year rate freeze to mitigate the increases, until the next revaluation at least.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Switching can save broadband customers an average of £329, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In pounds and pence terms, prices would have risen £1.71 previously on average, so customers are an extra £2.29 a month out of pocket, Broadband Genie said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This reveals that 45 per cent of customers who took out a broadband contract after the introduction of fixed price rises didn't know their prices would rise annually, while 58 per cent were in the dark about how much their tariff would go up by in April.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For example, an employee with the tax code 1257L can earn £12,570 before being taxed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Category B (lower) Basic State Pension - spouse or civil Partner's insurance: £110.75 (from £105.70)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Almost 1.4m elderly people throughout Great Britain, including over 125,000 residing in Scotland, are presently receiving the means-tested benefit which could deliver an average of £4,300 in assistance over the coming year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nevertheless, recent DWP statistics indicate that more than 700,000 qualifying pensioners remain without the benefit to which they're entitled.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The increase in interest rates that has happened for us means about £12billion a year of additional interest payments.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Scotland, some councils are pushing through rises of up to 10%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The ONS increased the out-turn for 2025 as a whole to 1.4%, up from previous growth of 1.3% recorded because of updated expenditure calculations, but more recent figures have shown the economy flatlined in January with zero output.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figures showed the UK's dominant services sector flatlined in the fourth quarter with zero growth, while production expanded by 1.2% and construction fell by 2%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to analysis for The Times, the Government is set to get around £3.5billion a year from the energy profits levy on North Sea oil and an extra £2.4billion from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Inflation held steady at 3% in February, which was in line with expectations but still well above the government's 2% target.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK economy grew 1.4 per cent in 2025, official data has shown as data analysts nudged up the estimate for the year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK gas prices have risen by more than 70 per cent since the start of the war while the Brent Crude Oil benchmark surpassed $115 per barrel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Treasury-backed bank is cutting the rate from 3.6 per cent to 3.3 per cent, and also lengthening the odds for each £1 bond winning a prize to 23,000 to 1 from the current 22,000 to 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But in this quarter's 'big prize draw' there are 100 prizes of £1,000, 5,000 prizes of £10 and 20,000 prizes of £5 - as well as the grand prize of £250,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And it estimated that the average hike to business rates for a hotel in England totals £205,200, and £14,300 for a restaurant.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The average English hotel's bill will rise by 30 per cent, or £28,900, to £125,300 this April, and a typical restaurant faces an increase of £1,800 on the current average of £12,200, analysis by UK Hospitality showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 60 people have been convicted in the case so far and a total of 79 have now pleaded guilty or been convicted", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This comes following Rachel Reeves' Budget measures, which will see gambling duty shoot up from 21% to 40% from April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We support currently over 800,000 businesses, we've built a waitlist at 50,000 businesses for making tax digital and I would have never thought that 50,000 people would be saying, I'm so excited for these changes and excited for these tax things.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Motability company, which administers the scheme, estimates that the scheme will cost the average customer around £400.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Apparently we had at least a month worth of fuel in the country, so for those 30 days, that fuel should have stayed the same price, but it hasn't.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £72; Potential savings: £633", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ford, VW and Vauxhall hit by £790 car tax trap 'being scrapped' new figures show ahead of April 2026", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An entitlement of merely £1 weekly is sufficient to access additional help.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The benefit boosts income to a minimum of £227.10 per week for single pensioners and £346.60 for couples - more if an individual has a disability or caring responsibilities.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Financial and related professional services generated £110.2bn in tax in 2024, equivalent to 12.3 per cent of total receipts, making it one of the largest single contributors to the Exchequer.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Which is about a third of the total raised by fuel duty last year according to the OBR.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But even if there were 20 billion a day, which I don't doubt from, um, extra oil prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the final quarter saw a 1.2 per cent recovery in the key metric, the ONS revised the drop in the third quarter up from 0.8 per cent to 1.2 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RHDI per head - a measure of what is left after taxes and benefits and the effects of inflation - was £6,353 at the end of 2025, compared to £6,413 at the end of 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1% to 1.5 per cent growth that had previously been widely expected.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Analysis from Moneyfactscompare.co.uk shows someone who locked £20,000 into a top one-year bond paying 4.58% would earn £916 in interest over a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The increase in bond yields poses a major headache for Chancellor Rachel Reeves, knocking billions off her £23.6billion 'headroom' against meeting tax-and-spend rules.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A £15 and £10 rise mirrors the increase paid by drivers this time last year, where fees jumped from £345 to £360 and £210 to £220.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK economy grew by an unrevised 0.1% in the final quarter of 2025, official figures have confirmed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But it increased the out-turn for the year as a whole to 1.4%, up from previous growth of 1.3% recorded for 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Whereas in a savings account paying 4 per cent you'd get the equivalent of £16.66 per month or £200 per year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two lucky savers a month can win £1million, while 78 can win £100,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Pensioners then enjoyed an 8.5 percent increase the next year, in line with the increase in earnings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "To date, more than 60 people have been convicted in the case - most from Minnesota's Somali community - and a total of 79 have now pleaded guilty or been convicted.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The company said last year that changes to online gaming duties and a new online sports betting tax would see its duty costs rise by up to £135 million a year from 2027.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The popular bookmakers has around 1,300 shops in the UK, meaning approximately 15% of its stores are set to shutter for good in a hammer blow to Britain's high street.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were fears among racing chiefs the rate would rise to 21% but after the successful campaign, the rate remained at 15%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Findings of Scottish research by Dext, based on consulting 29 accountants and bookkeepers in Scotland, found that 82 per cent reported a general surge in clients using \"public AI\", such as ChatGPT, for tax \"advice\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "You got to the supermarket and you come out with two bags and it's cost you $140.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fuel excise will be cut from 44.2 cents per litre to 22.1 cents for a period of three months", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes after Compare Club's Financial Stress Index published in March this year, revealed that more than a third of Aussies (38 per cent) said they were financially worse off than the year before.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is rising by an average of 4.9% for households in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Many councils are allowed to increase bills by up to 5%, but seven have been given government permission to implement bigger hikes to help address a \"challenging financial position\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Hartlepool, bills will rise by just 1.98%, one of the lowest increases in the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Typical price hike: £114; Potential savings: £570", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Industry body Water UK says bills are expected to increase by £33 a year - 5.4 per cent - on average to £639 a year from £606.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of £48 a year - an inflation-busting rise of 11 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by £332 in the summer to £1,963 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Car.co.uk's analysis demonstrates that scrap valuations for the VW Golf have jumped by 323% since the closing quarter of 2025, while the Land Rover Freelander trails closely with a 233% hike.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A petition on the parliament website has now garnered nearly 50,000 signatures, demanding that the government slash Vehicle Excise Duty by 50% for vehicles aged 20 to 39 years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As the petition surpassed 10,000 signatories, the Treasury has issued a response.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Internet providers are set to pocket an extra £15.5million from their customers each month from April thanks to a change in billing rules, research claims.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to broadband comparison platform Broadband Genie, they will make an additional £186million a year compared to what they would've collected under the old system of inflation-linked price hikes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those with incomplete records will see lower total take-home for their pension payments, depending on how far off the full record they are, which the DWP calculates on a case-by-case basis when you first hit state pension age.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For example, an older state pensioner who only qualifies for the basic state pension will get £184.90 per week.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Springall said: \"Savers who locked £20,000 into the top one-year fixed bond of 4.58% back in March 2025 would receive annual interest of around £916.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Less powerful cars are charged a lot less but are still facing higher prices as of April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just look at the number of people with ILR status who are claiming Universal Credit, in April 2022, it was 95,612, in January 2026, it's 222,076, that's a 132% increase.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK economy grew by 0.2 per cent and 0.1 per cent in the subsequent quarters.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Usually, Chip's monthly draw offers at least one grand prize of £10,000 and 250 additional prizes of £10.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "About 43 per cent of the 1000 Australians surveyed said they relied on credit at least occasionally to cover everyday household bills.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cost expectations rose to the second highest level on record after last September at the height of pre-Budget tax speculation while revenue expectations for the year dipped.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Online gambling duty is set to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The survey, by UK Hospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster, also found 42 per cent will reduce trading hours while 15 per cent of venues will be forced to close.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Higher energy prices, um, are not good for households, or good for businesses.", "score": 2.5324400000000002, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And but we do have an increase in youth unemployment.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And, um, the other thing is that historically, the cost of motoring is really quite low.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Research by Yorkshire Building Society found 36% of people have never heard of the PSA.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At least 1,411 people have been killed by illegal migrants, nearly all of whom have been killed during the last 25 years, according to a list assembled by a grassroots group that opposes mass migration.", "score": 5.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He has memorialized 1,280 deaths since 2018, all of which are based on reports from government agencies or reliable media outlets that declare the murderers to be illegal migrants.", "score": 5.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That analysis likely understates crime by migrants, but Cato admitted on March 30 that illegal migrants from Latino and African countries are more criminal than citizens with roots in Europe or Asia.", "score": 5.309265, "claim_types": ["quantity", "correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @ukhomeoffice: Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK government claims the deal has prevented 42,000 illegal migrants getting on boats, although the overall number making the journey across the Channel has continued to increase.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The program uses tax dollars to help illegal migrants game the system to attain legal status despite having broken our laws to get here in the first place.", "score": 5.023415, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Keir Starmer has now presided over the most Channel crossings of any Prime Minister - up 45 per cent since the election.", "score": 4.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This office has had far-reaching consequences for decades aiding tens of thousands of illegal migrants to attain legal status each year.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We have prevented over 40,000 crossing attempts by illegal migrants since this government took office. Our landmark deal means illegal migrants who arrive on small boats are being sent back to France.\"", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "it had been due to expire tonight ministers claim 42,000 illegal migrants have been stopped from crossing the channel in the 21st month since Labour's election", "score": 4.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She was allegedly led down a ramp onto the beach at Brighton and raped by Alshafe and two other asylum seekers - Iranian Abdulla Ahmadi, 26, and Karin Al-Danasurt, 20, from Egypt.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And there's forcibly removing women and children asylum seekers who arrive illegally.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nearly 700 officers from units dedicated to intercepting small boats will continue to patrol the French coastline.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Illegal migrants used to come in large numbers as stowaways on trucks etc.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Dublin Convention did nothing to make it easier to return asylum seekers.", "score": 4.612785, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "is published on Tuesday and who is also a member of the government's independent Migration Advisory Committee, said: \"Governments of all stripes like to make bold claims, from 'stop the boats' and 'smash the gangs' to 'net migration falling below 100,000'.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A huge share of the deaths are Latinos, including some who are illegal migrants, he added.", "score": 4.55978, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We made 5,500 requests for asylum seekers to be returned.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year, the French stopped around 35% of people smuggler small boats - carrying around 22,500 migrants - from getting across the English Channel.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was the lowest rate of interceptions since the small boats began arriving in 2018, down from a peak of 46.9% in 2023.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In the same year, under the same convention we accepted 1,215 asylum seekers.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But reports show that in the first 12 weeks of 2026 the number of small boat crossings being stopped by France has dropped to 33.1%, the lowest rate since 2018 when the crisis began.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As of 25 February, 2,209 people had arrived in the UK in small boats in 2026 - up by about 7% compared with the same period in 2025.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Talks with France on a deal to tackle small boat crossings have been extended by two months, with the UK set to pay more than 16 million pounds for French beach patrols during that period.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", "score": 4.529545, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A man used Facebook to advertise 'dangerous' small boats crossings, urging migrants to 'hurry and get a seat'.", "score": 4.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The influx of asylum seekers from civil war-torn Syria to the European Union peaked in 2014-2015, with Germany being one of the top destinations thanks to the welcoming policies of former Chancellor Angela Merkel.", "score": 4.486035, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Cameron, who was prime minister between 2010 and 2016, promised to reduce annual net migration from \"hundreds of thousands\" to \"tens of thousands\".", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There have been just three interceptions at sea since Mr Macron announced last July that France would modify its maritime policy to allow officers to board small boats.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So far this year, some 4,441 people have arrived in the UK on small boats.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But the French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", "score": 4.331365, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Xavier Ducept, France's junior minister for the sea, has criticised the UK for making demands that risk the lives of asylum seekers.", "score": 4.313675, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If the UK accepts illegal migrants or legalizes them or gives them work permits, of course this is going to encourage other people to come.", "score": 4.30329, "claim_types": ["correlation", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "National Crime Agency Branch Commander Saju Sasikumar said: 'These defendants used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The jury of seven women and five men was told the three asylum seekers had been partying at Horizon on the seafront during the evening in question.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK is to pay France £16.2m to patrol beaches for the next two months, as the two sides continue to hammer out a new deal to intercept small boats attempting to cross the English Channel.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It said 700 officers from units dedicated to intercepting small boats will patrol the French coastline round-the-clock.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Paris is concerned that UK demands could put the lives of asylum seekers and French officers at greater risk.", "score": 4.20493, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NCA Branch Commander Saju Sasikumar said: \"This group used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But he argues the same welcoming nature that propelled his family to success is now being taken for granted by asylum seekers living on welfare in tax-payer funded accommodation, while the very fabric of Britain is torn apart by high levels of legal migration.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Trump administration has gutted a Justice Department program that helped many thousands of illegal migrants fight the department's own deportation cases.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The pugnacious 39-year-old tech millionaire delivers his Dover assault on migration in the gravest of terms to a room of Reform enthusiasts, hitting out at the \"invasion\" of people who have arrived in the U.K. without permission on small boats.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hove Crown Court heard the three asylum seekers then targeted the lone drunk woman in a 'cynical, predatory and callous' attack.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform UK leader Nigel Farage said the UK needed to pull out of the European Convention on Human Rights (ECHR) to stop small boat crossings.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Keir Starmer's pledge to \"smash the gangs\" profiting from small boat crossings has followed a pattern set by Conservative-led governments of employing \"bullish rhetoric\" with little evidence that it can be delivered, an expert has claimed.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'She is determined to deliver the best deal for the British people to prevent illegal migrants getting to Britain,' the source said.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Home Secretary said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 4.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The gritty video that Springsteen released for \"Streets of Minneapolis\" captured a city under siege by 3,000 federal officers, which President Donald Trump's administration called its largest immigration enforcement action anywhere in the country.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Home Secretary has agreed a two-month extension to the small boats deal with France, just hours before it was due to expire.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "One of the things that Shamal Ameen would like to see happen is to have this more closely related, relate the money to the effectiveness of the patrols in stopping migrants crossing in small boats.", "score": 4.037115, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "RT @afneil: Keir Starmer claims Nigel Farage is to blame for the boat people because Brexit took us out of the Dublin Convention (in 2020), which allowed us to return asylum seekers to the EU countries from whence they came.", "score": 3.98733, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Nigel Farage said the UK needs to come out of the European Convention on Human Rights to stop small boat crossings.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Two Vietnamese nationals who advertised small boats people smuggling on Facebook have been sentenced following a major UK-French investigation.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The gang shared video clips of people travelling on small boats and posted UK mobile numbers for migrants to arrange travel via Zalo, a Vietnamese instant messaging app similar to WhatsApp.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "After the Horizon nightclub closed at 5am the three asylum seekers left the club and CCTV played to the jury allegedly showed them on the street outside the club.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Among other services, the representatives accredited by the office helped illegal migrants appeal their immigration denials and ward off deportations.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Migrant ran Facebook network to lure hundreds to the UK in small boats", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As a result the Dublin Agreement actually made us a net recipient of asylum seekers.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He said a Reform UK government would order the Royal Navy to tow small boats back to northern France, which he claimed would be possible if the UK pulled out of the ECHR.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Home Office sources slammed those proposals saying they were \"completely reckless\" and would lead to a \"surge in illegal migrants getting to Britian\".", "score": 3.7800599999999998, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Farage warned the government's failure to strike a deal by the deadline could trigger a fresh wave of illegal migrants crossing the English Channel.", "score": 3.7800599999999998, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vietnamese people smugglers who advertised small boat crossings for £15,000 on Facebook are jailed for a decade https://t.co/TUA0rJfxPV", "score": 3.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Speaking to the media at Heathrow Airport, Mr Farage demanded the UK leave the European Convention on Human Rights (ECHR) to bring an end to small boat crossings.", "score": 3.7623699999999998, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A Home Office spokesman called France the UK's most important migration partner and said joint efforts were helping to reduce small boat crossings.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Home Office spokesperson said: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Home Office spokesperson told the Press Association: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We'll also look into the UK's deal with France to combat small boats.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So I mean, I think what what's clear amongst all this is the entire strategy of stop small boats is this smoldering wreck.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These charges or convictions included serious and violent offenses, including 57,081 assaults; 18,579 sexual assault and sex offenses; 12,895 weapons offenses; 11,822 burglaries; 5,462 robberies; 2,894 homicides; and 2,766 kidnappings ...", "score": 3.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Dublin Convention was a two-way street for asylum seekers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The court heard Alshafe and Ahmadi had arrived in the UK by small boats in June 2025, while Al-Danasurt had arrived by the same method in September 2024.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK has failed to renew a deal with France to pay for beach patrols to intercept small boats attempting to cross the English Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Now, that deal that Kate was talking about, the UK French deal on patrolling beaches to stop small boats.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK and France extend talks over new small boats deal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shabana Mahmood, the Home Secretary said that a \"new and improved UK-France deal\" was yet to be finalised but stressed that whilst negotiations took place \"French law enforcement operations to stop illegal migrants in France will continue.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK is locked in last-minute talks with France over the renewal of a deal to pay for beach patrols to intercept small boats in the English Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a statement, Ms Mahmood said: 'Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In a statement, Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "She lives in the area where small boats are now leaving from.", "score": 3.47393, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The stopgap arrangement, which will last for two months, comes after French negotiators refused to agree to UK demands for further interventions and patrols to stop asylum seekers from reaching the UK via the Channel.", "score": 3.436025, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Vietnamese people smugglers who advertised small boat crossings for £15,000 on Facebook are jailed for a decade", "score": 3.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'If there are eighty people on an overcrowded boat, including women and children, then it is extremely dangerous to try and stop them.", "score": 3.281555, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "At midnight tonight, the deal between the UK and France designed to combat small boat crossings is due to end.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In this half hour, the UK and France remain locked in last-minute talks over a new deal to tackle small boat crossings across the channel.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "French police will continue to patrol beaches where small boats are launched from after the British government extended the agreement covering it for two months", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The British prime minister urged \"closer work together on returns (of illegal migrants), on border security, and on tackling people smuggling networks\".", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Many claim they are asylum seekers, despite the Balkan country being categorised as a safe place to live.", "score": 3.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The NCA said it worked with social media networks in 2025 to have more than 10,000 posts, pages or accounts linked to organised immigration crime removed from platforms, a record number.", "score": 3.10771, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It's a key part of the operations of the, of the anti, anti-immigration, uh, service, seeking to root out and remove those judged guilty of being illegal migrants in America.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"In practice the results have disappointed, because factors outside their control have played a huge role. That included EU membership; in the case of net migration, France's willingness to cooperate on asylum policy; or the sprawling, decentralised activities of smuggling gangs that are very difficult for government to contain.\"", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "During FY 2024, the 81,312 criminal noncitizens ERO arrested had 516,050 charges and convictions, for an average of 6.3 charges or convictions per person.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hop Can Nguyen, 46, and Hoang My Tra Nguyen, 25, helped traffic at least 250 migrants into the UK - offering journeys costing up to £18,000 - before disappearing from Home Office accommodation.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When it was announced in 2023, the previous Tory government said the £478 million package would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Officials pointed to some 42,000 illegals having been stopped from making the crossing.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hop Nguyen was jailed for 12 years after he helped traffic at least 250 migrants into the UK - offering journeys costing up to £18,000", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A five-month NCA investigation found the group facilitated crossings for at least 250 people between January 2023 and April 2024.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Home Office officials insist that nearly 60,000 migrants who have made the illegal channel crossing have been deported since the general election.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "For example, a 2011 study by the Government Accountability Office reported 25,064 foreigners arrested for homicide from 2001 to 2004.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue. I will do whatever it takes to restore order and control at our borders.\"", "score": 3.092465, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "And talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", "score": 3.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", "score": 3.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Americans are being slaughtered in massive numbers by the non-enforcement of our existing border immigration laws ... and it's all 100 percent preventable through the adequate enforcement of our existing laws.", "score": 3.039905, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Yusuf has called for US Immigration and Customs Enforcement (ICE) style removals to deport 600,000 people from the UK over five years.", "score": 3.0274850000000004, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "According to St. Fort ́s arrest warrant, he is under indictment on charges of conspiracy to commit offenses against the United States, bribery involving programs receiving federal funds, and violating a law prohibiting interstate travel for unlawful activities.", "score": 3.023415, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Starmer has now presided over the most Channel crossings of any Prime Minister - up 45% since the election.", "score": 2.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shabana Mahmood has extended a deal with France attempting to stop migrants boarding small boats in Northern France.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yes, you can, and certainly, you know, the idea that there have been thousands of people crossing, uh, you know, the channel and the government wants to point out it's prevented 40,000 crossing attempts, but equally there have been pretty much 40,000 successful crossing attempts in the last year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only a third of the migrants who tried to cross illegally between January and March were stopped.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ultimately, does Nigel Farage really want 42,000 more migrants coming to Britain?", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They are now going to pay £2 million a week for continued failure.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of Albanians entering Britain via the Channel route spiked in 2022, with more than 17,000 individuals applying for asylum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ledgers recovered from their homes showed payment amounts against 250 names, meaning the pair stood to make around £750,000 from those crossings alone.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"They are now going to pay £2m a week for continued failure.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Home Secretary Shabana Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Because I mean, numbers don't seem to have significantly dipped in in illegal migration while that deal was in place.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Britain is to pay millions more to France to police the Channel - despite the French refusing to accept targets to stop the boats.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Over the four weeks ending March 22 this year, just 23.2% of migrants attempting to cross the Channel were prevented by French police.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I mean, the argument from the British side here is that we've paid over 400 million pounds to the French for this previous three-year deal and yet the rates of boats being stopped has actually gone down, the success rate is worse.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Saying the English Channel would be \"busy\" once the deal expired, the Reform UK leader said \"it wouldn't make any difference whether we agreed to a further £365 million or not\" adding that those who make the crossing have a 97.5% chance of staying in the UK.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By 2023 the office had greatly increased the number of accredited representatives dealing with illegals.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I mean, if you look at the most recent weeks figures, um, there were 272 migrants who crossed in four boats just over a week ago on the 23rd of March.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "French authorities have prevented around one in three attempted channel crossings, but the interception rate was higher two years ago at around 45%.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025, and Ms Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This issue may have gone off the back on the back burner a little because of the war, but conflict brings more immigration.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", "score": 2.93464, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I heard the deal between the UK and France on stopping small boats crossing the channel comes to an end today.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ALIPAC posted a list of 1,409 victims of migrants last week and has been forced to add new names over the weekend.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Something which hasn't particularly worked to be frank, because numbers have not gone down since then.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But none of the establishment media sites track the growing number of Americans killed by the federal and state governments' refusal to exclude migrants from American communities.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More messages were exchanged where the victim accused him of raping her.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We've had many incidents, uh people dying of course in in the water, and I think the responsibility that the European Union, um carries in this issue and the fact that we are not addressing the roots of the problem of this, these my these migration these migration fluxes are really, are at the at the core and and the people who have not decided to stop immigration are greatly responsible for this tragedy that's happening on the French coast and on the channel with all these people going to the UK.", "score": 2.851145, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Immigration enforcement has sharply reduced the flow of migrant workers, and the labor market is adjusting to the new arithmetic.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Villanova report, titled \"The Crisis of Unrepresented Immigrants: Vastly Increasing the Number of Accredited Representatives Offers the Best Hope for Resolving It,\" says:", "score": 2.7846200000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Similarly, Reuters and ABC News are tracking deaths in migrant detention centers, and as of March 31, have reported 14 deaths.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Migrants who have legally lived and worked in the UK for years could see themselves deported if Reform scraps permanent settled status.", "score": 2.7705450000000003, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The business-backed Cato Institute downplays the scale of deaths by arguing that migrants' arrest rates are lower than those of the U.S. population.", "score": 2.75796, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It comes as specialist French police units attempt to intercept small boats on canals and within 300 metres of the shore.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A Home Office spokesperson said: \"France is our most important migration partner and together our joint work is bearing down on small boat crossings.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Normally during the winter months we see a drop in the amount of boats making the journey.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Normally during the winter months, we see a drop in the amount of boats making the journey.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A migrant who raped a customer while he was working as an Uber Eats delivery driver has been jailed for 44 months.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In all, just 2,064 out of 6,233 attempted crossings have been stopped.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And it wouldn't make any difference whether we agreed to a further 365 million or not.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Net immigration ran at roughly three million a year, creating a labor supply so abundant that employers could hire aggressively while workers cycled rapidly from job to job.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And of course, we need to have much stronger policies in saying if you are caught, uh being illegal as an illegal migrant, you cannot, you will be sent back.", "score": 2.6867799999999997, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Britain is on a \"catastrophic\" path headed for \"sectarian violence,\" says the entrepreneur tasked with selling Reform UK's hardline migration policies - and talking up Christianity.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yusuf says if Britain stays on its current trajectory \"we're headed to sectarian violence in this country.\"", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "After delivering the food at midday he returned to the property at 5pm where the harrowing sexual assault took place (file image)", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He told a French parliamentary committee last week that such funding would 'be extremely dangerous for migrants, for the security services, and for France.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just 90 minutes later at around 6am he allegedly helped target a 'visibly intoxicated' female as she was leaving the club before raping her with two others on the beach, pictured", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "ICE is calling on Virginia Governor Abigail Spanberger and Virginia's sanctuary politicians to not release this murderer back into our communities.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "These crossings are extremely dangerous and the defendants had no interest in the safety of those making the journey aside from ensuring they received their payment and made significant profits.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As weather improves, we'll hear from a fisherman in the channel this morning in about five minutes time, who says he's seen more crossings in the last few days than at the same time in the last few years.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "British taxpayers will now be forced to fork out an extra £16 million over the next two months while negotiations continue.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Then there's scrapping Britain's permanent settled status for migrants, a move that could see people who have legally lived and worked in the U.K. for years deported.", "score": 2.62201, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ms Dutka added: 'The boats were managed by third party criminal syndicates after deducting those costs, for example accommodation, profit per migrant would be £1,500 to £2,000.'", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At a press conference at Heathrow on Tuesday, he said: \"Tomorrow will be a very busy day in the English Channel, and it wouldn't make any difference whether we agreed to a further £365m or not. Even if the French do stop boats from crossing, the same people come back the next time there is a calm day, and it's all about pull factors, it's all about the fact you've got a 97.5% chance, whoever you are, of staying in the United Kingdom if you illegally cross the Channel in a small boat.\"", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The two were part of a larger international organised crime group bringing Vietnamese migrants into the continent, with Ramal Briem jailed for more than 10 years on March 26 for his role in the same crime group.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is a huge problem, it will not get better until we address the roots of this problem and until we stem the influxes upstream.", "score": 2.6029299999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "I also think the UK government needs to do more of course, they need to say any illegal any illegal migrant in the UK that's found in the UK is going to be sent back and cannot come back to the UK.", "score": 2.600525, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"We're headed for not just a bad outcome, but a catastrophic one, where everybody's now divided amongst racial or religious lines, voting accordingly, the economy is not growing, the most productive people are leaving,\" he warns.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As long as the the the the people know, the human traffics know and these people know, once I'm in Europe, once I'm in France or once I'm in the UK, I will not get sent back.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But it likely has missed many American victims because police, politicians, and the media do not want to know the murderers' legal status, he told Breitbart News.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But this month, the senior DOJ attorneys who oversaw the program were reassigned and the program was effectively neutered.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reform plan to stuff Lords with '900 peers' to push deportation plans", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Is there a sense that the last deal, I mean, everyone's very concerned about it coming to an end, but did it actually work?", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So I think it's it's a problem that we share and that we cannot solve by by trying to send the people back once they've traveled so far, um, and when there's so many of them on the French coastline.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only 209 transfers were agreed.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The two month extension to the patrol deal is being backed by £16.2m in UK funding, according to the Home Office.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was a really interesting argument made yesterday in a French parliamentary committee by the French, by the man responsible for but basically for boats and and this, boat security policy, small boats.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Negotiations for a new 650 million pound channel migration deal are currently deadlocked hours before the current three-year deal expires at midnight tonight.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As you just heard, you know, as you just said, the 650 million pound cost over three years compared with the last deal which cost 475 million pounds.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Out of 6,233 attempted crossings in the first 12 weeks of this year, some 2,064 (33.1%) were stopped.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 4,400 migrants have crossed the Channel this year by the end of last week.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That has only had about 300 people who have left the UK from it and the same amount of people are coming in return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than 4,400 have already made the crossing since the start of the year, despite poor weather.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The program was huge and involved more than 850 nonprofit migrants' rights organizations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Figures published by the UK Home Office show that French interception rates have fallen to the lowest on record so far this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under a 2023 agreement signed by then Prime Minister Rishi Sunak, the UK has paid £476m to France for extra patrols to disrupt smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This is the original three-year deal, 475 million pounds, struck by Rishi Sunak, I must add, comes to an end I understand at midnight.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That's down from 35.1% last year and 36.7% in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The figure reached more than 300,000 by 2015.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The then Tory government announced the £478m package in 2023, saying it would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Shabana Mahmood has signed off a £16.2 million cheque for a two-month extension to the current deal with Paris, which subsidises French beach patrols.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He's told Times Radio the number of crossings is going up.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "These accredited non-attorney representatives, for instance, helped 7,779 migrants with their removal cases between 2010 and 2020, Villanova added.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only 33% of crossings are now being stopped (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It saw the UK paying £476million to France to fund extra patrols to catch smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under the current deal, nearly 700 law enforcement officers are on the ground patrolling beaches, using drones and buggies to stop people getting on boats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number intercepted as they tried to cross the Channel in the first three months of the year was the lowest on record.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The government is trying to renew it, try and, you know, even potentially putting in extra money into it, 650 million over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since then, the number of crossings has increased, with 41,472 people arriving in the UK by small boat in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since Labour came into power, numbers in such accommodation have increased by over 6,000, with continued pressure on communities like ours in South Northamptonshire.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The existing near £500 million arrangement was due to end at midnight on Wednesday morning and the extension has been signed while the UK and France continue to thrash out a deal.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But wouldn't that involve appointing 900 or so new Reform peers to get a majority from a baseline of zero, I ask?", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "By 2024, that had fallen to below 3,000, according to Migration Observatory analysis of Home Office numbers in October.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So we were net recipients by over 1,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK to pay France extra £16m in stopgap deal to patrol Channel beaches", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK will pay France an extra £16.2m to keep police patrolling Channel beaches and prevent a surge in small-boat crossings after negotiators failed to agree a permanent deal before a midnight deadline.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At present, the UK pays nearly two-thirds of the annual cost of patrols in northern France.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some 6,233 attempted crossings took place in the first 12 weeks of the year, with only 2,064 being stopped according to reports by the Telegraph.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under a three-year agreement signed in 2023, the UK has paid £476m to France for extra patrols to disrupt migrant smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to city records, the city agreed to pay Fort NYC Security more than $7 million to provide security services from 2023 to 2027, including at a Bronx hotel used as a homeless shelter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Activists in Illinois note that they have served approximately 948 individuals in Central and Southern Illinois, according to WGLT.org.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And now the Boriswave, the low-paid millions who arrived earlier this decade, are soon to be granted Indefinite Leave to Remain (ILR), giving them access to benefits and housing at taxpayers' expense forever.", "score": 2.545585, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "All three men are charged with rape while Al-Danasurt - who is said to have filmed the attack and egged them on - is additionally charged with sharing intimate videos of the attack.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The roster of approximately 850 recognized organizations includes public libraries, job training and workforce development programs, domestic violence shelters and treatment programs, English language programs, labor unions, parishand faith unit-based charitable organizations and ethnic ministries, family resource centers, DREAMer programs, and other student groups.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yusuf doubles down on his pledge to embark on an unprecedented mass deportation program and rip Britain out of its international human rights treaties.", "score": 2.5271350000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He allegedly raped a lone drunk female on a beach after spending part of the evening chatting up another woman", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July while motorists are already counting the cost of the war, with drivers paying £544 million extra for fuel since the US-Israeli bombing campaign began.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He's twice in the last week, or at least his administration has, mocked our armed forces once again.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Well, what I've just been saying, we need to increase our defence spending, a fair bit, not to the full 3%.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Our changing world and increased #threats mean that historic #defence spending targets are no longer enough.", "score": 4.386095, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The former EastEnders actor and friend of the Armed Forces is behind a drive, launching today, to secure the final £2.5m needed to open the Royal Marines Experience at the National Museum of the Royal Navy.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Donald Trump tells UK to secure Strait of Hormuz and 'go get your own oil ́", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Putin has released tens of thousands of killers, rapists and thugs on condition that they are conscripted into the Russian armed forces.", "score": 4.163775, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "President Trump is right, the US armed forces are the best equipped, best trained, and most effective in the world.", "score": 4.12379, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Donald Trump shows absolutely no sign that he realises he's got to avoid it.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Where our armed forces are being insulted routinely by Donald Trump, where today we have a threat that the US won't come to our defense in our time of need, because of Donald Trump.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Podolyaka's report reversed years of messaging that the Armed Forces of Ukraine (AFU) troops were inferior to Russia's military.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Donald Trump said the UK and other countries which did not take part in strikes against Iran should secure the Strait of Hormuz themselves.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Donald Trump dramatically washed his hands of the crisis and told the UK to 'go get your own oil' today as the strategic Strait of Hormuz remains blocked.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "MPs have privately expressed concerns there is potential to embarrass the king if the US president continues his criticisms of the UK's armed forces before or during the trip.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prime Minister Keir Starmer said on Thursday he had authorised the military to board and detain Russian ships in British waters to disrupt a network of vessels that his government says enables Moscow to export oil despite Western sanctions.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Lieutenant General Sir Robert Fulton, former Commandant General Royal Marines, said: \"This £2.5m target represents more than a financial goal - it represents a national commitment to our Armed Forces and remembrance.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And I don't really see the right level of seriousness when it comes to approaching those issues, whether or not they're security issues, to do with defence spending, economic issues, to becoming more economically independent of the US.", "score": 3.96055, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A reserve fleet of fuel tankers can be deployed at short notice to increase distribution capacity, while the Armed Forces could also be called upon to assist with deliveries if required.", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "But as if to highlight the diplomatic tight rope Charles and Queen Camilla must walk, the announcement came less than an hour after President Donald Trump launched another blistering attack on the UK for failing to give more direct help on his attack on Iran.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Keir Starmer has made announcements about increasing defence spending, but actually in the financial statements that we've heard so far, it's not clear how we're going to meet those new targets that have been set.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of course, this administration and the United States Armed Forces will always act within the confines of the law.", "score": 3.734295, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Designed as a place of inspiration, the experience will ensure extraordinary stories from the Napoleonic Wars, both world wars, the Falklands War, Northern Ireland, operations in Iraq, Afghanistan, and global humanitarian missions can continue to be told.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"We recognise the interest that the Royal Family takes in us, and that is reflective of the armed forces' relationship with the nation. That's what it symbolises, that's what it signifies, and that's why it's so important.\"", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "President Donald Trump has told Sir Keir Starmer that the UK will have to \"fight for yourself\" as the US would not provide any support in fuel supplies.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Despite the drop in 2024, suicide rates among active duty troops overall still have gradually increased between 2011 and 2024, while the National Guard and Reserve have stayed largely stable, the report said.", "score": 3.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Donald Trump told countries including the UK 'go get your own oil' as he challenged nations to get supplies straight from the Strait of Hormuz", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The King reflected on the UK's relationship with its allies at a \"difficult time\" amid war in the Middle East, the former head of the armed forces said as he attended Windsor Castle for his investiture.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Separately, the Times reported that Ms Reid, the MP for East Kilbride and Strathaven, left the Armed Forces Parliamentary Scheme (AFPS) last year following an alleged incident at Faslane with a different officer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "US President Donald Trump's approach to foreign policy is often dismissed as chaotic or erratic.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Speaking to the Press Association after the ceremony, Sir Tony said: \"He reflected on my service and I reflected on his support to the armed forces, and how grateful I am for all that he and the royal family do for us.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ingrid Seward, editor-in-chief of Majesty Magazine, said: \"It's going to be a slightly tense situation because of his dissing of Starmer and British institutions starting with the armed forces.\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Tony described the relationship between the Royal Family and the armed forces as \"extraordinary\" and said their visits boost morale, adding: \"I think the armed forces really covet their relationship with the Royal Family and with His Majesty the King.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Visiting the UK Armed Forces at Dukhan air base, Healey said the government has extended the deployment of UK Typhoon jets to Qatar.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The King himself today reflected on the UK's relationship with its allies at a 'difficult time' as he gave a knighthood to a former head of the armed forces at Windsor Castle today.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Tony described the relationship between the royal family and the armed forces as \"extraordinary\" and said their visits boost morale.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last week Keir Starmer made a point of announcing that he would allow our forces to conduct maritime interdiction operations to board Russian Shadow Fleet vessels in the Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The head of its armed forces, Field Marshall Asim Munir, is in US President Donald Trump's favour.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Tories and Reform have been very clear about how they would get the money for defence spending, but actually, Labour and the Greens, how are they going to, how are they going to get that?", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The overall trend in suicide rates for active duty service members \"mirrors the increase in the U.S. population suicide rates over time,\" the report said.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Germany's decision to remove defence spending from its fiscal rules will put it on a course for debt to reach 100% of GDP.", "score": 3.534885, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ministers also have a series of measures to maintain supply in the event of a shortage - such as a fleet of reserve fuel tanker vehicles; calling on the Armed Forces to make deliveries; or releasing emergency oil stocks which the UK is obligated to hold.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "WASHINGTON (AP) - Fewer American service members died by suicide in 2024, with the number of deaths falling by 11% to 471 from a year earlier, according to a Pentagon report released Tuesday.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the report, nearly half of the active duty service members who died by suicide in 2024 had a mental health diagnosis such as alcohol use disorder, depression or anxiety.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The material can be fairly quickly enriched to the 90% threshold needed for weapons-grade uranium.", "score": 3.281555, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "During Merz's last visit to Washington DC in early March, Trump laid into Spain's PM, Pedro Sánchez, over his refusal to allow US access to Spanish air bases for strikes on Iran, and for failing to meet Nato's defence spending target of 5% of GDP.", "score": 3.27318, "claim_types": ["quantity", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The continued blockage of the Strait of Hormuz and threats to shipping routes in the Red Sea have led oil prices to jump above $100 per barrel.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But in the same breath, Donald Trump has threatened to obliterate Iran's power plants and oil wells if a deal isn't reached soon.", "score": 3.2280949999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Even the UK talks the talk, but still hasn't released its plans for the future of the armed forces.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The US and Israel began attacking Iran in late February, striking the mullah regime's leadership, nuclear and ballistic missile programme and armed forces.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The move risks further alienating US president Donald Trump, who has threatened to cut trade with Spain for denying the US' use of Spain's bases during the Middle East war.", "score": 3.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Asked about concerns among some of President Donald Trump's base about the possible use of ground troops in Iran, Hegseth declined to tip his hand.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "US President Donald Trump said Tuesday the countries that have not joined the Middle East war but are struggling with fuel shortages should \"go get your own oil\" in the Strait of Hormuz.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Sir Keir Starmer discussed the Middle East crisis with Syrian President Ahmed al-Sharaa (Justin Tallils/PA)", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The rebellion controlled nearly a third of the country with an estimated 15,000 to 20,000 fighters at its peak in the mid-2000s.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @ModernNavy: There's been a tenfold increase in security incidents at Britain's nuclear submarine base since #Russia's invasion of #Ukraine (16 to 149 last year).", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The arrival of 2,500 Marines and another 2,500 sailors is keeping the number of US soldiers in the Mideast region at over 50,000, while last week the Pentagon also ordered about 2,000 soldiers from the Army's 82nd Airborne Division to the region in order to give Trump additional military options.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"If you drop 2,000 guys on there, you need 8,000 liters of water every single day... never mind food, ammunition... never mind how you're going to evacuate the wounded,\" he said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Um, we've seen uh thousands of additional troops sent.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\". Support is at 30% and falling. They don't know what to do.\"", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The conflict has left more than 3,000 dead and caused major disruptions to the world ́s supply of oil and natural gas, roiling global markets.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most service members who died by suicide in 2024 were enlisted men under the age of 30, the report said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Billions of public funds have been poured into defence, with next to no oversight.\"", "score": 3.05185, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prime Minister Sanae Takaichi 's Cabinet in December approved a record defense budget plan exceeding 9 trillion yen ($58 billion) for the fiscal year beginning April and aims to fortify its strike-back capability and coastal defense with cruise missiles and unmanned arsenals.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The decrease emerged under Defense Secretary Lloyd Austin during the Biden administration and followed a rise in the number of military suicides in 2023.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The rate of suicides per 100,000 service members also dropped that year compared to 2023, the report said.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The notoriously unreliable vertical takeoff and landing (VTOL) aircraft has earned the nickname 'widow maker,' having led to 30 deaths before it even entered active service in 2007.", "score": 2.959835, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And we've only got limited amount, not not enough.", "score": 2.9374000000000002, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Reduced flows of hydrocarbons and other essential commodities from the Persian Gulf have pushed global prices higher, raising the risk of significant economic disruption.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'I am proud of the courage and professionalism our armed forces have shown since the start of the war and my message to Gulf partners is Britain's best will help you defend your skies.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The use of the base is governed by a treaty between Rome and Washington: routine armed forces flights and work are permitted including operational and logistical, but warfighting activity requires the express permission of the Italian government.", "score": 2.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Many of the other 16 who died were burned alive.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Authorities name 16 killed in Tennessee explosives factory blast", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two dozen people have died in Gulf states and the occupied West Bank.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to the FT, the $3.2bn equity fund pursues \"growth opportunities by investing in companies that may benefit from increased government spending on defense and security amid geopolitical fragmentation and economic competition\".", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Britain will send more troops armed with air defence systems to the Middle East to help blow Iranian missiles out of the sky.", "score": 2.8878899999999996, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Last week, the head of France's armed forces held a videoconference with 35 nations to discuss restoring movement through the Strait of Hormuz, according to the nation's defence ministry.", "score": 2.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Pentagon demands gigantic build-ups costing billions, the generals never seem prepared for what happens after phase one, the soldiers are far too keen to kill people - not just enemy soldiers but enemy civilians.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"They'd have to clear the city, every building... They're gonna have casualties, and a lot of casualties,\" Krapivnik said.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Food costs could also surge as fertiliser supplies are choked off, and the region is a huge source of aluminium.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Such a move would involve raiding Kharg Island, the 'crown jewel' of the regime where 90 per cent of its oil is loaded on to tankers.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is believed almost 8,000 Marines and Paratroopers will soon be gathered in the Gulf, with a further 10,000 on standby for deployment.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hundreds of flights operated by the flag carrier for Sweden, Denmark and Norway are said to be scrapped.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some 7 per cent of diesel is imported from the Middle East.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Exactly, which is why we need to have stronger defenses.", "score": 2.72472, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The British government would be duty bound to respond in some way militarily to that act of military aggression.", "score": 2.712875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'No survivors' in munitions factory explosion after 16 killed, police say", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UN's Interim Force in Lebanon (UNIFIL) wrote online: \"Two UNIFIL peacekeepers were tragically killed in south Lebanon today, when an explosion of unknown origin destroyed their vehicle near Bani Hayyan.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A former Royal Navy officer who put his erect penis through a shower curtain where a female colleague was washing has been jailed for two-and-a-half years.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More than a decade of civil war in Syria led more than 5 million people to flee and a significant number to seek asylum in Europe, with social and political ripples for the continent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And many other countries have now exceeded the 2% target which was set many, many years ago.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While all allies reached the 2 percent of GDP spending target on defense last year, there's still a big gap in how much countries shell out.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A third had workplace difficulties, while 45% had intimate relationship problems.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The carrier strike group consists of more than 6,000 sailors.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But many European nations have increased the amount that they're spending on defense.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "More British troops are being sent to the Middle East, bringing the number of UK service personnel in the region to nearly 1,000.", "score": 2.6975749999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So far be it for me to start jumping to the defense of Donald Trump but I'm going to on this one when he says it's about time you started looking out for yourself a bit more and stopped relying on us.", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Navigation becomes unsafe in British waters, where any vessel may be subject to piratical seizure.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"Its application to residents of the occupied Palestinian territory would constitute a war crime,\" he said.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "He groped other officers without permission, including one attack where he 'put his hand down the back' of a woman's swimming costume 'around her bottom and on to her vagina'.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The visit comes as Iran continues its aggressive missile and drone campaign against civilian infrastructure, military sites and critical national assets across the Gulf, with more than 3,500 missiles and drones fired to date.", "score": 2.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"You've got basically a half ton of what's effectively weapons grade uranium that you've got to extricate,\" Ruhe said.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were two \"very high risks\" to vehicle mobility and lethality that were unresolved as at February.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Hegseth added: 'Our adversary right now thinks there are 15 different ways we could come at them with boots on the ground.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "While the majority of those troops are part of a rotation of forces planned before the war, some are among roughly 1,500 paratroopers the Trump administration decided to surge into the region last week.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And either there is one, like there is now, in which case it's unsafe to go in at all, no, very few merchant vessels except the ones that are run or are allowing, and no US warships.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ultimately, the biggest boost to the axis of autocracies might be the stress that the Iran war has put on the dynamic between the United States and its allies.", "score": 2.5968999999999998, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And then when we're in the conflict, we are dragged in massively.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Defence had paid Hanwha a total of $148,129 in interest penalties as at October 2025, with $335,889 in payments remaining, according to the audit office report released on Monday.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Special operations forces and conventional infantry units could be deployed if the President chooses to escalate the war.", "score": 2.5765849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Trump has maintained the US has 'plenty' jet fuel, but airline bosses say firms are facing an 'existential challenge' with depleting supply pushing up the cost of flying.", "score": 2.56732, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The military's statistics generally reflect suicide rates for society as a whole, when adjusted for age and gender, because a majority of those in the military are young and male.", "score": 2.56707, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Diesel and petrol prices are running at the highest levels since 2022, and projections this morning suggest typical energy bills will increase by £288 in July when the cap next changes.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The S&P 500 surged 2.9% to its biggest gain since last spring, while the Dow industrials advanced more than 2.5% as doubt about a possible end to the war swung back to hope on Wall Street.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Sir Keir Starmer discussed the situation with Syrian President Ahmed al-Sharaa in Downing Street.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Beijing has boosted the share of non-fossil energy sources in its mix from 26% a decade ago to 40% now, the analysis said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Have racked up more than 1,280 hours protecting British nationals, bases and partners.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The restriction on cutting troop levels below 76,000 slows the process, but doesn't change its direction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "At least 3,500 Marines have arrived on USS Tripoli , an amphibious assault warship.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Government has announced a £53 million package of support for heating oil customers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I'm telling to you, sir, more than 10 verbal notes, official notes, we declared to the FCDO, we sent to the FCDO to give me some to give us some evidences.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The pair are accused of pocketing $162,663 in winnings, which they agreed to split, with the reservist's share transferred via cryptocurrency.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Ministers also cite how around 90 per cent of the crude oil refined in the UK was imported in 2025, but only around 1 per cent of this came from the Middle East.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of active duty service members who died by suicide that year was 302, while 64 were reservists and 105 were in the National Guard.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK is currently sourcing at least half its jet fuel from the Middle East amid a fall in domestic refining and a halt on Russian imports since the Ukraine invasion in 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And they were able to get about three to four vessels out a day, uh, whereas the total is about 135 when the straits is functioning normally.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409 million for diesel and £135 million for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel Tuesday, up more than 45% since the war started Feb. 28.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "NATO countries hit 2 percent of GDP spending target", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This final measure was enacted on March 11 as part of the UK's coordinated release with the International Energy Agency (IEA) of 400million barrels of oil to the market.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started on February 28, when the U.S. and Israel attacked Iran.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Taxpayers will be slugged hundreds of thousands of dollars in penalty payments after Defence bungled the procurement of a $7 billion contract for infantry fighting vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We were the number two contributor to NATO, we're now something like number 12.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "WASHINGTON (AP) - Thousands of additional U.S. troops are heading to the Middle East as the Trump administration has insisted that progress has been made in talks with Iran and has threatened to escalate the war if a deal is not reached soon.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The United Nations rights chief has slammed the Israeli parliament's approval of a 'deeply discriminatory' new death penalty bill, warning that applying it in the occupied Palestinian territory 'would constitute a war crime'.", "score": 2.538635, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Mr Trump wrote: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "In a post on his social media platform Truth Social, the US president said: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "According to a report from the Los Angeles Homeless Services Authority (LAHSA), homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured over $500 million into fixing it", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "According to a report from the Los Angeles Homeless Services Authority, homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The data shows that while the population of people experiencing homelessness in Savannah rose from 579 in 2024 to 628 in 2025, the number of people living unsheltered decreased, the Current reports.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"No party has put forward a credible plan to deliver the homes Scotland needs, meaning politicians of all parties are planning for more people to be pushed into homelessness.", "score": 4.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In 2025 the Affordable Housing Supply Programme delivered 6,289 affordable completed homes, approved 5,833 homes, and started 5,856 homes.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Annual decreases were reported for approvals (9% decrease), starts (15% decrease), and completions (25% decrease) of homes provided via the Affordable Housing Supply Programme between 2024 and 2025.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The First Minister added that his Government had put more than £900 million into the affordable housing sector for the next financial year and there was an uptick in housebuilding in recent months.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Prosecutors said the nonprofit's executive director, Roberto Samedy, 50, and its former board chairman, Jean Ronald Tirelus, 50, embezzled from the organization - at one point pocketing $800,000 earmarked for \"economic growth and affordable housing\" in distressed Brooklyn neighborhoods.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Indirect investments from the Savannah Affordable Housing fund further helped support applications for three low-income housing tax credits, service centers and infrastructure.", "score": 4.3787199999999995, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Those tax credits will now help developers build 41 new affordable units for people experiencing homelessness, officials said.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The dearth of affordable housing made the state ́s Division of Housing move quickly on releasing AB540 funds.", "score": 4.347765, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was also a fall in affordable housing.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured huge funds into fixing it.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An idyllic city known for its historic buildings and Southern charm has been beset by homelessness and drug use under a Democratic mayor.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, in heartland regions such as Anglesey (Ynys Môn) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A bill last year that would have replicated the model for affordable housing projects died without a full vote in the Assembly.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Authorities have also implemented a City of Savannah's Top 10 Most Wanted list, the mayor said, as he applauded the Dundee Cottages project comprising 39 new cottages and 16 brand new apartments for people experiencing homelessness.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Just days before the Labour Yimby curry night, to the dismay of some councils and social housing groups, Reed announced \"emergency measures\" to cut the amount of affordable housing that developers were required to build in London.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Powderhall project in Edinburgh, centred on the grounds of a former waste transfer station, bowling greens and adjacent stables, will deliver a mix of affordable housing, community facilities and green space as part of a long-term transformation.", "score": 3.74449, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The West Wemyss mass evictions controversy could be the first of many unless politicians act, a major homelessness charity has warned.", "score": 3.7135350000000003, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "\"It's all because we find it too difficult to build the volume of social housing that would change the game.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'America's prettiest city' beset by homelessness and drugs nightmare under woke mayor: 'They're injecting in broad daylight' https://t.co/UTYgfC7MqM", "score": 3.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fife Council housing spokesperson Judy Hamilton gave an update on new builds.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The housing factory surety guarantee idea is \"super innovative,\" said Jan Lindenthal-Cox, chief investment officer at the San Francisco Housing Accelerator Fund, a nonprofit that directs philanthropic money toward cost-cutting affordable housing projects.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Councillor Tim Pogson, convener for housing, homelessness and fair work at the City of Edinburgh Council, said: \"This is a very exciting moment for the Powderhall regeneration.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "When it was built in the late 1960s and early 70s, its concrete expanses and 'walkways in the sky' were touted as a modern British success story, where the poor were to be supported by access to decent social housing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The homelessness charity says other corporate landlords will be watching the West Wemyss situation with interest.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"So, there has to be a combination of interventions: the Government's affordable housing programme; the attractiveness of Scotland for investment purposes; and also, for example, bring void accommodation into use by the public sector.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Raman has been labeled a 'progressive' member of city council, whose main policies involve affordability and tackling the homelessness crisis.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Bass, on the other hand, was labeled as an incumbent and a 'veteran legislator' who is also focusing on homelessness.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In London and other major cities Reform of course needs to make a pitch on the cost of living, including affordable housing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "A major operation was launched by the council in partnership with police, homelessness charities, gang crime experts and drug specialists to tackle the 'out of control' antisocial behaviour.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The move followed a meeting between government housing officials and several firms represented by the LPDF - including Barratt and Vistry Group - in which developers asked for affordable housing requirements to be slashed.", "score": 3.5503549999999997, "claim_types": ["correlation", "opinion", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A number of social housing groups and homeless charities who spoke to The i Paper said they are concerned at not being granted the same access to the Housing Secretary as private developers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There has to be a combination of interventions - the Government's affordable housing programme, the attractiveness of Scotland for investment purposes and, also, for example, bring void accommodation into use by the public sector", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "'With a plan like this, we can actually really effectively remove and resolve homelessness,' added Stephanie Kaple, the Executive Director of the Savannah Chatham County Interagency Council on Homelessness, the lead organization in the plan's development.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "They also put together a five-year strategic plan to end homelessness in the city.", "score": 3.541385, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This government wants you to believe it's normal that over 17,000 people, including nearly 5,500 children, are now homeless.", "score": 3.5175099999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Legislature authorized a wide-ranging study in 2017 that determined the state ́s supply of affordable housing was in crisis.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Yet problems have persisted, as residents started mixing Xylazine, also known as tranq, with fentanyl in February 2025 for a stronger high, according to WSAV.", "score": 3.3239400000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Homeless numbers are rising every month, demand from the council on housing associations for temporary accommodation means more than half of all lets are for people who are homeless.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @ChamberVoice: We've spent £20bn on fibre - yet 90% of social homes are still offline.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In recent years, the share of this group - non-graduates in their late 20s - who are in private rented accommodation, which can be costly and insecure, has doubled, from 16% in 1998-99, to 33% in 2023-24.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Only 14 affordable rental units are available for every 100 extremely low-income households.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The pair also received more than $200,000 in kickbacks in exchange for steering contracts worth millions of dollars to businesses controlled by Edouardo St. Fort and Miguel Jorge, the indictment said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is the lowest in six years.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "St. Fort and Jorge were charged with federal program bribery and related charges, and face up to 10 years each.", "score": 3.083055, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "City officials said they have since issued 41 citations, 30 in 2025 alone, to assuage the authorities as 153 firearms were reported stolen.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most would do so by standardizing or trimming regulation.", "score": 2.9374000000000002, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Susan continued her charitable promotion: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Susan continued her charitable endorsement: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and drugs https://t.co/fvof91NBRy", "score": 2.868115, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A young family have been left homeless and a couple forced to use tarpaulin sheets for windows after a cowboy builder allegedly conned them out of £100,000.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'If people are being moved out of council houses, and they are being replaced with a higher number of private residences - that's a problem.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The mother of three paid £45,000 for a bungalow extension but said when she returned home after four weeks and there 'was nothing left'", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Six months later she is still sharing a bedroom with her partner and three children with her house left in a pile of rubble", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"What we see in the construction sector are some of the challenges about the cost of construction of houses, because the cost of construction of houses has gone up significantly as a consequence of the global pressures around about the access to raw materials following the invasion of Ukraine, so general construction costs have increased,\" he said.", "score": 2.76525, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Home ownership over the same period halved.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Most of the dollars that have been distributed so far are loans, which recipients are required to repay within two years.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A whopping 67 per cent of over-65s live in homes with two or more spare rooms - far higher than any other age group.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An annual decrease was reported for all-sector starts (6% decrease) and completions (13% decrease) between 2024 and 2025.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In every single region of the country, there are more homes than households: even in London, the epicentre of the housing crisis, there was an excess of 250,000 properties in 2021.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That is a staggering statistic in the middle of a housing emergency in which 8.9 per cent of households in the social rented sector and 5.8 per cent of private rented households are classed as officially \"over-crowded\".", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of £100,000'", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Still, if there was a water shortage not of my causing and I had more bottles gathering dust in the garage than my family needed, at a time when others were going thirsty, would I not have a moral obligation to offload my excess to help those in desperate need?", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "Ms Taylor has since shared negative reviews on Facebook, which Mr Bishop claims have led to his house being attacked and his life being put at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Low supply is causing prices to spike.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Neither party will go on record to explain what went so wrong that more than half of that deal has been torn up, but the council admitted 'progress has been too slow', and this has caused 'serious problems including anti-social behaviour in and around the vacant blocks'.", "score": 2.61247, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'We know that these firearms are being stolen to defend public safety,' Mayor Johnson said, noting that in just one year the city has seen a nearly 40 percent decline in firearms being stolen from unlocked vehicles.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Michael Bishop has been accused of taking £64,500 and £45,000 from the two families before wrecking their houses and running away", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were 430 social sector starts last year in Glasgow last year, up from 309 the year before and the highest in the last four years.", "score": 2.58736, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So far, Notting Hill Genesis has built 703 homes, with another 321 currently under construction.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It was estimated in 2005 that fully retrofitting the estate would cost £350m, exactly the same amount as has been spent to date - although the former figure would now be higher, accounting for inflation.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The 29 single-family homes in Paradise Trails - which are now available for purchase - are in line with Nevada ́s average housing costs.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Gatehouse of Fleet has a population of just over 1,000 and is named after the old tollhouse on the River Fleet.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "But Southwark Council insisted it was more economical to start again, signing a blueprint from Notting Hill Genesis in 2014 to rebuild the estate with 4,200 new homes by 2036 - with the total project estimated at £1.5billion.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Depending on the nature of the project and the contract, a bond might cost a factory anywhere from three-quarters of a percentage point to 3% of a contract ́s entire cost, he said.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We haven't got 100 per cent brilliant reviews.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In terms of starts, building work on 11,929 was started by the private sector and 3,070 homes by the social sector.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Fife Council's current new-build housing programme includes 1,200 homes either planned or already under construction.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The latest construction phase includes 27 council homes for older people, 19 of which are wheelchair-adapted, as well as a 128-place early years centre.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "New build social homes completed in Glasgow last year have plummeted to the lowest level in decades.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In England alone, there are 1.4 million more properties than households needing them, according to the 2021 census.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "So severe is this problem that, according to government data, 72 per cent of homes in England are now classed as \"under-occupied\", meaning they have at least two bedrooms more than their occupants need.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "As of last October, new housing construction per 1,000 residents over the past 12 months stood at 0.58 in London, compared with 2.35 in New York and 5.27 in Paris.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Aylesbury, which housed more than 10,000 at its peak, is one of the largest and most notorious council estates in the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With more than 2,700 homes across dozens of large blocks, it was one of the largest council estates in Europe - but its decline has since become a symbol of the long-term failures of the post-war housing project.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Two of those are almost complete, while the proposal for Phase 2B, which includes the empty Wendover block, is still awaiting planning permission from the council.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "That was part of the impetus for AB540, which focuses on middle-income housing but includes millions of dollars for low-income rentals as well.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Official figures show the number of homes for social rent completed in the city in 2025 was just 235.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across Scotland, social sector new home completions fell to 3611 last year from 4835 in 2024 and the number started was also down.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Still, at least they had tens of thousands of pounds in the bank to see them comfortably through their twilight years, right?", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "'Since the partnership between Notting Hill Genesis and Southwark Council was established in 2014, we've built over 700 homes on the estate, 581 of which the council has bought to utilise as council homes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year fewer than 6,000 started construction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "With £350million spent so far, fewer than a quarter of the new homes have materialised, and more than a third of the original dwellings stand empty, awaiting demolition that has repeatedly been delayed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "His office announced in February it had awarded $86.1 million of the $133 million in the bill.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It has dropped steadily since 2019 when there was 1000 completions.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Across all housing sectors, there were fewer homes completed in Glasgow, with 1530, down from 2301 the year before.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Leaving out 2020, when Covid‐19 affected building activity, the private sector completed fewer homes in 2025 than in any year since 2017 and started fewer homes than in any year since 2013.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "In Fife, almost 41,000 homes were sold and a housing emergency was declared in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We have an ambitious target agreed between the Mayor and the government of 88,000 new homes a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "We surveyed our members on the initial proposals, set out in October, and found that across 67 development sites in London, representing over 86,000 homes, only 17 per cent - less than 15,000 homes - could potentially benefit from the original emergency measures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of the money that ́s been spent, $22 million was earmarked for homebuyers who work in the fields of health care, education, public safety or construction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Other spending so far has included $15 million on low-income housing specifically, $9 million in grants to local governments and $11 million on land purchases (all of which have been in Clark County).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It provided $23 million worth of loans so construction companies can purchase land for development and $25 million in grants to local governments to cover building and permitting fees.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The Homeless Authority also reported 457 sheltered and 172 unsheltered people during last year's point-in-time survey, which is required by the federal Housing and Urban Development to allow organizations and agencies to receive federal funds.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Meanwhile, records show the number of recorded encampments in Chatham County plummeted from 80 in 2023 to 39 in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The charity Shelter Scotland warned the Scottish Government risked missing its target of 110,000 new affordable homes by 2032.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It is down from 408 the year before and the lowest on record since 1996.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There was a drop in all housebuilding starts and completions across Scotland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Of the 240 flats, just six still have tenants, while the sister block is completely empty.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Steph Morley, from Barnsley, and her husband Karl Younger paid Bishop £64,500 to renovate their house", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The project has also received strong support from the local authority, including £300,000 in backing from Dumfries and Galloway Council's Town Centre Living Fund.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There were 17,336 new homes built and 14,999 new builds started across the social and private sector in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The private sector built 13,725 homes and the social sector built 3,611 homes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Scotland lost around 500,000 council houses under the Right to Buy scheme between 1980 and 2016.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The need for new homes in London is high, but effective demand is low given the cost buyers face.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Edinburgh unveils £350m plan to fast-track thousands of affordable homes", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Last year, the private sector completed the least amount of homes since 2017, with just 13,725 built, while the social sector completed just 3,611, the lowest since 2014.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The number of social homes which began construction in Scotland last year was also the lowest figure on record at 3,070.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "\"The Scottish Government pledged 110,000 affordable homes by 2032 - 70 per cent of which should be for social rent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "It found that among 32-year-olds who are not yet parents, for example, twice the proportion of those in the lowest quarter of earners said they intended to remain permanently childless, compared with those in the top quarter of earners.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since 2023, the city has agreed to pay more than $7 million to Fort NYC Security to provide security services at homeless shelters, often as a subcontractor for BHRAGS.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "RT @The_TUC: Farage's Reform has pledged to rip up legal protections for workers and renters - handing power to bad bosses and rogue landlords.", "score": 2.538635, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Residents in Savannah have started mixing Xylazine, also known as tranq, with fentanyl.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Parents unable to enter the workplace because of care commitments is one of the most common drivers of child poverty.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The conflict has reportedly led to a 33% contraction in the global fertiliser supply chain.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "👧🏻 Lifting 450,000 children out of poverty by removing the two-child cap", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "🥣 Free breakfast clubs in schools - saving parents up to £450 a year", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The UK defines relative poverty as living in a household with income below 60% of the median income in that year.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Food and drink prices have continued to rise in recent years, with retail prices now at around 38% higher than they were before the pandemic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Households could face food inflation above 8% within months, according to the Institute of Grocery Distribution (IGD), which could add more than £150 a year to the average household's shopping bill.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "FOOD prices in Scotland are set to spike, again.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This closure and knock-on effect of oil supplies does have an impact on prices, as food production is energy intensive and is particularly exposed to sudden change in oil and gas prices.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Up to 30% of processed ammonia, used as the raw material in fertiliser, passes through the Gulf.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Peterborough City Council says it has helped 68 households claim £84,000 in unclaimed benefits", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Since April 2025, over 928,000 parents have utilised the HMRC app to manage their Child Benefit account, including:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "An online tool has identified more than £84,800 in unclaimed benefits since it went live in January, a local authority has said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Recent statistics found that, while over 6.9 million families receive Child Benefit payments, only 72% of families claimed it during their baby's first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "The key shipping route sees around one fifth of the UK's oil consumption pass through the Strait, on average around 20 million barrels of crude oil per day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "A report by the analytics company, Policy in Practice, estimated there may be about 31,000 people across Peterborough that were entitled to unclaimed benefits they have not yet claimed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "UK drivers getting up to £2,500 in compensation after going over potholes", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Political trust tends to scale: if a governing party - be it the Social Democrats or Labour - is seen as not being able to deal with the potholes on our roads and the price of our groceries, why trust it to manage public service reform or geopolitical turmoil?", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "If an accident occurs due to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", "score": 4.073585, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Should an accident occur owing to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "This follows MSE publishing fresh guidance encouraging motorists to contemplate submitting claims if their vehicles sustain damage from hitting potholes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} +{"sentence_text": "The latest figures show there's a record £18 billion pothole repair backlog!", "score": 2.7091849999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "There's a record £18 billion backlog of damage to local roads in England and Wales (stock image) (Image: Getty )", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Arrow MORE: A massive pothole wrecked my van and I'm over £1,000 out of pocket", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Motorists who have lodged claims following pothole-related vehicle damage have secured compensation payments of up to £2,500, according to Money Saving Expert (MSE).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} +{"sentence_text": "Some UK drivers who have put in a claim after a pothole caused damage to their car have been paid up to £2,500 in compensation, according to Money Saving Expert (MSE).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} diff --git a/uv.lock b/uv.lock index 56d4f53..a2b516d 100644 --- a/uv.lock +++ b/uv.lock @@ -1,10 +1,113 @@ version = 1 revision = 2 -requires-python = ">=3.10, <3.14" +requires-python = ">=3.12, <3.14" resolution-markers = [ - "python_full_version >= '3.13'", - "python_full_version >= '3.11' and python_full_version < '3.13'", - "python_full_version < '3.11'", + "python_full_version >= '3.13' and sys_platform == 'win32'", + "python_full_version >= '3.13' and sys_platform == 'emscripten'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.13' and sys_platform == 'win32'", + "python_full_version < '3.13' and sys_platform == 'emscripten'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] + +[[package]] +name = "accelerate" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "safetensors" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/14/787e5498cd062640f0f3d92ef4ae4063174f76f9afd29d13fc52a319daae/accelerate-1.13.0.tar.gz", hash = "sha256:d631b4e0f5b3de4aff2d7e9e6857d164810dfc3237d54d017f075122d057b236", size = 402835, upload-time = "2026-03-04T19:34:12.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/46/02ac5e262d4af18054b3e922b2baedbb2a03289ee792162de60a865defc5/accelerate-1.13.0-py3-none-any.whl", hash = "sha256:cf1a3efb96c18f7b152eb0fa7490f3710b19c3f395699358f08decca2b8b62e0", size = 383744, upload-time = "2026-03-04T19:34:10.313Z" }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.13.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/9a/152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918/aiohttp-3.13.5.tar.gz", hash = "sha256:9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1", size = 7858271, upload-time = "2026-03-31T22:01:03.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/6f/353954c29e7dcce7cf00280a02c75f30e133c00793c7a2ed3776d7b2f426/aiohttp-3.13.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:023ecba036ddd840b0b19bf195bfae970083fd7024ce1ac22e9bba90464620e9", size = 748876, upload-time = "2026-03-31T21:57:36.319Z" }, + { url = "https://files.pythonhosted.org/packages/f5/1b/428a7c64687b3b2e9cd293186695affc0e1e54a445d0361743b231f11066/aiohttp-3.13.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:15c933ad7920b7d9a20de151efcd05a6e38302cbf0e10c9b2acb9a42210a2416", size = 499557, upload-time = "2026-03-31T21:57:38.236Z" }, + { url = "https://files.pythonhosted.org/packages/29/47/7be41556bfbb6917069d6a6634bb7dd5e163ba445b783a90d40f5ac7e3a7/aiohttp-3.13.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ab2899f9fa2f9f741896ebb6fa07c4c883bfa5c7f2ddd8cf2aafa86fa981b2d2", size = 500258, upload-time = "2026-03-31T21:57:39.923Z" }, + { url = "https://files.pythonhosted.org/packages/67/84/c9ecc5828cb0b3695856c07c0a6817a99d51e2473400f705275a2b3d9239/aiohttp-3.13.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a60eaa2d440cd4707696b52e40ed3e2b0f73f65be07fd0ef23b6b539c9c0b0b4", size = 1749199, upload-time = "2026-03-31T21:57:41.938Z" }, + { url = "https://files.pythonhosted.org/packages/f0/d3/3c6d610e66b495657622edb6ae7c7fd31b2e9086b4ec50b47897ad6042a9/aiohttp-3.13.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:55b3bdd3292283295774ab585160c4004f4f2f203946997f49aac032c84649e9", size = 1721013, upload-time = "2026-03-31T21:57:43.904Z" }, + { url = "https://files.pythonhosted.org/packages/49/a0/24409c12217456df0bae7babe3b014e460b0b38a8e60753d6cb339f6556d/aiohttp-3.13.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c2b2355dc094e5f7d45a7bb262fe7207aa0460b37a0d87027dcf21b5d890e7d5", size = 1781501, upload-time = "2026-03-31T21:57:46.285Z" }, + { url = "https://files.pythonhosted.org/packages/98/9d/b65ec649adc5bccc008b0957a9a9c691070aeac4e41cea18559fef49958b/aiohttp-3.13.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b38765950832f7d728297689ad78f5f2cf79ff82487131c4d26fe6ceecdc5f8e", size = 1878981, upload-time = "2026-03-31T21:57:48.734Z" }, + { url = "https://files.pythonhosted.org/packages/57/d8/8d44036d7eb7b6a8ec4c5494ea0c8c8b94fbc0ed3991c1a7adf230df03bf/aiohttp-3.13.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b18f31b80d5a33661e08c89e202edabf1986e9b49c42b4504371daeaa11b47c1", size = 1767934, upload-time = "2026-03-31T21:57:51.171Z" }, + { url = "https://files.pythonhosted.org/packages/31/04/d3f8211f273356f158e3464e9e45484d3fb8c4ce5eb2f6fe9405c3273983/aiohttp-3.13.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:33add2463dde55c4f2d9635c6ab33ce154e5ecf322bd26d09af95c5f81cfa286", size = 1566671, upload-time = "2026-03-31T21:57:53.326Z" }, + { url = "https://files.pythonhosted.org/packages/41/db/073e4ebe00b78e2dfcacff734291651729a62953b48933d765dc513bf798/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:327cc432fdf1356fb4fbc6fe833ad4e9f6aacb71a8acaa5f1855e4b25910e4a9", size = 1705219, upload-time = "2026-03-31T21:57:55.385Z" }, + { url = "https://files.pythonhosted.org/packages/48/45/7dfba71a2f9fd97b15c95c06819de7eb38113d2cdb6319669195a7d64270/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:7c35b0bf0b48a70b4cb4fc5d7bed9b932532728e124874355de1a0af8ec4bc88", size = 1743049, upload-time = "2026-03-31T21:57:57.341Z" }, + { url = "https://files.pythonhosted.org/packages/18/71/901db0061e0f717d226386a7f471bb59b19566f2cae5f0d93874b017271f/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:df23d57718f24badef8656c49743e11a89fd6f5358fa8a7b96e728fda2abf7d3", size = 1749557, upload-time = "2026-03-31T21:57:59.626Z" }, + { url = "https://files.pythonhosted.org/packages/08/d5/41eebd16066e59cd43728fe74bce953d7402f2b4ddfdfef2c0e9f17ca274/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:02e048037a6501a5ec1f6fc9736135aec6eb8a004ce48838cb951c515f32c80b", size = 1558931, upload-time = "2026-03-31T21:58:01.972Z" }, + { url = "https://files.pythonhosted.org/packages/30/e6/4a799798bf05740e66c3a1161079bda7a3dd8e22ca392481d7a7f9af82a6/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31cebae8b26f8a615d2b546fee45d5ffb76852ae6450e2a03f42c9102260d6fe", size = 1774125, upload-time = "2026-03-31T21:58:04.007Z" }, + { url = "https://files.pythonhosted.org/packages/84/63/7749337c90f92bc2cb18f9560d67aa6258c7060d1397d21529b8004fcf6f/aiohttp-3.13.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:888e78eb5ca55a615d285c3c09a7a91b42e9dd6fc699b166ebd5dee87c9ccf14", size = 1732427, upload-time = "2026-03-31T21:58:06.337Z" }, + { url = "https://files.pythonhosted.org/packages/98/de/cf2f44ff98d307e72fb97d5f5bbae3bfcb442f0ea9790c0bf5c5c2331404/aiohttp-3.13.5-cp312-cp312-win32.whl", hash = "sha256:8bd3ec6376e68a41f9f95f5ed170e2fcf22d4eb27a1f8cb361d0508f6e0557f3", size = 433534, upload-time = "2026-03-31T21:58:08.712Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ca/eadf6f9c8fa5e31d40993e3db153fb5ed0b11008ad5d9de98a95045bed84/aiohttp-3.13.5-cp312-cp312-win_amd64.whl", hash = "sha256:110e448e02c729bcebb18c60b9214a87ba33bac4a9fa5e9a5f139938b56c6cb1", size = 460446, upload-time = "2026-03-31T21:58:10.945Z" }, + { url = "https://files.pythonhosted.org/packages/78/e9/d76bf503005709e390122d34e15256b88f7008e246c4bdbe915cd4f1adce/aiohttp-3.13.5-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5029cc80718bbd545123cd8fe5d15025eccaaaace5d0eeec6bd556ad6163d61", size = 742930, upload-time = "2026-03-31T21:58:13.155Z" }, + { url = "https://files.pythonhosted.org/packages/57/00/4b7b70223deaebd9bb85984d01a764b0d7bd6526fcdc73cca83bcbe7243e/aiohttp-3.13.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4bb6bf5811620003614076bdc807ef3b5e38244f9d25ca5fe888eaccea2a9832", size = 496927, upload-time = "2026-03-31T21:58:15.073Z" }, + { url = "https://files.pythonhosted.org/packages/9c/f5/0fb20fb49f8efdcdce6cd8127604ad2c503e754a8f139f5e02b01626523f/aiohttp-3.13.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a84792f8631bf5a94e52d9cc881c0b824ab42717165a5579c760b830d9392ac9", size = 497141, upload-time = "2026-03-31T21:58:17.009Z" }, + { url = "https://files.pythonhosted.org/packages/3b/86/b7c870053e36a94e8951b803cb5b909bfbc9b90ca941527f5fcafbf6b0fa/aiohttp-3.13.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57653eac22c6a4c13eb22ecf4d673d64a12f266e72785ab1c8b8e5940d0e8090", size = 1732476, upload-time = "2026-03-31T21:58:18.925Z" }, + { url = "https://files.pythonhosted.org/packages/b5/e5/4e161f84f98d80c03a238671b4136e6530453d65262867d989bbe78244d0/aiohttp-3.13.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5e5f7debc7a57af53fdf5c5009f9391d9f4c12867049d509bf7bb164a6e295b", size = 1706507, upload-time = "2026-03-31T21:58:21.094Z" }, + { url = "https://files.pythonhosted.org/packages/d4/56/ea11a9f01518bd5a2a2fcee869d248c4b8a0cfa0bb13401574fa31adf4d4/aiohttp-3.13.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c719f65bebcdf6716f10e9eff80d27567f7892d8988c06de12bbbd39307c6e3a", size = 1773465, upload-time = "2026-03-31T21:58:23.159Z" }, + { url = "https://files.pythonhosted.org/packages/eb/40/333ca27fb74b0383f17c90570c748f7582501507307350a79d9f9f3c6eb1/aiohttp-3.13.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d97f93fdae594d886c5a866636397e2bcab146fd7a132fd6bb9ce182224452f8", size = 1873523, upload-time = "2026-03-31T21:58:25.59Z" }, + { url = "https://files.pythonhosted.org/packages/f0/d2/e2f77eef1acb7111405433c707dc735e63f67a56e176e72e9e7a2cd3f493/aiohttp-3.13.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3df334e39d4c2f899a914f1dba283c1aadc311790733f705182998c6f7cae665", size = 1754113, upload-time = "2026-03-31T21:58:27.624Z" }, + { url = "https://files.pythonhosted.org/packages/fb/56/3f653d7f53c89669301ec9e42c95233e2a0c0a6dd051269e6e678db4fdb0/aiohttp-3.13.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fe6970addfea9e5e081401bcbadf865d2b6da045472f58af08427e108d618540", size = 1562351, upload-time = "2026-03-31T21:58:29.918Z" }, + { url = "https://files.pythonhosted.org/packages/ec/a6/9b3e91eb8ae791cce4ee736da02211c85c6f835f1bdfac0594a8a3b7018c/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7becdf835feff2f4f335d7477f121af787e3504b48b449ff737afb35869ba7bb", size = 1693205, upload-time = "2026-03-31T21:58:32.214Z" }, + { url = "https://files.pythonhosted.org/packages/98/fc/bfb437a99a2fcebd6b6eaec609571954de2ed424f01c352f4b5504371dd3/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:676e5651705ad5d8a70aeb8eb6936c436d8ebbd56e63436cb7dd9bb36d2a9a46", size = 1730618, upload-time = "2026-03-31T21:58:34.728Z" }, + { url = "https://files.pythonhosted.org/packages/e4/b6/c8534862126191a034f68153194c389addc285a0f1347d85096d349bbc15/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:9b16c653d38eb1a611cc898c41e76859ca27f119d25b53c12875fd0474ae31a8", size = 1745185, upload-time = "2026-03-31T21:58:36.909Z" }, + { url = "https://files.pythonhosted.org/packages/0b/93/4ca8ee2ef5236e2707e0fd5fecb10ce214aee1ff4ab307af9c558bda3b37/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:999802d5fa0389f58decd24b537c54aa63c01c3219ce17d1214cbda3c2b22d2d", size = 1557311, upload-time = "2026-03-31T21:58:39.38Z" }, + { url = "https://files.pythonhosted.org/packages/57/ae/76177b15f18c5f5d094f19901d284025db28eccc5ae374d1d254181d33f4/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ec707059ee75732b1ba130ed5f9580fe10ff75180c812bc267ded039db5128c6", size = 1773147, upload-time = "2026-03-31T21:58:41.476Z" }, + { url = "https://files.pythonhosted.org/packages/01/a4/62f05a0a98d88af59d93b7fcac564e5f18f513cb7471696ac286db970d6a/aiohttp-3.13.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2d6d44a5b48132053c2f6cd5c8cb14bc67e99a63594e336b0f2af81e94d5530c", size = 1730356, upload-time = "2026-03-31T21:58:44.049Z" }, + { url = "https://files.pythonhosted.org/packages/e4/85/fc8601f59dfa8c9523808281f2da571f8b4699685f9809a228adcc90838d/aiohttp-3.13.5-cp313-cp313-win32.whl", hash = "sha256:329f292ed14d38a6c4c435e465f48bebb47479fd676a0411936cc371643225cc", size = 432637, upload-time = "2026-03-31T21:58:46.167Z" }, + { url = "https://files.pythonhosted.org/packages/c0/1b/ac685a8882896acf0f6b31d689e3792199cfe7aba37969fa91da63a7fa27/aiohttp-3.13.5-cp313-cp313-win_amd64.whl", hash = "sha256:69f571de7500e0557801c0b51f4780482c0ec5fe2ac851af5a92cfce1af1cb83", size = 458896, upload-time = "2026-03-31T21:58:48.119Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "annotated-doc" +version = "0.0.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, ] [[package]] @@ -21,7 +124,6 @@ name = "anyio" version = "4.11.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "idna" }, { name = "sniffio" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, @@ -32,12 +134,12 @@ wheels = [ ] [[package]] -name = "backports-asyncio-runner" -version = "1.2.0" +name = "attrs" +version = "26.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8e/ff/70dca7d7cb1cbc0edb2c6cc0c38b65cba36cccc491eca64cabd5fe7f8670/backports_asyncio_runner-1.2.0.tar.gz", hash = "sha256:a5aa7b2b7d8f8bfcaa2b57313f70792df84e32a2a746f585213373f900b42162", size = 69893, upload-time = "2025-07-02T02:27:15.685Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/59/76ab57e3fe74484f48a53f8e337171b4a2349e506eabe136d7e01d059086/backports_asyncio_runner-1.2.0-py3-none-any.whl", hash = "sha256:0da0a936a8aeb554eccb426dc55af3ba63bcdc69fa1a600b5bb305413a4477b5", size = 12313, upload-time = "2025-07-02T02:27:14.263Z" }, + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, ] [[package]] @@ -51,19 +153,9 @@ dependencies = [ { name = "pathspec" }, { name = "platformdirs" }, { name = "pytokens" }, - { name = "tomli", marker = "python_full_version < '3.11'" }, - { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8c/ad/33adf4708633d047950ff2dfdea2e215d84ac50ef95aff14a614e4b6e9b2/black-25.11.0.tar.gz", hash = "sha256:9a323ac32f5dc75ce7470501b887250be5005a01602e931a15e45593f70f6e08", size = 655669, upload-time = "2025-11-10T01:53:50.558Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/d2/6caccbc96f9311e8ec3378c296d4f4809429c43a6cd2394e3c390e86816d/black-25.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ec311e22458eec32a807f029b2646f661e6859c3f61bc6d9ffb67958779f392e", size = 1743501, upload-time = "2025-11-10T01:59:06.202Z" }, - { url = "https://files.pythonhosted.org/packages/69/35/b986d57828b3f3dccbf922e2864223197ba32e74c5004264b1c62bc9f04d/black-25.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1032639c90208c15711334d681de2e24821af0575573db2810b0763bcd62e0f0", size = 1597308, upload-time = "2025-11-10T01:57:58.633Z" }, - { url = "https://files.pythonhosted.org/packages/39/8e/8b58ef4b37073f52b64a7b2dd8c9a96c84f45d6f47d878d0aa557e9a2d35/black-25.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0c0f7c461df55cf32929b002335883946a4893d759f2df343389c4396f3b6b37", size = 1656194, upload-time = "2025-11-10T01:57:10.909Z" }, - { url = "https://files.pythonhosted.org/packages/8d/30/9c2267a7955ecc545306534ab88923769a979ac20a27cf618d370091e5dd/black-25.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:f9786c24d8e9bd5f20dc7a7f0cdd742644656987f6ea6947629306f937726c03", size = 1347996, upload-time = "2025-11-10T01:57:22.391Z" }, - { url = "https://files.pythonhosted.org/packages/c4/62/d304786b75ab0c530b833a89ce7d997924579fb7484ecd9266394903e394/black-25.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:895571922a35434a9d8ca67ef926da6bc9ad464522a5fe0db99b394ef1c0675a", size = 1727891, upload-time = "2025-11-10T02:01:40.507Z" }, - { url = "https://files.pythonhosted.org/packages/82/5d/ffe8a006aa522c9e3f430e7b93568a7b2163f4b3f16e8feb6d8c3552761a/black-25.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cb4f4b65d717062191bdec8e4a442539a8ea065e6af1c4f4d36f0cdb5f71e170", size = 1581875, upload-time = "2025-11-10T01:57:51.192Z" }, - { url = "https://files.pythonhosted.org/packages/cb/c8/7c8bda3108d0bb57387ac41b4abb5c08782b26da9f9c4421ef6694dac01a/black-25.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d81a44cbc7e4f73a9d6ae449ec2317ad81512d1e7dce7d57f6333fd6259737bc", size = 1642716, upload-time = "2025-11-10T01:56:51.589Z" }, - { url = "https://files.pythonhosted.org/packages/34/b9/f17dea34eecb7cc2609a89627d480fb6caea7b86190708eaa7eb15ed25e7/black-25.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:7eebd4744dfe92ef1ee349dc532defbf012a88b087bb7ddd688ff59a447b080e", size = 1352904, upload-time = "2025-11-10T01:59:26.252Z" }, { url = "https://files.pythonhosted.org/packages/7f/12/5c35e600b515f35ffd737da7febdb2ab66bb8c24d88560d5e3ef3d28c3fd/black-25.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:80e7486ad3535636657aa180ad32a7d67d7c273a80e12f1b4bfa0823d54e8fac", size = 1772831, upload-time = "2025-11-10T02:03:47Z" }, { url = "https://files.pythonhosted.org/packages/1a/75/b3896bec5a2bb9ed2f989a970ea40e7062f8936f95425879bbe162746fe5/black-25.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6cced12b747c4c76bc09b4db057c319d8545307266f41aaee665540bc0e04e96", size = 1608520, upload-time = "2025-11-10T01:58:46.895Z" }, { url = "https://files.pythonhosted.org/packages/f3/b5/2bfc18330eddbcfb5aab8d2d720663cd410f51b2ed01375f5be3751595b0/black-25.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6cb2d54a39e0ef021d6c5eef442e10fd71fcb491be6413d083a320ee768329dd", size = 1682719, upload-time = "2025-11-10T01:56:55.24Z" }, @@ -99,38 +191,6 @@ version = "3.4.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1f/b8/6d51fc1d52cbd52cd4ccedd5b5b2f0f6a11bbf6765c782298b0f3e808541/charset_normalizer-3.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e824f1492727fa856dd6eda4f7cee25f8518a12f3c4a56a74e8095695089cf6d", size = 209709, upload-time = "2025-10-14T04:40:11.385Z" }, - { url = "https://files.pythonhosted.org/packages/5c/af/1f9d7f7faafe2ddfb6f72a2e07a548a629c61ad510fe60f9630309908fef/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4bd5d4137d500351a30687c2d3971758aac9a19208fc110ccb9d7188fbe709e8", size = 148814, upload-time = "2025-10-14T04:40:13.135Z" }, - { url = "https://files.pythonhosted.org/packages/79/3d/f2e3ac2bbc056ca0c204298ea4e3d9db9b4afe437812638759db2c976b5f/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad", size = 144467, upload-time = "2025-10-14T04:40:14.728Z" }, - { url = "https://files.pythonhosted.org/packages/ec/85/1bf997003815e60d57de7bd972c57dc6950446a3e4ccac43bc3070721856/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f820802628d2694cb7e56db99213f930856014862f3fd943d290ea8438d07ca8", size = 162280, upload-time = "2025-10-14T04:40:16.14Z" }, - { url = "https://files.pythonhosted.org/packages/3e/8e/6aa1952f56b192f54921c436b87f2aaf7c7a7c3d0d1a765547d64fd83c13/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:798d75d81754988d2565bff1b97ba5a44411867c0cf32b77a7e8f8d84796b10d", size = 159454, upload-time = "2025-10-14T04:40:17.567Z" }, - { url = "https://files.pythonhosted.org/packages/36/3b/60cbd1f8e93aa25d1c669c649b7a655b0b5fb4c571858910ea9332678558/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d1bb833febdff5c8927f922386db610b49db6e0d4f4ee29601d71e7c2694313", size = 153609, upload-time = "2025-10-14T04:40:19.08Z" }, - { url = "https://files.pythonhosted.org/packages/64/91/6a13396948b8fd3c4b4fd5bc74d045f5637d78c9675585e8e9fbe5636554/charset_normalizer-3.4.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cd98cdc06614a2f768d2b7286d66805f94c48cde050acdbbb7db2600ab3197e", size = 151849, upload-time = "2025-10-14T04:40:20.607Z" }, - { url = "https://files.pythonhosted.org/packages/b7/7a/59482e28b9981d105691e968c544cc0df3b7d6133152fb3dcdc8f135da7a/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:077fbb858e903c73f6c9db43374fd213b0b6a778106bc7032446a8e8b5b38b93", size = 151586, upload-time = "2025-10-14T04:40:21.719Z" }, - { url = "https://files.pythonhosted.org/packages/92/59/f64ef6a1c4bdd2baf892b04cd78792ed8684fbc48d4c2afe467d96b4df57/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:244bfb999c71b35de57821b8ea746b24e863398194a4014e4c76adc2bbdfeff0", size = 145290, upload-time = "2025-10-14T04:40:23.069Z" }, - { url = "https://files.pythonhosted.org/packages/6b/63/3bf9f279ddfa641ffa1962b0db6a57a9c294361cc2f5fcac997049a00e9c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:64b55f9dce520635f018f907ff1b0df1fdc31f2795a922fb49dd14fbcdf48c84", size = 163663, upload-time = "2025-10-14T04:40:24.17Z" }, - { url = "https://files.pythonhosted.org/packages/ed/09/c9e38fc8fa9e0849b172b581fd9803bdf6e694041127933934184e19f8c3/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e", size = 151964, upload-time = "2025-10-14T04:40:25.368Z" }, - { url = "https://files.pythonhosted.org/packages/d2/d1/d28b747e512d0da79d8b6a1ac18b7ab2ecfd81b2944c4c710e166d8dd09c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6515f3182dbe4ea06ced2d9e8666d97b46ef4c75e326b79bb624110f122551db", size = 161064, upload-time = "2025-10-14T04:40:26.806Z" }, - { url = "https://files.pythonhosted.org/packages/bb/9a/31d62b611d901c3b9e5500c36aab0ff5eb442043fb3a1c254200d3d397d9/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc00f04ed596e9dc0da42ed17ac5e596c6ccba999ba6bd92b0e0aef2f170f2d6", size = 155015, upload-time = "2025-10-14T04:40:28.284Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f3/107e008fa2bff0c8b9319584174418e5e5285fef32f79d8ee6a430d0039c/charset_normalizer-3.4.4-cp310-cp310-win32.whl", hash = "sha256:f34be2938726fc13801220747472850852fe6b1ea75869a048d6f896838c896f", size = 99792, upload-time = "2025-10-14T04:40:29.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/66/e396e8a408843337d7315bab30dbf106c38966f1819f123257f5520f8a96/charset_normalizer-3.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a61900df84c667873b292c3de315a786dd8dac506704dea57bc957bd31e22c7d", size = 107198, upload-time = "2025-10-14T04:40:30.644Z" }, - { url = "https://files.pythonhosted.org/packages/b5/58/01b4f815bf0312704c267f2ccb6e5d42bcc7752340cd487bc9f8c3710597/charset_normalizer-3.4.4-cp310-cp310-win_arm64.whl", hash = "sha256:cead0978fc57397645f12578bfd2d5ea9138ea0fac82b2f63f7f7c6877986a69", size = 100262, upload-time = "2025-10-14T04:40:32.108Z" }, - { url = "https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8", size = 206988, upload-time = "2025-10-14T04:40:33.79Z" }, - { url = "https://files.pythonhosted.org/packages/94/59/2e87300fe67ab820b5428580a53cad894272dbb97f38a7a814a2a1ac1011/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0", size = 147324, upload-time = "2025-10-14T04:40:34.961Z" }, - { url = "https://files.pythonhosted.org/packages/07/fb/0cf61dc84b2b088391830f6274cb57c82e4da8bbc2efeac8c025edb88772/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3", size = 142742, upload-time = "2025-10-14T04:40:36.105Z" }, - { url = "https://files.pythonhosted.org/packages/62/8b/171935adf2312cd745d290ed93cf16cf0dfe320863ab7cbeeae1dcd6535f/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc", size = 160863, upload-time = "2025-10-14T04:40:37.188Z" }, - { url = "https://files.pythonhosted.org/packages/09/73/ad875b192bda14f2173bfc1bc9a55e009808484a4b256748d931b6948442/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897", size = 157837, upload-time = "2025-10-14T04:40:38.435Z" }, - { url = "https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381", size = 151550, upload-time = "2025-10-14T04:40:40.053Z" }, - { url = "https://files.pythonhosted.org/packages/55/c2/43edd615fdfba8c6f2dfbd459b25a6b3b551f24ea21981e23fb768503ce1/charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815", size = 149162, upload-time = "2025-10-14T04:40:41.163Z" }, - { url = "https://files.pythonhosted.org/packages/03/86/bde4ad8b4d0e9429a4e82c1e8f5c659993a9a863ad62c7df05cf7b678d75/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0", size = 150019, upload-time = "2025-10-14T04:40:42.276Z" }, - { url = "https://files.pythonhosted.org/packages/1f/86/a151eb2af293a7e7bac3a739b81072585ce36ccfb4493039f49f1d3cae8c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161", size = 143310, upload-time = "2025-10-14T04:40:43.439Z" }, - { url = "https://files.pythonhosted.org/packages/b5/fe/43dae6144a7e07b87478fdfc4dbe9efd5defb0e7ec29f5f58a55aeef7bf7/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4", size = 162022, upload-time = "2025-10-14T04:40:44.547Z" }, - { url = "https://files.pythonhosted.org/packages/80/e6/7aab83774f5d2bca81f42ac58d04caf44f0cc2b65fc6db2b3b2e8a05f3b3/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89", size = 149383, upload-time = "2025-10-14T04:40:46.018Z" }, - { url = "https://files.pythonhosted.org/packages/4f/e8/b289173b4edae05c0dde07f69f8db476a0b511eac556dfe0d6bda3c43384/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569", size = 159098, upload-time = "2025-10-14T04:40:47.081Z" }, - { url = "https://files.pythonhosted.org/packages/d8/df/fe699727754cae3f8478493c7f45f777b17c3ef0600e28abfec8619eb49c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224", size = 152991, upload-time = "2025-10-14T04:40:48.246Z" }, - { url = "https://files.pythonhosted.org/packages/1a/86/584869fe4ddb6ffa3bd9f491b87a01568797fb9bd8933f557dba9771beaf/charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a", size = 99456, upload-time = "2025-10-14T04:40:49.376Z" }, - { url = "https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016", size = 106978, upload-time = "2025-10-14T04:40:50.844Z" }, - { url = "https://files.pythonhosted.org/packages/7a/9d/0710916e6c82948b3be62d9d398cb4fcf4e97b56d6a6aeccd66c4b2f2bd5/charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1", size = 99969, upload-time = "2025-10-14T04:40:52.272Z" }, { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, @@ -187,6 +247,105 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] +[[package]] +name = "cuda-bindings" +version = "13.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-pathfinder" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/c8/b2589d68acf7e3d63e2be330b84bc25712e97ed799affbca7edd7eae25d6/cuda_bindings-13.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e865447abfb83d6a98ad5130ed3c70b1fc295ae3eeee39fd07b4ddb0671b6788", size = 5722404, upload-time = "2026-03-11T00:12:44.041Z" }, + { url = "https://files.pythonhosted.org/packages/1f/92/f899f7bbb5617bb65ec52a6eac1e9a1447a86b916c4194f8a5001b8cde0c/cuda_bindings-13.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46d8776a55d6d5da9dd6e9858fba2efcda2abe6743871dee47dd06eb8cb6d955", size = 6320619, upload-time = "2026-03-11T00:12:45.939Z" }, + { url = "https://files.pythonhosted.org/packages/df/93/eef988860a3ca985f82c4f3174fc0cdd94e07331ba9a92e8e064c260337f/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6629ca2df6f795b784752409bcaedbd22a7a651b74b56a165ebc0c9dcbd504d0", size = 5614610, upload-time = "2026-03-11T00:12:50.337Z" }, + { url = "https://files.pythonhosted.org/packages/18/23/6db3aba46864aee357ab2415135b3fe3da7e9f1fa0221fa2a86a5968099c/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7dca0da053d3b4cc4869eff49c61c03f3c5dbaa0bcd712317a358d5b8f3f385d", size = 6149914, upload-time = "2026-03-11T00:12:52.374Z" }, +] + +[[package]] +name = "cuda-pathfinder" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/74/8c66861b873d8eed51fde56d3091baa4906a56f0d4390cae991f2d41dda5/cuda_pathfinder-1.5.1-py3-none-any.whl", hash = "sha256:b3718097fb57cf9e8a904dd072d806f2c9a27627e35c020b06ab9454bcec08c0", size = 49861, upload-time = "2026-04-03T16:41:22.203Z" }, +] + +[[package]] +name = "cuda-toolkit" +version = "13.0.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/b2/453099f5f3b698d7d0eab38916aac44c7f76229f451709e2eb9db6615dcd/cuda_toolkit-13.0.2-py2.py3-none-any.whl", hash = "sha256:b198824cf2f54003f50d64ada3a0f184b42ca0846c1c94192fa269ecd97a66eb", size = 2364, upload-time = "2025-12-19T23:24:07.328Z" }, +] + +[package.optional-dependencies] +cublas = [ + { name = "nvidia-cublas", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +cudart = [ + { name = "nvidia-cuda-runtime", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +cufft = [ + { name = "nvidia-cufft", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +cufile = [ + { name = "nvidia-cufile", marker = "sys_platform == 'linux'" }, +] +cupti = [ + { name = "nvidia-cuda-cupti", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +curand = [ + { name = "nvidia-curand", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +cusolver = [ + { name = "nvidia-cusolver", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +cusparse = [ + { name = "nvidia-cusparse", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +nvjitlink = [ + { name = "nvidia-nvjitlink", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +nvrtc = [ + { name = "nvidia-cuda-nvrtc", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] +nvtx = [ + { name = "nvidia-nvtx", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, +] + +[[package]] +name = "datasets" +version = "4.8.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill" }, + { name = "filelock" }, + { name = "fsspec", extra = ["http"] }, + { name = "httpx" }, + { name = "huggingface-hub" }, + { name = "multiprocess" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyarrow" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/22/73e46ac7a8c25e7ef0b3bd6f10da3465021d90219a32eb0b4d2afea4c56e/datasets-4.8.4.tar.gz", hash = "sha256:a1429ed853275ce7943a01c6d2e25475b4501eb758934362106a280470df3a52", size = 604382, upload-time = "2026-03-23T14:21:17.987Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/e5/247d094108e42ac26363ab8dc57f168840cf7c05774b40ffeb0d78868fcc/datasets-4.8.4-py3-none-any.whl", hash = "sha256:cdc8bee4698e549d78bf1fed6aea2eebc760b22b084f07e6fc020c6577a6ce6d", size = 526991, upload-time = "2026-03-23T14:21:15.89Z" }, +] + +[[package]] +name = "dill" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" }, +] + [[package]] name = "distlib" version = "0.4.0" @@ -205,18 +364,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/12/b3/231ffd4ab1fc9d679809f356cebee130ac7daa00d6d6f3206dd4fd137e9e/distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2", size = 20277, upload-time = "2023-12-24T09:54:30.421Z" }, ] -[[package]] -name = "exceptiongroup" -version = "1.3.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0b/9f/a65090624ecf468cdca03533906e7c69ed7588582240cfe7cc9e770b50eb/exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88", size = 29749, upload-time = "2025-05-10T17:42:51.123Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/36/f4/c6e662dade71f56cd2f3735141b265c3c79293c109549c1e6933b0651ffc/exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10", size = 16674, upload-time = "2025-05-10T17:42:49.33Z" }, -] - [[package]] name = "filelock" version = "3.20.0" @@ -240,6 +387,77 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9f/56/13ab06b4f93ca7cac71078fbe37fcea175d3216f31f85c3168a6bbd0bb9a/flake8-7.3.0-py2.py3-none-any.whl", hash = "sha256:b9696257b9ce8beb888cdbe31cf885c90d31928fe202be0889a7cdafad32f01e", size = 57922, upload-time = "2025-06-20T19:31:34.425Z" }, ] +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/2d/40/0832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff/frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a", size = 85717, upload-time = "2025-10-06T05:36:27.341Z" }, + { url = "https://files.pythonhosted.org/packages/30/ba/b0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3/frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7", size = 49651, upload-time = "2025-10-06T05:36:28.855Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ab/6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6/frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40", size = 49417, upload-time = "2025-10-06T05:36:29.877Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4e/e4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e/frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027", size = 234391, upload-time = "2025-10-06T05:36:31.301Z" }, + { url = "https://files.pythonhosted.org/packages/40/76/c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c/frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822", size = 233048, upload-time = "2025-10-06T05:36:32.531Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c0/8746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce/frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121", size = 226549, upload-time = "2025-10-06T05:36:33.706Z" }, + { url = "https://files.pythonhosted.org/packages/7e/eb/4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef/frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5", size = 239833, upload-time = "2025-10-06T05:36:34.947Z" }, + { url = "https://files.pythonhosted.org/packages/c2/4e/e5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71/frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e", size = 245363, upload-time = "2025-10-06T05:36:36.534Z" }, + { url = "https://files.pythonhosted.org/packages/1f/96/cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11", size = 229314, upload-time = "2025-10-06T05:36:38.582Z" }, + { url = "https://files.pythonhosted.org/packages/5d/6f/4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1", size = 243365, upload-time = "2025-10-06T05:36:40.152Z" }, + { url = "https://files.pythonhosted.org/packages/7a/58/afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1", size = 237763, upload-time = "2025-10-06T05:36:41.355Z" }, + { url = "https://files.pythonhosted.org/packages/cb/36/cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8", size = 240110, upload-time = "2025-10-06T05:36:42.716Z" }, + { url = "https://files.pythonhosted.org/packages/03/a8/9ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed", size = 233717, upload-time = "2025-10-06T05:36:44.251Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0b/1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568/frozenlist-1.8.0-cp313-cp313-win32.whl", hash = "sha256:8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496", size = 39628, upload-time = "2025-10-06T05:36:45.423Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cf/174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6/frozenlist-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231", size = 43882, upload-time = "2025-10-06T05:36:46.796Z" }, + { url = "https://files.pythonhosted.org/packages/c1/17/502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834/frozenlist-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62", size = 39676, upload-time = "2025-10-06T05:36:47.8Z" }, + { url = "https://files.pythonhosted.org/packages/d2/5c/3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94", size = 89235, upload-time = "2025-10-06T05:36:48.78Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d6/f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c", size = 50742, upload-time = "2025-10-06T05:36:49.837Z" }, + { url = "https://files.pythonhosted.org/packages/1e/bb/a6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806/frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52", size = 51725, upload-time = "2025-10-06T05:36:50.851Z" }, + { url = "https://files.pythonhosted.org/packages/bc/71/d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274/frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51", size = 284533, upload-time = "2025-10-06T05:36:51.898Z" }, + { url = "https://files.pythonhosted.org/packages/c9/1f/fb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada/frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65", size = 292506, upload-time = "2025-10-06T05:36:53.101Z" }, + { url = "https://files.pythonhosted.org/packages/e6/3b/b991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8/frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82", size = 274161, upload-time = "2025-10-06T05:36:54.309Z" }, + { url = "https://files.pythonhosted.org/packages/ca/ec/c5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7/frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714", size = 294676, upload-time = "2025-10-06T05:36:55.566Z" }, + { url = "https://files.pythonhosted.org/packages/7c/ce/3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa/frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d", size = 300638, upload-time = "2025-10-06T05:36:56.758Z" }, + { url = "https://files.pythonhosted.org/packages/fc/4f/a7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506", size = 283067, upload-time = "2025-10-06T05:36:57.965Z" }, + { url = "https://files.pythonhosted.org/packages/dc/48/c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51", size = 292101, upload-time = "2025-10-06T05:36:59.237Z" }, + { url = "https://files.pythonhosted.org/packages/9f/d0/2366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e", size = 289901, upload-time = "2025-10-06T05:37:00.811Z" }, + { url = "https://files.pythonhosted.org/packages/b8/94/daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0", size = 289395, upload-time = "2025-10-06T05:37:02.115Z" }, + { url = "https://files.pythonhosted.org/packages/e3/20/bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41", size = 283659, upload-time = "2025-10-06T05:37:03.711Z" }, + { url = "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b", size = 43492, upload-time = "2025-10-06T05:37:04.915Z" }, + { url = "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888", size = 48034, upload-time = "2025-10-06T05:37:06.343Z" }, + { url = "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042", size = 41749, upload-time = "2025-10-06T05:37:07.431Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "fsspec" +version = "2026.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/7c/f60c259dcbf4f0c47cc4ddb8f7720d2dcdc8888c8e5ad84c73ea4531cc5b/fsspec-2026.2.0.tar.gz", hash = "sha256:6544e34b16869f5aacd5b90bdf1a71acb37792ea3ddf6125ee69a22a53fb8bff", size = 313441, upload-time = "2026-02-05T21:50:53.743Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + [[package]] name = "genai-utils" version = "0.0.1" @@ -342,6 +560,30 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, ] +[[package]] +name = "hf-xet" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/53/92/ec9ad04d0b5728dca387a45af7bc98fbb0d73b2118759f5f6038b61a57e8/hf_xet-1.4.3.tar.gz", hash = "sha256:8ddedb73c8c08928c793df2f3401ec26f95be7f7e516a7bee2fbb546f6676113", size = 670477, upload-time = "2026-03-31T22:40:07.874Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/43/724d307b34e353da0abd476e02f72f735cdd2bc86082dee1b32ea0bfee1d/hf_xet-1.4.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:7551659ba4f1e1074e9623996f28c3873682530aee0a846b7f2f066239228144", size = 3800935, upload-time = "2026-03-31T22:39:49.618Z" }, + { url = "https://files.pythonhosted.org/packages/2b/d2/8bee5996b699262edb87dbb54118d287c0e1b2fc78af7cdc41857ba5e3c4/hf_xet-1.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:bee693ada985e7045997f05f081d0e12c4c08bd7626dc397f8a7c487e6c04f7f", size = 3558942, upload-time = "2026-03-31T22:39:47.938Z" }, + { url = "https://files.pythonhosted.org/packages/c3/a1/e993d09cbe251196fb60812b09a58901c468127b7259d2bf0f68bf6088eb/hf_xet-1.4.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:21644b404bb0100fe3857892f752c4d09642586fd988e61501c95bbf44b393a3", size = 4207657, upload-time = "2026-03-31T22:39:39.69Z" }, + { url = "https://files.pythonhosted.org/packages/64/44/9eb6d21e5c34c63e5e399803a6932fa983cabdf47c0ecbcfe7ea97684b8c/hf_xet-1.4.3-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:987f09cfe418237812896a6736b81b1af02a3a6dcb4b4944425c4c4fca7a7cf8", size = 3986765, upload-time = "2026-03-31T22:39:37.936Z" }, + { url = "https://files.pythonhosted.org/packages/ea/7b/8ad6f16fdb82f5f7284a34b5ec48645bd575bdcd2f6f0d1644775909c486/hf_xet-1.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:60cf7fc43a99da0a853345cf86d23738c03983ee5249613a6305d3e57a5dca74", size = 4188162, upload-time = "2026-03-31T22:39:58.382Z" }, + { url = "https://files.pythonhosted.org/packages/1b/c4/39d6e136cbeea9ca5a23aad4b33024319222adbdc059ebcda5fc7d9d5ff4/hf_xet-1.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2815a49a7a59f3e2edf0cf113ae88e8cb2ca2a221bf353fb60c609584f4884d4", size = 4424525, upload-time = "2026-03-31T22:40:00.225Z" }, + { url = "https://files.pythonhosted.org/packages/46/f2/adc32dae6bdbc367853118b9878139ac869419a4ae7ba07185dc31251b76/hf_xet-1.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:42ee323265f1e6a81b0e11094564fb7f7e0ec75b5105ffd91ae63f403a11931b", size = 3671610, upload-time = "2026-03-31T22:40:10.42Z" }, + { url = "https://files.pythonhosted.org/packages/e2/19/25d897dcc3f81953e0c2cde9ec186c7a0fee413eb0c9a7a9130d87d94d3a/hf_xet-1.4.3-cp313-cp313t-win_arm64.whl", hash = "sha256:27c976ba60079fb8217f485b9c5c7fcd21c90b0367753805f87cb9f3cdc4418a", size = 3528529, upload-time = "2026-03-31T22:40:09.106Z" }, + { url = "https://files.pythonhosted.org/packages/ac/9f/9c23e4a447b8f83120798f9279d0297a4d1360bdbf59ef49ebec78fe2545/hf_xet-1.4.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:d0da85329eaf196e03e90b84c2d0aca53bd4573d097a75f99609e80775f98025", size = 3805048, upload-time = "2026-03-31T22:39:53.105Z" }, + { url = "https://files.pythonhosted.org/packages/0b/f8/7aacb8e5f4a7899d39c787b5984e912e6c18b11be136ef13947d7a66d265/hf_xet-1.4.3-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:e23717ce4186b265f69afa66e6f0069fe7efbf331546f5c313d00e123dc84583", size = 3562178, upload-time = "2026-03-31T22:39:51.295Z" }, + { url = "https://files.pythonhosted.org/packages/df/9a/a24b26dc8a65f0ecc0fe5be981a19e61e7ca963b85e062c083f3a9100529/hf_xet-1.4.3-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc360b70c815bf340ed56c7b8c63aacf11762a4b099b2fe2c9bd6d6068668c08", size = 4212320, upload-time = "2026-03-31T22:39:42.922Z" }, + { url = "https://files.pythonhosted.org/packages/53/60/46d493db155d2ee2801b71fb1b0fd67696359047fdd8caee2c914cc50c79/hf_xet-1.4.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:39f2d2e9654cd9b4319885733993807aab6de9dfbd34c42f0b78338d6617421f", size = 3991546, upload-time = "2026-03-31T22:39:41.335Z" }, + { url = "https://files.pythonhosted.org/packages/bc/f5/067363e1c96c6b17256910830d1b54099d06287e10f4ec6ec4e7e08371fc/hf_xet-1.4.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:49ad8a8cead2b56051aa84d7fce3e1335efe68df3cf6c058f22a65513885baac", size = 4193200, upload-time = "2026-03-31T22:40:01.936Z" }, + { url = "https://files.pythonhosted.org/packages/42/4b/53951592882d9c23080c7644542fda34a3813104e9e11fa1a7d82d419cb8/hf_xet-1.4.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:7716d62015477a70ea272d2d68cd7cad140f61c52ee452e133e139abfe2c17ba", size = 4429392, upload-time = "2026-03-31T22:40:03.492Z" }, + { url = "https://files.pythonhosted.org/packages/8a/21/75a6c175b4e79662ad8e62f46a40ce341d8d6b206b06b4320d07d55b188c/hf_xet-1.4.3-cp37-abi3-win_amd64.whl", hash = "sha256:6b591fcad34e272a5b02607485e4f2a1334aebf1bc6d16ce8eb1eb8978ac2021", size = 3677359, upload-time = "2026-03-31T22:40:13.619Z" }, + { url = "https://files.pythonhosted.org/packages/8a/7c/44314ecd0e89f8b2b51c9d9e5e7a60a9c1c82024ac471d415860557d3cd8/hf_xet-1.4.3-cp37-abi3-win_arm64.whl", hash = "sha256:7c2c7e20bcfcc946dc67187c203463f5e932e395845d098cc2a93f5b67ca0b47", size = 3533664, upload-time = "2026-03-31T22:40:12.152Z" }, +] + [[package]] name = "httpcore" version = "1.0.9" @@ -370,6 +612,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, ] +[[package]] +name = "huggingface-hub" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, + { name = "httpx" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "tqdm" }, + { name = "typer" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/bb/62c7aa86f63a05e2f9b96642fdef9b94526a23979820b09f5455deff4983/huggingface_hub-1.9.0.tar.gz", hash = "sha256:0ea5be7a56135c91797cae6ad726e38eaeb6eb4b77cefff5c9d38ba0ecf874f7", size = 750326, upload-time = "2026-04-03T08:35:55.888Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/37/0d15d16150e1829f3e90962c99f28257f6de9e526a680b4c6f5acdb54fd2/huggingface_hub-1.9.0-py3-none-any.whl", hash = "sha256:2999328c058d39fd19ab748dd09bd4da2fbaa4f4c1ddea823eab103051e14a1f", size = 637355, upload-time = "2026-04-03T08:35:53.897Z" }, +] + [[package]] name = "identify" version = "2.6.15" @@ -406,6 +668,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7f/ed/e3705d6d02b4f7aea715a353c8ce193efd0b5db13e204df895d38734c244/isort-7.0.0-py3-none-any.whl", hash = "sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1", size = 94672, upload-time = "2025-10-11T13:30:57.665Z" }, ] +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + [[package]] name = "joblib" version = "1.5.2" @@ -424,6 +698,59 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/e1/f0e63cc027669763ccc2c1e62ba69959ec02db5328c81df2508a52711ec9/json_repair-0.40.0-py3-none-any.whl", hash = "sha256:46955bfd22338ba60cc5239c0b01462ba419871b19fcd68d8881aca4fa3b0d2f", size = 20736, upload-time = "2025-03-19T12:21:42.867Z" }, ] +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, +] + [[package]] name = "mccabe" version = "0.7.0" @@ -433,6 +760,103 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350, upload-time = "2022-01-24T01:14:49.62Z" }, ] +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/f2/22/929c141d6c0dba87d3e1d38fbdf1ba8baba86b7776469f2bc2d3227a1e67/multidict-6.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2b41f5fed0ed563624f1c17630cb9941cf2309d4df00e494b551b5f3e3d67a23", size = 76174, upload-time = "2026-01-26T02:44:18.509Z" }, + { url = "https://files.pythonhosted.org/packages/c7/75/bc704ae15fee974f8fccd871305e254754167dce5f9e42d88a2def741a1d/multidict-6.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84e61e3af5463c19b67ced91f6c634effb89ef8bfc5ca0267f954451ed4bb6a2", size = 45116, upload-time = "2026-01-26T02:44:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/79/76/55cd7186f498ed080a18440c9013011eb548f77ae1b297206d030eb1180a/multidict-6.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:935434b9853c7c112eee7ac891bc4cb86455aa631269ae35442cb316790c1445", size = 43524, upload-time = "2026-01-26T02:44:21.571Z" }, + { url = "https://files.pythonhosted.org/packages/e9/3c/414842ef8d5a1628d68edee29ba0e5bcf235dbfb3ccd3ea303a7fe8c72ff/multidict-6.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:432feb25a1cb67fe82a9680b4d65fb542e4635cb3166cd9c01560651ad60f177", size = 249368, upload-time = "2026-01-26T02:44:22.803Z" }, + { url = "https://files.pythonhosted.org/packages/f6/32/befed7f74c458b4a525e60519fe8d87eef72bb1e99924fa2b0f9d97a221e/multidict-6.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e82d14e3c948952a1a85503817e038cba5905a3352de76b9a465075d072fba23", size = 256952, upload-time = "2026-01-26T02:44:24.306Z" }, + { url = "https://files.pythonhosted.org/packages/03/d6/c878a44ba877f366630c860fdf74bfb203c33778f12b6ac274936853c451/multidict-6.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4cfb48c6ea66c83bcaaf7e4dfa7ec1b6bbcf751b7db85a328902796dfde4c060", size = 240317, upload-time = "2026-01-26T02:44:25.772Z" }, + { url = "https://files.pythonhosted.org/packages/68/49/57421b4d7ad2e9e60e25922b08ceb37e077b90444bde6ead629095327a6f/multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1d540e51b7e8e170174555edecddbd5538105443754539193e3e1061864d444d", size = 267132, upload-time = "2026-01-26T02:44:27.648Z" }, + { url = "https://files.pythonhosted.org/packages/b7/fe/ec0edd52ddbcea2a2e89e174f0206444a61440b40f39704e64dc807a70bd/multidict-6.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:273d23f4b40f3dce4d6c8a821c741a86dec62cded82e1175ba3d99be128147ed", size = 268140, upload-time = "2026-01-26T02:44:29.588Z" }, + { url = "https://files.pythonhosted.org/packages/b0/73/6e1b01cbeb458807aa0831742232dbdd1fa92bfa33f52a3f176b4ff3dc11/multidict-6.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d624335fd4fa1c08a53f8b4be7676ebde19cd092b3895c421045ca87895b429", size = 254277, upload-time = "2026-01-26T02:44:30.902Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b2/5fb8c124d7561a4974c342bc8c778b471ebbeb3cc17df696f034a7e9afe7/multidict-6.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:12fad252f8b267cc75b66e8fc51b3079604e8d43a75428ffe193cd9e2195dfd6", size = 252291, upload-time = "2026-01-26T02:44:32.31Z" }, + { url = "https://files.pythonhosted.org/packages/5a/96/51d4e4e06bcce92577fcd488e22600bd38e4fd59c20cb49434d054903bd2/multidict-6.7.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9", size = 250156, upload-time = "2026-01-26T02:44:33.734Z" }, + { url = "https://files.pythonhosted.org/packages/db/6b/420e173eec5fba721a50e2a9f89eda89d9c98fded1124f8d5c675f7a0c0f/multidict-6.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:90efbcf47dbe33dcf643a1e400d67d59abeac5db07dc3f27d6bdeae497a2198c", size = 249742, upload-time = "2026-01-26T02:44:35.222Z" }, + { url = "https://files.pythonhosted.org/packages/44/a3/ec5b5bd98f306bc2aa297b8c6f11a46714a56b1e6ef5ebda50a4f5d7c5fb/multidict-6.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c4b9bfc148f5a91be9244d6264c53035c8a0dcd2f51f1c3c6e30e30ebaa1c84", size = 262221, upload-time = "2026-01-26T02:44:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/cd/f7/e8c0d0da0cd1e28d10e624604e1a36bcc3353aaebdfdc3a43c72bc683a12/multidict-6.7.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:401c5a650f3add2472d1d288c26deebc540f99e2fb83e9525007a74cd2116f1d", size = 258664, upload-time = "2026-01-26T02:44:38.008Z" }, + { url = "https://files.pythonhosted.org/packages/52/da/151a44e8016dd33feed44f730bd856a66257c1ee7aed4f44b649fb7edeb3/multidict-6.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:97891f3b1b3ffbded884e2916cacf3c6fc87b66bb0dde46f7357404750559f33", size = 249490, upload-time = "2026-01-26T02:44:39.386Z" }, + { url = "https://files.pythonhosted.org/packages/87/af/a3b86bf9630b732897f6fc3f4c4714b90aa4361983ccbdcd6c0339b21b0c/multidict-6.7.1-cp313-cp313-win32.whl", hash = "sha256:e1c5988359516095535c4301af38d8a8838534158f649c05dd1050222321bcb3", size = 41695, upload-time = "2026-01-26T02:44:41.318Z" }, + { url = "https://files.pythonhosted.org/packages/b2/35/e994121b0e90e46134673422dd564623f93304614f5d11886b1b3e06f503/multidict-6.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:960c83bf01a95b12b08fd54324a4eb1d5b52c88932b5cba5d6e712bb3ed12eb5", size = 45884, upload-time = "2026-01-26T02:44:42.488Z" }, + { url = "https://files.pythonhosted.org/packages/ca/61/42d3e5dbf661242a69c97ea363f2d7b46c567da8eadef8890022be6e2ab0/multidict-6.7.1-cp313-cp313-win_arm64.whl", hash = "sha256:563fe25c678aaba333d5399408f5ec3c383ca5b663e7f774dd179a520b8144df", size = 43122, upload-time = "2026-01-26T02:44:43.664Z" }, + { url = "https://files.pythonhosted.org/packages/6d/b3/e6b21c6c4f314bb956016b0b3ef2162590a529b84cb831c257519e7fde44/multidict-6.7.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:c76c4bec1538375dad9d452d246ca5368ad6e1c9039dadcf007ae59c70619ea1", size = 83175, upload-time = "2026-01-26T02:44:44.894Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/23ecd2abfe0957b234f6c960f4ade497f55f2c16aeb684d4ecdbf1c95791/multidict-6.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:57b46b24b5d5ebcc978da4ec23a819a9402b4228b8a90d9c656422b4bdd8a963", size = 48460, upload-time = "2026-01-26T02:44:46.106Z" }, + { url = "https://files.pythonhosted.org/packages/c4/57/a0ed92b23f3a042c36bc4227b72b97eca803f5f1801c1ab77c8a212d455e/multidict-6.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e954b24433c768ce78ab7929e84ccf3422e46deb45a4dc9f93438f8217fa2d34", size = 46930, upload-time = "2026-01-26T02:44:47.278Z" }, + { url = "https://files.pythonhosted.org/packages/b5/66/02ec7ace29162e447f6382c495dc95826bf931d3818799bbef11e8f7df1a/multidict-6.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3bd231490fa7217cc832528e1cd8752a96f0125ddd2b5749390f7c3ec8721b65", size = 242582, upload-time = "2026-01-26T02:44:48.604Z" }, + { url = "https://files.pythonhosted.org/packages/58/18/64f5a795e7677670e872673aca234162514696274597b3708b2c0d276cce/multidict-6.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:253282d70d67885a15c8a7716f3a73edf2d635793ceda8173b9ecc21f2fb8292", size = 250031, upload-time = "2026-01-26T02:44:50.544Z" }, + { url = "https://files.pythonhosted.org/packages/c8/ed/e192291dbbe51a8290c5686f482084d31bcd9d09af24f63358c3d42fd284/multidict-6.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0b4c48648d7649c9335cf1927a8b87fa692de3dcb15faa676c6a6f1f1aabda43", size = 228596, upload-time = "2026-01-26T02:44:51.951Z" }, + { url = "https://files.pythonhosted.org/packages/1e/7e/3562a15a60cf747397e7f2180b0a11dc0c38d9175a650e75fa1b4d325e15/multidict-6.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:98bc624954ec4d2c7cb074b8eefc2b5d0ce7d482e410df446414355d158fe4ca", size = 257492, upload-time = "2026-01-26T02:44:53.902Z" }, + { url = "https://files.pythonhosted.org/packages/24/02/7d0f9eae92b5249bb50ac1595b295f10e263dd0078ebb55115c31e0eaccd/multidict-6.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b99af4d9eec0b49927b4402bcbb58dea89d3e0db8806a4086117019939ad3dd", size = 255899, upload-time = "2026-01-26T02:44:55.316Z" }, + { url = "https://files.pythonhosted.org/packages/00/e3/9b60ed9e23e64c73a5cde95269ef1330678e9c6e34dd4eb6b431b85b5a10/multidict-6.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6aac4f16b472d5b7dc6f66a0d49dd57b0e0902090be16594dc9ebfd3d17c47e7", size = 247970, upload-time = "2026-01-26T02:44:56.783Z" }, + { url = "https://files.pythonhosted.org/packages/3e/06/538e58a63ed5cfb0bd4517e346b91da32fde409d839720f664e9a4ae4f9d/multidict-6.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:21f830fe223215dffd51f538e78c172ed7c7f60c9b96a2bf05c4848ad49921c3", size = 245060, upload-time = "2026-01-26T02:44:58.195Z" }, + { url = "https://files.pythonhosted.org/packages/b2/2f/d743a3045a97c895d401e9bd29aaa09b94f5cbdf1bd561609e5a6c431c70/multidict-6.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f5dd81c45b05518b9aa4da4aa74e1c93d715efa234fd3e8a179df611cc85e5f4", size = 235888, upload-time = "2026-01-26T02:44:59.57Z" }, + { url = "https://files.pythonhosted.org/packages/38/83/5a325cac191ab28b63c52f14f1131f3b0a55ba3b9aa65a6d0bf2a9b921a0/multidict-6.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:eb304767bca2bb92fb9c5bd33cedc95baee5bb5f6c88e63706533a1c06ad08c8", size = 243554, upload-time = "2026-01-26T02:45:01.054Z" }, + { url = "https://files.pythonhosted.org/packages/20/1f/9d2327086bd15da2725ef6aae624208e2ef828ed99892b17f60c344e57ed/multidict-6.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c9035dde0f916702850ef66460bc4239d89d08df4d02023a5926e7446724212c", size = 252341, upload-time = "2026-01-26T02:45:02.484Z" }, + { url = "https://files.pythonhosted.org/packages/e8/2c/2a1aa0280cf579d0f6eed8ee5211c4f1730bd7e06c636ba2ee6aafda302e/multidict-6.7.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:af959b9beeb66c822380f222f0e0a1889331597e81f1ded7f374f3ecb0fd6c52", size = 246391, upload-time = "2026-01-26T02:45:03.862Z" }, + { url = "https://files.pythonhosted.org/packages/e5/03/7ca022ffc36c5a3f6e03b179a5ceb829be9da5783e6fe395f347c0794680/multidict-6.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:41f2952231456154ee479651491e94118229844dd7226541788be783be2b5108", size = 243422, upload-time = "2026-01-26T02:45:05.296Z" }, + { url = "https://files.pythonhosted.org/packages/dc/1d/b31650eab6c5778aceed46ba735bd97f7c7d2f54b319fa916c0f96e7805b/multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32", size = 47770, upload-time = "2026-01-26T02:45:06.754Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/2d2d1d522e51285bd61b1e20df8f47ae1a9d80839db0b24ea783b3832832/multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8", size = 53109, upload-time = "2026-01-26T02:45:08.044Z" }, + { url = "https://files.pythonhosted.org/packages/3d/a3/cc409ba012c83ca024a308516703cf339bdc4b696195644a7215a5164a24/multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118", size = 45573, upload-time = "2026-01-26T02:45:09.349Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "multiprocess" +version = "0.70.19" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/f2/e783ac7f2aeeed14e9e12801f22529cc7e6b7ab80928d6dcce4e9f00922d/multiprocess-0.70.19.tar.gz", hash = "sha256:952021e0e6c55a4a9fe4cd787895b86e239a40e76802a789d6305398d3975897", size = 2079989, upload-time = "2026-01-19T06:47:39.744Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/45/8004d1e6b9185c1a444d6b55ac5682acf9d98035e54386d967366035a03a/multiprocess-0.70.19-py310-none-any.whl", hash = "sha256:97404393419dcb2a8385910864eedf47a3cadf82c66345b44f036420eb0b5d87", size = 134948, upload-time = "2026-01-19T06:47:32.325Z" }, + { url = "https://files.pythonhosted.org/packages/86/c2/dec9722dc3474c164a0b6bcd9a7ed7da542c98af8cabce05374abab35edd/multiprocess-0.70.19-py311-none-any.whl", hash = "sha256:928851ae7973aea4ce0eaf330bbdafb2e01398a91518d5c8818802845564f45c", size = 144457, upload-time = "2026-01-19T06:47:33.711Z" }, + { url = "https://files.pythonhosted.org/packages/71/70/38998b950a97ea279e6bd657575d22d1a2047256caf707d9a10fbce4f065/multiprocess-0.70.19-py312-none-any.whl", hash = "sha256:3a56c0e85dd5025161bac5ce138dcac1e49174c7d8e74596537e729fd5c53c28", size = 150281, upload-time = "2026-01-19T06:47:35.037Z" }, + { url = "https://files.pythonhosted.org/packages/7f/74/d2c27e03cb84251dfe7249b8e82923643c6d48fa4883b9476b025e7dc7eb/multiprocess-0.70.19-py313-none-any.whl", hash = "sha256:8d5eb4ec5017ba2fab4e34a747c6d2c2b6fecfe9e7236e77988db91580ada952", size = 156414, upload-time = "2026-01-19T06:47:35.915Z" }, + { url = "https://files.pythonhosted.org/packages/7e/82/69e539c4c2027f1e1697e09aaa2449243085a0edf81ae2c6341e84d769b6/multiprocess-0.70.19-py39-none-any.whl", hash = "sha256:0d4b4397ed669d371c81dcd1ef33fd384a44d6c3de1bd0ca7ac06d837720d3c5", size = 133477, upload-time = "2026-01-19T06:47:38.619Z" }, +] + [[package]] name = "mypy" version = "1.18.2" @@ -440,23 +864,10 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mypy-extensions" }, { name = "pathspec" }, - { name = "tomli", marker = "python_full_version < '3.11'" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c0/77/8f0d0001ffad290cef2f7f216f96c814866248a0b92a722365ed54648e7e/mypy-1.18.2.tar.gz", hash = "sha256:06a398102a5f203d7477b2923dda3634c36727fa5c237d8f859ef90c42a9924b", size = 3448846, upload-time = "2025-09-19T00:11:10.519Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/03/6f/657961a0743cff32e6c0611b63ff1c1970a0b482ace35b069203bf705187/mypy-1.18.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c1eab0cf6294dafe397c261a75f96dc2c31bffe3b944faa24db5def4e2b0f77c", size = 12807973, upload-time = "2025-09-19T00:10:35.282Z" }, - { url = "https://files.pythonhosted.org/packages/10/e9/420822d4f661f13ca8900f5fa239b40ee3be8b62b32f3357df9a3045a08b/mypy-1.18.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a780ca61fc239e4865968ebc5240bb3bf610ef59ac398de9a7421b54e4a207e", size = 11896527, upload-time = "2025-09-19T00:10:55.791Z" }, - { url = "https://files.pythonhosted.org/packages/aa/73/a05b2bbaa7005f4642fcfe40fb73f2b4fb6bb44229bd585b5878e9a87ef8/mypy-1.18.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448acd386266989ef11662ce3c8011fd2a7b632e0ec7d61a98edd8e27472225b", size = 12507004, upload-time = "2025-09-19T00:11:05.411Z" }, - { url = "https://files.pythonhosted.org/packages/4f/01/f6e4b9f0d031c11ccbd6f17da26564f3a0f3c4155af344006434b0a05a9d/mypy-1.18.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f9e171c465ad3901dc652643ee4bffa8e9fef4d7d0eece23b428908c77a76a66", size = 13245947, upload-time = "2025-09-19T00:10:46.923Z" }, - { url = "https://files.pythonhosted.org/packages/d7/97/19727e7499bfa1ae0773d06afd30ac66a58ed7437d940c70548634b24185/mypy-1.18.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:592ec214750bc00741af1f80cbf96b5013d81486b7bb24cb052382c19e40b428", size = 13499217, upload-time = "2025-09-19T00:09:39.472Z" }, - { url = "https://files.pythonhosted.org/packages/9f/4f/90dc8c15c1441bf31cf0f9918bb077e452618708199e530f4cbd5cede6ff/mypy-1.18.2-cp310-cp310-win_amd64.whl", hash = "sha256:7fb95f97199ea11769ebe3638c29b550b5221e997c63b14ef93d2e971606ebed", size = 9766753, upload-time = "2025-09-19T00:10:49.161Z" }, - { url = "https://files.pythonhosted.org/packages/88/87/cafd3ae563f88f94eec33f35ff722d043e09832ea8530ef149ec1efbaf08/mypy-1.18.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:807d9315ab9d464125aa9fcf6d84fde6e1dc67da0b6f80e7405506b8ac72bc7f", size = 12731198, upload-time = "2025-09-19T00:09:44.857Z" }, - { url = "https://files.pythonhosted.org/packages/0f/e0/1e96c3d4266a06d4b0197ace5356d67d937d8358e2ee3ffac71faa843724/mypy-1.18.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:776bb00de1778caf4db739c6e83919c1d85a448f71979b6a0edd774ea8399341", size = 11817879, upload-time = "2025-09-19T00:09:47.131Z" }, - { url = "https://files.pythonhosted.org/packages/72/ef/0c9ba89eb03453e76bdac5a78b08260a848c7bfc5d6603634774d9cd9525/mypy-1.18.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1379451880512ffce14505493bd9fe469e0697543717298242574882cf8cdb8d", size = 12427292, upload-time = "2025-09-19T00:10:22.472Z" }, - { url = "https://files.pythonhosted.org/packages/1a/52/ec4a061dd599eb8179d5411d99775bec2a20542505988f40fc2fee781068/mypy-1.18.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1331eb7fd110d60c24999893320967594ff84c38ac6d19e0a76c5fd809a84c86", size = 13163750, upload-time = "2025-09-19T00:09:51.472Z" }, - { url = "https://files.pythonhosted.org/packages/c4/5f/2cf2ceb3b36372d51568f2208c021870fe7834cf3186b653ac6446511839/mypy-1.18.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3ca30b50a51e7ba93b00422e486cbb124f1c56a535e20eff7b2d6ab72b3b2e37", size = 13351827, upload-time = "2025-09-19T00:09:58.311Z" }, - { url = "https://files.pythonhosted.org/packages/c8/7d/2697b930179e7277529eaaec1513f8de622818696857f689e4a5432e5e27/mypy-1.18.2-cp311-cp311-win_amd64.whl", hash = "sha256:664dc726e67fa54e14536f6e1224bcfce1d9e5ac02426d2326e2bb4e081d1ce8", size = 9757983, upload-time = "2025-09-19T00:10:09.071Z" }, { url = "https://files.pythonhosted.org/packages/07/06/dfdd2bc60c66611dd8335f463818514733bc763e4760dee289dcc33df709/mypy-1.18.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:33eca32dd124b29400c31d7cf784e795b050ace0e1f91b8dc035672725617e34", size = 12908273, upload-time = "2025-09-19T00:10:58.321Z" }, { url = "https://files.pythonhosted.org/packages/81/14/6a9de6d13a122d5608e1a04130724caf9170333ac5a924e10f670687d3eb/mypy-1.18.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a3c47adf30d65e89b2dcd2fa32f3aeb5e94ca970d2c15fcb25e297871c8e4764", size = 11920910, upload-time = "2025-09-19T00:10:20.043Z" }, { url = "https://files.pythonhosted.org/packages/5f/a9/b29de53e42f18e8cc547e38daa9dfa132ffdc64f7250e353f5c8cdd44bee/mypy-1.18.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d6c838e831a062f5f29d11c9057c6009f60cb294fea33a98422688181fe2893", size = 12465585, upload-time = "2025-09-19T00:10:33.005Z" }, @@ -482,100 +893,29 @@ wheels = [ ] [[package]] -name = "nodeenv" -version = "1.9.1" +name = "networkx" +version = "3.6.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, ] [[package]] -name = "numpy" -version = "2.2.6" +name = "nodeenv" +version = "1.9.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", -] -sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/3e/ed6db5be21ce87955c0cbd3009f2803f59fa08df21b5df06862e2d8e2bdd/numpy-2.2.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b412caa66f72040e6d268491a59f2c43bf03eb6c96dd8f0307829feb7fa2b6fb", size = 21165245, upload-time = "2025-05-17T21:27:58.555Z" }, - { url = "https://files.pythonhosted.org/packages/22/c2/4b9221495b2a132cc9d2eb862e21d42a009f5a60e45fc44b00118c174bff/numpy-2.2.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e41fd67c52b86603a91c1a505ebaef50b3314de0213461c7a6e99c9a3beff90", size = 14360048, upload-time = "2025-05-17T21:28:21.406Z" }, - { url = "https://files.pythonhosted.org/packages/fd/77/dc2fcfc66943c6410e2bf598062f5959372735ffda175b39906d54f02349/numpy-2.2.6-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:37e990a01ae6ec7fe7fa1c26c55ecb672dd98b19c3d0e1d1f326fa13cb38d163", size = 5340542, upload-time = "2025-05-17T21:28:30.931Z" }, - { url = "https://files.pythonhosted.org/packages/7a/4f/1cb5fdc353a5f5cc7feb692db9b8ec2c3d6405453f982435efc52561df58/numpy-2.2.6-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:5a6429d4be8ca66d889b7cf70f536a397dc45ba6faeb5f8c5427935d9592e9cf", size = 6878301, upload-time = "2025-05-17T21:28:41.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/17/96a3acd228cec142fcb8723bd3cc39c2a474f7dcf0a5d16731980bcafa95/numpy-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efd28d4e9cd7d7a8d39074a4d44c63eda73401580c5c76acda2ce969e0a38e83", size = 14297320, upload-time = "2025-05-17T21:29:02.78Z" }, - { url = "https://files.pythonhosted.org/packages/b4/63/3de6a34ad7ad6646ac7d2f55ebc6ad439dbbf9c4370017c50cf403fb19b5/numpy-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc7b73d02efb0e18c000e9ad8b83480dfcd5dfd11065997ed4c6747470ae8915", size = 16801050, upload-time = "2025-05-17T21:29:27.675Z" }, - { url = "https://files.pythonhosted.org/packages/07/b6/89d837eddef52b3d0cec5c6ba0456c1bf1b9ef6a6672fc2b7873c3ec4e2e/numpy-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74d4531beb257d2c3f4b261bfb0fc09e0f9ebb8842d82a7b4209415896adc680", size = 15807034, upload-time = "2025-05-17T21:29:51.102Z" }, - { url = "https://files.pythonhosted.org/packages/01/c8/dc6ae86e3c61cfec1f178e5c9f7858584049b6093f843bca541f94120920/numpy-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8fc377d995680230e83241d8a96def29f204b5782f371c532579b4f20607a289", size = 18614185, upload-time = "2025-05-17T21:30:18.703Z" }, - { url = "https://files.pythonhosted.org/packages/5b/c5/0064b1b7e7c89137b471ccec1fd2282fceaae0ab3a9550f2568782d80357/numpy-2.2.6-cp310-cp310-win32.whl", hash = "sha256:b093dd74e50a8cba3e873868d9e93a85b78e0daf2e98c6797566ad8044e8363d", size = 6527149, upload-time = "2025-05-17T21:30:29.788Z" }, - { url = "https://files.pythonhosted.org/packages/a3/dd/4b822569d6b96c39d1215dbae0582fd99954dcbcf0c1a13c61783feaca3f/numpy-2.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:f0fd6321b839904e15c46e0d257fdd101dd7f530fe03fd6359c1ea63738703f3", size = 12904620, upload-time = "2025-05-17T21:30:48.994Z" }, - { url = "https://files.pythonhosted.org/packages/da/a8/4f83e2aa666a9fbf56d6118faaaf5f1974d456b1823fda0a176eff722839/numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae", size = 21176963, upload-time = "2025-05-17T21:31:19.36Z" }, - { url = "https://files.pythonhosted.org/packages/b3/2b/64e1affc7972decb74c9e29e5649fac940514910960ba25cd9af4488b66c/numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a", size = 14406743, upload-time = "2025-05-17T21:31:41.087Z" }, - { url = "https://files.pythonhosted.org/packages/4a/9f/0121e375000b5e50ffdd8b25bf78d8e1a5aa4cca3f185d41265198c7b834/numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42", size = 5352616, upload-time = "2025-05-17T21:31:50.072Z" }, - { url = "https://files.pythonhosted.org/packages/31/0d/b48c405c91693635fbe2dcd7bc84a33a602add5f63286e024d3b6741411c/numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491", size = 6889579, upload-time = "2025-05-17T21:32:01.712Z" }, - { url = "https://files.pythonhosted.org/packages/52/b8/7f0554d49b565d0171eab6e99001846882000883998e7b7d9f0d98b1f934/numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a", size = 14312005, upload-time = "2025-05-17T21:32:23.332Z" }, - { url = "https://files.pythonhosted.org/packages/b3/dd/2238b898e51bd6d389b7389ffb20d7f4c10066d80351187ec8e303a5a475/numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf", size = 16821570, upload-time = "2025-05-17T21:32:47.991Z" }, - { url = "https://files.pythonhosted.org/packages/83/6c/44d0325722cf644f191042bf47eedad61c1e6df2432ed65cbe28509d404e/numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1", size = 15818548, upload-time = "2025-05-17T21:33:11.728Z" }, - { url = "https://files.pythonhosted.org/packages/ae/9d/81e8216030ce66be25279098789b665d49ff19eef08bfa8cb96d4957f422/numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab", size = 18620521, upload-time = "2025-05-17T21:33:39.139Z" }, - { url = "https://files.pythonhosted.org/packages/6a/fd/e19617b9530b031db51b0926eed5345ce8ddc669bb3bc0044b23e275ebe8/numpy-2.2.6-cp311-cp311-win32.whl", hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47", size = 6525866, upload-time = "2025-05-17T21:33:50.273Z" }, - { url = "https://files.pythonhosted.org/packages/31/0a/f354fb7176b81747d870f7991dc763e157a934c717b67b58456bc63da3df/numpy-2.2.6-cp311-cp311-win_amd64.whl", hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303", size = 12907455, upload-time = "2025-05-17T21:34:09.135Z" }, - { url = "https://files.pythonhosted.org/packages/82/5d/c00588b6cf18e1da539b45d3598d3557084990dcc4331960c15ee776ee41/numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff", size = 20875348, upload-time = "2025-05-17T21:34:39.648Z" }, - { url = "https://files.pythonhosted.org/packages/66/ee/560deadcdde6c2f90200450d5938f63a34b37e27ebff162810f716f6a230/numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c", size = 14119362, upload-time = "2025-05-17T21:35:01.241Z" }, - { url = "https://files.pythonhosted.org/packages/3c/65/4baa99f1c53b30adf0acd9a5519078871ddde8d2339dc5a7fde80d9d87da/numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3", size = 5084103, upload-time = "2025-05-17T21:35:10.622Z" }, - { url = "https://files.pythonhosted.org/packages/cc/89/e5a34c071a0570cc40c9a54eb472d113eea6d002e9ae12bb3a8407fb912e/numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282", size = 6625382, upload-time = "2025-05-17T21:35:21.414Z" }, - { url = "https://files.pythonhosted.org/packages/f8/35/8c80729f1ff76b3921d5c9487c7ac3de9b2a103b1cd05e905b3090513510/numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87", size = 14018462, upload-time = "2025-05-17T21:35:42.174Z" }, - { url = "https://files.pythonhosted.org/packages/8c/3d/1e1db36cfd41f895d266b103df00ca5b3cbe965184df824dec5c08c6b803/numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249", size = 16527618, upload-time = "2025-05-17T21:36:06.711Z" }, - { url = "https://files.pythonhosted.org/packages/61/c6/03ed30992602c85aa3cd95b9070a514f8b3c33e31124694438d88809ae36/numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49", size = 15505511, upload-time = "2025-05-17T21:36:29.965Z" }, - { url = "https://files.pythonhosted.org/packages/b7/25/5761d832a81df431e260719ec45de696414266613c9ee268394dd5ad8236/numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de", size = 18313783, upload-time = "2025-05-17T21:36:56.883Z" }, - { url = "https://files.pythonhosted.org/packages/57/0a/72d5a3527c5ebffcd47bde9162c39fae1f90138c961e5296491ce778e682/numpy-2.2.6-cp312-cp312-win32.whl", hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4", size = 6246506, upload-time = "2025-05-17T21:37:07.368Z" }, - { url = "https://files.pythonhosted.org/packages/36/fa/8c9210162ca1b88529ab76b41ba02d433fd54fecaf6feb70ef9f124683f1/numpy-2.2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2", size = 12614190, upload-time = "2025-05-17T21:37:26.213Z" }, - { url = "https://files.pythonhosted.org/packages/f9/5c/6657823f4f594f72b5471f1db1ab12e26e890bb2e41897522d134d2a3e81/numpy-2.2.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0811bb762109d9708cca4d0b13c4f67146e3c3b7cf8d34018c722adb2d957c84", size = 20867828, upload-time = "2025-05-17T21:37:56.699Z" }, - { url = "https://files.pythonhosted.org/packages/dc/9e/14520dc3dadf3c803473bd07e9b2bd1b69bc583cb2497b47000fed2fa92f/numpy-2.2.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:287cc3162b6f01463ccd86be154f284d0893d2b3ed7292439ea97eafa8170e0b", size = 14143006, upload-time = "2025-05-17T21:38:18.291Z" }, - { url = "https://files.pythonhosted.org/packages/4f/06/7e96c57d90bebdce9918412087fc22ca9851cceaf5567a45c1f404480e9e/numpy-2.2.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f1372f041402e37e5e633e586f62aa53de2eac8d98cbfb822806ce4bbefcb74d", size = 5076765, upload-time = "2025-05-17T21:38:27.319Z" }, - { url = "https://files.pythonhosted.org/packages/73/ed/63d920c23b4289fdac96ddbdd6132e9427790977d5457cd132f18e76eae0/numpy-2.2.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:55a4d33fa519660d69614a9fad433be87e5252f4b03850642f88993f7b2ca566", size = 6617736, upload-time = "2025-05-17T21:38:38.141Z" }, - { url = "https://files.pythonhosted.org/packages/85/c5/e19c8f99d83fd377ec8c7e0cf627a8049746da54afc24ef0a0cb73d5dfb5/numpy-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f92729c95468a2f4f15e9bb94c432a9229d0d50de67304399627a943201baa2f", size = 14010719, upload-time = "2025-05-17T21:38:58.433Z" }, - { url = "https://files.pythonhosted.org/packages/19/49/4df9123aafa7b539317bf6d342cb6d227e49f7a35b99c287a6109b13dd93/numpy-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bc23a79bfabc5d056d106f9befb8d50c31ced2fbc70eedb8155aec74a45798f", size = 16526072, upload-time = "2025-05-17T21:39:22.638Z" }, - { url = "https://files.pythonhosted.org/packages/b2/6c/04b5f47f4f32f7c2b0e7260442a8cbcf8168b0e1a41ff1495da42f42a14f/numpy-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e3143e4451880bed956e706a3220b4e5cf6172ef05fcc397f6f36a550b1dd868", size = 15503213, upload-time = "2025-05-17T21:39:45.865Z" }, - { url = "https://files.pythonhosted.org/packages/17/0a/5cd92e352c1307640d5b6fec1b2ffb06cd0dabe7d7b8227f97933d378422/numpy-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4f13750ce79751586ae2eb824ba7e1e8dba64784086c98cdbbcc6a42112ce0d", size = 18316632, upload-time = "2025-05-17T21:40:13.331Z" }, - { url = "https://files.pythonhosted.org/packages/f0/3b/5cba2b1d88760ef86596ad0f3d484b1cbff7c115ae2429678465057c5155/numpy-2.2.6-cp313-cp313-win32.whl", hash = "sha256:5beb72339d9d4fa36522fc63802f469b13cdbe4fdab4a288f0c441b74272ebfd", size = 6244532, upload-time = "2025-05-17T21:43:46.099Z" }, - { url = "https://files.pythonhosted.org/packages/cb/3b/d58c12eafcb298d4e6d0d40216866ab15f59e55d148a5658bb3132311fcf/numpy-2.2.6-cp313-cp313-win_amd64.whl", hash = "sha256:b0544343a702fa80c95ad5d3d608ea3599dd54d4632df855e4c8d24eb6ecfa1c", size = 12610885, upload-time = "2025-05-17T21:44:05.145Z" }, - { url = "https://files.pythonhosted.org/packages/6b/9e/4bf918b818e516322db999ac25d00c75788ddfd2d2ade4fa66f1f38097e1/numpy-2.2.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0bca768cd85ae743b2affdc762d617eddf3bcf8724435498a1e80132d04879e6", size = 20963467, upload-time = "2025-05-17T21:40:44Z" }, - { url = "https://files.pythonhosted.org/packages/61/66/d2de6b291507517ff2e438e13ff7b1e2cdbdb7cb40b3ed475377aece69f9/numpy-2.2.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fc0c5673685c508a142ca65209b4e79ed6740a4ed6b2267dbba90f34b0b3cfda", size = 14225144, upload-time = "2025-05-17T21:41:05.695Z" }, - { url = "https://files.pythonhosted.org/packages/e4/25/480387655407ead912e28ba3a820bc69af9adf13bcbe40b299d454ec011f/numpy-2.2.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:5bd4fc3ac8926b3819797a7c0e2631eb889b4118a9898c84f585a54d475b7e40", size = 5200217, upload-time = "2025-05-17T21:41:15.903Z" }, - { url = "https://files.pythonhosted.org/packages/aa/4a/6e313b5108f53dcbf3aca0c0f3e9c92f4c10ce57a0a721851f9785872895/numpy-2.2.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:fee4236c876c4e8369388054d02d0e9bb84821feb1a64dd59e137e6511a551f8", size = 6712014, upload-time = "2025-05-17T21:41:27.321Z" }, - { url = "https://files.pythonhosted.org/packages/b7/30/172c2d5c4be71fdf476e9de553443cf8e25feddbe185e0bd88b096915bcc/numpy-2.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1dda9c7e08dc141e0247a5b8f49cf05984955246a327d4c48bda16821947b2f", size = 14077935, upload-time = "2025-05-17T21:41:49.738Z" }, - { url = "https://files.pythonhosted.org/packages/12/fb/9e743f8d4e4d3c710902cf87af3512082ae3d43b945d5d16563f26ec251d/numpy-2.2.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f447e6acb680fd307f40d3da4852208af94afdfab89cf850986c3ca00562f4fa", size = 16600122, upload-time = "2025-05-17T21:42:14.046Z" }, - { url = "https://files.pythonhosted.org/packages/12/75/ee20da0e58d3a66f204f38916757e01e33a9737d0b22373b3eb5a27358f9/numpy-2.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:389d771b1623ec92636b0786bc4ae56abafad4a4c513d36a55dce14bd9ce8571", size = 15586143, upload-time = "2025-05-17T21:42:37.464Z" }, - { url = "https://files.pythonhosted.org/packages/76/95/bef5b37f29fc5e739947e9ce5179ad402875633308504a52d188302319c8/numpy-2.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8e9ace4a37db23421249ed236fdcdd457d671e25146786dfc96835cd951aa7c1", size = 18385260, upload-time = "2025-05-17T21:43:05.189Z" }, - { url = "https://files.pythonhosted.org/packages/09/04/f2f83279d287407cf36a7a8053a5abe7be3622a4363337338f2585e4afda/numpy-2.2.6-cp313-cp313t-win32.whl", hash = "sha256:038613e9fb8c72b0a41f025a7e4c3f0b7a1b5d768ece4796b674c8f3fe13efff", size = 6377225, upload-time = "2025-05-17T21:43:16.254Z" }, - { url = "https://files.pythonhosted.org/packages/67/0e/35082d13c09c02c011cf21570543d202ad929d961c02a147493cb0c2bdf5/numpy-2.2.6-cp313-cp313t-win_amd64.whl", hash = "sha256:6031dd6dfecc0cf9f668681a37648373bddd6421fff6c66ec1624eed0180ee06", size = 12771374, upload-time = "2025-05-17T21:43:35.479Z" }, - { url = "https://files.pythonhosted.org/packages/9e/3b/d94a75f4dbf1ef5d321523ecac21ef23a3cd2ac8b78ae2aac40873590229/numpy-2.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0b605b275d7bd0c640cad4e5d30fa701a8d59302e127e5f79138ad62762c3e3d", size = 21040391, upload-time = "2025-05-17T21:44:35.948Z" }, - { url = "https://files.pythonhosted.org/packages/17/f4/09b2fa1b58f0fb4f7c7963a1649c64c4d315752240377ed74d9cd878f7b5/numpy-2.2.6-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:7befc596a7dc9da8a337f79802ee8adb30a552a94f792b9c9d18c840055907db", size = 6786754, upload-time = "2025-05-17T21:44:47.446Z" }, - { url = "https://files.pythonhosted.org/packages/af/30/feba75f143bdc868a1cc3f44ccfa6c4b9ec522b36458e738cd00f67b573f/numpy-2.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce47521a4754c8f4593837384bd3424880629f718d87c5d44f8ed763edd63543", size = 16643476, upload-time = "2025-05-17T21:45:11.871Z" }, - { url = "https://files.pythonhosted.org/packages/37/48/ac2a9584402fb6c0cd5b5d1a91dcf176b15760130dd386bbafdbfe3640bf/numpy-2.2.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d042d24c90c41b54fd506da306759e06e568864df8ec17ccc17e9e884634fd00", size = 12812666, upload-time = "2025-05-17T21:45:31.426Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, ] [[package]] name = "numpy" version = "2.3.5" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13'", - "python_full_version >= '3.11' and python_full_version < '3.13'", -] sdist = { url = "https://files.pythonhosted.org/packages/76/65/21b3bc86aac7b8f2862db1e808f1ea22b028e30a225a34a5ede9bf8678f2/numpy-2.3.5.tar.gz", hash = "sha256:784db1dcdab56bf0517743e746dfb0f885fc68d948aba86eeec2cba234bdf1c0", size = 20584950, upload-time = "2025-11-16T22:52:42.067Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/43/77/84dd1d2e34d7e2792a236ba180b5e8fcc1e3e414e761ce0253f63d7f572e/numpy-2.3.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:de5672f4a7b200c15a4127042170a694d4df43c992948f5e1af57f0174beed10", size = 17034641, upload-time = "2025-11-16T22:49:19.336Z" }, - { url = "https://files.pythonhosted.org/packages/2a/ea/25e26fa5837106cde46ae7d0b667e20f69cbbc0efd64cba8221411ab26ae/numpy-2.3.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:acfd89508504a19ed06ef963ad544ec6664518c863436306153e13e94605c218", size = 12528324, upload-time = "2025-11-16T22:49:22.582Z" }, - { url = "https://files.pythonhosted.org/packages/4d/1a/e85f0eea4cf03d6a0228f5c0256b53f2df4bc794706e7df019fc622e47f1/numpy-2.3.5-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:ffe22d2b05504f786c867c8395de703937f934272eb67586817b46188b4ded6d", size = 5356872, upload-time = "2025-11-16T22:49:25.408Z" }, - { url = "https://files.pythonhosted.org/packages/5c/bb/35ef04afd567f4c989c2060cde39211e4ac5357155c1833bcd1166055c61/numpy-2.3.5-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:872a5cf366aec6bb1147336480fef14c9164b154aeb6542327de4970282cd2f5", size = 6893148, upload-time = "2025-11-16T22:49:27.549Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2b/05bbeb06e2dff5eab512dfc678b1cc5ee94d8ac5956a0885c64b6b26252b/numpy-2.3.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3095bdb8dd297e5920b010e96134ed91d852d81d490e787beca7e35ae1d89cf7", size = 14557282, upload-time = "2025-11-16T22:49:30.964Z" }, - { url = "https://files.pythonhosted.org/packages/65/fb/2b23769462b34398d9326081fad5655198fcf18966fcb1f1e49db44fbf31/numpy-2.3.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8cba086a43d54ca804ce711b2a940b16e452807acebe7852ff327f1ecd49b0d4", size = 16897903, upload-time = "2025-11-16T22:49:34.191Z" }, - { url = "https://files.pythonhosted.org/packages/ac/14/085f4cf05fc3f1e8aa95e85404e984ffca9b2275a5dc2b1aae18a67538b8/numpy-2.3.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6cf9b429b21df6b99f4dee7a1218b8b7ffbbe7df8764dc0bd60ce8a0708fed1e", size = 16341672, upload-time = "2025-11-16T22:49:37.2Z" }, - { url = "https://files.pythonhosted.org/packages/6f/3b/1f73994904142b2aa290449b3bb99772477b5fd94d787093e4f24f5af763/numpy-2.3.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:396084a36abdb603546b119d96528c2f6263921c50df3c8fd7cb28873a237748", size = 18838896, upload-time = "2025-11-16T22:49:39.727Z" }, - { url = "https://files.pythonhosted.org/packages/cd/b9/cf6649b2124f288309ffc353070792caf42ad69047dcc60da85ee85fea58/numpy-2.3.5-cp311-cp311-win32.whl", hash = "sha256:b0c7088a73aef3d687c4deef8452a3ac7c1be4e29ed8bf3b366c8111128ac60c", size = 6563608, upload-time = "2025-11-16T22:49:42.079Z" }, - { url = "https://files.pythonhosted.org/packages/aa/44/9fe81ae1dcc29c531843852e2874080dc441338574ccc4306b39e2ff6e59/numpy-2.3.5-cp311-cp311-win_amd64.whl", hash = "sha256:a414504bef8945eae5f2d7cb7be2d4af77c5d1cb5e20b296c2c25b61dff2900c", size = 13078442, upload-time = "2025-11-16T22:49:43.99Z" }, - { url = "https://files.pythonhosted.org/packages/6d/a7/f99a41553d2da82a20a2f22e93c94f928e4490bb447c9ff3c4ff230581d3/numpy-2.3.5-cp311-cp311-win_arm64.whl", hash = "sha256:0cd00b7b36e35398fa2d16af7b907b65304ef8bb4817a550e06e5012929830fa", size = 10458555, upload-time = "2025-11-16T22:49:47.092Z" }, { url = "https://files.pythonhosted.org/packages/44/37/e669fe6cbb2b96c62f6bbedc6a81c0f3b7362f6a59230b23caa673a85721/numpy-2.3.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:74ae7b798248fe62021dbf3c914245ad45d1a6b0cb4a29ecb4b31d0bfbc4cc3e", size = 16733873, upload-time = "2025-11-16T22:49:49.84Z" }, { url = "https://files.pythonhosted.org/packages/c5/65/df0db6c097892c9380851ab9e44b52d4f7ba576b833996e0080181c0c439/numpy-2.3.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ee3888d9ff7c14604052b2ca5535a30216aa0a58e948cdd3eeb8d3415f638769", size = 12259838, upload-time = "2025-11-16T22:49:52.863Z" }, { url = "https://files.pythonhosted.org/packages/5b/e1/1ee06e70eb2136797abe847d386e7c0e830b67ad1d43f364dd04fa50d338/numpy-2.3.5-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:612a95a17655e213502f60cfb9bf9408efdc9eb1d5f50535cc6eb365d11b42b5", size = 5088378, upload-time = "2025-11-16T22:49:55.055Z" }, @@ -609,13 +949,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/80/e9/aff53abbdd41b0ecca94285f325aff42357c6b5abc482a3fcb4994290b18/numpy-2.3.5-cp313-cp313t-win32.whl", hash = "sha256:70b37199913c1bd300ff6e2693316c6f869c7ee16378faf10e4f5e3275b299c3", size = 6405940, upload-time = "2025-11-16T22:51:11.541Z" }, { url = "https://files.pythonhosted.org/packages/d5/81/50613fec9d4de5480de18d4f8ef59ad7e344d497edbef3cfd80f24f98461/numpy-2.3.5-cp313-cp313t-win_amd64.whl", hash = "sha256:b501b5fa195cc9e24fe102f21ec0a44dffc231d2af79950b451e0d99cea02234", size = 12920341, upload-time = "2025-11-16T22:51:14.312Z" }, { url = "https://files.pythonhosted.org/packages/bb/ab/08fd63b9a74303947f34f0bd7c5903b9c5532c2d287bead5bdf4c556c486/numpy-2.3.5-cp313-cp313t-win_arm64.whl", hash = "sha256:a80afd79f45f3c4a7d341f13acbe058d1ca8ac017c165d3fa0d3de6bc1a079d7", size = 10262507, upload-time = "2025-11-16T22:51:16.846Z" }, - { url = "https://files.pythonhosted.org/packages/c6/65/f9dea8e109371ade9c782b4e4756a82edf9d3366bca495d84d79859a0b79/numpy-2.3.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f0963b55cdd70fad460fa4c1341f12f976bb26cb66021a5580329bd498988310", size = 16910689, upload-time = "2025-11-16T22:52:23.247Z" }, - { url = "https://files.pythonhosted.org/packages/00/4f/edb00032a8fb92ec0a679d3830368355da91a69cab6f3e9c21b64d0bb986/numpy-2.3.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:f4255143f5160d0de972d28c8f9665d882b5f61309d8362fdd3e103cf7bf010c", size = 12457053, upload-time = "2025-11-16T22:52:26.367Z" }, - { url = "https://files.pythonhosted.org/packages/16/a4/e8a53b5abd500a63836a29ebe145fc1ab1f2eefe1cfe59276020373ae0aa/numpy-2.3.5-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:a4b9159734b326535f4dd01d947f919c6eefd2d9827466a696c44ced82dfbc18", size = 5285635, upload-time = "2025-11-16T22:52:29.266Z" }, - { url = "https://files.pythonhosted.org/packages/a3/2f/37eeb9014d9c8b3e9c55bc599c68263ca44fdbc12a93e45a21d1d56df737/numpy-2.3.5-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:2feae0d2c91d46e59fcd62784a3a83b3fb677fead592ce51b5a6fbb4f95965ff", size = 6801770, upload-time = "2025-11-16T22:52:31.421Z" }, - { url = "https://files.pythonhosted.org/packages/7d/e4/68d2f474df2cb671b2b6c2986a02e520671295647dad82484cde80ca427b/numpy-2.3.5-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ffac52f28a7849ad7576293c0cb7b9f08304e8f7d738a8cb8a90ec4c55a998eb", size = 14391768, upload-time = "2025-11-16T22:52:33.593Z" }, - { url = "https://files.pythonhosted.org/packages/b8/50/94ccd8a2b141cb50651fddd4f6a48874acb3c91c8f0842b08a6afc4b0b21/numpy-2.3.5-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63c0e9e7eea69588479ebf4a8a270d5ac22763cc5854e9a7eae952a3908103f7", size = 16729263, upload-time = "2025-11-16T22:52:36.369Z" }, - { url = "https://files.pythonhosted.org/packages/2d/ee/346fa473e666fe14c52fcdd19ec2424157290a032d4c41f98127bfb31ac7/numpy-2.3.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:f16417ec91f12f814b10bafe79ef77e70113a2f5f7018640e7425ff979253425", size = 12967213, upload-time = "2025-11-16T22:52:39.38Z" }, ] [[package]] @@ -623,7 +956,7 @@ name = "numpy-typing-compat" version = "20250818.2.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c9/e3/1a29f174c1e09a2bf111d37a41afceea1b501371abb39e73170ca31a7599/numpy_typing_compat-20250818.2.3.tar.gz", hash = "sha256:72e83d535b635d668ba7315e43ae80be1469a6faea6fc96d312516f39b3d8fa5", size = 4974, upload-time = "2025-08-18T23:46:42.968Z" } wheels = [ @@ -631,30 +964,160 @@ wheels = [ ] [[package]] -name = "optype" -version = "0.9.3" +name = "nvidia-cublas" +version = "13.1.0.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/a5/fce49e2ae977e0ccc084e5adafceb4f0ac0c8333cb6863501618a7277f67/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c86fc7f7ae36d7528288c5d88098edcb7b02c633d262e7ddbb86b0ad91be5df2", size = 542851226, upload-time = "2025-10-09T08:59:04.818Z" }, + { url = "https://files.pythonhosted.org/packages/e7/44/423ac00af4dd95a5aeb27207e2c0d9b7118702149bf4704c3ddb55bb7429/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:ee8722c1f0145ab246bccb9e452153b5e0515fd094c3678df50b2a0888b8b171", size = 423133236, upload-time = "2025-10-09T08:59:32.536Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti" +version = "13.0.85" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/2a/80353b103fc20ce05ef51e928daed4b6015db4aaa9162ed0997090fe2250/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_aarch64.whl", hash = "sha256:796bd679890ee55fb14a94629b698b6db54bcfd833d391d5e94017dd9d7d3151", size = 10310827, upload-time = "2025-09-04T08:26:42.012Z" }, + { url = "https://files.pythonhosted.org/packages/33/6d/737d164b4837a9bbd202f5ae3078975f0525a55730fe871d8ed4e3b952b0/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_x86_64.whl", hash = "sha256:4eb01c08e859bf924d222250d2e8f8b8ff6d3db4721288cf35d14252a4d933c8", size = 10715597, upload-time = "2025-09-04T08:26:51.312Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc" +version = "13.0.88" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/68/483a78f5e8f31b08fb1bb671559968c0ca3a065ac7acabfc7cee55214fd6/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:ad9b6d2ead2435f11cbb6868809d2adeeee302e9bb94bcf0539c7a40d80e8575", size = 90215200, upload-time = "2025-09-04T08:28:44.204Z" }, + { url = "https://files.pythonhosted.org/packages/b7/dc/6bb80850e0b7edd6588d560758f17e0550893a1feaf436807d64d2da040f/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d27f20a0ca67a4bb34268a5e951033496c5b74870b868bacd046b1b8e0c3267b", size = 43015449, upload-time = "2025-09-04T08:28:20.239Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime" +version = "13.0.96" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/4f/17d7b9b8e285199c58ce28e31b5c5bbaa4d8271af06a89b6405258245de2/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef9bcbe90493a2b9d810e43d249adb3d02e98dd30200d86607d8d02687c43f55", size = 2261060, upload-time = "2025-10-09T08:55:15.78Z" }, + { url = "https://files.pythonhosted.org/packages/2e/24/d1558f3b68b1d26e706813b1d10aa1d785e4698c425af8db8edc3dced472/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7f82250d7782aa23b6cfe765ecc7db554bd3c2870c43f3d1821f1d18aebf0548", size = 2243632, upload-time = "2025-10-09T08:55:36.117Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu13" +version = "9.19.0.56" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/84/26025437c1e6b61a707442184fa0c03d083b661adf3a3eecfd6d21677740/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:6ed29ffaee1176c612daf442e4dd6cfeb6a0caa43ddcbeb59da94953030b1be4", size = 433781201, upload-time = "2026-02-03T20:40:53.805Z" }, + { url = "https://files.pythonhosted.org/packages/a3/22/0b4b932655d17a6da1b92fa92ab12844b053bb2ac2475e179ba6f043da1e/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:d20e1734305e9d68889a96e3f35094d733ff1f83932ebe462753973e53a572bf", size = 366066321, upload-time = "2026-02-03T20:44:52.837Z" }, +] + +[[package]] +name = "nvidia-cufft" +version = "12.0.0.61" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/ae/f417a75c0259e85c1d2f83ca4e960289a5f814ed0cea74d18c353d3e989d/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2708c852ef8cd89d1d2068bdbece0aa188813a0c934db3779b9b1faa8442e5f5", size = 214053554, upload-time = "2025-09-04T08:31:38.196Z" }, + { url = "https://files.pythonhosted.org/packages/a8/2f/7b57e29836ea8714f81e9898409196f47d772d5ddedddf1592eadb8ab743/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6c44f692dce8fd5ffd3e3df134b6cdb9c2f72d99cf40b62c32dde45eea9ddad3", size = 214085489, upload-time = "2025-09-04T08:31:56.044Z" }, +] + +[[package]] +name = "nvidia-cufile" +version = "1.15.1.6" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/70/4f193de89a48b71714e74602ee14d04e4019ad36a5a9f20c425776e72cd6/nvidia_cufile-1.15.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08a3ecefae5a01c7f5117351c64f17c7c62efa5fffdbe24fc7d298da19cd0b44", size = 1223672, upload-time = "2025-09-04T08:32:22.779Z" }, + { url = "https://files.pythonhosted.org/packages/ab/73/cc4a14c9813a8a0d509417cf5f4bdaba76e924d58beb9864f5a7baceefbf/nvidia_cufile-1.15.1.6-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:bdc0deedc61f548bddf7733bdc216456c2fdb101d020e1ab4b88d232d5e2f6d1", size = 1136992, upload-time = "2025-09-04T08:32:14.119Z" }, +] + +[[package]] +name = "nvidia-curand" +version = "10.4.0.35" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/72/7c2ae24fb6b63a32e6ae5d241cc65263ea18d08802aaae087d9f013335a2/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:133df5a7509c3e292aaa2b477afd0194f06ce4ea24d714d616ff36439cee349a", size = 61962106, upload-time = "2025-08-04T10:21:41.128Z" }, + { url = "https://files.pythonhosted.org/packages/a5/9f/be0a41ca4a4917abf5cb9ae0daff1a6060cc5de950aec0396de9f3b52bc5/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:1aee33a5da6e1db083fe2b90082def8915f30f3248d5896bcec36a579d941bfc", size = 59544258, upload-time = "2025-08-04T10:22:03.992Z" }, +] + +[[package]] +name = "nvidia-cusolver" +version = "12.0.4.66" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas" }, + { name = "nvidia-cusparse" }, + { name = "nvidia-nvjitlink" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/c3/b30c9e935fc01e3da443ec0116ed1b2a009bb867f5324d3f2d7e533e776b/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:02c2457eaa9e39de20f880f4bd8820e6a1cfb9f9a34f820eb12a155aa5bc92d2", size = 223467760, upload-time = "2025-09-04T08:33:04.222Z" }, + { url = "https://files.pythonhosted.org/packages/5f/67/cba3777620cdacb99102da4042883709c41c709f4b6323c10781a9c3aa34/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:0a759da5dea5c0ea10fd307de75cdeb59e7ea4fcb8add0924859b944babf1112", size = 200941980, upload-time = "2025-09-04T08:33:22.767Z" }, ] + +[[package]] +name = "nvidia-cusparse" +version = "12.6.3.3" +source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11'" }, + { name = "nvidia-nvjitlink" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/88/3c/9d59b0167458b839273ad0c4fc5f62f787058d8f5aed7f71294963a99471/optype-0.9.3.tar.gz", hash = "sha256:5f09d74127d316053b26971ce441a4df01f3a01943601d3712dd6f34cdfbaf48", size = 96143, upload-time = "2025-03-31T17:00:08.392Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/73/d8/ac50e2982bdc2d3595dc2bfe3c7e5a0574b5e407ad82d70b5f3707009671/optype-0.9.3-py3-none-any.whl", hash = "sha256:2935c033265938d66cc4198b0aca865572e635094e60e6e79522852f029d9e8d", size = 84357, upload-time = "2025-03-31T17:00:06.464Z" }, + { url = "https://files.pythonhosted.org/packages/f8/94/5c26f33738ae35276672f12615a64bd008ed5be6d1ebcb23579285d960a9/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:80bcc4662f23f1054ee334a15c72b8940402975e0eab63178fc7e670aa59472c", size = 162155568, upload-time = "2025-09-04T08:33:42.864Z" }, + { url = "https://files.pythonhosted.org/packages/fa/18/623c77619c31d62efd55302939756966f3ecc8d724a14dab2b75f1508850/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2b3c89c88d01ee0e477cb7f82ef60a11a4bcd57b6b87c33f789350b59759360b", size = 145942937, upload-time = "2025-09-04T08:33:58.029Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu13" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/10/8dcd1175260706a2fc92a16a52e306b71d4c1ea0b0cc4a9484183399818a/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:400c6ed1cf6780fc6efedd64ec9f1345871767e6a1a0a552a1ea0578117ea77c", size = 220791277, upload-time = "2025-08-13T19:22:40.982Z" }, + { url = "https://files.pythonhosted.org/packages/fd/53/43b0d71f4e702fa9733f8b4571fdca50a8813f1e450b656c239beff12315/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:25e30a8a7323935d4ad0340b95a0b69926eee755767e8e0b1cf8dd85b197d3fd", size = 169884119, upload-time = "2025-08-13T19:23:41.967Z" }, +] + +[[package]] +name = "nvidia-nccl-cu13" +version = "2.28.9" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/55/1920646a2e43ffd4fc958536b276197ed740e9e0c54105b4bb3521591fc7/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_aarch64.whl", hash = "sha256:01c873ba1626b54caa12272ed228dc5b2781545e0ae8ba3f432a8ef1c6d78643", size = 196561677, upload-time = "2025-11-18T05:49:03.45Z" }, + { url = "https://files.pythonhosted.org/packages/b0/b4/878fefaad5b2bcc6fcf8d474a25e3e3774bc5133e4b58adff4d0bca238bc/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_x86_64.whl", hash = "sha256:e4553a30f34195f3fa1da02a6da3d6337d28f2003943aa0a3d247bbc25fefc42", size = 196493177, upload-time = "2025-11-18T05:49:17.677Z" }, +] + +[[package]] +name = "nvidia-nvjitlink" +version = "13.0.88" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/7a/123e033aaff487c77107195fa5a2b8686795ca537935a24efae476c41f05/nvidia_nvjitlink-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:13a74f429e23b921c1109976abefacc69835f2f433ebd323d3946e11d804e47b", size = 40713933, upload-time = "2025-09-04T08:35:43.553Z" }, + { url = "https://files.pythonhosted.org/packages/ab/2c/93c5250e64df4f894f1cbb397c6fd71f79813f9fd79d7cd61de3f97b3c2d/nvidia_nvjitlink-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e931536ccc7d467a98ba1d8b89ff7fa7f1fa3b13f2b0069118cd7f47bff07d0c", size = 38768748, upload-time = "2025-09-04T08:35:20.008Z" }, +] + +[[package]] +name = "nvidia-nvshmem-cu13" +version = "3.4.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/0f/05cc9c720236dcd2db9c1ab97fff629e96821be2e63103569da0c9b72f19/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6dc2a197f38e5d0376ad52cd1a2a3617d3cdc150fd5966f4aee9bcebb1d68fe9", size = 60215947, upload-time = "2025-09-06T00:32:20.022Z" }, + { url = "https://files.pythonhosted.org/packages/3c/35/a9bf80a609e74e3b000fef598933235c908fcefcef9026042b8e6dfde2a9/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:290f0a2ee94c9f3687a02502f3b9299a9f9fe826e6d0287ee18482e78d495b80", size = 60412546, upload-time = "2025-09-06T00:32:41.564Z" }, +] + +[[package]] +name = "nvidia-nvtx" +version = "13.0.85" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/f3/d86c845465a2723ad7e1e5c36dcd75ddb82898b3f53be47ebd429fb2fa5d/nvidia_nvtx-13.0.85-py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:4936d1d6780fbe68db454f5e72a42ff64d1fd6397df9f363ae786930fd5c1cd4", size = 148047, upload-time = "2025-09-04T08:29:01.761Z" }, + { url = "https://files.pythonhosted.org/packages/a8/64/3708a90d1ebe202ffdeb7185f878a3c84d15c2b2c31858da2ce0583e2def/nvidia_nvtx-13.0.85-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cb7780edb6b14107373c835bf8b72e7a178bac7367e23da7acb108f973f157a6", size = 148878, upload-time = "2025-09-04T08:28:53.627Z" }, ] [[package]] name = "optype" version = "0.14.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13'", - "python_full_version >= '3.11' and python_full_version < '3.13'", -] dependencies = [ - { name = "typing-extensions", marker = "python_full_version >= '3.11' and python_full_version < '3.13'" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/94/ca/d3a2abcf12cc8c18ccac1178ef87ab50a235bf386d2401341776fdad18aa/optype-0.14.0.tar.gz", hash = "sha256:925cf060b7d1337647f880401f6094321e7d8e837533b8e159b9a92afa3157c6", size = 100880, upload-time = "2025-10-01T04:49:56.232Z" } wheels = [ @@ -663,8 +1126,8 @@ wheels = [ [package.optional-dependencies] numpy = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "numpy-typing-compat", marker = "python_full_version >= '3.11'" }, + { name = "numpy" }, + { name = "numpy-typing-compat" }, ] [[package]] @@ -676,6 +1139,42 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, ] +[[package]] +name = "pandas" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/99/b342345300f13440fe9fe385c3c481e2d9a595ee3bab4d3219247ac94e9a/pandas-3.0.2.tar.gz", hash = "sha256:f4753e73e34c8d83221ba58f232433fca2748be8b18dbca02d242ed153945043", size = 4645855, upload-time = "2026-03-31T06:48:30.816Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/b0/c20bd4d6d3f736e6bd6b55794e9cd0a617b858eaad27c8f410ea05d953b7/pandas-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:232a70ebb568c0c4d2db4584f338c1577d81e3af63292208d615907b698a0f18", size = 10347921, upload-time = "2026-03-31T06:46:33.36Z" }, + { url = "https://files.pythonhosted.org/packages/35/d0/4831af68ce30cc2d03c697bea8450e3225a835ef497d0d70f31b8cdde965/pandas-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:970762605cff1ca0d3f71ed4f3a769ea8f85fc8e6348f6e110b8fea7e6eb5a14", size = 9888127, upload-time = "2026-03-31T06:46:36.253Z" }, + { url = "https://files.pythonhosted.org/packages/61/a9/16ea9346e1fc4a96e2896242d9bc674764fb9049b0044c0132502f7a771e/pandas-3.0.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aff4e6f4d722e0652707d7bcb190c445fe58428500c6d16005b02401764b1b3d", size = 10399577, upload-time = "2026-03-31T06:46:39.224Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a8/3a61a721472959ab0ce865ef05d10b0d6bfe27ce8801c99f33d4fa996e65/pandas-3.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ef8b27695c3d3dc78403c9a7d5e59a62d5464a7e1123b4e0042763f7104dc74f", size = 10880030, upload-time = "2026-03-31T06:46:42.412Z" }, + { url = "https://files.pythonhosted.org/packages/da/65/7225c0ea4d6ce9cb2160a7fb7f39804871049f016e74782e5dade4d14109/pandas-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f8d68083e49e16b84734eb1a4dcae4259a75c90fb6e2251ab9a00b61120c06ab", size = 11409468, upload-time = "2026-03-31T06:46:45.2Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5b/46e7c76032639f2132359b5cf4c785dd8cf9aea5ea64699eac752f02b9db/pandas-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:32cc41f310ebd4a296d93515fcac312216adfedb1894e879303987b8f1e2b97d", size = 11936381, upload-time = "2026-03-31T06:46:48.293Z" }, + { url = "https://files.pythonhosted.org/packages/7b/8b/721a9cff6fa6a91b162eb51019c6243b82b3226c71bb6c8ef4a9bd65cbc6/pandas-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:a4785e1d6547d8427c5208b748ae2efb64659a21bd82bf440d4262d02bfa02a4", size = 9744993, upload-time = "2026-03-31T06:46:51.488Z" }, + { url = "https://files.pythonhosted.org/packages/d5/18/7f0bd34ae27b28159aa80f2a6799f47fda34f7fb938a76e20c7b7fe3b200/pandas-3.0.2-cp312-cp312-win_arm64.whl", hash = "sha256:08504503f7101300107ecdc8df73658e4347586db5cfdadabc1592e9d7e7a0fd", size = 9056118, upload-time = "2026-03-31T06:46:54.548Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ca/3e639a1ea6fcd0617ca4e8ca45f62a74de33a56ae6cd552735470b22c8d3/pandas-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5918ba197c951dec132b0c5929a00c0bf05d5942f590d3c10a807f6e15a57d3", size = 10321105, upload-time = "2026-03-31T06:46:57.327Z" }, + { url = "https://files.pythonhosted.org/packages/0b/77/dbc82ff2fb0e63c6564356682bf201edff0ba16c98630d21a1fb312a8182/pandas-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d606a041c89c0a474a4702d532ab7e73a14fe35c8d427b972a625c8e46373668", size = 9864088, upload-time = "2026-03-31T06:46:59.935Z" }, + { url = "https://files.pythonhosted.org/packages/5c/2b/341f1b04bbca2e17e13cd3f08c215b70ef2c60c5356ef1e8c6857449edc7/pandas-3.0.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:710246ba0616e86891b58ab95f2495143bb2bc83ab6b06747c74216f583a6ac9", size = 10369066, upload-time = "2026-03-31T06:47:02.792Z" }, + { url = "https://files.pythonhosted.org/packages/12/c5/cbb1ffefb20a93d3f0e1fdcda699fb84976210d411b008f97f48bf6ce27e/pandas-3.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5d3cfe227c725b1f3dff4278b43d8c784656a42a9325b63af6b1492a8232209e", size = 10876780, upload-time = "2026-03-31T06:47:06.205Z" }, + { url = "https://files.pythonhosted.org/packages/98/fe/2249ae5e0a69bd0ddf17353d0a5d26611d70970111f5b3600cdc8be883e7/pandas-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c3b723df9087a9a9a840e263ebd9f88b64a12075d1bf2ea401a5a42f254f084d", size = 11375181, upload-time = "2026-03-31T06:47:09.383Z" }, + { url = "https://files.pythonhosted.org/packages/de/64/77a38b09e70b6464883b8d7584ab543e748e42c1b5d337a2ee088e0df741/pandas-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3096110bf9eac0070b7208465f2740e2d8a670d5cb6530b5bb884eca495fd39", size = 11928899, upload-time = "2026-03-31T06:47:12.686Z" }, + { url = "https://files.pythonhosted.org/packages/5e/52/42855bf626868413f761addd574acc6195880ae247a5346477a4361c3acb/pandas-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:07a10f5c36512eead51bc578eb3354ad17578b22c013d89a796ab5eee90cd991", size = 9746574, upload-time = "2026-03-31T06:47:15.64Z" }, + { url = "https://files.pythonhosted.org/packages/88/39/21304ae06a25e8bf9fc820d69b29b2c495b2ae580d1e143146c309941760/pandas-3.0.2-cp313-cp313-win_arm64.whl", hash = "sha256:5fdbfa05931071aba28b408e59226186b01eb5e92bea2ab78b65863ca3228d84", size = 9047156, upload-time = "2026-03-31T06:47:18.595Z" }, + { url = "https://files.pythonhosted.org/packages/72/20/7defa8b27d4f330a903bb68eea33be07d839c5ea6bdda54174efcec0e1d2/pandas-3.0.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:dbc20dea3b9e27d0e66d74c42b2d0c1bed9c2ffe92adea33633e3bedeb5ac235", size = 10756238, upload-time = "2026-03-31T06:47:22.012Z" }, + { url = "https://files.pythonhosted.org/packages/e9/95/49433c14862c636afc0e9b2db83ff16b3ad92959364e52b2955e44c8e94c/pandas-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b75c347eff42497452116ce05ef461822d97ce5b9ff8df6edacb8076092c855d", size = 10408520, upload-time = "2026-03-31T06:47:25.197Z" }, + { url = "https://files.pythonhosted.org/packages/3b/f8/462ad2b5881d6b8ec8e5f7ed2ea1893faa02290d13870a1600fe72ad8efc/pandas-3.0.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d1478075142e83a5571782ad007fb201ed074bdeac7ebcc8890c71442e96adf7", size = 10324154, upload-time = "2026-03-31T06:47:28.097Z" }, + { url = "https://files.pythonhosted.org/packages/0a/65/d1e69b649cbcddda23ad6e4c40ef935340f6f652a006e5cbc3555ac8adb3/pandas-3.0.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5880314e69e763d4c8b27937090de570f1fb8d027059a7ada3f7f8e98bdcb677", size = 10714449, upload-time = "2026-03-31T06:47:30.85Z" }, + { url = "https://files.pythonhosted.org/packages/47/a4/85b59bc65b8190ea3689882db6cdf32a5003c0ccd5a586c30fdcc3ffc4fc/pandas-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b5329e26898896f06035241a626d7c335daa479b9bbc82be7c2742d048e41172", size = 11338475, upload-time = "2026-03-31T06:47:34.026Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c4/bc6966c6e38e5d9478b935272d124d80a589511ed1612a5d21d36f664c68/pandas-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:81526c4afd31971f8b62671442a4b2b51e0aa9acc3819c9f0f12a28b6fcf85f1", size = 11786568, upload-time = "2026-03-31T06:47:36.941Z" }, + { url = "https://files.pythonhosted.org/packages/e8/74/09298ca9740beed1d3504e073d67e128aa07e5ca5ca2824b0c674c0b8676/pandas-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:7cadd7e9a44ec13b621aec60f9150e744cfc7a3dd32924a7e2f45edff31823b0", size = 10488652, upload-time = "2026-03-31T06:47:40.612Z" }, +] + [[package]] name = "pastel" version = "0.0.1" @@ -685,10 +1184,8 @@ dependencies = [ { name = "google-cloud-core" }, { name = "pydantic" }, { name = "scikit-learn" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "scipy-stubs", version = "1.15.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "scipy-stubs", version = "1.16.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "scipy" }, + { name = "scipy-stubs" }, { name = "tenacity" }, { name = "types-requests" }, ] @@ -703,6 +1200,15 @@ dev = [ { name = "pytest" }, { name = "pytest-asyncio" }, ] +ml-labeller = [ + { name = "accelerate" }, + { name = "datasets" }, + { name = "scikit-learn" }, + { name = "sentencepiece" }, + { name = "tiktoken" }, + { name = "torch" }, + { name = "transformers" }, +] [package.metadata] requires-dist = [ @@ -726,6 +1232,15 @@ dev = [ { name = "pytest", specifier = ">=7.4.0" }, { name = "pytest-asyncio", specifier = ">=0.21.1" }, ] +ml-labeller = [ + { name = "accelerate", specifier = ">=1.13.0" }, + { name = "datasets", specifier = ">=4.8.4" }, + { name = "scikit-learn", specifier = ">=1.8.0" }, + { name = "sentencepiece", specifier = ">=0.2.1" }, + { name = "tiktoken", specifier = ">=0.12.0" }, + { name = "torch", specifier = ">=2.10.0" }, + { name = "transformers", specifier = ">=4.40" }, +] [[package]] name = "pathspec" @@ -770,6 +1285,60 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/27/11/574fe7d13acf30bfd0a8dd7fa1647040f2b8064f13f43e8c963b1e65093b/pre_commit-4.4.0-py2.py3-none-any.whl", hash = "sha256:b35ea52957cbf83dcc5d8ee636cbead8624e3a15fbfa61a370e42158ac8a5813", size = 226049, upload-time = "2025-11-08T21:12:10.228Z" }, ] +[[package]] +name = "propcache" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/0f/f17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2/propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2", size = 80061, upload-time = "2025-10-08T19:46:46.075Z" }, + { url = "https://files.pythonhosted.org/packages/76/47/8ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7/propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403", size = 46037, upload-time = "2025-10-08T19:46:47.23Z" }, + { url = "https://files.pythonhosted.org/packages/0a/b6/5c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0/propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207", size = 47324, upload-time = "2025-10-08T19:46:48.384Z" }, + { url = "https://files.pythonhosted.org/packages/9e/d3/6c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0/propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72", size = 225505, upload-time = "2025-10-08T19:46:50.055Z" }, + { url = "https://files.pythonhosted.org/packages/01/5d/1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b/propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367", size = 230242, upload-time = "2025-10-08T19:46:51.815Z" }, + { url = "https://files.pythonhosted.org/packages/20/e1/ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12/propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4", size = 238474, upload-time = "2025-10-08T19:46:53.208Z" }, + { url = "https://files.pythonhosted.org/packages/46/4b/3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea/propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf", size = 221575, upload-time = "2025-10-08T19:46:54.511Z" }, + { url = "https://files.pythonhosted.org/packages/6e/a5/8a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338/propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3", size = 216736, upload-time = "2025-10-08T19:46:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/f1/63/b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36/propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778", size = 213019, upload-time = "2025-10-08T19:46:57.595Z" }, + { url = "https://files.pythonhosted.org/packages/57/74/f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886/propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6", size = 220376, upload-time = "2025-10-08T19:46:59.067Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ee/542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843/propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9", size = 226988, upload-time = "2025-10-08T19:47:00.544Z" }, + { url = "https://files.pythonhosted.org/packages/8f/18/9c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287/propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75", size = 215615, upload-time = "2025-10-08T19:47:01.968Z" }, + { url = "https://files.pythonhosted.org/packages/80/9e/e7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed/propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8", size = 38066, upload-time = "2025-10-08T19:47:03.503Z" }, + { url = "https://files.pythonhosted.org/packages/54/09/d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c/propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db", size = 41655, upload-time = "2025-10-08T19:47:04.973Z" }, + { url = "https://files.pythonhosted.org/packages/68/ab/6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076/propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1", size = 37789, upload-time = "2025-10-08T19:47:06.077Z" }, + { url = "https://files.pythonhosted.org/packages/bf/df/6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942/propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf", size = 77750, upload-time = "2025-10-08T19:47:07.648Z" }, + { url = "https://files.pythonhosted.org/packages/8b/e8/677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56/propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311", size = 44780, upload-time = "2025-10-08T19:47:08.851Z" }, + { url = "https://files.pythonhosted.org/packages/89/a4/92380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7/propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74", size = 46308, upload-time = "2025-10-08T19:47:09.982Z" }, + { url = "https://files.pythonhosted.org/packages/2d/48/c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3/propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe", size = 208182, upload-time = "2025-10-08T19:47:11.319Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0c/cd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653/propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af", size = 211215, upload-time = "2025-10-08T19:47:13.146Z" }, + { url = "https://files.pythonhosted.org/packages/30/3e/49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e/propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c", size = 218112, upload-time = "2025-10-08T19:47:14.913Z" }, + { url = "https://files.pythonhosted.org/packages/f1/8b/544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094/propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f", size = 204442, upload-time = "2025-10-08T19:47:16.277Z" }, + { url = "https://files.pythonhosted.org/packages/50/a6/4282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3/propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1", size = 199398, upload-time = "2025-10-08T19:47:17.962Z" }, + { url = "https://files.pythonhosted.org/packages/3e/ec/d8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09/propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24", size = 196920, upload-time = "2025-10-08T19:47:19.355Z" }, + { url = "https://files.pythonhosted.org/packages/f6/6c/f38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca/propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa", size = 203748, upload-time = "2025-10-08T19:47:21.338Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e3/fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153/propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61", size = 205877, upload-time = "2025-10-08T19:47:23.059Z" }, + { url = "https://files.pythonhosted.org/packages/e2/39/8163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d/propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66", size = 199437, upload-time = "2025-10-08T19:47:24.445Z" }, + { url = "https://files.pythonhosted.org/packages/93/89/caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe/propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81", size = 37586, upload-time = "2025-10-08T19:47:25.736Z" }, + { url = "https://files.pythonhosted.org/packages/f5/ab/f76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd/propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e", size = 40790, upload-time = "2025-10-08T19:47:26.847Z" }, + { url = "https://files.pythonhosted.org/packages/59/1b/e71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3/propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1", size = 37158, upload-time = "2025-10-08T19:47:27.961Z" }, + { url = "https://files.pythonhosted.org/packages/83/ce/a31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9/propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b", size = 81451, upload-time = "2025-10-08T19:47:29.445Z" }, + { url = "https://files.pythonhosted.org/packages/25/9c/442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed/propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566", size = 46374, upload-time = "2025-10-08T19:47:30.579Z" }, + { url = "https://files.pythonhosted.org/packages/f4/bf/b1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65/propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835", size = 48396, upload-time = "2025-10-08T19:47:31.79Z" }, + { url = "https://files.pythonhosted.org/packages/f4/04/5b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949/propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e", size = 275950, upload-time = "2025-10-08T19:47:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/b4/c1/86f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395/propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859", size = 273856, upload-time = "2025-10-08T19:47:34.906Z" }, + { url = "https://files.pythonhosted.org/packages/36/1d/fc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada/propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b", size = 280420, upload-time = "2025-10-08T19:47:36.338Z" }, + { url = "https://files.pythonhosted.org/packages/07/0c/01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a/propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0", size = 263254, upload-time = "2025-10-08T19:47:37.692Z" }, + { url = "https://files.pythonhosted.org/packages/2d/18/cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359/propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af", size = 261205, upload-time = "2025-10-08T19:47:39.659Z" }, + { url = "https://files.pythonhosted.org/packages/7a/71/1f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e/propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393", size = 247873, upload-time = "2025-10-08T19:47:41.084Z" }, + { url = "https://files.pythonhosted.org/packages/4a/65/3d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58/propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874", size = 262739, upload-time = "2025-10-08T19:47:42.51Z" }, + { url = "https://files.pythonhosted.org/packages/2a/42/26746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06/propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7", size = 263514, upload-time = "2025-10-08T19:47:43.927Z" }, + { url = "https://files.pythonhosted.org/packages/94/13/630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b/propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1", size = 257781, upload-time = "2025-10-08T19:47:45.448Z" }, + { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" }, + { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +] + [[package]] name = "proto-plus" version = "1.26.1" @@ -797,6 +1366,57 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/08/b4/46310463b4f6ceef310f8348786f3cff181cea671578e3d9743ba61a459e/protobuf-6.33.1-py3-none-any.whl", hash = "sha256:d595a9fd694fdeb061a62fbe10eb039cc1e444df81ec9bb70c7fc59ebcb1eafa", size = 170477, upload-time = "2025-11-13T16:44:17.633Z" }, ] +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/08/510cbdb69c25a96f4ae523f733cdc963ae654904e8db864c07585ef99875/psutil-7.2.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2edccc433cbfa046b980b0df0171cd25bcaeb3a68fe9022db0979e7aa74a826b", size = 130595, upload-time = "2026-01-28T18:14:57.293Z" }, + { url = "https://files.pythonhosted.org/packages/d6/f5/97baea3fe7a5a9af7436301f85490905379b1c6f2dd51fe3ecf24b4c5fbf/psutil-7.2.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78c8603dcd9a04c7364f1a3e670cea95d51ee865e4efb3556a3a63adef958ea", size = 131082, upload-time = "2026-01-28T18:14:59.732Z" }, + { url = "https://files.pythonhosted.org/packages/37/d6/246513fbf9fa174af531f28412297dd05241d97a75911ac8febefa1a53c6/psutil-7.2.2-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1a571f2330c966c62aeda00dd24620425d4b0cc86881c89861fbc04549e5dc63", size = 181476, upload-time = "2026-01-28T18:15:01.884Z" }, + { url = "https://files.pythonhosted.org/packages/b8/b5/9182c9af3836cca61696dabe4fd1304e17bc56cb62f17439e1154f225dd3/psutil-7.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:917e891983ca3c1887b4ef36447b1e0873e70c933afc831c6b6da078ba474312", size = 184062, upload-time = "2026-01-28T18:15:04.436Z" }, + { url = "https://files.pythonhosted.org/packages/16/ba/0756dca669f5a9300d0cbcbfae9a4c30e446dfc7440ffe43ded5724bfd93/psutil-7.2.2-cp313-cp313t-win_amd64.whl", hash = "sha256:ab486563df44c17f5173621c7b198955bd6b613fb87c71c161f827d3fb149a9b", size = 139893, upload-time = "2026-01-28T18:15:06.378Z" }, + { url = "https://files.pythonhosted.org/packages/1c/61/8fa0e26f33623b49949346de05ec1ddaad02ed8ba64af45f40a147dbfa97/psutil-7.2.2-cp313-cp313t-win_arm64.whl", hash = "sha256:ae0aefdd8796a7737eccea863f80f81e468a1e4cf14d926bd9b6f5f2d5f90ca9", size = 135589, upload-time = "2026-01-28T18:15:08.03Z" }, + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/4b/4166bb5abbfe6f750fc60ad337c43ecf61340fa52ab386da6e8dbf9e63c4/pyarrow-23.0.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f4b0dbfa124c0bb161f8b5ebb40f1a680b70279aa0c9901d44a2b5a20806039f", size = 34214575, upload-time = "2026-02-16T10:09:56.225Z" }, + { url = "https://files.pythonhosted.org/packages/e1/da/3f941e3734ac8088ea588b53e860baeddac8323ea40ce22e3d0baa865cc9/pyarrow-23.0.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:7707d2b6673f7de054e2e83d59f9e805939038eebe1763fe811ee8fa5c0cd1a7", size = 35832540, upload-time = "2026-02-16T10:10:03.428Z" }, + { url = "https://files.pythonhosted.org/packages/88/7c/3d841c366620e906d54430817531b877ba646310296df42ef697308c2705/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:86ff03fb9f1a320266e0de855dee4b17da6794c595d207f89bba40d16b5c78b9", size = 44470940, upload-time = "2026-02-16T10:10:10.704Z" }, + { url = "https://files.pythonhosted.org/packages/2c/a5/da83046273d990f256cb79796a190bbf7ec999269705ddc609403f8c6b06/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:813d99f31275919c383aab17f0f455a04f5a429c261cc411b1e9a8f5e4aaaa05", size = 47586063, upload-time = "2026-02-16T10:10:17.95Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/b7d2ebcff47a514f47f9da1e74b7949138c58cfeb108cdd4ee62f43f0cf3/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bf5842f960cddd2ef757d486041d57c96483efc295a8c4a0e20e704cbbf39c67", size = 48173045, upload-time = "2026-02-16T10:10:25.363Z" }, + { url = "https://files.pythonhosted.org/packages/43/b2/b40961262213beaba6acfc88698eb773dfce32ecdf34d19291db94c2bd73/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:564baf97c858ecc03ec01a41062e8f4698abc3e6e2acd79c01c2e97880a19730", size = 50621741, upload-time = "2026-02-16T10:10:33.477Z" }, + { url = "https://files.pythonhosted.org/packages/f6/70/1fdda42d65b28b078e93d75d371b2185a61da89dda4def8ba6ba41ebdeb4/pyarrow-23.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:07deae7783782ac7250989a7b2ecde9b3c343a643f82e8a4df03d93b633006f0", size = 27620678, upload-time = "2026-02-16T10:10:39.31Z" }, + { url = "https://files.pythonhosted.org/packages/47/10/2cbe4c6f0fb83d2de37249567373d64327a5e4d8db72f486db42875b08f6/pyarrow-23.0.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6b8fda694640b00e8af3c824f99f789e836720aa8c9379fb435d4c4953a756b8", size = 34210066, upload-time = "2026-02-16T10:10:45.487Z" }, + { url = "https://files.pythonhosted.org/packages/cb/4f/679fa7e84dadbaca7a65f7cdba8d6c83febbd93ca12fa4adf40ba3b6362b/pyarrow-23.0.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:8ff51b1addc469b9444b7c6f3548e19dc931b172ab234e995a60aea9f6e6025f", size = 35825526, upload-time = "2026-02-16T10:10:52.266Z" }, + { url = "https://files.pythonhosted.org/packages/f9/63/d2747d930882c9d661e9398eefc54f15696547b8983aaaf11d4a2e8b5426/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:71c5be5cbf1e1cb6169d2a0980850bccb558ddc9b747b6206435313c47c37677", size = 44473279, upload-time = "2026-02-16T10:11:01.557Z" }, + { url = "https://files.pythonhosted.org/packages/b3/93/10a48b5e238de6d562a411af6467e71e7aedbc9b87f8d3a35f1560ae30fb/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:9b6f4f17b43bc39d56fec96e53fe89d94bac3eb134137964371b45352d40d0c2", size = 47585798, upload-time = "2026-02-16T10:11:09.401Z" }, + { url = "https://files.pythonhosted.org/packages/5c/20/476943001c54ef078dbf9542280e22741219a184a0632862bca4feccd666/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fc13fc6c403d1337acab46a2c4346ca6c9dec5780c3c697cf8abfd5e19b6b37", size = 48179446, upload-time = "2026-02-16T10:11:17.781Z" }, + { url = "https://files.pythonhosted.org/packages/4b/b6/5dd0c47b335fcd8edba9bfab78ad961bd0fd55ebe53468cc393f45e0be60/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5c16ed4f53247fa3ffb12a14d236de4213a4415d127fe9cebed33d51671113e2", size = 50623972, upload-time = "2026-02-16T10:11:26.185Z" }, + { url = "https://files.pythonhosted.org/packages/d5/09/a532297c9591a727d67760e2e756b83905dd89adb365a7f6e9c72578bcc1/pyarrow-23.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:cecfb12ef629cf6be0b1887f9f86463b0dd3dc3195ae6224e74006be4736035a", size = 27540749, upload-time = "2026-02-16T10:12:23.297Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8e/38749c4b1303e6ae76b3c80618f84861ae0c55dd3c2273842ea6f8258233/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:29f7f7419a0e30264ea261fdc0e5fe63ce5a6095003db2945d7cd78df391a7e1", size = 34471544, upload-time = "2026-02-16T10:11:32.535Z" }, + { url = "https://files.pythonhosted.org/packages/a3/73/f237b2bc8c669212f842bcfd842b04fc8d936bfc9d471630569132dc920d/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:33d648dc25b51fd8055c19e4261e813dfc4d2427f068bcecc8b53d01b81b0500", size = 35949911, upload-time = "2026-02-16T10:11:39.813Z" }, + { url = "https://files.pythonhosted.org/packages/0c/86/b912195eee0903b5611bf596833def7d146ab2d301afeb4b722c57ffc966/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd395abf8f91c673dd3589cadc8cc1ee4e8674fa61b2e923c8dd215d9c7d1f41", size = 44520337, upload-time = "2026-02-16T10:11:47.764Z" }, + { url = "https://files.pythonhosted.org/packages/69/c2/f2a717fb824f62d0be952ea724b4f6f9372a17eed6f704b5c9526f12f2f1/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:00be9576d970c31defb5c32eb72ef585bf600ef6d0a82d5eccaae96639cf9d07", size = 47548944, upload-time = "2026-02-16T10:11:56.607Z" }, + { url = "https://files.pythonhosted.org/packages/84/a7/90007d476b9f0dc308e3bc57b832d004f848fd6c0da601375d20d92d1519/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c2139549494445609f35a5cda4eb94e2c9e4d704ce60a095b342f82460c73a83", size = 48236269, upload-time = "2026-02-16T10:12:04.47Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3f/b16fab3e77709856eb6ac328ce35f57a6d4a18462c7ca5186ef31b45e0e0/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7044b442f184d84e2351e5084600f0d7343d6117aabcbc1ac78eb1ae11eb4125", size = 50604794, upload-time = "2026-02-16T10:12:11.797Z" }, + { url = "https://files.pythonhosted.org/packages/e9/a1/22df0620a9fac31d68397a75465c344e83c3dfe521f7612aea33e27ab6c0/pyarrow-23.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a35581e856a2fafa12f3f54fce4331862b1cfb0bef5758347a858a4aa9d6bae8", size = 27660642, upload-time = "2026-02-16T10:12:17.746Z" }, +] + [[package]] name = "pyasn1" version = "0.6.1" @@ -851,33 +1471,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c6/90/32c9941e728d564b411d574d8ee0cf09b12ec978cb22b294995bae5549a5/pydantic_core-2.41.5-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:77b63866ca88d804225eaa4af3e664c5faf3568cea95360d21f4725ab6e07146", size = 2107298, upload-time = "2025-11-04T13:39:04.116Z" }, - { url = "https://files.pythonhosted.org/packages/fb/a8/61c96a77fe28993d9a6fb0f4127e05430a267b235a124545d79fea46dd65/pydantic_core-2.41.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dfa8a0c812ac681395907e71e1274819dec685fec28273a28905df579ef137e2", size = 1901475, upload-time = "2025-11-04T13:39:06.055Z" }, - { url = "https://files.pythonhosted.org/packages/5d/b6/338abf60225acc18cdc08b4faef592d0310923d19a87fba1faf05af5346e/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5921a4d3ca3aee735d9fd163808f5e8dd6c6972101e4adbda9a4667908849b97", size = 1918815, upload-time = "2025-11-04T13:39:10.41Z" }, - { url = "https://files.pythonhosted.org/packages/d1/1c/2ed0433e682983d8e8cba9c8d8ef274d4791ec6a6f24c58935b90e780e0a/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e25c479382d26a2a41b7ebea1043564a937db462816ea07afa8a44c0866d52f9", size = 2065567, upload-time = "2025-11-04T13:39:12.244Z" }, - { url = "https://files.pythonhosted.org/packages/b3/24/cf84974ee7d6eae06b9e63289b7b8f6549d416b5c199ca2d7ce13bbcf619/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f547144f2966e1e16ae626d8ce72b4cfa0caedc7fa28052001c94fb2fcaa1c52", size = 2230442, upload-time = "2025-11-04T13:39:13.962Z" }, - { url = "https://files.pythonhosted.org/packages/fd/21/4e287865504b3edc0136c89c9c09431be326168b1eb7841911cbc877a995/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f52298fbd394f9ed112d56f3d11aabd0d5bd27beb3084cc3d8ad069483b8941", size = 2350956, upload-time = "2025-11-04T13:39:15.889Z" }, - { url = "https://files.pythonhosted.org/packages/a8/76/7727ef2ffa4b62fcab916686a68a0426b9b790139720e1934e8ba797e238/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:100baa204bb412b74fe285fb0f3a385256dad1d1879f0a5cb1499ed2e83d132a", size = 2068253, upload-time = "2025-11-04T13:39:17.403Z" }, - { url = "https://files.pythonhosted.org/packages/d5/8c/a4abfc79604bcb4c748e18975c44f94f756f08fb04218d5cb87eb0d3a63e/pydantic_core-2.41.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05a2c8852530ad2812cb7914dc61a1125dc4e06252ee98e5638a12da6cc6fb6c", size = 2177050, upload-time = "2025-11-04T13:39:19.351Z" }, - { url = "https://files.pythonhosted.org/packages/67/b1/de2e9a9a79b480f9cb0b6e8b6ba4c50b18d4e89852426364c66aa82bb7b3/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:29452c56df2ed968d18d7e21f4ab0ac55e71dc59524872f6fc57dcf4a3249ed2", size = 2147178, upload-time = "2025-11-04T13:39:21Z" }, - { url = "https://files.pythonhosted.org/packages/16/c1/dfb33f837a47b20417500efaa0378adc6635b3c79e8369ff7a03c494b4ac/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:d5160812ea7a8a2ffbe233d8da666880cad0cbaf5d4de74ae15c313213d62556", size = 2341833, upload-time = "2025-11-04T13:39:22.606Z" }, - { url = "https://files.pythonhosted.org/packages/47/36/00f398642a0f4b815a9a558c4f1dca1b4020a7d49562807d7bc9ff279a6c/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:df3959765b553b9440adfd3c795617c352154e497a4eaf3752555cfb5da8fc49", size = 2321156, upload-time = "2025-11-04T13:39:25.843Z" }, - { url = "https://files.pythonhosted.org/packages/7e/70/cad3acd89fde2010807354d978725ae111ddf6d0ea46d1ea1775b5c1bd0c/pydantic_core-2.41.5-cp310-cp310-win32.whl", hash = "sha256:1f8d33a7f4d5a7889e60dc39856d76d09333d8a6ed0f5f1190635cbec70ec4ba", size = 1989378, upload-time = "2025-11-04T13:39:27.92Z" }, - { url = "https://files.pythonhosted.org/packages/76/92/d338652464c6c367e5608e4488201702cd1cbb0f33f7b6a85a60fe5f3720/pydantic_core-2.41.5-cp310-cp310-win_amd64.whl", hash = "sha256:62de39db01b8d593e45871af2af9e497295db8d73b085f6bfd0b18c83c70a8f9", size = 2013622, upload-time = "2025-11-04T13:39:29.848Z" }, - { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873, upload-time = "2025-11-04T13:39:31.373Z" }, - { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826, upload-time = "2025-11-04T13:39:32.897Z" }, - { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869, upload-time = "2025-11-04T13:39:34.469Z" }, - { url = "https://files.pythonhosted.org/packages/6e/6a/30d94a9674a7fe4f4744052ed6c5e083424510be1e93da5bc47569d11810/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8", size = 2063890, upload-time = "2025-11-04T13:39:36.053Z" }, - { url = "https://files.pythonhosted.org/packages/50/be/76e5d46203fcb2750e542f32e6c371ffa9b8ad17364cf94bb0818dbfb50c/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e", size = 2229740, upload-time = "2025-11-04T13:39:37.753Z" }, - { url = "https://files.pythonhosted.org/packages/d3/ee/fed784df0144793489f87db310a6bbf8118d7b630ed07aa180d6067e653a/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1", size = 2350021, upload-time = "2025-11-04T13:39:40.94Z" }, - { url = "https://files.pythonhosted.org/packages/c8/be/8fed28dd0a180dca19e72c233cbf58efa36df055e5b9d90d64fd1740b828/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b", size = 2066378, upload-time = "2025-11-04T13:39:42.523Z" }, - { url = "https://files.pythonhosted.org/packages/b0/3b/698cf8ae1d536a010e05121b4958b1257f0b5522085e335360e53a6b1c8b/pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b", size = 2175761, upload-time = "2025-11-04T13:39:44.553Z" }, - { url = "https://files.pythonhosted.org/packages/b8/ba/15d537423939553116dea94ce02f9c31be0fa9d0b806d427e0308ec17145/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284", size = 2146303, upload-time = "2025-11-04T13:39:46.238Z" }, - { url = "https://files.pythonhosted.org/packages/58/7f/0de669bf37d206723795f9c90c82966726a2ab06c336deba4735b55af431/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594", size = 2340355, upload-time = "2025-11-04T13:39:48.002Z" }, - { url = "https://files.pythonhosted.org/packages/e5/de/e7482c435b83d7e3c3ee5ee4451f6e8973cff0eb6007d2872ce6383f6398/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e", size = 2319875, upload-time = "2025-11-04T13:39:49.705Z" }, - { url = "https://files.pythonhosted.org/packages/fe/e6/8c9e81bb6dd7560e33b9053351c29f30c8194b72f2d6932888581f503482/pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b", size = 1987549, upload-time = "2025-11-04T13:39:51.842Z" }, - { url = "https://files.pythonhosted.org/packages/11/66/f14d1d978ea94d1bc21fc98fcf570f9542fe55bfcc40269d4e1a21c19bf7/pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe", size = 2011305, upload-time = "2025-11-04T13:39:53.485Z" }, - { url = "https://files.pythonhosted.org/packages/56/d8/0e271434e8efd03186c5386671328154ee349ff0354d83c74f5caaf096ed/pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f", size = 1972902, upload-time = "2025-11-04T13:39:56.488Z" }, { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, @@ -906,30 +1499,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, - { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" }, - { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" }, - { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" }, - { url = "https://files.pythonhosted.org/packages/2e/1b/687711069de7efa6af934e74f601e2a4307365e8fdc404703afc453eab26/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad", size = 2138905, upload-time = "2025-11-04T13:42:47.156Z" }, { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, - { url = "https://files.pythonhosted.org/packages/e6/b0/1a2aa41e3b5a4ba11420aba2d091b2d17959c8d1519ece3627c371951e73/pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b5819cd790dbf0c5eb9f82c73c16b39a65dd6dd4d1439dcdea7816ec9adddab8", size = 2103351, upload-time = "2025-11-04T13:43:02.058Z" }, - { url = "https://files.pythonhosted.org/packages/a4/ee/31b1f0020baaf6d091c87900ae05c6aeae101fa4e188e1613c80e4f1ea31/pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5a4e67afbc95fa5c34cf27d9089bca7fcab4e51e57278d710320a70b956d1b9a", size = 1925363, upload-time = "2025-11-04T13:43:05.159Z" }, - { url = "https://files.pythonhosted.org/packages/e1/89/ab8e86208467e467a80deaca4e434adac37b10a9d134cd2f99b28a01e483/pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ece5c59f0ce7d001e017643d8d24da587ea1f74f6993467d85ae8a5ef9d4f42b", size = 2135615, upload-time = "2025-11-04T13:43:08.116Z" }, - { url = "https://files.pythonhosted.org/packages/99/0a/99a53d06dd0348b2008f2f30884b34719c323f16c3be4e6cc1203b74a91d/pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16f80f7abe3351f8ea6858914ddc8c77e02578544a0ebc15b4c2e1a0e813b0b2", size = 2175369, upload-time = "2025-11-04T13:43:12.49Z" }, - { url = "https://files.pythonhosted.org/packages/6d/94/30ca3b73c6d485b9bb0bc66e611cff4a7138ff9736b7e66bcf0852151636/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:33cb885e759a705b426baada1fe68cbb0a2e68e34c5d0d0289a364cf01709093", size = 2144218, upload-time = "2025-11-04T13:43:15.431Z" }, - { url = "https://files.pythonhosted.org/packages/87/57/31b4f8e12680b739a91f472b5671294236b82586889ef764b5fbc6669238/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:c8d8b4eb992936023be7dee581270af5c6e0697a8559895f527f5b7105ecd36a", size = 2329951, upload-time = "2025-11-04T13:43:18.062Z" }, - { url = "https://files.pythonhosted.org/packages/7d/73/3c2c8edef77b8f7310e6fb012dbc4b8551386ed575b9eb6fb2506e28a7eb/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:242a206cd0318f95cd21bdacff3fcc3aab23e79bba5cac3db5a841c9ef9c6963", size = 2318428, upload-time = "2025-11-04T13:43:20.679Z" }, - { url = "https://files.pythonhosted.org/packages/2f/02/8559b1f26ee0d502c74f9cca5c0d2fd97e967e083e006bbbb4e97f3a043a/pydantic_core-2.41.5-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d3a978c4f57a597908b7e697229d996d77a6d3c94901e9edee593adada95ce1a", size = 2147009, upload-time = "2025-11-04T13:43:23.286Z" }, - { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980, upload-time = "2025-11-04T13:43:25.97Z" }, - { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865, upload-time = "2025-11-04T13:43:28.763Z" }, - { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256, upload-time = "2025-11-04T13:43:31.71Z" }, - { url = "https://files.pythonhosted.org/packages/83/d9/8412d7f06f616bbc053d30cb4e5f76786af3221462ad5eee1f202021eb4e/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1", size = 2174762, upload-time = "2025-11-04T13:43:34.744Z" }, - { url = "https://files.pythonhosted.org/packages/55/4c/162d906b8e3ba3a99354e20faa1b49a85206c47de97a639510a0e673f5da/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84", size = 2143141, upload-time = "2025-11-04T13:43:37.701Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f2/f11dd73284122713f5f89fc940f370d035fa8e1e078d446b3313955157fe/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770", size = 2330317, upload-time = "2025-11-04T13:43:40.406Z" }, - { url = "https://files.pythonhosted.org/packages/88/9d/b06ca6acfe4abb296110fb1273a4d848a0bfb2ff65f3ee92127b3244e16b/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f", size = 2316992, upload-time = "2025-11-04T13:43:43.602Z" }, - { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302, upload-time = "2025-11-04T13:43:46.64Z" }, ] [[package]] @@ -956,12 +1529,10 @@ version = "9.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, { name = "pygments" }, - { name = "tomli", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/07/56/f013048ac4bc4c1d9be45afd4ab209ea62822fb1598f40687e6bf45dcea4/pytest-9.0.1.tar.gz", hash = "sha256:3e9c069ea73583e255c3b21cf46b8d3c56f6e3a1a8f6da94ccb0fcf57b9d73c8", size = 1564125, upload-time = "2025-11-12T13:05:09.333Z" } wheels = [ @@ -973,7 +1544,6 @@ name = "pytest-asyncio" version = "1.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "backports-asyncio-runner", marker = "python_full_version < '3.11'" }, { name = "pytest" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] @@ -982,6 +1552,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e5/35/f8b19922b6a25bc0880171a2f1a003eaeb93657475193ab516fd87cac9da/pytest_asyncio-1.3.0-py3-none-any.whl", hash = "sha256:611e26147c7f77640e6d0a92a38ed17c3e9848063698d5c93d5aa7aa11cebff5", size = 15075, upload-time = "2025-11-10T16:07:45.537Z" }, ] +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + [[package]] name = "pytokens" version = "0.3.0" @@ -997,24 +1579,6 @@ version = "6.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, - { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, - { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, - { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, - { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, - { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, - { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, - { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, - { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, - { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, - { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, - { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, - { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, - { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, - { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, - { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, - { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, - { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, @@ -1043,28 +1607,6 @@ version = "3.14.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/69/d1/0efa42a602ed466d3ca1c462eed5d62015c3fd2a402199e2c4b87aa5aa25/rapidfuzz-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b9fcd4d751a4fffa17aed1dde41647923c72c74af02459ad1222e3b0022da3a1", size = 1952376, upload-time = "2025-11-01T11:52:29.175Z" }, - { url = "https://files.pythonhosted.org/packages/be/00/37a169bb28b23850a164e6624b1eb299e1ad73c9e7c218ee15744e68d628/rapidfuzz-3.14.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ad73afb688b36864a8d9b7344a9cf6da186c471e5790cbf541a635ee0f457f2", size = 1390903, upload-time = "2025-11-01T11:52:31.239Z" }, - { url = "https://files.pythonhosted.org/packages/3c/91/b37207cbbdb6eaafac3da3f55ea85287b27745cb416e75e15769b7d8abe8/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c5fb2d978a601820d2cfd111e2c221a9a7bfdf84b41a3ccbb96ceef29f2f1ac7", size = 1385655, upload-time = "2025-11-01T11:52:32.852Z" }, - { url = "https://files.pythonhosted.org/packages/f2/bb/ca53e518acf43430be61f23b9c5987bd1e01e74fcb7a9ee63e00f597aefb/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1d83b8b712fa37e06d59f29a4b49e2e9e8635e908fbc21552fe4d1163db9d2a1", size = 3164708, upload-time = "2025-11-01T11:52:34.618Z" }, - { url = "https://files.pythonhosted.org/packages/df/e1/7667bf2db3e52adb13cb933dd4a6a2efc66045d26fa150fc0feb64c26d61/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:dc8c07801df5206b81ed6bd6c35cb520cf9b6c64b9b0d19d699f8633dc942897", size = 1221106, upload-time = "2025-11-01T11:52:36.069Z" }, - { url = "https://files.pythonhosted.org/packages/05/8a/84d9f2d46a2c8eb2ccae81747c4901fa10fe4010aade2d57ce7b4b8e02ec/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c71ce6d4231e5ef2e33caa952bfe671cb9fd42e2afb11952df9fad41d5c821f9", size = 2406048, upload-time = "2025-11-01T11:52:37.936Z" }, - { url = "https://files.pythonhosted.org/packages/3c/a9/a0b7b7a1b81a020c034eb67c8e23b7e49f920004e295378de3046b0d99e1/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:0e38828d1381a0cceb8a4831212b2f673d46f5129a1897b0451c883eaf4a1747", size = 2527020, upload-time = "2025-11-01T11:52:39.657Z" }, - { url = "https://files.pythonhosted.org/packages/b4/bc/416df7d108b99b4942ba04dd4cf73c45c3aadb3ef003d95cad78b1d12eb9/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da2a007434323904719158e50f3076a4dadb176ce43df28ed14610c773cc9825", size = 4273958, upload-time = "2025-11-01T11:52:41.017Z" }, - { url = "https://files.pythonhosted.org/packages/81/d0/b81e041c17cd475002114e0ab8800e4305e60837882cb376a621e520d70f/rapidfuzz-3.14.3-cp310-cp310-win32.whl", hash = "sha256:fce3152f94afcfd12f3dd8cf51e48fa606e3cb56719bccebe3b401f43d0714f9", size = 1725043, upload-time = "2025-11-01T11:52:42.465Z" }, - { url = "https://files.pythonhosted.org/packages/09/6b/64ad573337d81d64bc78a6a1df53a72a71d54d43d276ce0662c2e95a1f35/rapidfuzz-3.14.3-cp310-cp310-win_amd64.whl", hash = "sha256:37d3c653af15cd88592633e942f5407cb4c64184efab163c40fcebad05f25141", size = 1542273, upload-time = "2025-11-01T11:52:44.005Z" }, - { url = "https://files.pythonhosted.org/packages/f4/5e/faf76e259bc15808bc0b86028f510215c3d755b6c3a3911113079485e561/rapidfuzz-3.14.3-cp310-cp310-win_arm64.whl", hash = "sha256:cc594bbcd3c62f647dfac66800f307beaee56b22aaba1c005e9c4c40ed733923", size = 814875, upload-time = "2025-11-01T11:52:45.405Z" }, - { url = "https://files.pythonhosted.org/packages/76/25/5b0a33ad3332ee1213068c66f7c14e9e221be90bab434f0cb4defa9d6660/rapidfuzz-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea2d113e260a5da0c4003e0a5e9fdf24a9dc2bb9eaa43abd030a1e46ce7837d", size = 1953885, upload-time = "2025-11-01T11:52:47.75Z" }, - { url = "https://files.pythonhosted.org/packages/2d/ab/f1181f500c32c8fcf7c966f5920c7e56b9b1d03193386d19c956505c312d/rapidfuzz-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6c31a4aa68cfa75d7eede8b0ed24b9e458447db604c2db53f358be9843d81d3", size = 1390200, upload-time = "2025-11-01T11:52:49.491Z" }, - { url = "https://files.pythonhosted.org/packages/14/2a/0f2de974ececad873865c6bb3ea3ad07c976ac293d5025b2d73325aac1d4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02821366d928e68ddcb567fed8723dad7ea3a979fada6283e6914d5858674850", size = 1389319, upload-time = "2025-11-01T11:52:51.224Z" }, - { url = "https://files.pythonhosted.org/packages/ed/69/309d8f3a0bb3031fd9b667174cc4af56000645298af7c2931be5c3d14bb4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cfe8df315ab4e6db4e1be72c5170f8e66021acde22cd2f9d04d2058a9fd8162e", size = 3178495, upload-time = "2025-11-01T11:52:53.005Z" }, - { url = "https://files.pythonhosted.org/packages/10/b7/f9c44a99269ea5bf6fd6a40b84e858414b6e241288b9f2b74af470d222b1/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:769f31c60cd79420188fcdb3c823227fc4a6deb35cafec9d14045c7f6743acae", size = 1228443, upload-time = "2025-11-01T11:52:54.991Z" }, - { url = "https://files.pythonhosted.org/packages/f2/0a/3b3137abac7f19c9220e14cd7ce993e35071a7655e7ef697785a3edfea1a/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54fa03062124e73086dae66a3451c553c1e20a39c077fd704dc7154092c34c63", size = 2411998, upload-time = "2025-11-01T11:52:56.629Z" }, - { url = "https://files.pythonhosted.org/packages/f3/b6/983805a844d44670eaae63831024cdc97ada4e9c62abc6b20703e81e7f9b/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:834d1e818005ed0d4ae38f6b87b86fad9b0a74085467ece0727d20e15077c094", size = 2530120, upload-time = "2025-11-01T11:52:58.298Z" }, - { url = "https://files.pythonhosted.org/packages/b4/cc/2c97beb2b1be2d7595d805682472f1b1b844111027d5ad89b65e16bdbaaa/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:948b00e8476a91f510dd1ec07272efc7d78c275d83b630455559671d4e33b678", size = 4283129, upload-time = "2025-11-01T11:53:00.188Z" }, - { url = "https://files.pythonhosted.org/packages/4d/03/2f0e5e94941045aefe7eafab72320e61285c07b752df9884ce88d6b8b835/rapidfuzz-3.14.3-cp311-cp311-win32.whl", hash = "sha256:43d0305c36f504232f18ea04e55f2059bb89f169d3119c4ea96a0e15b59e2a91", size = 1724224, upload-time = "2025-11-01T11:53:02.149Z" }, - { url = "https://files.pythonhosted.org/packages/cf/99/5fa23e204435803875daefda73fd61baeabc3c36b8fc0e34c1705aab8c7b/rapidfuzz-3.14.3-cp311-cp311-win_amd64.whl", hash = "sha256:ef6bf930b947bd0735c550683939a032090f1d688dfd8861d6b45307b96fd5c5", size = 1544259, upload-time = "2025-11-01T11:53:03.66Z" }, - { url = "https://files.pythonhosted.org/packages/48/35/d657b85fcc615a42661b98ac90ce8e95bd32af474603a105643963749886/rapidfuzz-3.14.3-cp311-cp311-win_arm64.whl", hash = "sha256:f3eb0ff3b75d6fdccd40b55e7414bb859a1cda77c52762c9c82b85569f5088e7", size = 814734, upload-time = "2025-11-01T11:53:05.008Z" }, { url = "https://files.pythonhosted.org/packages/fa/8e/3c215e860b458cfbedb3ed73bc72e98eb7e0ed72f6b48099604a7a3260c2/rapidfuzz-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:685c93ea961d135893b5984a5a9851637d23767feabe414ec974f43babbd8226", size = 1945306, upload-time = "2025-11-01T11:53:06.452Z" }, { url = "https://files.pythonhosted.org/packages/36/d9/31b33512015c899f4a6e6af64df8dfe8acddf4c8b40a4b3e0e6e1bcd00e5/rapidfuzz-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fa7c8f26f009f8c673fbfb443792f0cf8cf50c4e18121ff1e285b5e08a94fbdb", size = 1390788, upload-time = "2025-11-01T11:53:08.721Z" }, { url = "https://files.pythonhosted.org/packages/a9/67/2ee6f8de6e2081ccd560a571d9c9063184fe467f484a17fa90311a7f4a2e/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57f878330c8d361b2ce76cebb8e3e1dc827293b6abf404e67d53260d27b5d941", size = 1374580, upload-time = "2025-11-01T11:53:10.164Z" }, @@ -1098,11 +1640,62 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c1/ab/1d0354b7d1771a28fa7fe089bc23acec2bdd3756efa2419f463e3ed80e16/rapidfuzz-3.14.3-cp313-cp313t-win32.whl", hash = "sha256:489ce98a895c98cad284f0a47960c3e264c724cb4cfd47a1430fa091c0c25204", size = 1757773, upload-time = "2025-11-01T11:53:57.628Z" }, { url = "https://files.pythonhosted.org/packages/0b/0c/71ef356adc29e2bdf74cd284317b34a16b80258fa0e7e242dd92cc1e6d10/rapidfuzz-3.14.3-cp313-cp313t-win_amd64.whl", hash = "sha256:656e52b054d5b5c2524169240e50cfa080b04b1c613c5f90a2465e84888d6f15", size = 1576797, upload-time = "2025-11-01T11:53:59.455Z" }, { url = "https://files.pythonhosted.org/packages/fe/d2/0e64fc27bb08d4304aa3d11154eb5480bcf5d62d60140a7ee984dc07468a/rapidfuzz-3.14.3-cp313-cp313t-win_arm64.whl", hash = "sha256:c7e40c0a0af02ad6e57e89f62bef8604f55a04ecae90b0ceeda591bbf5923317", size = 829940, upload-time = "2025-11-01T11:54:01.1Z" }, - { url = "https://files.pythonhosted.org/packages/c9/33/b5bd6475c7c27164b5becc9b0e3eb978f1e3640fea590dd3dced6006ee83/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7cf174b52cb3ef5d49e45d0a1133b7e7d0ecf770ed01f97ae9962c5c91d97d23", size = 1888499, upload-time = "2025-11-01T11:54:42.094Z" }, - { url = "https://files.pythonhosted.org/packages/30/d2/89d65d4db4bb931beade9121bc71ad916b5fa9396e807d11b33731494e8e/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:442cba39957a008dfc5bdef21a9c3f4379e30ffb4e41b8555dbaf4887eca9300", size = 1336747, upload-time = "2025-11-01T11:54:43.957Z" }, - { url = "https://files.pythonhosted.org/packages/85/33/cd87d92b23f0b06e8914a61cea6850c6d495ca027f669fab7a379041827a/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1faa0f8f76ba75fd7b142c984947c280ef6558b5067af2ae9b8729b0a0f99ede", size = 1352187, upload-time = "2025-11-01T11:54:45.518Z" }, - { url = "https://files.pythonhosted.org/packages/22/20/9d30b4a1ab26aac22fff17d21dec7e9089ccddfe25151d0a8bb57001dc3d/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e6eefec45625c634926a9fd46c9e4f31118ac8f3156fff9494422cee45207e6", size = 3101472, upload-time = "2025-11-01T11:54:47.255Z" }, - { url = "https://files.pythonhosted.org/packages/b1/ad/fa2d3e5c29a04ead7eaa731c7cd1f30f9ec3c77b3a578fdf90280797cbcb/rapidfuzz-3.14.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56fefb4382bb12250f164250240b9dd7772e41c5c8ae976fd598a32292449cc5", size = 1511361, upload-time = "2025-11-01T11:54:49.057Z" }, +] + +[[package]] +name = "regex" +version = "2026.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cb/0e/3a246dbf05666918bd3664d9d787f84a9108f6f43cc953a077e4a7dfdb7e/regex-2026.4.4.tar.gz", hash = "sha256:e08270659717f6973523ce3afbafa53515c4dc5dcad637dc215b6fd50f689423", size = 416000, upload-time = "2026-04-03T20:56:28.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/28/b972a4d3df61e1d7bcf1b59fdb3cddef22f88b6be43f161bb41ebc0e4081/regex-2026.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c07ab8794fa929e58d97a0e1796b8b76f70943fa39df225ac9964615cf1f9d52", size = 490434, upload-time = "2026-04-03T20:53:40.219Z" }, + { url = "https://files.pythonhosted.org/packages/84/20/30041446cf6dc3e0eab344fc62770e84c23b6b68a3b657821f9f80cb69b4/regex-2026.4.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c785939dc023a1ce4ec09599c032cc9933d258a998d16ca6f2b596c010940eb", size = 292061, upload-time = "2026-04-03T20:53:41.862Z" }, + { url = "https://files.pythonhosted.org/packages/62/c8/3baa06d75c98c46d4cc4262b71fd2edb9062b5665e868bca57859dadf93a/regex-2026.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b1ce5c81c9114f1ce2f9288a51a8fd3aeea33a0cc440c415bf02da323aa0a76", size = 289628, upload-time = "2026-04-03T20:53:43.701Z" }, + { url = "https://files.pythonhosted.org/packages/31/87/3accf55634caad8c0acab23f5135ef7d4a21c39f28c55c816ae012931408/regex-2026.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:760ef21c17d8e6a4fe8cf406a97cf2806a4df93416ccc82fc98d25b1c20425be", size = 796651, upload-time = "2026-04-03T20:53:45.379Z" }, + { url = "https://files.pythonhosted.org/packages/f6/0c/aaa2c83f34efedbf06f61cb1942c25f6cf1ee3b200f832c4d05f28306c2e/regex-2026.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7088fcdcb604a4417c208e2169715800d28838fefd7455fbe40416231d1d47c1", size = 865916, upload-time = "2026-04-03T20:53:47.064Z" }, + { url = "https://files.pythonhosted.org/packages/d9/f6/8c6924c865124643e8f37823eca845dc27ac509b2ee58123685e71cd0279/regex-2026.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:07edca1ba687998968f7db5bc355288d0c6505caa7374f013d27356d93976d13", size = 912287, upload-time = "2026-04-03T20:53:49.422Z" }, + { url = "https://files.pythonhosted.org/packages/11/0e/a9f6f81013e0deaf559b25711623864970fe6a098314e374ccb1540a4152/regex-2026.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:993f657a7c1c6ec51b5e0ba97c9817d06b84ea5fa8d82e43b9405de0defdc2b9", size = 801126, upload-time = "2026-04-03T20:53:51.096Z" }, + { url = "https://files.pythonhosted.org/packages/71/61/3a0cc8af2dc0c8deb48e644dd2521f173f7e6513c6e195aad9aa8dd77ac5/regex-2026.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:2b69102a743e7569ebee67e634a69c4cb7e59d6fa2e1aa7d3bdbf3f61435f62d", size = 776788, upload-time = "2026-04-03T20:53:52.889Z" }, + { url = "https://files.pythonhosted.org/packages/64/0b/8bb9cbf21ef7dee58e49b0fdb066a7aded146c823202e16494a36777594f/regex-2026.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dac006c8b6dda72d86ea3d1333d45147de79a3a3f26f10c1cf9287ca4ca0ac3", size = 785184, upload-time = "2026-04-03T20:53:55.627Z" }, + { url = "https://files.pythonhosted.org/packages/99/c2/d3e80e8137b25ee06c92627de4e4d98b94830e02b3e6f81f3d2e3f504cf5/regex-2026.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:50a766ee2010d504554bfb5f578ed2e066898aa26411d57e6296230627cdefa0", size = 859913, upload-time = "2026-04-03T20:53:57.249Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/9d5d876157d969c804622456ef250017ac7a8f83e0e14f903b9e6df5ce95/regex-2026.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9e2f5217648f68e3028c823df58663587c1507a5ba8419f4fdfc8a461be76043", size = 765732, upload-time = "2026-04-03T20:53:59.428Z" }, + { url = "https://files.pythonhosted.org/packages/82/80/b568935b4421388561c8ed42aff77247285d3ae3bb2a6ca22af63bae805e/regex-2026.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:39d8de85a08e32632974151ba59c6e9140646dcc36c80423962b1c5c0a92e244", size = 852152, upload-time = "2026-04-03T20:54:01.505Z" }, + { url = "https://files.pythonhosted.org/packages/39/29/f0f81217e21cd998245da047405366385d5c6072048038a3d33b37a79dc0/regex-2026.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:55d9304e0e7178dfb1e106c33edf834097ddf4a890e2f676f6c5118f84390f73", size = 789076, upload-time = "2026-04-03T20:54:03.323Z" }, + { url = "https://files.pythonhosted.org/packages/49/1d/1d957a61976ab9d4e767dd4f9d04b66cc0c41c5e36cf40e2d43688b5ae6f/regex-2026.4.4-cp312-cp312-win32.whl", hash = "sha256:04bb679bc0bde8a7bfb71e991493d47314e7b98380b083df2447cda4b6edb60f", size = 266700, upload-time = "2026-04-03T20:54:05.639Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/bf575d396aeb58ea13b06ef2adf624f65b70fafef6950a80fc3da9cae3bc/regex-2026.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:db0ac18435a40a2543dbb3d21e161a6c78e33e8159bd2e009343d224bb03bb1b", size = 277768, upload-time = "2026-04-03T20:54:07.312Z" }, + { url = "https://files.pythonhosted.org/packages/c9/27/049df16ec6a6828ccd72add3c7f54b4df029669bea8e9817df6fff58be90/regex-2026.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:4ce255cc05c1947a12989c6db801c96461947adb7a59990f1360b5983fab4983", size = 270568, upload-time = "2026-04-03T20:54:09.484Z" }, + { url = "https://files.pythonhosted.org/packages/9d/83/c4373bc5f31f2cf4b66f9b7c31005bd87fe66f0dce17701f7db4ee79ee29/regex-2026.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:62f5519042c101762509b1d717b45a69c0139d60414b3c604b81328c01bd1943", size = 490273, upload-time = "2026-04-03T20:54:11.202Z" }, + { url = "https://files.pythonhosted.org/packages/46/f8/fe62afbcc3cf4ad4ac9adeaafd98aa747869ae12d3e8e2ac293d0593c435/regex-2026.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3790ba9fb5dd76715a7afe34dbe603ba03f8820764b1dc929dd08106214ed031", size = 291954, upload-time = "2026-04-03T20:54:13.412Z" }, + { url = "https://files.pythonhosted.org/packages/5a/92/4712b9fe6a33d232eeb1c189484b80c6c4b8422b90e766e1195d6e758207/regex-2026.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8fae3c6e795d7678963f2170152b0d892cf6aee9ee8afc8c45e6be38d5107fe7", size = 289487, upload-time = "2026-04-03T20:54:15.824Z" }, + { url = "https://files.pythonhosted.org/packages/88/2c/f83b93f85e01168f1070f045a42d4c937b69fdb8dd7ae82d307253f7e36e/regex-2026.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:298c3ec2d53225b3bf91142eb9691025bab610e0c0c51592dde149db679b3d17", size = 796646, upload-time = "2026-04-03T20:54:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/df/55/61a2e17bf0c4dc57e11caf8dd11771280d8aaa361785f9e3bc40d653f4a7/regex-2026.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e9638791082eaf5b3ac112c587518ee78e083a11c4b28012d8fe2a0f536dfb17", size = 865904, upload-time = "2026-04-03T20:54:20.019Z" }, + { url = "https://files.pythonhosted.org/packages/45/32/1ac8ed1b5a346b5993a3d256abe0a0f03b0b73c8cc88d928537368ac65b6/regex-2026.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ae3e764bd4c5ff55035dc82a8d49acceb42a5298edf6eb2fc4d328ee5dd7afae", size = 912304, upload-time = "2026-04-03T20:54:22.403Z" }, + { url = "https://files.pythonhosted.org/packages/26/47/2ee5c613ab546f0eddebf9905d23e07beb933416b1246c2d8791d01979b4/regex-2026.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ffa81f81b80047ba89a3c69ae6a0f78d06f4a42ce5126b0eb2a0a10ad44e0b2e", size = 801126, upload-time = "2026-04-03T20:54:24.308Z" }, + { url = "https://files.pythonhosted.org/packages/75/cd/41dacd129ca9fd20bd7d02f83e0fad83e034ac8a084ec369c90f55ef37e2/regex-2026.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f56ebf9d70305307a707911b88469213630aba821e77de7d603f9d2f0730687d", size = 776772, upload-time = "2026-04-03T20:54:26.319Z" }, + { url = "https://files.pythonhosted.org/packages/89/6d/5af0b588174cb5f46041fa7dd64d3fd5cd2fe51f18766703d1edc387f324/regex-2026.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:773d1dfd652bbffb09336abf890bfd64785c7463716bf766d0eb3bc19c8b7f27", size = 785228, upload-time = "2026-04-03T20:54:28.387Z" }, + { url = "https://files.pythonhosted.org/packages/b7/3b/f5a72b7045bd59575fc33bf1345f156fcfd5a8484aea6ad84b12c5a82114/regex-2026.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d51d20befd5275d092cdffba57ded05f3c436317ee56466c8928ac32d960edaf", size = 860032, upload-time = "2026-04-03T20:54:30.641Z" }, + { url = "https://files.pythonhosted.org/packages/39/a4/72a317003d6fcd7a573584a85f59f525dfe8f67e355ca74eb6b53d66a5e2/regex-2026.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:0a51cdb3c1e9161154f976cb2bef9894bc063ac82f31b733087ffb8e880137d0", size = 765714, upload-time = "2026-04-03T20:54:32.789Z" }, + { url = "https://files.pythonhosted.org/packages/25/1e/5672e16f34dbbcb2560cc7e6a2fbb26dfa8b270711e730101da4423d3973/regex-2026.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ae5266a82596114e41fb5302140e9630204c1b5f325c770bec654b95dd54b0aa", size = 852078, upload-time = "2026-04-03T20:54:34.546Z" }, + { url = "https://files.pythonhosted.org/packages/f7/0d/c813f0af7c6cc7ed7b9558bac2e5120b60ad0fa48f813e4d4bd55446f214/regex-2026.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c882cd92ec68585e9c1cf36c447ec846c0d94edd706fe59e0c198e65822fd23b", size = 789181, upload-time = "2026-04-03T20:54:36.642Z" }, + { url = "https://files.pythonhosted.org/packages/ea/6d/a344608d1adbd2a95090ddd906cec09a11be0e6517e878d02a5123e0917f/regex-2026.4.4-cp313-cp313-win32.whl", hash = "sha256:05568c4fbf3cb4fa9e28e3af198c40d3237cf6041608a9022285fe567ec3ad62", size = 266690, upload-time = "2026-04-03T20:54:38.343Z" }, + { url = "https://files.pythonhosted.org/packages/31/07/54049f89b46235ca6f45cd6c88668a7050e77d4a15555e47dd40fde75263/regex-2026.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:3384df51ed52db0bea967e21458ab0a414f67cdddfd94401688274e55147bb81", size = 277733, upload-time = "2026-04-03T20:54:40.11Z" }, + { url = "https://files.pythonhosted.org/packages/0e/21/61366a8e20f4d43fb597708cac7f0e2baadb491ecc9549b4980b2be27d16/regex-2026.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:acd38177bd2c8e69a411d6521760806042e244d0ef94e2dd03ecdaa8a3c99427", size = 270565, upload-time = "2026-04-03T20:54:41.883Z" }, + { url = "https://files.pythonhosted.org/packages/f1/1e/3a2b9672433bef02f5d39aa1143ca2c08f311c1d041c464a42be9ae648dc/regex-2026.4.4-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:f94a11a9d05afcfcfa640e096319720a19cc0c9f7768e1a61fceee6a3afc6c7c", size = 494126, upload-time = "2026-04-03T20:54:43.602Z" }, + { url = "https://files.pythonhosted.org/packages/4e/4b/c132a4f4fe18ad3340d89fcb56235132b69559136036b845be3c073142ed/regex-2026.4.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:36bcb9d6d1307ab629edc553775baada2aefa5c50ccc0215fbfd2afcfff43141", size = 293882, upload-time = "2026-04-03T20:54:45.41Z" }, + { url = "https://files.pythonhosted.org/packages/f4/5f/eaa38092ce7a023656280f2341dbbd4ad5f05d780a70abba7bb4f4bea54c/regex-2026.4.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:261c015b3e2ed0919157046d768774ecde57f03d8fa4ba78d29793447f70e717", size = 292334, upload-time = "2026-04-03T20:54:47.051Z" }, + { url = "https://files.pythonhosted.org/packages/5f/f6/dd38146af1392dac33db7074ab331cec23cced3759167735c42c5460a243/regex-2026.4.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c228cf65b4a54583763645dcd73819b3b381ca8b4bb1b349dee1c135f4112c07", size = 811691, upload-time = "2026-04-03T20:54:49.074Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f0/dc54c2e69f5eeec50601054998ec3690d5344277e782bd717e49867c1d29/regex-2026.4.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dd2630faeb6876fb0c287f664d93ddce4d50cd46c6e88e60378c05c9047e08ca", size = 871227, upload-time = "2026-04-03T20:54:51.035Z" }, + { url = "https://files.pythonhosted.org/packages/a1/af/cb16bd5dc61621e27df919a4449bbb7e5a1034c34d307e0a706e9cc0f3e3/regex-2026.4.4-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a50ab11b7779b849472337191f3a043e27e17f71555f98d0092fa6d73364520", size = 917435, upload-time = "2026-04-03T20:54:52.994Z" }, + { url = "https://files.pythonhosted.org/packages/5c/71/8b260897f22996b666edd9402861668f45a2ca259f665ac029e6104a2d7d/regex-2026.4.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0734f63afe785138549fbe822a8cfeaccd1bae814c5057cc0ed5b9f2de4fc883", size = 816358, upload-time = "2026-04-03T20:54:54.884Z" }, + { url = "https://files.pythonhosted.org/packages/1c/60/775f7f72a510ef238254906c2f3d737fc80b16ca85f07d20e318d2eea894/regex-2026.4.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c4ee50606cb1967db7e523224e05f32089101945f859928e65657a2cbb3d278b", size = 785549, upload-time = "2026-04-03T20:54:57.01Z" }, + { url = "https://files.pythonhosted.org/packages/58/42/34d289b3627c03cf381e44da534a0021664188fa49ba41513da0b4ec6776/regex-2026.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6c1818f37be3ca02dcb76d63f2c7aaba4b0dc171b579796c6fbe00148dfec6b1", size = 801364, upload-time = "2026-04-03T20:54:58.981Z" }, + { url = "https://files.pythonhosted.org/packages/fc/20/f6ecf319b382a8f1ab529e898b222c3f30600fcede7834733c26279e7465/regex-2026.4.4-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f5bfc2741d150d0be3e4a0401a5c22b06e60acb9aa4daa46d9e79a6dcd0f135b", size = 866221, upload-time = "2026-04-03T20:55:00.88Z" }, + { url = "https://files.pythonhosted.org/packages/92/6a/9f16d3609d549bd96d7a0b2aee1625d7512ba6a03efc01652149ef88e74d/regex-2026.4.4-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:504ffa8a03609a087cad81277a629b6ce884b51a24bd388a7980ad61748618ff", size = 772530, upload-time = "2026-04-03T20:55:03.213Z" }, + { url = "https://files.pythonhosted.org/packages/fa/f6/aa9768bc96a4c361ac96419fbaf2dcdc33970bb813df3ba9b09d5d7b6d96/regex-2026.4.4-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:70aadc6ff12e4b444586e57fc30771f86253f9f0045b29016b9605b4be5f7dfb", size = 856989, upload-time = "2026-04-03T20:55:05.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b4/c671db3556be2473ae3e4bb7a297c518d281452871501221251ea4ecba57/regex-2026.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f4f83781191007b6ef43b03debc35435f10cad9b96e16d147efe84a1d48bdde4", size = 803241, upload-time = "2026-04-03T20:55:07.162Z" }, + { url = "https://files.pythonhosted.org/packages/2a/5c/83e3b1d89fa4f6e5a1bc97b4abd4a9a97b3c1ac7854164f694f5f0ba98a0/regex-2026.4.4-cp313-cp313t-win32.whl", hash = "sha256:e014a797de43d1847df957c0a2a8e861d1c17547ee08467d1db2c370b7568baa", size = 269921, upload-time = "2026-04-03T20:55:09.62Z" }, + { url = "https://files.pythonhosted.org/packages/28/07/077c387121f42cdb4d92b1301133c0d93b5709d096d1669ab847dda9fe2e/regex-2026.4.4-cp313-cp313t-win_amd64.whl", hash = "sha256:b15b88b0d52b179712632832c1d6e58e5774f93717849a41096880442da41ab0", size = 281240, upload-time = "2026-04-03T20:55:11.521Z" }, + { url = "https://files.pythonhosted.org/packages/9d/22/ead4a4abc7c59a4d882662aa292ca02c8b617f30b6e163bc1728879e9353/regex-2026.4.4-cp313-cp313t-win_arm64.whl", hash = "sha256:586b89cdadf7d67bf86ae3342a4dcd2b8d70a832d90c18a0ae955105caf34dbe", size = 272440, upload-time = "2026-04-03T20:55:13.365Z" }, ] [[package]] @@ -1120,6 +1713,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, ] +[[package]] +name = "rich" +version = "14.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, +] + [[package]] name = "rsa" version = "4.9.1" @@ -1133,128 +1739,68 @@ wheels = [ ] [[package]] -name = "scikit-learn" -version = "1.7.2" +name = "safetensors" +version = "0.7.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "joblib" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "threadpoolctl" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ba/3e/daed796fd69cce768b8788401cc464ea90b306fb196ae1ffed0b98182859/scikit_learn-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b33579c10a3081d076ab403df4a4190da4f4432d443521674637677dc91e61f", size = 9336221, upload-time = "2025-09-09T08:20:19.328Z" }, - { url = "https://files.pythonhosted.org/packages/1c/ce/af9d99533b24c55ff4e18d9b7b4d9919bbc6cd8f22fe7a7be01519a347d5/scikit_learn-1.7.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:36749fb62b3d961b1ce4fedf08fa57a1986cd409eff2d783bca5d4b9b5fce51c", size = 8653834, upload-time = "2025-09-09T08:20:22.073Z" }, - { url = "https://files.pythonhosted.org/packages/58/0e/8c2a03d518fb6bd0b6b0d4b114c63d5f1db01ff0f9925d8eb10960d01c01/scikit_learn-1.7.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7a58814265dfc52b3295b1900cfb5701589d30a8bb026c7540f1e9d3499d5ec8", size = 9660938, upload-time = "2025-09-09T08:20:24.327Z" }, - { url = "https://files.pythonhosted.org/packages/2b/75/4311605069b5d220e7cf5adabb38535bd96f0079313cdbb04b291479b22a/scikit_learn-1.7.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a847fea807e278f821a0406ca01e387f97653e284ecbd9750e3ee7c90347f18", size = 9477818, upload-time = "2025-09-09T08:20:26.845Z" }, - { url = "https://files.pythonhosted.org/packages/7f/9b/87961813c34adbca21a6b3f6b2bea344c43b30217a6d24cc437c6147f3e8/scikit_learn-1.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:ca250e6836d10e6f402436d6463d6c0e4d8e0234cfb6a9a47835bd392b852ce5", size = 8886969, upload-time = "2025-09-09T08:20:29.329Z" }, - { url = "https://files.pythonhosted.org/packages/43/83/564e141eef908a5863a54da8ca342a137f45a0bfb71d1d79704c9894c9d1/scikit_learn-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7509693451651cd7361d30ce4e86a1347493554f172b1c72a39300fa2aea79e", size = 9331967, upload-time = "2025-09-09T08:20:32.421Z" }, - { url = "https://files.pythonhosted.org/packages/18/d6/ba863a4171ac9d7314c4d3fc251f015704a2caeee41ced89f321c049ed83/scikit_learn-1.7.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:0486c8f827c2e7b64837c731c8feff72c0bd2b998067a8a9cbc10643c31f0fe1", size = 8648645, upload-time = "2025-09-09T08:20:34.436Z" }, - { url = "https://files.pythonhosted.org/packages/ef/0e/97dbca66347b8cf0ea8b529e6bb9367e337ba2e8be0ef5c1a545232abfde/scikit_learn-1.7.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:89877e19a80c7b11a2891a27c21c4894fb18e2c2e077815bcade10d34287b20d", size = 9715424, upload-time = "2025-09-09T08:20:36.776Z" }, - { url = "https://files.pythonhosted.org/packages/f7/32/1f3b22e3207e1d2c883a7e09abb956362e7d1bd2f14458c7de258a26ac15/scikit_learn-1.7.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8da8bf89d4d79aaec192d2bda62f9b56ae4e5b4ef93b6a56b5de4977e375c1f1", size = 9509234, upload-time = "2025-09-09T08:20:38.957Z" }, - { url = "https://files.pythonhosted.org/packages/9f/71/34ddbd21f1da67c7a768146968b4d0220ee6831e4bcbad3e03dd3eae88b6/scikit_learn-1.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:9b7ed8d58725030568523e937c43e56bc01cadb478fc43c042a9aca1dacb3ba1", size = 8894244, upload-time = "2025-09-09T08:20:41.166Z" }, - { url = "https://files.pythonhosted.org/packages/a7/aa/3996e2196075689afb9fce0410ebdb4a09099d7964d061d7213700204409/scikit_learn-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8d91a97fa2b706943822398ab943cde71858a50245e31bc71dba62aab1d60a96", size = 9259818, upload-time = "2025-09-09T08:20:43.19Z" }, - { url = "https://files.pythonhosted.org/packages/43/5d/779320063e88af9c4a7c2cf463ff11c21ac9c8bd730c4a294b0000b666c9/scikit_learn-1.7.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:acbc0f5fd2edd3432a22c69bed78e837c70cf896cd7993d71d51ba6708507476", size = 8636997, upload-time = "2025-09-09T08:20:45.468Z" }, - { url = "https://files.pythonhosted.org/packages/5c/d0/0c577d9325b05594fdd33aa970bf53fb673f051a45496842caee13cfd7fe/scikit_learn-1.7.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e5bf3d930aee75a65478df91ac1225ff89cd28e9ac7bd1196853a9229b6adb0b", size = 9478381, upload-time = "2025-09-09T08:20:47.982Z" }, - { url = "https://files.pythonhosted.org/packages/82/70/8bf44b933837ba8494ca0fc9a9ab60f1c13b062ad0197f60a56e2fc4c43e/scikit_learn-1.7.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4d6e9deed1a47aca9fe2f267ab8e8fe82ee20b4526b2c0cd9e135cea10feb44", size = 9300296, upload-time = "2025-09-09T08:20:50.366Z" }, - { url = "https://files.pythonhosted.org/packages/c6/99/ed35197a158f1fdc2fe7c3680e9c70d0128f662e1fee4ed495f4b5e13db0/scikit_learn-1.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:6088aa475f0785e01bcf8529f55280a3d7d298679f50c0bb70a2364a82d0b290", size = 8731256, upload-time = "2025-09-09T08:20:52.627Z" }, - { url = "https://files.pythonhosted.org/packages/ae/93/a3038cb0293037fd335f77f31fe053b89c72f17b1c8908c576c29d953e84/scikit_learn-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b7dacaa05e5d76759fb071558a8b5130f4845166d88654a0f9bdf3eb57851b7", size = 9212382, upload-time = "2025-09-09T08:20:54.731Z" }, - { url = "https://files.pythonhosted.org/packages/40/dd/9a88879b0c1104259136146e4742026b52df8540c39fec21a6383f8292c7/scikit_learn-1.7.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:abebbd61ad9e1deed54cca45caea8ad5f79e1b93173dece40bb8e0c658dbe6fe", size = 8592042, upload-time = "2025-09-09T08:20:57.313Z" }, - { url = "https://files.pythonhosted.org/packages/46/af/c5e286471b7d10871b811b72ae794ac5fe2989c0a2df07f0ec723030f5f5/scikit_learn-1.7.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:502c18e39849c0ea1a5d681af1dbcf15f6cce601aebb657aabbfe84133c1907f", size = 9434180, upload-time = "2025-09-09T08:20:59.671Z" }, - { url = "https://files.pythonhosted.org/packages/f1/fd/df59faa53312d585023b2da27e866524ffb8faf87a68516c23896c718320/scikit_learn-1.7.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a4c328a71785382fe3fe676a9ecf2c86189249beff90bf85e22bdb7efaf9ae0", size = 9283660, upload-time = "2025-09-09T08:21:01.71Z" }, - { url = "https://files.pythonhosted.org/packages/a7/c7/03000262759d7b6f38c836ff9d512f438a70d8a8ddae68ee80de72dcfb63/scikit_learn-1.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:63a9afd6f7b229aad94618c01c252ce9e6fa97918c5ca19c9a17a087d819440c", size = 8702057, upload-time = "2025-09-09T08:21:04.234Z" }, - { url = "https://files.pythonhosted.org/packages/55/87/ef5eb1f267084532c8e4aef98a28b6ffe7425acbfd64b5e2f2e066bc29b3/scikit_learn-1.7.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9acb6c5e867447b4e1390930e3944a005e2cb115922e693c08a323421a6966e8", size = 9558731, upload-time = "2025-09-09T08:21:06.381Z" }, - { url = "https://files.pythonhosted.org/packages/93/f8/6c1e3fc14b10118068d7938878a9f3f4e6d7b74a8ddb1e5bed65159ccda8/scikit_learn-1.7.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:2a41e2a0ef45063e654152ec9d8bcfc39f7afce35b08902bfe290c2498a67a6a", size = 9038852, upload-time = "2025-09-09T08:21:08.628Z" }, - { url = "https://files.pythonhosted.org/packages/83/87/066cafc896ee540c34becf95d30375fe5cbe93c3b75a0ee9aa852cd60021/scikit_learn-1.7.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98335fb98509b73385b3ab2bd0639b1f610541d3988ee675c670371d6a87aa7c", size = 9527094, upload-time = "2025-09-09T08:21:11.486Z" }, - { url = "https://files.pythonhosted.org/packages/9c/2b/4903e1ccafa1f6453b1ab78413938c8800633988c838aa0be386cbb33072/scikit_learn-1.7.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:191e5550980d45449126e23ed1d5e9e24b2c68329ee1f691a3987476e115e09c", size = 9367436, upload-time = "2025-09-09T08:21:13.602Z" }, - { url = "https://files.pythonhosted.org/packages/b5/aa/8444be3cfb10451617ff9d177b3c190288f4563e6c50ff02728be67ad094/scikit_learn-1.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:57dc4deb1d3762c75d685507fbd0bc17160144b2f2ba4ccea5dc285ab0d0e973", size = 9275749, upload-time = "2025-09-09T08:21:15.96Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/29/9c/6e74567782559a63bd040a236edca26fd71bc7ba88de2ef35d75df3bca5e/safetensors-0.7.0.tar.gz", hash = "sha256:07663963b67e8bd9f0b8ad15bb9163606cd27cc5a1b96235a50d8369803b96b0", size = 200878, upload-time = "2025-11-19T15:18:43.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/47/aef6c06649039accf914afef490268e1067ed82be62bcfa5b7e886ad15e8/safetensors-0.7.0-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c82f4d474cf725255d9e6acf17252991c3c8aac038d6ef363a4bf8be2f6db517", size = 467781, upload-time = "2025-11-19T15:18:35.84Z" }, + { url = "https://files.pythonhosted.org/packages/e8/00/374c0c068e30cd31f1e1b46b4b5738168ec79e7689ca82ee93ddfea05109/safetensors-0.7.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:94fd4858284736bb67a897a41608b5b0c2496c9bdb3bf2af1fa3409127f20d57", size = 447058, upload-time = "2025-11-19T15:18:34.416Z" }, + { url = "https://files.pythonhosted.org/packages/f1/06/578ffed52c2296f93d7fd2d844cabfa92be51a587c38c8afbb8ae449ca89/safetensors-0.7.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e07d91d0c92a31200f25351f4acb2bc6aff7f48094e13ebb1d0fb995b54b6542", size = 491748, upload-time = "2025-11-19T15:18:09.79Z" }, + { url = "https://files.pythonhosted.org/packages/ae/33/1debbbb70e4791dde185edb9413d1fe01619255abb64b300157d7f15dddd/safetensors-0.7.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8469155f4cb518bafb4acf4865e8bb9d6804110d2d9bdcaa78564b9fd841e104", size = 503881, upload-time = "2025-11-19T15:18:16.145Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1c/40c2ca924d60792c3be509833df711b553c60effbd91da6f5284a83f7122/safetensors-0.7.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54bef08bf00a2bff599982f6b08e8770e09cc012d7bba00783fc7ea38f1fb37d", size = 623463, upload-time = "2025-11-19T15:18:21.11Z" }, + { url = "https://files.pythonhosted.org/packages/9b/3a/13784a9364bd43b0d61eef4bea2845039bc2030458b16594a1bd787ae26e/safetensors-0.7.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42cb091236206bb2016d245c377ed383aa7f78691748f3bb6ee1bfa51ae2ce6a", size = 532855, upload-time = "2025-11-19T15:18:25.719Z" }, + { url = "https://files.pythonhosted.org/packages/a0/60/429e9b1cb3fc651937727befe258ea24122d9663e4d5709a48c9cbfceecb/safetensors-0.7.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac7252938f0696ddea46f5e855dd3138444e82236e3be475f54929f0c510d48", size = 507152, upload-time = "2025-11-19T15:18:33.023Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a8/4b45e4e059270d17af60359713ffd83f97900d45a6afa73aaa0d737d48b6/safetensors-0.7.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1d060c70284127fa805085d8f10fbd0962792aed71879d00864acda69dbab981", size = 541856, upload-time = "2025-11-19T15:18:31.075Z" }, + { url = "https://files.pythonhosted.org/packages/06/87/d26d8407c44175d8ae164a95b5a62707fcc445f3c0c56108e37d98070a3d/safetensors-0.7.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cdab83a366799fa730f90a4ebb563e494f28e9e92c4819e556152ad55e43591b", size = 674060, upload-time = "2025-11-19T15:18:37.211Z" }, + { url = "https://files.pythonhosted.org/packages/11/f5/57644a2ff08dc6325816ba7217e5095f17269dada2554b658442c66aed51/safetensors-0.7.0-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:672132907fcad9f2aedcb705b2d7b3b93354a2aec1b2f706c4db852abe338f85", size = 771715, upload-time = "2025-11-19T15:18:38.689Z" }, + { url = "https://files.pythonhosted.org/packages/86/31/17883e13a814bd278ae6e266b13282a01049b0c81341da7fd0e3e71a80a3/safetensors-0.7.0-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:5d72abdb8a4d56d4020713724ba81dac065fedb7f3667151c4a637f1d3fb26c0", size = 714377, upload-time = "2025-11-19T15:18:40.162Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d8/0c8a7dc9b41dcac53c4cbf9df2b9c83e0e0097203de8b37a712b345c0be5/safetensors-0.7.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0f6d66c1c538d5a94a73aa9ddca8ccc4227e6c9ff555322ea40bdd142391dd4", size = 677368, upload-time = "2025-11-19T15:18:41.627Z" }, + { url = "https://files.pythonhosted.org/packages/05/e5/cb4b713c8a93469e3c5be7c3f8d77d307e65fe89673e731f5c2bfd0a9237/safetensors-0.7.0-cp38-abi3-win32.whl", hash = "sha256:c74af94bf3ac15ac4d0f2a7c7b4663a15f8c2ab15ed0fc7531ca61d0835eccba", size = 326423, upload-time = "2025-11-19T15:18:45.74Z" }, + { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" }, ] [[package]] -name = "scipy" -version = "1.15.3" +name = "scikit-learn" +version = "1.8.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", -] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, - { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, - { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, - { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, - { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, - { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, - { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, - { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, - { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, - { url = "https://files.pythonhosted.org/packages/96/ab/5cc9f80f28f6a7dff646c5756e559823614a42b1939d86dd0ed550470210/scipy-1.15.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:993439ce220d25e3696d1b23b233dd010169b62f6456488567e830654ee37a6b", size = 38714255, upload-time = "2025-05-08T16:05:14.596Z" }, - { url = "https://files.pythonhosted.org/packages/4a/4a/66ba30abe5ad1a3ad15bfb0b59d22174012e8056ff448cb1644deccbfed2/scipy-1.15.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:34716e281f181a02341ddeaad584205bd2fd3c242063bd3423d61ac259ca7eba", size = 30111035, upload-time = "2025-05-08T16:05:20.152Z" }, - { url = "https://files.pythonhosted.org/packages/4b/fa/a7e5b95afd80d24313307f03624acc65801846fa75599034f8ceb9e2cbf6/scipy-1.15.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3b0334816afb8b91dab859281b1b9786934392aa3d527cd847e41bb6f45bee65", size = 22384499, upload-time = "2025-05-08T16:05:24.494Z" }, - { url = "https://files.pythonhosted.org/packages/17/99/f3aaddccf3588bb4aea70ba35328c204cadd89517a1612ecfda5b2dd9d7a/scipy-1.15.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:6db907c7368e3092e24919b5e31c76998b0ce1684d51a90943cb0ed1b4ffd6c1", size = 25152602, upload-time = "2025-05-08T16:05:29.313Z" }, - { url = "https://files.pythonhosted.org/packages/56/c5/1032cdb565f146109212153339f9cb8b993701e9fe56b1c97699eee12586/scipy-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:721d6b4ef5dc82ca8968c25b111e307083d7ca9091bc38163fb89243e85e3889", size = 35503415, upload-time = "2025-05-08T16:05:34.699Z" }, - { url = "https://files.pythonhosted.org/packages/bd/37/89f19c8c05505d0601ed5650156e50eb881ae3918786c8fd7262b4ee66d3/scipy-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39cb9c62e471b1bb3750066ecc3a3f3052b37751c7c3dfd0fd7e48900ed52982", size = 37652622, upload-time = "2025-05-08T16:05:40.762Z" }, - { url = "https://files.pythonhosted.org/packages/7e/31/be59513aa9695519b18e1851bb9e487de66f2d31f835201f1b42f5d4d475/scipy-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:795c46999bae845966368a3c013e0e00947932d68e235702b5c3f6ea799aa8c9", size = 37244796, upload-time = "2025-05-08T16:05:48.119Z" }, - { url = "https://files.pythonhosted.org/packages/10/c0/4f5f3eeccc235632aab79b27a74a9130c6c35df358129f7ac8b29f562ac7/scipy-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:18aaacb735ab38b38db42cb01f6b92a2d0d4b6aabefeb07f02849e47f8fb3594", size = 40047684, upload-time = "2025-05-08T16:05:54.22Z" }, - { url = "https://files.pythonhosted.org/packages/ab/a7/0ddaf514ce8a8714f6ed243a2b391b41dbb65251affe21ee3077ec45ea9a/scipy-1.15.3-cp311-cp311-win_amd64.whl", hash = "sha256:ae48a786a28412d744c62fd7816a4118ef97e5be0bee968ce8f0a2fba7acf3bb", size = 41246504, upload-time = "2025-05-08T16:06:00.437Z" }, - { url = "https://files.pythonhosted.org/packages/37/4b/683aa044c4162e10ed7a7ea30527f2cbd92e6999c10a8ed8edb253836e9c/scipy-1.15.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6ac6310fdbfb7aa6612408bd2f07295bcbd3fda00d2d702178434751fe48e019", size = 38766735, upload-time = "2025-05-08T16:06:06.471Z" }, - { url = "https://files.pythonhosted.org/packages/7b/7e/f30be3d03de07f25dc0ec926d1681fed5c732d759ac8f51079708c79e680/scipy-1.15.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:185cd3d6d05ca4b44a8f1595af87f9c372bb6acf9c808e99aa3e9aa03bd98cf6", size = 30173284, upload-time = "2025-05-08T16:06:11.686Z" }, - { url = "https://files.pythonhosted.org/packages/07/9c/0ddb0d0abdabe0d181c1793db51f02cd59e4901da6f9f7848e1f96759f0d/scipy-1.15.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:05dc6abcd105e1a29f95eada46d4a3f251743cfd7d3ae8ddb4088047f24ea477", size = 22446958, upload-time = "2025-05-08T16:06:15.97Z" }, - { url = "https://files.pythonhosted.org/packages/af/43/0bce905a965f36c58ff80d8bea33f1f9351b05fad4beaad4eae34699b7a1/scipy-1.15.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:06efcba926324df1696931a57a176c80848ccd67ce6ad020c810736bfd58eb1c", size = 25242454, upload-time = "2025-05-08T16:06:20.394Z" }, - { url = "https://files.pythonhosted.org/packages/56/30/a6f08f84ee5b7b28b4c597aca4cbe545535c39fe911845a96414700b64ba/scipy-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05045d8b9bfd807ee1b9f38761993297b10b245f012b11b13b91ba8945f7e45", size = 35210199, upload-time = "2025-05-08T16:06:26.159Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1f/03f52c282437a168ee2c7c14a1a0d0781a9a4a8962d84ac05c06b4c5b555/scipy-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:271e3713e645149ea5ea3e97b57fdab61ce61333f97cfae392c28ba786f9bb49", size = 37309455, upload-time = "2025-05-08T16:06:32.778Z" }, - { url = "https://files.pythonhosted.org/packages/89/b1/fbb53137f42c4bf630b1ffdfc2151a62d1d1b903b249f030d2b1c0280af8/scipy-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6cfd56fc1a8e53f6e89ba3a7a7251f7396412d655bca2aa5611c8ec9a6784a1e", size = 36885140, upload-time = "2025-05-08T16:06:39.249Z" }, - { url = "https://files.pythonhosted.org/packages/2e/2e/025e39e339f5090df1ff266d021892694dbb7e63568edcfe43f892fa381d/scipy-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ff17c0bb1cb32952c09217d8d1eed9b53d1463e5f1dd6052c7857f83127d539", size = 39710549, upload-time = "2025-05-08T16:06:45.729Z" }, - { url = "https://files.pythonhosted.org/packages/e6/eb/3bf6ea8ab7f1503dca3a10df2e4b9c3f6b3316df07f6c0ded94b281c7101/scipy-1.15.3-cp312-cp312-win_amd64.whl", hash = "sha256:52092bc0472cfd17df49ff17e70624345efece4e1a12b23783a1ac59a1b728ed", size = 40966184, upload-time = "2025-05-08T16:06:52.623Z" }, - { url = "https://files.pythonhosted.org/packages/73/18/ec27848c9baae6e0d6573eda6e01a602e5649ee72c27c3a8aad673ebecfd/scipy-1.15.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c620736bcc334782e24d173c0fdbb7590a0a436d2fdf39310a8902505008759", size = 38728256, upload-time = "2025-05-08T16:06:58.696Z" }, - { url = "https://files.pythonhosted.org/packages/74/cd/1aef2184948728b4b6e21267d53b3339762c285a46a274ebb7863c9e4742/scipy-1.15.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:7e11270a000969409d37ed399585ee530b9ef6aa99d50c019de4cb01e8e54e62", size = 30109540, upload-time = "2025-05-08T16:07:04.209Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d8/59e452c0a255ec352bd0a833537a3bc1bfb679944c4938ab375b0a6b3a3e/scipy-1.15.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:8c9ed3ba2c8a2ce098163a9bdb26f891746d02136995df25227a20e71c396ebb", size = 22383115, upload-time = "2025-05-08T16:07:08.998Z" }, - { url = "https://files.pythonhosted.org/packages/08/f5/456f56bbbfccf696263b47095291040655e3cbaf05d063bdc7c7517f32ac/scipy-1.15.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0bdd905264c0c9cfa74a4772cdb2070171790381a5c4d312c973382fc6eaf730", size = 25163884, upload-time = "2025-05-08T16:07:14.091Z" }, - { url = "https://files.pythonhosted.org/packages/a2/66/a9618b6a435a0f0c0b8a6d0a2efb32d4ec5a85f023c2b79d39512040355b/scipy-1.15.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79167bba085c31f38603e11a267d862957cbb3ce018d8b38f79ac043bc92d825", size = 35174018, upload-time = "2025-05-08T16:07:19.427Z" }, - { url = "https://files.pythonhosted.org/packages/b5/09/c5b6734a50ad4882432b6bb7c02baf757f5b2f256041da5df242e2d7e6b6/scipy-1.15.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9deabd6d547aee2c9a81dee6cc96c6d7e9a9b1953f74850c179f91fdc729cb7", size = 37269716, upload-time = "2025-05-08T16:07:25.712Z" }, - { url = "https://files.pythonhosted.org/packages/77/0a/eac00ff741f23bcabd352731ed9b8995a0a60ef57f5fd788d611d43d69a1/scipy-1.15.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dde4fc32993071ac0c7dd2d82569e544f0bdaff66269cb475e0f369adad13f11", size = 36872342, upload-time = "2025-05-08T16:07:31.468Z" }, - { url = "https://files.pythonhosted.org/packages/fe/54/4379be86dd74b6ad81551689107360d9a3e18f24d20767a2d5b9253a3f0a/scipy-1.15.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f77f853d584e72e874d87357ad70f44b437331507d1c311457bed8ed2b956126", size = 39670869, upload-time = "2025-05-08T16:07:38.002Z" }, - { url = "https://files.pythonhosted.org/packages/87/2e/892ad2862ba54f084ffe8cc4a22667eaf9c2bcec6d2bff1d15713c6c0703/scipy-1.15.3-cp313-cp313-win_amd64.whl", hash = "sha256:b90ab29d0c37ec9bf55424c064312930ca5f4bde15ee8619ee44e69319aab163", size = 40988851, upload-time = "2025-05-08T16:08:33.671Z" }, - { url = "https://files.pythonhosted.org/packages/1b/e9/7a879c137f7e55b30d75d90ce3eb468197646bc7b443ac036ae3fe109055/scipy-1.15.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3ac07623267feb3ae308487c260ac684b32ea35fd81e12845039952f558047b8", size = 38863011, upload-time = "2025-05-08T16:07:44.039Z" }, - { url = "https://files.pythonhosted.org/packages/51/d1/226a806bbd69f62ce5ef5f3ffadc35286e9fbc802f606a07eb83bf2359de/scipy-1.15.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6487aa99c2a3d509a5227d9a5e889ff05830a06b2ce08ec30df6d79db5fcd5c5", size = 30266407, upload-time = "2025-05-08T16:07:49.891Z" }, - { url = "https://files.pythonhosted.org/packages/e5/9b/f32d1d6093ab9eeabbd839b0f7619c62e46cc4b7b6dbf05b6e615bbd4400/scipy-1.15.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:50f9e62461c95d933d5c5ef4a1f2ebf9a2b4e83b0db374cb3f1de104d935922e", size = 22540030, upload-time = "2025-05-08T16:07:54.121Z" }, - { url = "https://files.pythonhosted.org/packages/e7/29/c278f699b095c1a884f29fda126340fcc201461ee8bfea5c8bdb1c7c958b/scipy-1.15.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:14ed70039d182f411ffc74789a16df3835e05dc469b898233a245cdfd7f162cb", size = 25218709, upload-time = "2025-05-08T16:07:58.506Z" }, - { url = "https://files.pythonhosted.org/packages/24/18/9e5374b617aba742a990581373cd6b68a2945d65cc588482749ef2e64467/scipy-1.15.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a769105537aa07a69468a0eefcd121be52006db61cdd8cac8a0e68980bbb723", size = 34809045, upload-time = "2025-05-08T16:08:03.929Z" }, - { url = "https://files.pythonhosted.org/packages/e1/fe/9c4361e7ba2927074360856db6135ef4904d505e9b3afbbcb073c4008328/scipy-1.15.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db984639887e3dffb3928d118145ffe40eff2fa40cb241a306ec57c219ebbbb", size = 36703062, upload-time = "2025-05-08T16:08:09.558Z" }, - { url = "https://files.pythonhosted.org/packages/b7/8e/038ccfe29d272b30086b25a4960f757f97122cb2ec42e62b460d02fe98e9/scipy-1.15.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:40e54d5c7e7ebf1aa596c374c49fa3135f04648a0caabcb66c52884b943f02b4", size = 36393132, upload-time = "2025-05-08T16:08:15.34Z" }, - { url = "https://files.pythonhosted.org/packages/10/7e/5c12285452970be5bdbe8352c619250b97ebf7917d7a9a9e96b8a8140f17/scipy-1.15.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5e721fed53187e71d0ccf382b6bf977644c533e506c4d33c3fb24de89f5c3ed5", size = 38979503, upload-time = "2025-05-08T16:08:21.513Z" }, - { url = "https://files.pythonhosted.org/packages/81/06/0a5e5349474e1cbc5757975b21bd4fad0e72ebf138c5592f191646154e06/scipy-1.15.3-cp313-cp313t-win_amd64.whl", hash = "sha256:76ad1fb5f8752eabf0fa02e4cc0336b4e8f021e2d5f061ed37d6d264db35e3ca", size = 40308097, upload-time = "2025-05-08T16:08:27.627Z" }, + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/d4/40988bf3b8e34feec1d0e6a051446b1f66225f8529b9309becaeef62b6c4/scikit_learn-1.8.0.tar.gz", hash = "sha256:9bccbb3b40e3de10351f8f5068e105d0f4083b1a65fa07b6634fbc401a6287fd", size = 7335585, upload-time = "2025-12-10T07:08:53.618Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/74/e6a7cc4b820e95cc38cf36cd74d5aa2b42e8ffc2d21fe5a9a9c45c1c7630/scikit_learn-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5fb63362b5a7ddab88e52b6dbb47dac3fd7dafeee740dc6c8d8a446ddedade8e", size = 8548242, upload-time = "2025-12-10T07:07:51.568Z" }, + { url = "https://files.pythonhosted.org/packages/49/d8/9be608c6024d021041c7f0b3928d4749a706f4e2c3832bbede4fb4f58c95/scikit_learn-1.8.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:5025ce924beccb28298246e589c691fe1b8c1c96507e6d27d12c5fadd85bfd76", size = 8079075, upload-time = "2025-12-10T07:07:53.697Z" }, + { url = "https://files.pythonhosted.org/packages/dd/47/f187b4636ff80cc63f21cd40b7b2d177134acaa10f6bb73746130ee8c2e5/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4496bb2cf7a43ce1a2d7524a79e40bc5da45cf598dbf9545b7e8316ccba47bb4", size = 8660492, upload-time = "2025-12-10T07:07:55.574Z" }, + { url = "https://files.pythonhosted.org/packages/97/74/b7a304feb2b49df9fafa9382d4d09061a96ee9a9449a7cbea7988dda0828/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0bcfe4d0d14aec44921545fd2af2338c7471de9cb701f1da4c9d85906ab847a", size = 8931904, upload-time = "2025-12-10T07:07:57.666Z" }, + { url = "https://files.pythonhosted.org/packages/9f/c4/0ab22726a04ede56f689476b760f98f8f46607caecff993017ac1b64aa5d/scikit_learn-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:35c007dedb2ffe38fe3ee7d201ebac4a2deccd2408e8621d53067733e3c74809", size = 8019359, upload-time = "2025-12-10T07:07:59.838Z" }, + { url = "https://files.pythonhosted.org/packages/24/90/344a67811cfd561d7335c1b96ca21455e7e472d281c3c279c4d3f2300236/scikit_learn-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:8c497fff237d7b4e07e9ef1a640887fa4fb765647f86fbe00f969ff6280ce2bb", size = 7641898, upload-time = "2025-12-10T07:08:01.36Z" }, + { url = "https://files.pythonhosted.org/packages/03/aa/e22e0768512ce9255eba34775be2e85c2048da73da1193e841707f8f039c/scikit_learn-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0d6ae97234d5d7079dc0040990a6f7aeb97cb7fa7e8945f1999a429b23569e0a", size = 8513770, upload-time = "2025-12-10T07:08:03.251Z" }, + { url = "https://files.pythonhosted.org/packages/58/37/31b83b2594105f61a381fc74ca19e8780ee923be2d496fcd8d2e1147bd99/scikit_learn-1.8.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:edec98c5e7c128328124a029bceb09eda2d526997780fef8d65e9a69eead963e", size = 8044458, upload-time = "2025-12-10T07:08:05.336Z" }, + { url = "https://files.pythonhosted.org/packages/2d/5a/3f1caed8765f33eabb723596666da4ebbf43d11e96550fb18bdec42b467b/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:74b66d8689d52ed04c271e1329f0c61635bcaf5b926db9b12d58914cdc01fe57", size = 8610341, upload-time = "2025-12-10T07:08:07.732Z" }, + { url = "https://files.pythonhosted.org/packages/38/cf/06896db3f71c75902a8e9943b444a56e727418f6b4b4a90c98c934f51ed4/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8fdf95767f989b0cfedb85f7ed8ca215d4be728031f56ff5a519ee1e3276dc2e", size = 8900022, upload-time = "2025-12-10T07:08:09.862Z" }, + { url = "https://files.pythonhosted.org/packages/1c/f9/9b7563caf3ec8873e17a31401858efab6b39a882daf6c1bfa88879c0aa11/scikit_learn-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:2de443b9373b3b615aec1bb57f9baa6bb3a9bd093f1269ba95c17d870422b271", size = 7989409, upload-time = "2025-12-10T07:08:12.028Z" }, + { url = "https://files.pythonhosted.org/packages/49/bd/1f4001503650e72c4f6009ac0c4413cb17d2d601cef6f71c0453da2732fc/scikit_learn-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:eddde82a035681427cbedded4e6eff5e57fa59216c2e3e90b10b19ab1d0a65c3", size = 7619760, upload-time = "2025-12-10T07:08:13.688Z" }, + { url = "https://files.pythonhosted.org/packages/d2/7d/a630359fc9dcc95496588c8d8e3245cc8fd81980251079bc09c70d41d951/scikit_learn-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7cc267b6108f0a1499a734167282c00c4ebf61328566b55ef262d48e9849c735", size = 8826045, upload-time = "2025-12-10T07:08:15.215Z" }, + { url = "https://files.pythonhosted.org/packages/cc/56/a0c86f6930cfcd1c7054a2bc417e26960bb88d32444fe7f71d5c2cfae891/scikit_learn-1.8.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:fe1c011a640a9f0791146011dfd3c7d9669785f9fed2b2a5f9e207536cf5c2fd", size = 8420324, upload-time = "2025-12-10T07:08:17.561Z" }, + { url = "https://files.pythonhosted.org/packages/46/1e/05962ea1cebc1cf3876667ecb14c283ef755bf409993c5946ade3b77e303/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72358cce49465d140cc4e7792015bb1f0296a9742d5622c67e31399b75468b9e", size = 8680651, upload-time = "2025-12-10T07:08:19.952Z" }, + { url = "https://files.pythonhosted.org/packages/fe/56/a85473cd75f200c9759e3a5f0bcab2d116c92a8a02ee08ccd73b870f8bb4/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:80832434a6cc114f5219211eec13dcbc16c2bac0e31ef64c6d346cde3cf054cb", size = 8925045, upload-time = "2025-12-10T07:08:22.11Z" }, + { url = "https://files.pythonhosted.org/packages/cc/b7/64d8cfa896c64435ae57f4917a548d7ac7a44762ff9802f75a79b77cb633/scikit_learn-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ee787491dbfe082d9c3013f01f5991658b0f38aa8177e4cd4bf434c58f551702", size = 8507994, upload-time = "2025-12-10T07:08:23.943Z" }, + { url = "https://files.pythonhosted.org/packages/5e/37/e192ea709551799379958b4c4771ec507347027bb7c942662c7fbeba31cb/scikit_learn-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf97c10a3f5a7543f9b88cbf488d33d175e9146115a451ae34568597ba33dcde", size = 7869518, upload-time = "2025-12-10T07:08:25.71Z" }, ] [[package]] name = "scipy" version = "1.16.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13'", - "python_full_version >= '3.11' and python_full_version < '3.13'", -] dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb", size = 30597883, upload-time = "2025-10-28T17:38:54.068Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9b/5f/6f37d7439de1455ce9c5a556b8d1db0979f03a796c030bafdf08d35b7bf9/scipy-1.16.3-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:40be6cf99e68b6c4321e9f8782e7d5ff8265af28ef2cd56e9c9b2638fa08ad97", size = 36630881, upload-time = "2025-10-28T17:31:47.104Z" }, - { url = "https://files.pythonhosted.org/packages/7c/89/d70e9f628749b7e4db2aa4cd89735502ff3f08f7b9b27d2e799485987cd9/scipy-1.16.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:8be1ca9170fcb6223cc7c27f4305d680ded114a1567c0bd2bfcbf947d1b17511", size = 28941012, upload-time = "2025-10-28T17:31:53.411Z" }, - { url = "https://files.pythonhosted.org/packages/a8/a8/0e7a9a6872a923505dbdf6bb93451edcac120363131c19013044a1e7cb0c/scipy-1.16.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bea0a62734d20d67608660f69dcda23e7f90fb4ca20974ab80b6ed40df87a005", size = 20931935, upload-time = "2025-10-28T17:31:57.361Z" }, - { url = "https://files.pythonhosted.org/packages/bd/c7/020fb72bd79ad798e4dbe53938543ecb96b3a9ac3fe274b7189e23e27353/scipy-1.16.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:2a207a6ce9c24f1951241f4693ede2d393f59c07abc159b2cb2be980820e01fb", size = 23534466, upload-time = "2025-10-28T17:32:01.875Z" }, - { url = "https://files.pythonhosted.org/packages/be/a0/668c4609ce6dbf2f948e167836ccaf897f95fb63fa231c87da7558a374cd/scipy-1.16.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:532fb5ad6a87e9e9cd9c959b106b73145a03f04c7d57ea3e6f6bb60b86ab0876", size = 33593618, upload-time = "2025-10-28T17:32:06.902Z" }, - { url = "https://files.pythonhosted.org/packages/ca/6e/8942461cf2636cdae083e3eb72622a7fbbfa5cf559c7d13ab250a5dbdc01/scipy-1.16.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0151a0749efeaaab78711c78422d413c583b8cdd2011a3c1d6c794938ee9fdb2", size = 35899798, upload-time = "2025-10-28T17:32:12.665Z" }, - { url = "https://files.pythonhosted.org/packages/79/e8/d0f33590364cdbd67f28ce79368b373889faa4ee959588beddf6daef9abe/scipy-1.16.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7180967113560cca57418a7bc719e30366b47959dd845a93206fbed693c867e", size = 36226154, upload-time = "2025-10-28T17:32:17.961Z" }, - { url = "https://files.pythonhosted.org/packages/39/c1/1903de608c0c924a1749c590064e65810f8046e437aba6be365abc4f7557/scipy-1.16.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:deb3841c925eeddb6afc1e4e4a45e418d19ec7b87c5df177695224078e8ec733", size = 38878540, upload-time = "2025-10-28T17:32:23.907Z" }, - { url = "https://files.pythonhosted.org/packages/f1/d0/22ec7036ba0b0a35bccb7f25ab407382ed34af0b111475eb301c16f8a2e5/scipy-1.16.3-cp311-cp311-win_amd64.whl", hash = "sha256:53c3844d527213631e886621df5695d35e4f6a75f620dca412bcd292f6b87d78", size = 38722107, upload-time = "2025-10-28T17:32:29.921Z" }, - { url = "https://files.pythonhosted.org/packages/7b/60/8a00e5a524bb3bf8898db1650d350f50e6cffb9d7a491c561dc9826c7515/scipy-1.16.3-cp311-cp311-win_arm64.whl", hash = "sha256:9452781bd879b14b6f055b26643703551320aa8d79ae064a71df55c00286a184", size = 25506272, upload-time = "2025-10-28T17:32:34.577Z" }, { url = "https://files.pythonhosted.org/packages/40/41/5bf55c3f386b1643812f3a5674edf74b26184378ef0f3e7c7a09a7e2ca7f/scipy-1.16.3-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:81fc5827606858cf71446a5e98715ba0e11f0dbc83d71c7409d05486592a45d6", size = 36659043, upload-time = "2025-10-28T17:32:40.285Z" }, { url = "https://files.pythonhosted.org/packages/1e/0f/65582071948cfc45d43e9870bf7ca5f0e0684e165d7c9ef4e50d783073eb/scipy-1.16.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:c97176013d404c7346bf57874eaac5187d969293bf40497140b0a2b2b7482e07", size = 28898986, upload-time = "2025-10-28T17:32:45.325Z" }, { url = "https://files.pythonhosted.org/packages/96/5e/36bf3f0ac298187d1ceadde9051177d6a4fe4d507e8f59067dc9dd39e650/scipy-1.16.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2b71d93c8a9936046866acebc915e2af2e292b883ed6e2cbe5c34beb094b82d9", size = 20889814, upload-time = "2025-10-28T17:32:49.277Z" }, @@ -1289,33 +1835,73 @@ wheels = [ [[package]] name = "scipy-stubs" -version = "1.15.3.0" +version = "1.16.3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", -] dependencies = [ - { name = "optype", version = "0.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "optype", extra = ["numpy"] }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/35c43bd7d412add4adcd68475702571b2489b50c40b6564f808b2355e452/scipy_stubs-1.15.3.0.tar.gz", hash = "sha256:e8f76c9887461cf9424c1e2ad78ea5dac71dd4cbb383dc85f91adfe8f74d1e17", size = 275699, upload-time = "2025-05-08T16:58:35.139Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/68/c53c3bce6bd069a164015be1be2671c968b526be4af1e85db64c88f04546/scipy_stubs-1.16.3.0.tar.gz", hash = "sha256:d6943c085e47a1ed431309f9ca582b6a206a9db808a036132a0bf01ebc34b506", size = 356462, upload-time = "2025-10-28T22:05:31.198Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6c/42/cd8dc81f8060de1f14960885ad5b2d2651f41de8b93d09f3f919d6567a5a/scipy_stubs-1.15.3.0-py3-none-any.whl", hash = "sha256:a251254cf4fd6e7fb87c55c1feee92d32ddbc1f542ecdf6a0159cdb81c2fb62d", size = 459062, upload-time = "2025-05-08T16:58:33.356Z" }, + { url = "https://files.pythonhosted.org/packages/86/1c/0ba7305fa01cfe7a6f1b8c86ccdd1b7a0d43fa9bd769c059995311e291a2/scipy_stubs-1.16.3.0-py3-none-any.whl", hash = "sha256:90e5d82ced2183ef3c5c0a28a77df8cc227458624364fa0ff975ad24fa89d6ad", size = 557713, upload-time = "2025-10-28T22:05:29.454Z" }, ] [[package]] -name = "scipy-stubs" -version = "1.16.3.0" +name = "sentencepiece" +version = "0.2.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13'", - "python_full_version >= '3.11' and python_full_version < '3.13'", +sdist = { url = "https://files.pythonhosted.org/packages/15/15/2e7a025fc62d764b151ae6d0f2a92f8081755ebe8d4a64099accc6f77ba6/sentencepiece-0.2.1.tar.gz", hash = "sha256:8138cec27c2f2282f4a34d9a016e3374cd40e5c6e9cb335063db66a0a3b71fad", size = 3228515, upload-time = "2025-08-12T07:00:51.718Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/be/32ce495aa1d0e0c323dcb1ba87096037358edee539cac5baf8755a6bd396/sentencepiece-0.2.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:57cae326c8727de58c85977b175af132a7138d84c764635d7e71bbee7e774133", size = 1943152, upload-time = "2025-08-12T06:59:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/88/7e/ff23008899a58678e98c6ff592bf4d368eee5a71af96d0df6b38a039dd4f/sentencepiece-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:56dd39a3c4d6493db3cdca7e8cc68c6b633f0d4195495cbadfcf5af8a22d05a6", size = 1325651, upload-time = "2025-08-12T06:59:41.536Z" }, + { url = "https://files.pythonhosted.org/packages/19/84/42eb3ce4796777a1b5d3699dfd4dca85113e68b637f194a6c8d786f16a04/sentencepiece-0.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d9381351182ff9888cc80e41c632e7e274b106f450de33d67a9e8f6043da6f76", size = 1253645, upload-time = "2025-08-12T06:59:42.903Z" }, + { url = "https://files.pythonhosted.org/packages/89/fa/d3d5ebcba3cb9e6d3775a096251860c41a6bc53a1b9461151df83fe93255/sentencepiece-0.2.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99f955df238021bf11f0fc37cdb54fd5e5b5f7fd30ecc3d93fb48b6815437167", size = 1316273, upload-time = "2025-08-12T06:59:44.476Z" }, + { url = "https://files.pythonhosted.org/packages/04/88/14f2f4a2b922d8b39be45bf63d79e6cd3a9b2f248b2fcb98a69b12af12f5/sentencepiece-0.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0cdfecef430d985f1c2bcbfff3defd1d95dae876fbd0173376012d2d7d24044b", size = 1387881, upload-time = "2025-08-12T06:59:46.09Z" }, + { url = "https://files.pythonhosted.org/packages/fd/b8/903e5ccb77b4ef140605d5d71b4f9e0ad95d456d6184688073ed11712809/sentencepiece-0.2.1-cp312-cp312-win32.whl", hash = "sha256:a483fd29a34c3e34c39ac5556b0a90942bec253d260235729e50976f5dba1068", size = 999540, upload-time = "2025-08-12T06:59:48.023Z" }, + { url = "https://files.pythonhosted.org/packages/2d/81/92df5673c067148c2545b1bfe49adfd775bcc3a169a047f5a0e6575ddaca/sentencepiece-0.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4cdc7c36234fda305e85c32949c5211faaf8dd886096c7cea289ddc12a2d02de", size = 1054671, upload-time = "2025-08-12T06:59:49.895Z" }, + { url = "https://files.pythonhosted.org/packages/fe/02/c5e3bc518655d714622bec87d83db9cdba1cd0619a4a04e2109751c4f47f/sentencepiece-0.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:daeb5e9e9fcad012324807856113708614d534f596d5008638eb9b40112cd9e4", size = 1033923, upload-time = "2025-08-12T06:59:51.952Z" }, + { url = "https://files.pythonhosted.org/packages/ba/4a/85fbe1706d4d04a7e826b53f327c4b80f849cf1c7b7c5e31a20a97d8f28b/sentencepiece-0.2.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dcd8161eee7b41aae57ded06272905dbd680a0a04b91edd0f64790c796b2f706", size = 1943150, upload-time = "2025-08-12T06:59:53.588Z" }, + { url = "https://files.pythonhosted.org/packages/c2/83/4cfb393e287509fc2155480b9d184706ef8d9fa8cbf5505d02a5792bf220/sentencepiece-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c6c8f42949f419ff8c7e9960dbadcfbc982d7b5efc2f6748210d3dd53a7de062", size = 1325651, upload-time = "2025-08-12T06:59:55.073Z" }, + { url = "https://files.pythonhosted.org/packages/8d/de/5a007fb53b1ab0aafc69d11a5a3dd72a289d5a3e78dcf2c3a3d9b14ffe93/sentencepiece-0.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:097f3394e99456e9e4efba1737c3749d7e23563dd1588ce71a3d007f25475fff", size = 1253641, upload-time = "2025-08-12T06:59:56.562Z" }, + { url = "https://files.pythonhosted.org/packages/2c/d2/f552be5928105588f4f4d66ee37dd4c61460d8097e62d0e2e0eec41bc61d/sentencepiece-0.2.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d7b670879c370d350557edabadbad1f6561a9e6968126e6debca4029e5547820", size = 1316271, upload-time = "2025-08-12T06:59:58.109Z" }, + { url = "https://files.pythonhosted.org/packages/96/df/0cfe748ace5485be740fed9476dee7877f109da32ed0d280312c94ec259f/sentencepiece-0.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c7f0fd2f2693309e6628aeeb2e2faf6edd221134dfccac3308ca0de01f8dab47", size = 1387882, upload-time = "2025-08-12T07:00:00.701Z" }, + { url = "https://files.pythonhosted.org/packages/ac/dd/f7774d42a881ced8e1739f393ab1e82ece39fc9abd4779e28050c2e975b5/sentencepiece-0.2.1-cp313-cp313-win32.whl", hash = "sha256:92b3816aa2339355fda2c8c4e021a5de92180b00aaccaf5e2808972e77a4b22f", size = 999541, upload-time = "2025-08-12T07:00:02.709Z" }, + { url = "https://files.pythonhosted.org/packages/dd/e9/932b9eae6fd7019548321eee1ab8d5e3b3d1294df9d9a0c9ac517c7b636d/sentencepiece-0.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:10ed3dab2044c47f7a2e7b4969b0c430420cdd45735d78c8f853191fa0e3148b", size = 1054669, upload-time = "2025-08-12T07:00:04.915Z" }, + { url = "https://files.pythonhosted.org/packages/c9/3a/76488a00ea7d6931689cda28726a1447d66bf1a4837943489314593d5596/sentencepiece-0.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:ac650534e2251083c5f75dde4ff28896ce7c8904133dc8fef42780f4d5588fcd", size = 1033922, upload-time = "2025-08-12T07:00:06.496Z" }, + { url = "https://files.pythonhosted.org/packages/4a/b6/08fe2ce819e02ccb0296f4843e3f195764ce9829cbda61b7513f29b95718/sentencepiece-0.2.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:8dd4b477a7b069648d19363aad0cab9bad2f4e83b2d179be668efa672500dc94", size = 1946052, upload-time = "2025-08-12T07:00:08.136Z" }, + { url = "https://files.pythonhosted.org/packages/ab/d9/1ea0e740591ff4c6fc2b6eb1d7510d02f3fb885093f19b2f3abd1363b402/sentencepiece-0.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0c0f672da370cc490e4c59d89e12289778310a0e71d176c541e4834759e1ae07", size = 1327408, upload-time = "2025-08-12T07:00:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/99/7e/1fb26e8a21613f6200e1ab88824d5d203714162cf2883248b517deb500b7/sentencepiece-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad8493bea8432dae8d6830365352350f3b4144415a1d09c4c8cb8d30cf3b6c3c", size = 1254857, upload-time = "2025-08-12T07:00:11.021Z" }, + { url = "https://files.pythonhosted.org/packages/bc/85/c72fd1f3c7a6010544d6ae07f8ddb38b5e2a7e33bd4318f87266c0bbafbf/sentencepiece-0.2.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b81a24733726e3678d2db63619acc5a8dccd074f7aa7a54ecd5ca33ca6d2d596", size = 1315722, upload-time = "2025-08-12T07:00:12.989Z" }, + { url = "https://files.pythonhosted.org/packages/4a/e8/661e5bd82a8aa641fd6c1020bd0e890ef73230a2b7215ddf9c8cd8e941c2/sentencepiece-0.2.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0a81799d0a68d618e89063fb423c3001a034c893069135ffe51fee439ae474d6", size = 1387452, upload-time = "2025-08-12T07:00:15.088Z" }, + { url = "https://files.pythonhosted.org/packages/99/5e/ae66c361023a470afcbc1fbb8da722c72ea678a2fcd9a18f1a12598c7501/sentencepiece-0.2.1-cp313-cp313t-win32.whl", hash = "sha256:89a3ea015517c42c0341d0d962f3e6aaf2cf10d71b1932d475c44ba48d00aa2b", size = 1002501, upload-time = "2025-08-12T07:00:16.966Z" }, + { url = "https://files.pythonhosted.org/packages/c1/03/d332828c4ff764e16c1b56c2c8f9a33488bbe796b53fb6b9c4205ddbf167/sentencepiece-0.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:33f068c9382dc2e7c228eedfd8163b52baa86bb92f50d0488bf2b7da7032e484", size = 1057555, upload-time = "2025-08-12T07:00:18.573Z" }, + { url = "https://files.pythonhosted.org/packages/88/14/5aee0bf0864df9bd82bd59e7711362908e4935e3f9cdc1f57246b5d5c9b9/sentencepiece-0.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:b3616ad246f360e52c85781e47682d31abfb6554c779e42b65333d4b5f44ecc0", size = 1036042, upload-time = "2025-08-12T07:00:20.209Z" }, ] -dependencies = [ - { name = "optype", version = "0.14.0", source = { registry = "https://pypi.org/simple" }, extra = ["numpy"], marker = "python_full_version >= '3.11'" }, + +[[package]] +name = "setuptools" +version = "81.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/1c/73e719955c59b8e424d015ab450f51c0af856ae46ea2da83eba51cc88de1/setuptools-81.0.0.tar.gz", hash = "sha256:487b53915f52501f0a79ccfd0c02c165ffe06631443a886740b91af4b7a5845a", size = 1198299, upload-time = "2026-02-06T21:10:39.601Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/e3/c164c88b2e5ce7b24d667b9bd83589cf4f3520d97cad01534cd3c4f55fdb/setuptools-81.0.0-py3-none-any.whl", hash = "sha256:fdd925d5c5d9f62e4b74b30d6dd7828ce236fd6ed998a08d81de62ce5a6310d6", size = 1062021, upload-time = "2026-02-06T21:10:37.175Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bd/68/c53c3bce6bd069a164015be1be2671c968b526be4af1e85db64c88f04546/scipy_stubs-1.16.3.0.tar.gz", hash = "sha256:d6943c085e47a1ed431309f9ca582b6a206a9db808a036132a0bf01ebc34b506", size = 356462, upload-time = "2025-10-28T22:05:31.198Z" } + +[[package]] +name = "shellingham" +version = "1.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/86/1c/0ba7305fa01cfe7a6f1b8c86ccdd1b7a0d43fa9bd769c059995311e291a2/scipy_stubs-1.16.3.0-py3-none-any.whl", hash = "sha256:90e5d82ced2183ef3c5c0a28a77df8cc227458624364fa0ff975ad24fa89d6ad", size = 557713, upload-time = "2025-10-28T22:05:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, ] [[package]] @@ -1327,6 +1913,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, ] +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + [[package]] name = "tenacity" version = "9.1.2" @@ -1346,36 +1944,157 @@ wheels = [ ] [[package]] -name = "tomli" -version = "2.3.0" +name = "tiktoken" +version = "0.12.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/52/ed/3f73f72945444548f33eba9a87fc7a6e969915e7b1acc8260b30e1f76a2f/tomli-2.3.0.tar.gz", hash = "sha256:64be704a875d2a59753d80ee8a533c3fe183e3f06807ff7dc2232938ccb01549", size = 17392, upload-time = "2025-10-08T22:01:47.119Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/2e/299f62b401438d5fe1624119c723f5d877acc86a4c2492da405626665f12/tomli-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:88bd15eb972f3664f5ed4b57c1634a97153b4bac4479dcb6a495f41921eb7f45", size = 153236, upload-time = "2025-10-08T22:01:00.137Z" }, - { url = "https://files.pythonhosted.org/packages/86/7f/d8fffe6a7aefdb61bced88fcb5e280cfd71e08939da5894161bd71bea022/tomli-2.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:883b1c0d6398a6a9d29b508c331fa56adbcdff647f6ace4dfca0f50e90dfd0ba", size = 148084, upload-time = "2025-10-08T22:01:01.63Z" }, - { url = "https://files.pythonhosted.org/packages/47/5c/24935fb6a2ee63e86d80e4d3b58b222dafaf438c416752c8b58537c8b89a/tomli-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d1381caf13ab9f300e30dd8feadb3de072aeb86f1d34a8569453ff32a7dea4bf", size = 234832, upload-time = "2025-10-08T22:01:02.543Z" }, - { url = "https://files.pythonhosted.org/packages/89/da/75dfd804fc11e6612846758a23f13271b76d577e299592b4371a4ca4cd09/tomli-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0e285d2649b78c0d9027570d4da3425bdb49830a6156121360b3f8511ea3441", size = 242052, upload-time = "2025-10-08T22:01:03.836Z" }, - { url = "https://files.pythonhosted.org/packages/70/8c/f48ac899f7b3ca7eb13af73bacbc93aec37f9c954df3c08ad96991c8c373/tomli-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0a154a9ae14bfcf5d8917a59b51ffd5a3ac1fd149b71b47a3a104ca4edcfa845", size = 239555, upload-time = "2025-10-08T22:01:04.834Z" }, - { url = "https://files.pythonhosted.org/packages/ba/28/72f8afd73f1d0e7829bfc093f4cb98ce0a40ffc0cc997009ee1ed94ba705/tomli-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:74bf8464ff93e413514fefd2be591c3b0b23231a77f901db1eb30d6f712fc42c", size = 245128, upload-time = "2025-10-08T22:01:05.84Z" }, - { url = "https://files.pythonhosted.org/packages/b6/eb/a7679c8ac85208706d27436e8d421dfa39d4c914dcf5fa8083a9305f58d9/tomli-2.3.0-cp311-cp311-win32.whl", hash = "sha256:00b5f5d95bbfc7d12f91ad8c593a1659b6387b43f054104cda404be6bda62456", size = 96445, upload-time = "2025-10-08T22:01:06.896Z" }, - { url = "https://files.pythonhosted.org/packages/0a/fe/3d3420c4cb1ad9cb462fb52967080575f15898da97e21cb6f1361d505383/tomli-2.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:4dc4ce8483a5d429ab602f111a93a6ab1ed425eae3122032db7e9acf449451be", size = 107165, upload-time = "2025-10-08T22:01:08.107Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b7/40f36368fcabc518bb11c8f06379a0fd631985046c038aca08c6d6a43c6e/tomli-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7d86942e56ded512a594786a5ba0a5e521d02529b3826e7761a05138341a2ac", size = 154891, upload-time = "2025-10-08T22:01:09.082Z" }, - { url = "https://files.pythonhosted.org/packages/f9/3f/d9dd692199e3b3aab2e4e4dd948abd0f790d9ded8cd10cbaae276a898434/tomli-2.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:73ee0b47d4dad1c5e996e3cd33b8a76a50167ae5f96a2607cbe8cc773506ab22", size = 148796, upload-time = "2025-10-08T22:01:10.266Z" }, - { url = "https://files.pythonhosted.org/packages/60/83/59bff4996c2cf9f9387a0f5a3394629c7efa5ef16142076a23a90f1955fa/tomli-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:792262b94d5d0a466afb5bc63c7daa9d75520110971ee269152083270998316f", size = 242121, upload-time = "2025-10-08T22:01:11.332Z" }, - { url = "https://files.pythonhosted.org/packages/45/e5/7c5119ff39de8693d6baab6c0b6dcb556d192c165596e9fc231ea1052041/tomli-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4f195fe57ecceac95a66a75ac24d9d5fbc98ef0962e09b2eddec5d39375aae52", size = 250070, upload-time = "2025-10-08T22:01:12.498Z" }, - { url = "https://files.pythonhosted.org/packages/45/12/ad5126d3a278f27e6701abde51d342aa78d06e27ce2bb596a01f7709a5a2/tomli-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e31d432427dcbf4d86958c184b9bfd1e96b5b71f8eb17e6d02531f434fd335b8", size = 245859, upload-time = "2025-10-08T22:01:13.551Z" }, - { url = "https://files.pythonhosted.org/packages/fb/a1/4d6865da6a71c603cfe6ad0e6556c73c76548557a8d658f9e3b142df245f/tomli-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b0882799624980785240ab732537fcfc372601015c00f7fc367c55308c186f6", size = 250296, upload-time = "2025-10-08T22:01:14.614Z" }, - { url = "https://files.pythonhosted.org/packages/a0/b7/a7a7042715d55c9ba6e8b196d65d2cb662578b4d8cd17d882d45322b0d78/tomli-2.3.0-cp312-cp312-win32.whl", hash = "sha256:ff72b71b5d10d22ecb084d345fc26f42b5143c5533db5e2eaba7d2d335358876", size = 97124, upload-time = "2025-10-08T22:01:15.629Z" }, - { url = "https://files.pythonhosted.org/packages/06/1e/f22f100db15a68b520664eb3328fb0ae4e90530887928558112c8d1f4515/tomli-2.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:1cb4ed918939151a03f33d4242ccd0aa5f11b3547d0cf30f7c74a408a5b99878", size = 107698, upload-time = "2025-10-08T22:01:16.51Z" }, - { url = "https://files.pythonhosted.org/packages/89/48/06ee6eabe4fdd9ecd48bf488f4ac783844fd777f547b8d1b61c11939974e/tomli-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5192f562738228945d7b13d4930baffda67b69425a7f0da96d360b0a3888136b", size = 154819, upload-time = "2025-10-08T22:01:17.964Z" }, - { url = "https://files.pythonhosted.org/packages/f1/01/88793757d54d8937015c75dcdfb673c65471945f6be98e6a0410fba167ed/tomli-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:be71c93a63d738597996be9528f4abe628d1adf5e6eb11607bc8fe1a510b5dae", size = 148766, upload-time = "2025-10-08T22:01:18.959Z" }, - { url = "https://files.pythonhosted.org/packages/42/17/5e2c956f0144b812e7e107f94f1cc54af734eb17b5191c0bbfb72de5e93e/tomli-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c4665508bcbac83a31ff8ab08f424b665200c0e1e645d2bd9ab3d3e557b6185b", size = 240771, upload-time = "2025-10-08T22:01:20.106Z" }, - { url = "https://files.pythonhosted.org/packages/d5/f4/0fbd014909748706c01d16824eadb0307115f9562a15cbb012cd9b3512c5/tomli-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4021923f97266babc6ccab9f5068642a0095faa0a51a246a6a02fccbb3514eaf", size = 248586, upload-time = "2025-10-08T22:01:21.164Z" }, - { url = "https://files.pythonhosted.org/packages/30/77/fed85e114bde5e81ecf9bc5da0cc69f2914b38f4708c80ae67d0c10180c5/tomli-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4ea38c40145a357d513bffad0ed869f13c1773716cf71ccaa83b0fa0cc4e42f", size = 244792, upload-time = "2025-10-08T22:01:22.417Z" }, - { url = "https://files.pythonhosted.org/packages/55/92/afed3d497f7c186dc71e6ee6d4fcb0acfa5f7d0a1a2878f8beae379ae0cc/tomli-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ad805ea85eda330dbad64c7ea7a4556259665bdf9d2672f5dccc740eb9d3ca05", size = 248909, upload-time = "2025-10-08T22:01:23.859Z" }, - { url = "https://files.pythonhosted.org/packages/f8/84/ef50c51b5a9472e7265ce1ffc7f24cd4023d289e109f669bdb1553f6a7c2/tomli-2.3.0-cp313-cp313-win32.whl", hash = "sha256:97d5eec30149fd3294270e889b4234023f2c69747e555a27bd708828353ab606", size = 96946, upload-time = "2025-10-08T22:01:24.893Z" }, - { url = "https://files.pythonhosted.org/packages/b2/b7/718cd1da0884f281f95ccfa3a6cc572d30053cba64603f79d431d3c9b61b/tomli-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0c95ca56fbe89e065c6ead5b593ee64b84a26fca063b5d71a1122bf26e533999", size = 107705, upload-time = "2025-10-08T22:01:26.153Z" }, - { url = "https://files.pythonhosted.org/packages/77/b8/0135fadc89e73be292b473cb820b4f5a08197779206b33191e801feeae40/tomli-2.3.0-py3-none-any.whl", hash = "sha256:e95b1af3c5b07d9e643909b5abbec77cd9f1217e6d0bca72b0234736b9fb1f1b", size = 14408, upload-time = "2025-10-08T22:01:46.04Z" }, +dependencies = [ + { name = "regex" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/4d017d0f76ec3171d469d80fc03dfbb4e48a4bcaddaa831b31d526f05edc/tiktoken-0.12.0.tar.gz", hash = "sha256:b18ba7ee2b093863978fcb14f74b3707cdc8d4d4d3836853ce7ec60772139931", size = 37806, upload-time = "2025-10-06T20:22:45.419Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/85/be65d39d6b647c79800fd9d29241d081d4eeb06271f383bb87200d74cf76/tiktoken-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b97f74aca0d78a1ff21b8cd9e9925714c15a9236d6ceacf5c7327c117e6e21e8", size = 1050728, upload-time = "2025-10-06T20:21:52.756Z" }, + { url = "https://files.pythonhosted.org/packages/4a/42/6573e9129bc55c9bf7300b3a35bef2c6b9117018acca0dc760ac2d93dffe/tiktoken-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b90f5ad190a4bb7c3eb30c5fa32e1e182ca1ca79f05e49b448438c3e225a49b", size = 994049, upload-time = "2025-10-06T20:21:53.782Z" }, + { url = "https://files.pythonhosted.org/packages/66/c5/ed88504d2f4a5fd6856990b230b56d85a777feab84e6129af0822f5d0f70/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:65b26c7a780e2139e73acc193e5c63ac754021f160df919add909c1492c0fb37", size = 1129008, upload-time = "2025-10-06T20:21:54.832Z" }, + { url = "https://files.pythonhosted.org/packages/f4/90/3dae6cc5436137ebd38944d396b5849e167896fc2073da643a49f372dc4f/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:edde1ec917dfd21c1f2f8046b86348b0f54a2c0547f68149d8600859598769ad", size = 1152665, upload-time = "2025-10-06T20:21:56.129Z" }, + { url = "https://files.pythonhosted.org/packages/a3/fe/26df24ce53ffde419a42f5f53d755b995c9318908288c17ec3f3448313a3/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:35a2f8ddd3824608b3d650a000c1ef71f730d0c56486845705a8248da00f9fe5", size = 1194230, upload-time = "2025-10-06T20:21:57.546Z" }, + { url = "https://files.pythonhosted.org/packages/20/cc/b064cae1a0e9fac84b0d2c46b89f4e57051a5f41324e385d10225a984c24/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:83d16643edb7fa2c99eff2ab7733508aae1eebb03d5dfc46f5565862810f24e3", size = 1254688, upload-time = "2025-10-06T20:21:58.619Z" }, + { url = "https://files.pythonhosted.org/packages/81/10/b8523105c590c5b8349f2587e2fdfe51a69544bd5a76295fc20f2374f470/tiktoken-0.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ffc5288f34a8bc02e1ea7047b8d041104791d2ddbf42d1e5fa07822cbffe16bd", size = 878694, upload-time = "2025-10-06T20:21:59.876Z" }, + { url = "https://files.pythonhosted.org/packages/00/61/441588ee21e6b5cdf59d6870f86beb9789e532ee9718c251b391b70c68d6/tiktoken-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:775c2c55de2310cc1bc9a3ad8826761cbdc87770e586fd7b6da7d4589e13dab3", size = 1050802, upload-time = "2025-10-06T20:22:00.96Z" }, + { url = "https://files.pythonhosted.org/packages/1f/05/dcf94486d5c5c8d34496abe271ac76c5b785507c8eae71b3708f1ad9b45a/tiktoken-0.12.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a01b12f69052fbe4b080a2cfb867c4de12c704b56178edf1d1d7b273561db160", size = 993995, upload-time = "2025-10-06T20:22:02.788Z" }, + { url = "https://files.pythonhosted.org/packages/a0/70/5163fe5359b943f8db9946b62f19be2305de8c3d78a16f629d4165e2f40e/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:01d99484dc93b129cd0964f9d34eee953f2737301f18b3c7257bf368d7615baa", size = 1128948, upload-time = "2025-10-06T20:22:03.814Z" }, + { url = "https://files.pythonhosted.org/packages/0c/da/c028aa0babf77315e1cef357d4d768800c5f8a6de04d0eac0f377cb619fa/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:4a1a4fcd021f022bfc81904a911d3df0f6543b9e7627b51411da75ff2fe7a1be", size = 1151986, upload-time = "2025-10-06T20:22:05.173Z" }, + { url = "https://files.pythonhosted.org/packages/a0/5a/886b108b766aa53e295f7216b509be95eb7d60b166049ce2c58416b25f2a/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:981a81e39812d57031efdc9ec59fa32b2a5a5524d20d4776574c4b4bd2e9014a", size = 1194222, upload-time = "2025-10-06T20:22:06.265Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f8/4db272048397636ac7a078d22773dd2795b1becee7bc4922fe6207288d57/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9baf52f84a3f42eef3ff4e754a0db79a13a27921b457ca9832cf944c6be4f8f3", size = 1255097, upload-time = "2025-10-06T20:22:07.403Z" }, + { url = "https://files.pythonhosted.org/packages/8e/32/45d02e2e0ea2be3a9ed22afc47d93741247e75018aac967b713b2941f8ea/tiktoken-0.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:b8a0cd0c789a61f31bf44851defbd609e8dd1e2c8589c614cc1060940ef1f697", size = 879117, upload-time = "2025-10-06T20:22:08.418Z" }, + { url = "https://files.pythonhosted.org/packages/ce/76/994fc868f88e016e6d05b0da5ac24582a14c47893f4474c3e9744283f1d5/tiktoken-0.12.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d5f89ea5680066b68bcb797ae85219c72916c922ef0fcdd3480c7d2315ffff16", size = 1050309, upload-time = "2025-10-06T20:22:10.939Z" }, + { url = "https://files.pythonhosted.org/packages/f6/b8/57ef1456504c43a849821920d582a738a461b76a047f352f18c0b26c6516/tiktoken-0.12.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b4e7ed1c6a7a8a60a3230965bdedba8cc58f68926b835e519341413370e0399a", size = 993712, upload-time = "2025-10-06T20:22:12.115Z" }, + { url = "https://files.pythonhosted.org/packages/72/90/13da56f664286ffbae9dbcfadcc625439142675845baa62715e49b87b68b/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:fc530a28591a2d74bce821d10b418b26a094bf33839e69042a6e86ddb7a7fb27", size = 1128725, upload-time = "2025-10-06T20:22:13.541Z" }, + { url = "https://files.pythonhosted.org/packages/05/df/4f80030d44682235bdaecd7346c90f67ae87ec8f3df4a3442cb53834f7e4/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:06a9f4f49884139013b138920a4c393aa6556b2f8f536345f11819389c703ebb", size = 1151875, upload-time = "2025-10-06T20:22:14.559Z" }, + { url = "https://files.pythonhosted.org/packages/22/1f/ae535223a8c4ef4c0c1192e3f9b82da660be9eb66b9279e95c99288e9dab/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:04f0e6a985d95913cabc96a741c5ffec525a2c72e9df086ff17ebe35985c800e", size = 1194451, upload-time = "2025-10-06T20:22:15.545Z" }, + { url = "https://files.pythonhosted.org/packages/78/a7/f8ead382fce0243cb625c4f266e66c27f65ae65ee9e77f59ea1653b6d730/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0ee8f9ae00c41770b5f9b0bb1235474768884ae157de3beb5439ca0fd70f3e25", size = 1253794, upload-time = "2025-10-06T20:22:16.624Z" }, + { url = "https://files.pythonhosted.org/packages/93/e0/6cc82a562bc6365785a3ff0af27a2a092d57c47d7a81d9e2295d8c36f011/tiktoken-0.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dc2dd125a62cb2b3d858484d6c614d136b5b848976794edfb63688d539b8b93f", size = 878777, upload-time = "2025-10-06T20:22:18.036Z" }, +] + +[[package]] +name = "tokenizers" +version = "0.22.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/97/5dbfabf04c7e348e655e907ed27913e03db0923abb5dfdd120d7b25630e1/tokenizers-0.22.2-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:544dd704ae7238755d790de45ba8da072e9af3eea688f698b137915ae959281c", size = 3100275, upload-time = "2026-01-05T10:41:02.158Z" }, + { url = "https://files.pythonhosted.org/packages/2e/47/174dca0502ef88b28f1c9e06b73ce33500eedfac7a7692108aec220464e7/tokenizers-0.22.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1e418a55456beedca4621dbab65a318981467a2b188e982a23e117f115ce5001", size = 2981472, upload-time = "2026-01-05T10:41:00.276Z" }, + { url = "https://files.pythonhosted.org/packages/d6/84/7990e799f1309a8b87af6b948f31edaa12a3ed22d11b352eaf4f4b2e5753/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249487018adec45d6e3554c71d46eb39fa8ea67156c640f7513eb26f318cec7", size = 3290736, upload-time = "2026-01-05T10:40:32.165Z" }, + { url = "https://files.pythonhosted.org/packages/78/59/09d0d9ba94dcd5f4f1368d4858d24546b4bdc0231c2354aa31d6199f0399/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25b85325d0815e86e0bac263506dd114578953b7b53d7de09a6485e4a160a7dd", size = 3168835, upload-time = "2026-01-05T10:40:38.847Z" }, + { url = "https://files.pythonhosted.org/packages/47/50/b3ebb4243e7160bda8d34b731e54dd8ab8b133e50775872e7a434e524c28/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfb88f22a209ff7b40a576d5324bf8286b519d7358663db21d6246fb17eea2d5", size = 3521673, upload-time = "2026-01-05T10:40:56.614Z" }, + { url = "https://files.pythonhosted.org/packages/e0/fa/89f4cb9e08df770b57adb96f8cbb7e22695a4cb6c2bd5f0c4f0ebcf33b66/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c774b1276f71e1ef716e5486f21e76333464f47bece56bbd554485982a9e03e", size = 3724818, upload-time = "2026-01-05T10:40:44.507Z" }, + { url = "https://files.pythonhosted.org/packages/64/04/ca2363f0bfbe3b3d36e95bf67e56a4c88c8e3362b658e616d1ac185d47f2/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df6c4265b289083bf710dff49bc51ef252f9d5be33a45ee2bed151114a56207b", size = 3379195, upload-time = "2026-01-05T10:40:51.139Z" }, + { url = "https://files.pythonhosted.org/packages/2e/76/932be4b50ef6ccedf9d3c6639b056a967a86258c6d9200643f01269211ca/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:369cc9fc8cc10cb24143873a0d95438bb8ee257bb80c71989e3ee290e8d72c67", size = 3274982, upload-time = "2026-01-05T10:40:58.331Z" }, + { url = "https://files.pythonhosted.org/packages/1d/28/5f9f5a4cc211b69e89420980e483831bcc29dade307955cc9dc858a40f01/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:29c30b83d8dcd061078b05ae0cb94d3c710555fbb44861139f9f83dcca3dc3e4", size = 9478245, upload-time = "2026-01-05T10:41:04.053Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fb/66e2da4704d6aadebf8cb39f1d6d1957df667ab24cff2326b77cda0dcb85/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:37ae80a28c1d3265bb1f22464c856bd23c02a05bb211e56d0c5301a435be6c1a", size = 9560069, upload-time = "2026-01-05T10:45:10.673Z" }, + { url = "https://files.pythonhosted.org/packages/16/04/fed398b05caa87ce9b1a1bb5166645e38196081b225059a6edaff6440fac/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:791135ee325f2336f498590eb2f11dc5c295232f288e75c99a36c5dbce63088a", size = 9899263, upload-time = "2026-01-05T10:45:12.559Z" }, + { url = "https://files.pythonhosted.org/packages/05/a1/d62dfe7376beaaf1394917e0f8e93ee5f67fea8fcf4107501db35996586b/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38337540fbbddff8e999d59970f3c6f35a82de10053206a7562f1ea02d046fa5", size = 10033429, upload-time = "2026-01-05T10:45:14.333Z" }, + { url = "https://files.pythonhosted.org/packages/fd/18/a545c4ea42af3df6effd7d13d250ba77a0a86fb20393143bbb9a92e434d4/tokenizers-0.22.2-cp39-abi3-win32.whl", hash = "sha256:a6bf3f88c554a2b653af81f3204491c818ae2ac6fbc09e76ef4773351292bc92", size = 2502363, upload-time = "2026-01-05T10:45:20.593Z" }, + { url = "https://files.pythonhosted.org/packages/65/71/0670843133a43d43070abeb1949abfdef12a86d490bea9cd9e18e37c5ff7/tokenizers-0.22.2-cp39-abi3-win_amd64.whl", hash = "sha256:c9ea31edff2968b44a88f97d784c2f16dc0729b8b143ed004699ebca91f05c48", size = 2747786, upload-time = "2026-01-05T10:45:18.411Z" }, + { url = "https://files.pythonhosted.org/packages/72/f4/0de46cfa12cdcbcd464cc59fde36912af405696f687e53a091fb432f694c/tokenizers-0.22.2-cp39-abi3-win_arm64.whl", hash = "sha256:9ce725d22864a1e965217204946f830c37876eee3b2ba6fc6255e8e903d5fcbc", size = 2612133, upload-time = "2026-01-05T10:45:17.232Z" }, +] + +[[package]] +name = "torch" +version = "2.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-bindings", marker = "sys_platform == 'linux'" }, + { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], marker = "sys_platform == 'linux'" }, + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cudnn-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-cusparselt-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-nvshmem-cu13", marker = "sys_platform == 'linux'" }, + { name = "setuptools" }, + { name = "sympy" }, + { name = "triton", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/8b/69e3008d78e5cee2b30183340cc425081b78afc5eff3d080daab0adda9aa/torch-2.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b5866312ee6e52ea625cd211dcb97d6a2cdc1131a5f15cc0d87eec948f6dd34", size = 80606338, upload-time = "2026-03-23T18:11:34.781Z" }, + { url = "https://files.pythonhosted.org/packages/13/16/42e5915ebe4868caa6bac83a8ed59db57f12e9a61b7d749d584776ed53d5/torch-2.11.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f99924682ef0aa6a4ab3b1b76f40dc6e273fca09f367d15a524266db100a723f", size = 419731115, upload-time = "2026-03-23T18:11:06.944Z" }, + { url = "https://files.pythonhosted.org/packages/1a/c9/82638ef24d7877510f83baf821f5619a61b45568ce21c0a87a91576510aa/torch-2.11.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:0f68f4ac6d95d12e896c3b7a912b5871619542ec54d3649cf48cc1edd4dd2756", size = 530712279, upload-time = "2026-03-23T18:10:31.481Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ff/6756f1c7ee302f6d202120e0f4f05b432b839908f9071157302cedfc5232/torch-2.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:fbf39280699d1b869f55eac536deceaa1b60bd6788ba74f399cc67e60a5fab10", size = 114556047, upload-time = "2026-03-23T18:10:55.931Z" }, + { url = "https://files.pythonhosted.org/packages/87/89/5ea6722763acee56b045435fb84258db7375c48165ec8be7880ab2b281c5/torch-2.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1e6debd97ccd3205bbb37eb806a9d8219e1139d15419982c09e23ef7d4369d18", size = 80606801, upload-time = "2026-03-23T18:10:18.649Z" }, + { url = "https://files.pythonhosted.org/packages/32/d1/8ed2173589cbfe744ed54e5a73efc107c0085ba5777ee93a5f4c1ab90553/torch-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:63a68fa59de8f87acc7e85a5478bb2dddbb3392b7593ec3e78827c793c4b73fd", size = 419732382, upload-time = "2026-03-23T18:08:30.835Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e1/b73f7c575a4b8f87a5928f50a1e35416b5e27295d8be9397d5293e7e8d4c/torch-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:cc89b9b173d9adfab59fd227f0ab5e5516d9a52b658ae41d64e59d2e55a418db", size = 530711509, upload-time = "2026-03-23T18:08:47.213Z" }, + { url = "https://files.pythonhosted.org/packages/66/82/3e3fcdd388fbe54e29fd3f991f36846ff4ac90b0d0181e9c8f7236565f82/torch-2.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:4dda3b3f52d121063a731ddb835f010dc137b920d7fec2778e52f60d8e4bf0cd", size = 114555842, upload-time = "2026-03-23T18:09:52.111Z" }, + { url = "https://files.pythonhosted.org/packages/db/38/8ac78069621b8c2b4979c2f96dc8409ef5e9c4189f6aac629189a78677ca/torch-2.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8b394322f49af4362d4f80e424bcaca7efcd049619af03a4cf4501520bdf0fb4", size = 80959574, upload-time = "2026-03-23T18:10:14.214Z" }, + { url = "https://files.pythonhosted.org/packages/6d/6c/56bfb37073e7136e6dd86bfc6af7339946dd684e0ecf2155ac0eee687ae1/torch-2.11.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2658f34ce7e2dabf4ec73b45e2ca68aedad7a5be87ea756ad656eaf32bf1e1ea", size = 419732324, upload-time = "2026-03-23T18:09:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/07/f4/1b666b6d61d3394cca306ea543ed03a64aad0a201b6cd159f1d41010aeb1/torch-2.11.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:98bb213c3084cfe176302949bdc360074b18a9da7ab59ef2edc9d9f742504778", size = 530596026, upload-time = "2026-03-23T18:09:20.842Z" }, + { url = "https://files.pythonhosted.org/packages/48/6b/30d1459fa7e4b67e9e3fe1685ca1d8bb4ce7c62ef436c3a615963c6c866c/torch-2.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a97b94bbf62992949b4730c6cd2cc9aee7b335921ee8dc207d930f2ed09ae2db", size = 114793702, upload-time = "2026-03-23T18:09:47.304Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + +[[package]] +name = "transformers" +version = "5.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "regex" }, + { name = "safetensors" }, + { name = "tokenizers" }, + { name = "tqdm" }, + { name = "typer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/9d/fb46e729b461985f41a5740167688b924a4019141e5c164bea77548d3d9e/transformers-5.5.0.tar.gz", hash = "sha256:c8db656cf51c600cd8c75f06b20ef85c72e8b8ff9abc880c5d3e8bc70e0ddcbd", size = 8237745, upload-time = "2026-04-02T16:13:08.113Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/28/35f7411ff80a3640c1f4fc907dcbb6a65061ebb82f66950e38bfc9f7f740/transformers-5.5.0-py3-none-any.whl", hash = "sha256:821a9ff0961abbb29eb1eb686d78df1c85929fdf213a3fe49dc6bd94f9efa944", size = 10245591, upload-time = "2026-04-02T16:13:03.462Z" }, +] + +[[package]] +name = "triton" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/5d/08201db32823bdf77a0e2b9039540080b2e5c23a20706ddba942924ebcd6/triton-3.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:374f52c11a711fd062b4bfbb201fd9ac0a5febd28a96fb41b4a0f51dde3157f4", size = 176128243, upload-time = "2026-01-20T16:16:07.857Z" }, + { url = "https://files.pythonhosted.org/packages/ab/a8/cdf8b3e4c98132f965f88c2313a4b493266832ad47fb52f23d14d4f86bb5/triton-3.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74caf5e34b66d9f3a429af689c1c7128daba1d8208df60e81106b115c00d6fca", size = 188266850, upload-time = "2026-01-20T16:00:43.041Z" }, + { url = "https://files.pythonhosted.org/packages/3c/12/34d71b350e89a204c2c7777a9bba0dcf2f19a5bfdd70b57c4dbc5ffd7154/triton-3.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448e02fe6dc898e9e5aa89cf0ee5c371e99df5aa5e8ad976a80b93334f3494fd", size = 176133521, upload-time = "2026-01-20T16:16:13.321Z" }, + { url = "https://files.pythonhosted.org/packages/f9/0b/37d991d8c130ce81a8728ae3c25b6e60935838e9be1b58791f5997b24a54/triton-3.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c7f76c6e72d2ef08df639e3d0d30729112f47a56b0c81672edc05ee5116ac9", size = 188289450, upload-time = "2026-01-20T16:00:49.136Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4e/41b0c8033b503fd3cfcd12392cdd256945026a91ff02452bef40ec34bee7/triton-3.6.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1722e172d34e32abc3eb7711d0025bb69d7959ebea84e3b7f7a341cd7ed694d6", size = 176276087, upload-time = "2026-01-20T16:16:18.989Z" }, + { url = "https://files.pythonhosted.org/packages/35/f8/9c66bfc55361ec6d0e4040a0337fb5924ceb23de4648b8a81ae9d33b2b38/triton-3.6.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d002e07d7180fd65e622134fbd980c9a3d4211fb85224b56a0a0efbd422ab72f", size = 188400296, upload-time = "2026-01-20T16:00:56.042Z" }, +] + +[[package]] +name = "typer" +version = "0.24.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-doc" }, + { name = "click" }, + { name = "rich" }, + { name = "shellingham" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" }, ] [[package]] @@ -1411,6 +2130,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" }, ] +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + [[package]] name = "urllib3" version = "2.5.0" @@ -1428,7 +2156,6 @@ dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, - { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } wheels = [ @@ -1441,28 +2168,6 @@ version = "15.0.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016, upload-time = "2025-03-05T20:03:41.606Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/da/6462a9f510c0c49837bbc9345aca92d767a56c1fb2939e1579df1e1cdcf7/websockets-15.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d63efaa0cd96cf0c5fe4d581521d9fa87744540d4bc999ae6e08595a1014b45b", size = 175423, upload-time = "2025-03-05T20:01:35.363Z" }, - { url = "https://files.pythonhosted.org/packages/1c/9f/9d11c1a4eb046a9e106483b9ff69bce7ac880443f00e5ce64261b47b07e7/websockets-15.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac60e3b188ec7574cb761b08d50fcedf9d77f1530352db4eef1707fe9dee7205", size = 173080, upload-time = "2025-03-05T20:01:37.304Z" }, - { url = "https://files.pythonhosted.org/packages/d5/4f/b462242432d93ea45f297b6179c7333dd0402b855a912a04e7fc61c0d71f/websockets-15.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5756779642579d902eed757b21b0164cd6fe338506a8083eb58af5c372e39d9a", size = 173329, upload-time = "2025-03-05T20:01:39.668Z" }, - { url = "https://files.pythonhosted.org/packages/6e/0c/6afa1f4644d7ed50284ac59cc70ef8abd44ccf7d45850d989ea7310538d0/websockets-15.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdfe3e2a29e4db3659dbd5bbf04560cea53dd9610273917799f1cde46aa725e", size = 182312, upload-time = "2025-03-05T20:01:41.815Z" }, - { url = "https://files.pythonhosted.org/packages/dd/d4/ffc8bd1350b229ca7a4db2a3e1c482cf87cea1baccd0ef3e72bc720caeec/websockets-15.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c2529b320eb9e35af0fa3016c187dffb84a3ecc572bcee7c3ce302bfeba52bf", size = 181319, upload-time = "2025-03-05T20:01:43.967Z" }, - { url = "https://files.pythonhosted.org/packages/97/3a/5323a6bb94917af13bbb34009fac01e55c51dfde354f63692bf2533ffbc2/websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac1e5c9054fe23226fb11e05a6e630837f074174c4c2f0fe442996112a6de4fb", size = 181631, upload-time = "2025-03-05T20:01:46.104Z" }, - { url = "https://files.pythonhosted.org/packages/a6/cc/1aeb0f7cee59ef065724041bb7ed667b6ab1eeffe5141696cccec2687b66/websockets-15.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5df592cd503496351d6dc14f7cdad49f268d8e618f80dce0cd5a36b93c3fc08d", size = 182016, upload-time = "2025-03-05T20:01:47.603Z" }, - { url = "https://files.pythonhosted.org/packages/79/f9/c86f8f7af208e4161a7f7e02774e9d0a81c632ae76db2ff22549e1718a51/websockets-15.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0a34631031a8f05657e8e90903e656959234f3a04552259458aac0b0f9ae6fd9", size = 181426, upload-time = "2025-03-05T20:01:48.949Z" }, - { url = "https://files.pythonhosted.org/packages/c7/b9/828b0bc6753db905b91df6ae477c0b14a141090df64fb17f8a9d7e3516cf/websockets-15.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3d00075aa65772e7ce9e990cab3ff1de702aa09be3940d1dc88d5abf1ab8a09c", size = 181360, upload-time = "2025-03-05T20:01:50.938Z" }, - { url = "https://files.pythonhosted.org/packages/89/fb/250f5533ec468ba6327055b7d98b9df056fb1ce623b8b6aaafb30b55d02e/websockets-15.0.1-cp310-cp310-win32.whl", hash = "sha256:1234d4ef35db82f5446dca8e35a7da7964d02c127b095e172e54397fb6a6c256", size = 176388, upload-time = "2025-03-05T20:01:52.213Z" }, - { url = "https://files.pythonhosted.org/packages/1c/46/aca7082012768bb98e5608f01658ff3ac8437e563eca41cf068bd5849a5e/websockets-15.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:39c1fec2c11dc8d89bba6b2bf1556af381611a173ac2b511cf7231622058af41", size = 176830, upload-time = "2025-03-05T20:01:53.922Z" }, - { url = "https://files.pythonhosted.org/packages/9f/32/18fcd5919c293a398db67443acd33fde142f283853076049824fc58e6f75/websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:823c248b690b2fd9303ba00c4f66cd5e2d8c3ba4aa968b2779be9532a4dad431", size = 175423, upload-time = "2025-03-05T20:01:56.276Z" }, - { url = "https://files.pythonhosted.org/packages/76/70/ba1ad96b07869275ef42e2ce21f07a5b0148936688c2baf7e4a1f60d5058/websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678999709e68425ae2593acf2e3ebcbcf2e69885a5ee78f9eb80e6e371f1bf57", size = 173082, upload-time = "2025-03-05T20:01:57.563Z" }, - { url = "https://files.pythonhosted.org/packages/86/f2/10b55821dd40eb696ce4704a87d57774696f9451108cff0d2824c97e0f97/websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d50fd1ee42388dcfb2b3676132c78116490976f1300da28eb629272d5d93e905", size = 173330, upload-time = "2025-03-05T20:01:59.063Z" }, - { url = "https://files.pythonhosted.org/packages/a5/90/1c37ae8b8a113d3daf1065222b6af61cc44102da95388ac0018fcb7d93d9/websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d99e5546bf73dbad5bf3547174cd6cb8ba7273062a23808ffea025ecb1cf8562", size = 182878, upload-time = "2025-03-05T20:02:00.305Z" }, - { url = "https://files.pythonhosted.org/packages/8e/8d/96e8e288b2a41dffafb78e8904ea7367ee4f891dafc2ab8d87e2124cb3d3/websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66dd88c918e3287efc22409d426c8f729688d89a0c587c88971a0faa2c2f3792", size = 181883, upload-time = "2025-03-05T20:02:03.148Z" }, - { url = "https://files.pythonhosted.org/packages/93/1f/5d6dbf551766308f6f50f8baf8e9860be6182911e8106da7a7f73785f4c4/websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dd8327c795b3e3f219760fa603dcae1dcc148172290a8ab15158cf85a953413", size = 182252, upload-time = "2025-03-05T20:02:05.29Z" }, - { url = "https://files.pythonhosted.org/packages/d4/78/2d4fed9123e6620cbf1706c0de8a1632e1a28e7774d94346d7de1bba2ca3/websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8fdc51055e6ff4adeb88d58a11042ec9a5eae317a0a53d12c062c8a8865909e8", size = 182521, upload-time = "2025-03-05T20:02:07.458Z" }, - { url = "https://files.pythonhosted.org/packages/e7/3b/66d4c1b444dd1a9823c4a81f50231b921bab54eee2f69e70319b4e21f1ca/websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:693f0192126df6c2327cce3baa7c06f2a117575e32ab2308f7f8216c29d9e2e3", size = 181958, upload-time = "2025-03-05T20:02:09.842Z" }, - { url = "https://files.pythonhosted.org/packages/08/ff/e9eed2ee5fed6f76fdd6032ca5cd38c57ca9661430bb3d5fb2872dc8703c/websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:54479983bd5fb469c38f2f5c7e3a24f9a4e70594cd68cd1fa6b9340dadaff7cf", size = 181918, upload-time = "2025-03-05T20:02:11.968Z" }, - { url = "https://files.pythonhosted.org/packages/d8/75/994634a49b7e12532be6a42103597b71098fd25900f7437d6055ed39930a/websockets-15.0.1-cp311-cp311-win32.whl", hash = "sha256:16b6c1b3e57799b9d38427dda63edcbe4926352c47cf88588c0be4ace18dac85", size = 176388, upload-time = "2025-03-05T20:02:13.32Z" }, - { url = "https://files.pythonhosted.org/packages/98/93/e36c73f78400a65f5e236cd376713c34182e6663f6889cd45a4a04d8f203/websockets-15.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:27ccee0071a0e75d22cb35849b1db43f2ecd3e161041ac1ee9d2352ddf72f065", size = 176828, upload-time = "2025-03-05T20:02:14.585Z" }, { url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437, upload-time = "2025-03-05T20:02:16.706Z" }, { url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096, upload-time = "2025-03-05T20:02:18.832Z" }, { url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332, upload-time = "2025-03-05T20:02:20.187Z" }, @@ -1485,11 +2190,126 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195, upload-time = "2025-03-05T20:02:51.561Z" }, { url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393, upload-time = "2025-03-05T20:02:53.814Z" }, { url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837, upload-time = "2025-03-05T20:02:55.237Z" }, - { url = "https://files.pythonhosted.org/packages/02/9e/d40f779fa16f74d3468357197af8d6ad07e7c5a27ea1ca74ceb38986f77a/websockets-15.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0c9e74d766f2818bb95f84c25be4dea09841ac0f734d1966f415e4edfc4ef1c3", size = 173109, upload-time = "2025-03-05T20:03:17.769Z" }, - { url = "https://files.pythonhosted.org/packages/bc/cd/5b887b8585a593073fd92f7c23ecd3985cd2c3175025a91b0d69b0551372/websockets-15.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1009ee0c7739c08a0cd59de430d6de452a55e42d6b522de7aa15e6f67db0b8e1", size = 173343, upload-time = "2025-03-05T20:03:19.094Z" }, - { url = "https://files.pythonhosted.org/packages/fe/ae/d34f7556890341e900a95acf4886833646306269f899d58ad62f588bf410/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76d1f20b1c7a2fa82367e04982e708723ba0e7b8d43aa643d3dcd404d74f1475", size = 174599, upload-time = "2025-03-05T20:03:21.1Z" }, - { url = "https://files.pythonhosted.org/packages/71/e6/5fd43993a87db364ec60fc1d608273a1a465c0caba69176dd160e197ce42/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f29d80eb9a9263b8d109135351caf568cc3f80b9928bccde535c235de55c22d9", size = 174207, upload-time = "2025-03-05T20:03:23.221Z" }, - { url = "https://files.pythonhosted.org/packages/2b/fb/c492d6daa5ec067c2988ac80c61359ace5c4c674c532985ac5a123436cec/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b359ed09954d7c18bbc1680f380c7301f92c60bf924171629c5db97febb12f04", size = 174155, upload-time = "2025-03-05T20:03:25.321Z" }, - { url = "https://files.pythonhosted.org/packages/68/a1/dcb68430b1d00b698ae7a7e0194433bce4f07ded185f0ee5fb21e2a2e91e/websockets-15.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:cad21560da69f4ce7658ca2cb83138fb4cf695a2ba3e475e0559e05991aa8122", size = 176884, upload-time = "2025-03-05T20:03:27.934Z" }, { url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743, upload-time = "2025-03-05T20:03:39.41Z" }, ] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/07/d9412f3d7d462347e4511181dea65e47e0d0e16e26fbee2ea86a2aefb657/xxhash-3.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:01362c4331775398e7bb34e3ab403bc9ee9f7c497bc7dee6272114055277dd3c", size = 32744, upload-time = "2025-10-02T14:34:34.622Z" }, + { url = "https://files.pythonhosted.org/packages/79/35/0429ee11d035fc33abe32dca1b2b69e8c18d236547b9a9b72c1929189b9a/xxhash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b7b2df81a23f8cb99656378e72501b2cb41b1827c0f5a86f87d6b06b69f9f204", size = 30816, upload-time = "2025-10-02T14:34:36.043Z" }, + { url = "https://files.pythonhosted.org/packages/b7/f2/57eb99aa0f7d98624c0932c5b9a170e1806406cdbcdb510546634a1359e0/xxhash-3.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:dc94790144e66b14f67b10ac8ed75b39ca47536bf8800eb7c24b50271ea0c490", size = 194035, upload-time = "2025-10-02T14:34:37.354Z" }, + { url = "https://files.pythonhosted.org/packages/4c/ed/6224ba353690d73af7a3f1c7cdb1fc1b002e38f783cb991ae338e1eb3d79/xxhash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93f107c673bccf0d592cdba077dedaf52fe7f42dcd7676eba1f6d6f0c3efffd2", size = 212914, upload-time = "2025-10-02T14:34:38.6Z" }, + { url = "https://files.pythonhosted.org/packages/38/86/fb6b6130d8dd6b8942cc17ab4d90e223653a89aa32ad2776f8af7064ed13/xxhash-3.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aa5ee3444c25b69813663c9f8067dcfaa2e126dc55e8dddf40f4d1c25d7effa", size = 212163, upload-time = "2025-10-02T14:34:39.872Z" }, + { url = "https://files.pythonhosted.org/packages/ee/dc/e84875682b0593e884ad73b2d40767b5790d417bde603cceb6878901d647/xxhash-3.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f7f99123f0e1194fa59cc69ad46dbae2e07becec5df50a0509a808f90a0f03f0", size = 445411, upload-time = "2025-10-02T14:34:41.569Z" }, + { url = "https://files.pythonhosted.org/packages/11/4f/426f91b96701ec2f37bb2b8cec664eff4f658a11f3fa9d94f0a887ea6d2b/xxhash-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49e03e6fe2cac4a1bc64952dd250cf0dbc5ef4ebb7b8d96bce82e2de163c82a2", size = 193883, upload-time = "2025-10-02T14:34:43.249Z" }, + { url = "https://files.pythonhosted.org/packages/53/5a/ddbb83eee8e28b778eacfc5a85c969673e4023cdeedcfcef61f36731610b/xxhash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bd17fede52a17a4f9a7bc4472a5867cb0b160deeb431795c0e4abe158bc784e9", size = 210392, upload-time = "2025-10-02T14:34:45.042Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c2/ff69efd07c8c074ccdf0a4f36fcdd3d27363665bcdf4ba399abebe643465/xxhash-3.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6fb5f5476bef678f69db04f2bd1efbed3030d2aba305b0fc1773645f187d6a4e", size = 197898, upload-time = "2025-10-02T14:34:46.302Z" }, + { url = "https://files.pythonhosted.org/packages/58/ca/faa05ac19b3b622c7c9317ac3e23954187516298a091eb02c976d0d3dd45/xxhash-3.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:843b52f6d88071f87eba1631b684fcb4b2068cd2180a0224122fe4ef011a9374", size = 210655, upload-time = "2025-10-02T14:34:47.571Z" }, + { url = "https://files.pythonhosted.org/packages/d4/7a/06aa7482345480cc0cb597f5c875b11a82c3953f534394f620b0be2f700c/xxhash-3.6.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7d14a6cfaf03b1b6f5f9790f76880601ccc7896aff7ab9cd8978a939c1eb7e0d", size = 414001, upload-time = "2025-10-02T14:34:49.273Z" }, + { url = "https://files.pythonhosted.org/packages/23/07/63ffb386cd47029aa2916b3d2f454e6cc5b9f5c5ada3790377d5430084e7/xxhash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:418daf3db71e1413cfe211c2f9a528456936645c17f46b5204705581a45390ae", size = 191431, upload-time = "2025-10-02T14:34:50.798Z" }, + { url = "https://files.pythonhosted.org/packages/0f/93/14fde614cadb4ddf5e7cebf8918b7e8fac5ae7861c1875964f17e678205c/xxhash-3.6.0-cp312-cp312-win32.whl", hash = "sha256:50fc255f39428a27299c20e280d6193d8b63b8ef8028995323bf834a026b4fbb", size = 30617, upload-time = "2025-10-02T14:34:51.954Z" }, + { url = "https://files.pythonhosted.org/packages/13/5d/0d125536cbe7565a83d06e43783389ecae0c0f2ed037b48ede185de477c0/xxhash-3.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:c0f2ab8c715630565ab8991b536ecded9416d615538be8ecddce43ccf26cbc7c", size = 31534, upload-time = "2025-10-02T14:34:53.276Z" }, + { url = "https://files.pythonhosted.org/packages/54/85/6ec269b0952ec7e36ba019125982cf11d91256a778c7c3f98a4c5043d283/xxhash-3.6.0-cp312-cp312-win_arm64.whl", hash = "sha256:eae5c13f3bc455a3bbb68bdc513912dc7356de7e2280363ea235f71f54064829", size = 27876, upload-time = "2025-10-02T14:34:54.371Z" }, + { url = "https://files.pythonhosted.org/packages/33/76/35d05267ac82f53ae9b0e554da7c5e281ee61f3cad44c743f0fcd354f211/xxhash-3.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:599e64ba7f67472481ceb6ee80fa3bd828fd61ba59fb11475572cc5ee52b89ec", size = 32738, upload-time = "2025-10-02T14:34:55.839Z" }, + { url = "https://files.pythonhosted.org/packages/31/a8/3fbce1cd96534a95e35d5120637bf29b0d7f5d8fa2f6374e31b4156dd419/xxhash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d8b8aaa30fca4f16f0c84a5c8d7ddee0e25250ec2796c973775373257dde8f1", size = 30821, upload-time = "2025-10-02T14:34:57.219Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ea/d387530ca7ecfa183cb358027f1833297c6ac6098223fd14f9782cd0015c/xxhash-3.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d597acf8506d6e7101a4a44a5e428977a51c0fadbbfd3c39650cca9253f6e5a6", size = 194127, upload-time = "2025-10-02T14:34:59.21Z" }, + { url = "https://files.pythonhosted.org/packages/ba/0c/71435dcb99874b09a43b8d7c54071e600a7481e42b3e3ce1eb5226a5711a/xxhash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:858dc935963a33bc33490128edc1c12b0c14d9c7ebaa4e387a7869ecc4f3e263", size = 212975, upload-time = "2025-10-02T14:35:00.816Z" }, + { url = "https://files.pythonhosted.org/packages/84/7a/c2b3d071e4bb4a90b7057228a99b10d51744878f4a8a6dd643c8bd897620/xxhash-3.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba284920194615cb8edf73bf52236ce2e1664ccd4a38fdb543506413529cc546", size = 212241, upload-time = "2025-10-02T14:35:02.207Z" }, + { url = "https://files.pythonhosted.org/packages/81/5f/640b6eac0128e215f177df99eadcd0f1b7c42c274ab6a394a05059694c5a/xxhash-3.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b54219177f6c6674d5378bd862c6aedf64725f70dd29c472eaae154df1a2e89", size = 445471, upload-time = "2025-10-02T14:35:03.61Z" }, + { url = "https://files.pythonhosted.org/packages/5e/1e/3c3d3ef071b051cc3abbe3721ffb8365033a172613c04af2da89d5548a87/xxhash-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:42c36dd7dbad2f5238950c377fcbf6811b1cdb1c444fab447960030cea60504d", size = 193936, upload-time = "2025-10-02T14:35:05.013Z" }, + { url = "https://files.pythonhosted.org/packages/2c/bd/4a5f68381939219abfe1c22a9e3a5854a4f6f6f3c4983a87d255f21f2e5d/xxhash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f22927652cba98c44639ffdc7aaf35828dccf679b10b31c4ad72a5b530a18eb7", size = 210440, upload-time = "2025-10-02T14:35:06.239Z" }, + { url = "https://files.pythonhosted.org/packages/eb/37/b80fe3d5cfb9faff01a02121a0f4d565eb7237e9e5fc66e73017e74dcd36/xxhash-3.6.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b45fad44d9c5c119e9c6fbf2e1c656a46dc68e280275007bbfd3d572b21426db", size = 197990, upload-time = "2025-10-02T14:35:07.735Z" }, + { url = "https://files.pythonhosted.org/packages/d7/fd/2c0a00c97b9e18f72e1f240ad4e8f8a90fd9d408289ba9c7c495ed7dc05c/xxhash-3.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6f2580ffab1a8b68ef2b901cde7e55fa8da5e4be0977c68f78fc80f3c143de42", size = 210689, upload-time = "2025-10-02T14:35:09.438Z" }, + { url = "https://files.pythonhosted.org/packages/93/86/5dd8076a926b9a95db3206aba20d89a7fc14dd5aac16e5c4de4b56033140/xxhash-3.6.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:40c391dd3cd041ebc3ffe6f2c862f402e306eb571422e0aa918d8070ba31da11", size = 414068, upload-time = "2025-10-02T14:35:11.162Z" }, + { url = "https://files.pythonhosted.org/packages/af/3c/0bb129170ee8f3650f08e993baee550a09593462a5cddd8e44d0011102b1/xxhash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f205badabde7aafd1a31e8ca2a3e5a763107a71c397c4481d6a804eb5063d8bd", size = 191495, upload-time = "2025-10-02T14:35:12.971Z" }, + { url = "https://files.pythonhosted.org/packages/e9/3a/6797e0114c21d1725e2577508e24006fd7ff1d8c0c502d3b52e45c1771d8/xxhash-3.6.0-cp313-cp313-win32.whl", hash = "sha256:2577b276e060b73b73a53042ea5bd5203d3e6347ce0d09f98500f418a9fcf799", size = 30620, upload-time = "2025-10-02T14:35:14.129Z" }, + { url = "https://files.pythonhosted.org/packages/86/15/9bc32671e9a38b413a76d24722a2bf8784a132c043063a8f5152d390b0f9/xxhash-3.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:757320d45d2fbcce8f30c42a6b2f47862967aea7bf458b9625b4bbe7ee390392", size = 31542, upload-time = "2025-10-02T14:35:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/39/c5/cc01e4f6188656e56112d6a8e0dfe298a16934b8c47a247236549a3f7695/xxhash-3.6.0-cp313-cp313-win_arm64.whl", hash = "sha256:457b8f85dec5825eed7b69c11ae86834a018b8e3df5e77783c999663da2f96d6", size = 27880, upload-time = "2025-10-02T14:35:16.315Z" }, + { url = "https://files.pythonhosted.org/packages/f3/30/25e5321c8732759e930c555176d37e24ab84365482d257c3b16362235212/xxhash-3.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a42e633d75cdad6d625434e3468126c73f13f7584545a9cf34e883aa1710e702", size = 32956, upload-time = "2025-10-02T14:35:17.413Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3c/0573299560d7d9f8ab1838f1efc021a280b5ae5ae2e849034ef3dee18810/xxhash-3.6.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:568a6d743219e717b07b4e03b0a828ce593833e498c3b64752e0f5df6bfe84db", size = 31072, upload-time = "2025-10-02T14:35:18.844Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1c/52d83a06e417cd9d4137722693424885cc9878249beb3a7c829e74bf7ce9/xxhash-3.6.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:bec91b562d8012dae276af8025a55811b875baace6af510412a5e58e3121bc54", size = 196409, upload-time = "2025-10-02T14:35:20.31Z" }, + { url = "https://files.pythonhosted.org/packages/e3/8e/c6d158d12a79bbd0b878f8355432075fc82759e356ab5a111463422a239b/xxhash-3.6.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78e7f2f4c521c30ad5e786fdd6bae89d47a32672a80195467b5de0480aa97b1f", size = 215736, upload-time = "2025-10-02T14:35:21.616Z" }, + { url = "https://files.pythonhosted.org/packages/bc/68/c4c80614716345d55071a396cf03d06e34b5f4917a467faf43083c995155/xxhash-3.6.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3ed0df1b11a79856df5ffcab572cbd6b9627034c1c748c5566fa79df9048a7c5", size = 214833, upload-time = "2025-10-02T14:35:23.32Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e9/ae27c8ffec8b953efa84c7c4a6c6802c263d587b9fc0d6e7cea64e08c3af/xxhash-3.6.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0e4edbfc7d420925b0dd5e792478ed393d6e75ff8fc219a6546fb446b6a417b1", size = 448348, upload-time = "2025-10-02T14:35:25.111Z" }, + { url = "https://files.pythonhosted.org/packages/d7/6b/33e21afb1b5b3f46b74b6bd1913639066af218d704cc0941404ca717fc57/xxhash-3.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fba27a198363a7ef87f8c0f6b171ec36b674fe9053742c58dd7e3201c1ab30ee", size = 196070, upload-time = "2025-10-02T14:35:26.586Z" }, + { url = "https://files.pythonhosted.org/packages/96/b6/fcabd337bc5fa624e7203aa0fa7d0c49eed22f72e93229431752bddc83d9/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:794fe9145fe60191c6532fa95063765529770edcdd67b3d537793e8004cabbfd", size = 212907, upload-time = "2025-10-02T14:35:28.087Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d3/9ee6160e644d660fcf176c5825e61411c7f62648728f69c79ba237250143/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:6105ef7e62b5ac73a837778efc331a591d8442f8ef5c7e102376506cb4ae2729", size = 200839, upload-time = "2025-10-02T14:35:29.857Z" }, + { url = "https://files.pythonhosted.org/packages/0d/98/e8de5baa5109394baf5118f5e72ab21a86387c4f89b0e77ef3e2f6b0327b/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f01375c0e55395b814a679b3eea205db7919ac2af213f4a6682e01220e5fe292", size = 213304, upload-time = "2025-10-02T14:35:31.222Z" }, + { url = "https://files.pythonhosted.org/packages/7b/1d/71056535dec5c3177eeb53e38e3d367dd1d16e024e63b1cee208d572a033/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d706dca2d24d834a4661619dcacf51a75c16d65985718d6a7d73c1eeeb903ddf", size = 416930, upload-time = "2025-10-02T14:35:32.517Z" }, + { url = "https://files.pythonhosted.org/packages/dc/6c/5cbde9de2cd967c322e651c65c543700b19e7ae3e0aae8ece3469bf9683d/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f059d9faeacd49c0215d66f4056e1326c80503f51a1532ca336a385edadd033", size = 193787, upload-time = "2025-10-02T14:35:33.827Z" }, + { url = "https://files.pythonhosted.org/packages/19/fa/0172e350361d61febcea941b0cc541d6e6c8d65d153e85f850a7b256ff8a/xxhash-3.6.0-cp313-cp313t-win32.whl", hash = "sha256:1244460adc3a9be84731d72b8e80625788e5815b68da3da8b83f78115a40a7ec", size = 30916, upload-time = "2025-10-02T14:35:35.107Z" }, + { url = "https://files.pythonhosted.org/packages/ad/e6/e8cf858a2b19d6d45820f072eff1bea413910592ff17157cabc5f1227a16/xxhash-3.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b1e420ef35c503869c4064f4a2f2b08ad6431ab7b229a05cce39d74268bca6b8", size = 31799, upload-time = "2025-10-02T14:35:36.165Z" }, + { url = "https://files.pythonhosted.org/packages/56/15/064b197e855bfb7b343210e82490ae672f8bc7cdf3ddb02e92f64304ee8a/xxhash-3.6.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ec44b73a4220623235f67a996c862049f375df3b1052d9899f40a6382c32d746", size = 28044, upload-time = "2025-10-02T14:35:37.195Z" }, +] + +[[package]] +name = "yarl" +version = "1.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/8a/94615bc31022f711add374097ad4144d569e95ff3c38d39215d07ac153a0/yarl-1.23.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1932b6b8bba8d0160a9d1078aae5838a66039e8832d41d2992daa9a3a08f7860", size = 124737, upload-time = "2026-03-01T22:05:12.897Z" }, + { url = "https://files.pythonhosted.org/packages/e3/6f/c6554045d59d64052698add01226bc867b52fe4a12373415d7991fdca95d/yarl-1.23.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:411225bae281f114067578891bc75534cfb3d92a3b4dfef7a6ca78ba354e6069", size = 87029, upload-time = "2026-03-01T22:05:14.376Z" }, + { url = "https://files.pythonhosted.org/packages/19/2a/725ecc166d53438bc88f76822ed4b1e3b10756e790bafd7b523fe97c322d/yarl-1.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13a563739ae600a631c36ce096615fe307f131344588b0bc0daec108cdb47b25", size = 86310, upload-time = "2026-03-01T22:05:15.71Z" }, + { url = "https://files.pythonhosted.org/packages/99/30/58260ed98e6ff7f90ba84442c1ddd758c9170d70327394a6227b310cd60f/yarl-1.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9cbf44c5cb4a7633d078788e1b56387e3d3cf2b8139a3be38040b22d6c3221c8", size = 97587, upload-time = "2026-03-01T22:05:17.384Z" }, + { url = "https://files.pythonhosted.org/packages/76/0a/8b08aac08b50682e65759f7f8dde98ae8168f72487e7357a5d684c581ef9/yarl-1.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:53ad387048f6f09a8969631e4de3f1bf70c50e93545d64af4f751b2498755072", size = 92528, upload-time = "2026-03-01T22:05:18.804Z" }, + { url = "https://files.pythonhosted.org/packages/52/07/0b7179101fe5f8385ec6c6bb5d0cb9f76bd9fb4a769591ab6fb5cdbfc69a/yarl-1.23.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4a59ba56f340334766f3a4442e0efd0af895fae9e2b204741ef885c446b3a1a8", size = 105339, upload-time = "2026-03-01T22:05:20.235Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8a/36d82869ab5ec829ca8574dfcb92b51286fcfb1e9c7a73659616362dc880/yarl-1.23.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:803a3c3ce4acc62eaf01eaca1208dcf0783025ef27572c3336502b9c232005e7", size = 105061, upload-time = "2026-03-01T22:05:22.268Z" }, + { url = "https://files.pythonhosted.org/packages/66/3e/868e5c3364b6cee19ff3e1a122194fa4ce51def02c61023970442162859e/yarl-1.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3d2bff8f37f8d0f96c7ec554d16945050d54462d6e95414babaa18bfafc7f51", size = 100132, upload-time = "2026-03-01T22:05:23.638Z" }, + { url = "https://files.pythonhosted.org/packages/cf/26/9c89acf82f08a52cb52d6d39454f8d18af15f9d386a23795389d1d423823/yarl-1.23.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c75eb09e8d55bceb4367e83496ff8ef2bc7ea6960efb38e978e8073ea59ecb67", size = 99289, upload-time = "2026-03-01T22:05:25.749Z" }, + { url = "https://files.pythonhosted.org/packages/6f/54/5b0db00d2cb056922356104468019c0a132e89c8d3ab67d8ede9f4483d2a/yarl-1.23.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877b0738624280e34c55680d6054a307aa94f7d52fa0e3034a9cc6e790871da7", size = 96950, upload-time = "2026-03-01T22:05:27.318Z" }, + { url = "https://files.pythonhosted.org/packages/f6/40/10fa93811fd439341fad7e0718a86aca0de9548023bbb403668d6555acab/yarl-1.23.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:b5405bb8f0e783a988172993cfc627e4d9d00432d6bbac65a923041edacf997d", size = 93960, upload-time = "2026-03-01T22:05:28.738Z" }, + { url = "https://files.pythonhosted.org/packages/bc/d2/8ae2e6cd77d0805f4526e30ec43b6f9a3dfc542d401ac4990d178e4bf0cf/yarl-1.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1c3a3598a832590c5a3ce56ab5576361b5688c12cb1d39429cf5dba30b510760", size = 104703, upload-time = "2026-03-01T22:05:30.438Z" }, + { url = "https://files.pythonhosted.org/packages/2f/0c/b3ceacf82c3fe21183ce35fa2acf5320af003d52bc1fcf5915077681142e/yarl-1.23.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:8419ebd326430d1cbb7efb5292330a2cf39114e82df5cc3d83c9a0d5ebeaf2f2", size = 98325, upload-time = "2026-03-01T22:05:31.835Z" }, + { url = "https://files.pythonhosted.org/packages/9d/e0/12900edd28bdab91a69bd2554b85ad7b151f64e8b521fe16f9ad2f56477a/yarl-1.23.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:be61f6fff406ca40e3b1d84716fde398fc08bc63dd96d15f3a14230a0973ed86", size = 105067, upload-time = "2026-03-01T22:05:33.358Z" }, + { url = "https://files.pythonhosted.org/packages/15/61/74bb1182cf79c9bbe4eb6b1f14a57a22d7a0be5e9cedf8e2d5c2086474c3/yarl-1.23.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ceb13c5c858d01321b5d9bb65e4cf37a92169ea470b70fec6f236b2c9dd7e34", size = 100285, upload-time = "2026-03-01T22:05:35.4Z" }, + { url = "https://files.pythonhosted.org/packages/69/7f/cd5ef733f2550de6241bd8bd8c3febc78158b9d75f197d9c7baa113436af/yarl-1.23.0-cp312-cp312-win32.whl", hash = "sha256:fffc45637bcd6538de8b85f51e3df3223e4ad89bccbfca0481c08c7fc8b7ed7d", size = 82359, upload-time = "2026-03-01T22:05:36.811Z" }, + { url = "https://files.pythonhosted.org/packages/f5/be/25216a49daeeb7af2bec0db22d5e7df08ed1d7c9f65d78b14f3b74fd72fc/yarl-1.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:f69f57305656a4852f2a7203efc661d8c042e6cc67f7acd97d8667fb448a426e", size = 87674, upload-time = "2026-03-01T22:05:38.171Z" }, + { url = "https://files.pythonhosted.org/packages/d2/35/aeab955d6c425b227d5b7247eafb24f2653fedc32f95373a001af5dfeb9e/yarl-1.23.0-cp312-cp312-win_arm64.whl", hash = "sha256:6e87a6e8735b44816e7db0b2fbc9686932df473c826b0d9743148432e10bb9b9", size = 81879, upload-time = "2026-03-01T22:05:40.006Z" }, + { url = "https://files.pythonhosted.org/packages/9a/4b/a0a6e5d0ee8a2f3a373ddef8a4097d74ac901ac363eea1440464ccbe0898/yarl-1.23.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:16c6994ac35c3e74fb0ae93323bf8b9c2a9088d55946109489667c510a7d010e", size = 123796, upload-time = "2026-03-01T22:05:41.412Z" }, + { url = "https://files.pythonhosted.org/packages/67/b6/8925d68af039b835ae876db5838e82e76ec87b9782ecc97e192b809c4831/yarl-1.23.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4a42e651629dafb64fd5b0286a3580613702b5809ad3f24934ea87595804f2c5", size = 86547, upload-time = "2026-03-01T22:05:42.841Z" }, + { url = "https://files.pythonhosted.org/packages/ae/50/06d511cc4b8e0360d3c94af051a768e84b755c5eb031b12adaaab6dec6e5/yarl-1.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7c6b9461a2a8b47c65eef63bb1c76a4f1c119618ffa99ea79bc5bb1e46c5821b", size = 85854, upload-time = "2026-03-01T22:05:44.85Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f4/4e30b250927ffdab4db70da08b9b8d2194d7c7b400167b8fbeca1e4701ca/yarl-1.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2569b67d616eab450d262ca7cb9f9e19d2f718c70a8b88712859359d0ab17035", size = 98351, upload-time = "2026-03-01T22:05:46.836Z" }, + { url = "https://files.pythonhosted.org/packages/86/fc/4118c5671ea948208bdb1492d8b76bdf1453d3e73df051f939f563e7dcc5/yarl-1.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e9d9a4d06d3481eab79803beb4d9bd6f6a8e781ec078ac70d7ef2dcc29d1bea5", size = 92711, upload-time = "2026-03-01T22:05:48.316Z" }, + { url = "https://files.pythonhosted.org/packages/56/11/1ed91d42bd9e73c13dc9e7eb0dd92298d75e7ac4dd7f046ad0c472e231cd/yarl-1.23.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f514f6474e04179d3d33175ed3f3e31434d3130d42ec153540d5b157deefd735", size = 106014, upload-time = "2026-03-01T22:05:50.028Z" }, + { url = "https://files.pythonhosted.org/packages/ce/c9/74e44e056a23fbc33aca71779ef450ca648a5bc472bdad7a82339918f818/yarl-1.23.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fda207c815b253e34f7e1909840fd14299567b1c0eb4908f8c2ce01a41265401", size = 105557, upload-time = "2026-03-01T22:05:51.416Z" }, + { url = "https://files.pythonhosted.org/packages/66/fe/b1e10b08d287f518994f1e2ff9b6d26f0adeecd8dd7d533b01bab29a3eda/yarl-1.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:34b6cf500e61c90f305094911f9acc9c86da1a05a7a3f5be9f68817043f486e4", size = 101559, upload-time = "2026-03-01T22:05:52.872Z" }, + { url = "https://files.pythonhosted.org/packages/72/59/c5b8d94b14e3d3c2a9c20cb100119fd534ab5a14b93673ab4cc4a4141ea5/yarl-1.23.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d7504f2b476d21653e4d143f44a175f7f751cd41233525312696c76aa3dbb23f", size = 100502, upload-time = "2026-03-01T22:05:54.954Z" }, + { url = "https://files.pythonhosted.org/packages/77/4f/96976cb54cbfc5c9fd73ed4c51804f92f209481d1fb190981c0f8a07a1d7/yarl-1.23.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:578110dd426f0d209d1509244e6d4a3f1a3e9077655d98c5f22583d63252a08a", size = 98027, upload-time = "2026-03-01T22:05:56.409Z" }, + { url = "https://files.pythonhosted.org/packages/63/6e/904c4f476471afdbad6b7e5b70362fb5810e35cd7466529a97322b6f5556/yarl-1.23.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:609d3614d78d74ebe35f54953c5bbd2ac647a7ddb9c30a5d877580f5e86b22f2", size = 95369, upload-time = "2026-03-01T22:05:58.141Z" }, + { url = "https://files.pythonhosted.org/packages/9d/40/acfcdb3b5f9d68ef499e39e04d25e141fe90661f9d54114556cf83be8353/yarl-1.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4966242ec68afc74c122f8459abd597afd7d8a60dc93d695c1334c5fd25f762f", size = 105565, upload-time = "2026-03-01T22:06:00.286Z" }, + { url = "https://files.pythonhosted.org/packages/5e/c6/31e28f3a6ba2869c43d124f37ea5260cac9c9281df803c354b31f4dd1f3c/yarl-1.23.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e0fd068364a6759bc794459f0a735ab151d11304346332489c7972bacbe9e72b", size = 99813, upload-time = "2026-03-01T22:06:01.712Z" }, + { url = "https://files.pythonhosted.org/packages/08/1f/6f65f59e72d54aa467119b63fc0b0b1762eff0232db1f4720cd89e2f4a17/yarl-1.23.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:39004f0ad156da43e86aa71f44e033de68a44e5a31fc53507b36dd253970054a", size = 105632, upload-time = "2026-03-01T22:06:03.188Z" }, + { url = "https://files.pythonhosted.org/packages/a3/c4/18b178a69935f9e7a338127d5b77d868fdc0f0e49becd286d51b3a18c61d/yarl-1.23.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e5723c01a56c5028c807c701aa66722916d2747ad737a046853f6c46f4875543", size = 101895, upload-time = "2026-03-01T22:06:04.651Z" }, + { url = "https://files.pythonhosted.org/packages/8f/54/f5b870b5505663911dba950a8e4776a0dbd51c9c54c0ae88e823e4b874a0/yarl-1.23.0-cp313-cp313-win32.whl", hash = "sha256:1b6b572edd95b4fa8df75de10b04bc81acc87c1c7d16bcdd2035b09d30acc957", size = 82356, upload-time = "2026-03-01T22:06:06.04Z" }, + { url = "https://files.pythonhosted.org/packages/7a/84/266e8da36879c6edcd37b02b547e2d9ecdfea776be49598e75696e3316e1/yarl-1.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:baaf55442359053c7d62f6f8413a62adba3205119bcb6f49594894d8be47e5e3", size = 87515, upload-time = "2026-03-01T22:06:08.107Z" }, + { url = "https://files.pythonhosted.org/packages/00/fd/7e1c66efad35e1649114fa13f17485f62881ad58edeeb7f49f8c5e748bf9/yarl-1.23.0-cp313-cp313-win_arm64.whl", hash = "sha256:fb4948814a2a98e3912505f09c9e7493b1506226afb1f881825368d6fb776ee3", size = 81785, upload-time = "2026-03-01T22:06:10.181Z" }, + { url = "https://files.pythonhosted.org/packages/9c/fc/119dd07004f17ea43bb91e3ece6587759edd7519d6b086d16bfbd3319982/yarl-1.23.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:aecfed0b41aa72b7881712c65cf764e39ce2ec352324f5e0837c7048d9e6daaa", size = 130719, upload-time = "2026-03-01T22:06:11.708Z" }, + { url = "https://files.pythonhosted.org/packages/e6/0d/9f2348502fbb3af409e8f47730282cd6bc80dec6630c1e06374d882d6eb2/yarl-1.23.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a41bcf68efd19073376eb8cf948b8d9be0af26256403e512bb18f3966f1f9120", size = 89690, upload-time = "2026-03-01T22:06:13.429Z" }, + { url = "https://files.pythonhosted.org/packages/50/93/e88f3c80971b42cfc83f50a51b9d165a1dbf154b97005f2994a79f212a07/yarl-1.23.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cde9a2ecd91668bcb7f077c4966d8ceddb60af01b52e6e3e2680e4cf00ad1a59", size = 89851, upload-time = "2026-03-01T22:06:15.53Z" }, + { url = "https://files.pythonhosted.org/packages/1c/07/61c9dd8ba8f86473263b4036f70fb594c09e99c0d9737a799dfd8bc85651/yarl-1.23.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5023346c4ee7992febc0068e7593de5fa2bf611848c08404b35ebbb76b1b0512", size = 95874, upload-time = "2026-03-01T22:06:17.553Z" }, + { url = "https://files.pythonhosted.org/packages/9e/e9/f9ff8ceefba599eac6abddcfb0b3bee9b9e636e96dbf54342a8577252379/yarl-1.23.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d1009abedb49ae95b136a8904a3f71b342f849ffeced2d3747bf29caeda218c4", size = 88710, upload-time = "2026-03-01T22:06:19.004Z" }, + { url = "https://files.pythonhosted.org/packages/eb/78/0231bfcc5d4c8eec220bc2f9ef82cb4566192ea867a7c5b4148f44f6cbcd/yarl-1.23.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a8d00f29b42f534cc8aa3931cfe773b13b23e561e10d2b26f27a8d309b0e82a1", size = 101033, upload-time = "2026-03-01T22:06:21.203Z" }, + { url = "https://files.pythonhosted.org/packages/cd/9b/30ea5239a61786f18fd25797151a17fbb3be176977187a48d541b5447dd4/yarl-1.23.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:95451e6ce06c3e104556d73b559f5da6c34a069b6b62946d3ad66afcd51642ea", size = 100817, upload-time = "2026-03-01T22:06:22.738Z" }, + { url = "https://files.pythonhosted.org/packages/62/e2/a4980481071791bc83bce2b7a1a1f7adcabfa366007518b4b845e92eeee3/yarl-1.23.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:531ef597132086b6cf96faa7c6c1dcd0361dd5f1694e5cc30375907b9b7d3ea9", size = 97482, upload-time = "2026-03-01T22:06:24.21Z" }, + { url = "https://files.pythonhosted.org/packages/e5/1e/304a00cf5f6100414c4b5a01fc7ff9ee724b62158a08df2f8170dfc72a2d/yarl-1.23.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:88f9fb0116fbfcefcab70f85cf4b74a2b6ce5d199c41345296f49d974ddb4123", size = 95949, upload-time = "2026-03-01T22:06:25.697Z" }, + { url = "https://files.pythonhosted.org/packages/68/03/093f4055ed4cae649ac53bca3d180bd37102e9e11d048588e9ab0c0108d0/yarl-1.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e7b0460976dc75cb87ad9cc1f9899a4b97751e7d4e77ab840fc9b6d377b8fd24", size = 95839, upload-time = "2026-03-01T22:06:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/b9/28/4c75ebb108f322aa8f917ae10a8ffa4f07cae10a8a627b64e578617df6a0/yarl-1.23.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:115136c4a426f9da976187d238e84139ff6b51a20839aa6e3720cd1026d768de", size = 90696, upload-time = "2026-03-01T22:06:29.048Z" }, + { url = "https://files.pythonhosted.org/packages/23/9c/42c2e2dd91c1a570402f51bdf066bfdb1241c2240ba001967bad778e77b7/yarl-1.23.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:ead11956716a940c1abc816b7df3fa2b84d06eaed8832ca32f5c5e058c65506b", size = 100865, upload-time = "2026-03-01T22:06:30.525Z" }, + { url = "https://files.pythonhosted.org/packages/74/05/1bcd60a8a0a914d462c305137246b6f9d167628d73568505fce3f1cb2e65/yarl-1.23.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:fe8f8f5e70e6dbdfca9882cd9deaac058729bcf323cf7a58660901e55c9c94f6", size = 96234, upload-time = "2026-03-01T22:06:32.692Z" }, + { url = "https://files.pythonhosted.org/packages/90/b2/f52381aac396d6778ce516b7bc149c79e65bfc068b5de2857ab69eeea3b7/yarl-1.23.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:a0e317df055958a0c1e79e5d2aa5a5eaa4a6d05a20d4b0c9c3f48918139c9fc6", size = 100295, upload-time = "2026-03-01T22:06:34.268Z" }, + { url = "https://files.pythonhosted.org/packages/e5/e8/638bae5bbf1113a659b2435d8895474598afe38b4a837103764f603aba56/yarl-1.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f0fd84de0c957b2d280143522c4f91a73aada1923caee763e24a2b3fda9f8a5", size = 97784, upload-time = "2026-03-01T22:06:35.864Z" }, + { url = "https://files.pythonhosted.org/packages/80/25/a3892b46182c586c202629fc2159aa13975d3741d52ebd7347fd501d48d5/yarl-1.23.0-cp313-cp313t-win32.whl", hash = "sha256:93a784271881035ab4406a172edb0faecb6e7d00f4b53dc2f55919d6c9688595", size = 88313, upload-time = "2026-03-01T22:06:37.39Z" }, + { url = "https://files.pythonhosted.org/packages/43/68/8c5b36aa5178900b37387937bc2c2fe0e9505537f713495472dcf6f6fccc/yarl-1.23.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dd00607bffbf30250fe108065f07453ec124dbf223420f57f5e749b04295e090", size = 94932, upload-time = "2026-03-01T22:06:39.579Z" }, + { url = "https://files.pythonhosted.org/packages/c6/cc/d79ba8292f51f81f4dc533a8ccfb9fc6992cabf0998ed3245de7589dc07c/yarl-1.23.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ac09d42f48f80c9ee1635b2fcaa819496a44502737660d3c0f2ade7526d29144", size = 84786, upload-time = "2026-03-01T22:06:41.988Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" }, +] From 167187b49bc5853ce87c4989f79570456f8ff088 Mon Sep 17 00:00:00 2001 From: David Corney Date: Tue, 7 Apr 2026 12:57:54 +0100 Subject: [PATCH 06/11] Adding flowchart --- scripts/encoder_experiment/flowchart.md | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scripts/encoder_experiment/flowchart.md diff --git a/scripts/encoder_experiment/flowchart.md b/scripts/encoder_experiment/flowchart.md new file mode 100644 index 0000000..2055e42 --- /dev/null +++ b/scripts/encoder_experiment/flowchart.md @@ -0,0 +1,28 @@ +```mermaid + graph TD + %% Main Flow + A(Polygraph daily cronjob ) --> B(LLM responses) + B --> C1[extract atoms] + + subgraph factuality [Factuality] + C1 --> C2[find/label repeats] + C2 --> C3[auto mark accuracy] + end + + + B -.-> N1(extract URLs) + %% Green Path (Annotated Flow) + subgraph URL [Source consistency] + + N1 --> N2(find/label repeats) + N2 --> N3(auto-mark consistency) + N3 <--> N4@{ shape:lean-l, label: "manual mark (source)" } + end + + %% Bottom Outputs + C3 --> D1[/factuality score/] + C3 <--> D2@{ shape: lean-l, label: "manual marker (factuality)" } + D2 <--> D3[Web UI] + N4 <--> D3 + +``` From 8544f5f76d12d63db7e1f641c6ab5c5f05069ead Mon Sep 17 00:00:00 2001 From: David Corney Date: Mon, 18 May 2026 10:27:00 +0000 Subject: [PATCH 07/11] feat: Use pretrained local models to answer questions --- pyproject.toml | 1 + .../encoder_experiment/finetune_encoder.py | 5 +- .../fullfact-2026-03-31-claims.jsonl | 118724 --------------- scripts/encoder_experiment/label_sentences.py | 9 +- scripts/encoder_experiment/local_answerer.py | 83 + src/pastel/pastel.py | 2 + src/training/beam_search.py | 74 +- uv.lock | 1506 +- 8 files changed, 1014 insertions(+), 119390 deletions(-) delete mode 100644 scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl create mode 100644 scripts/encoder_experiment/local_answerer.py diff --git a/pyproject.toml b/pyproject.toml index 6f06876..a120c3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ dependencies = [ "scipy-stubs>=1.15.3.0", "types-requests>=2.32.4.20250809", "tenacity>=9.1.2", + "python-dotenv>=1.2.2", ] [tool.uv.sources] diff --git a/scripts/encoder_experiment/finetune_encoder.py b/scripts/encoder_experiment/finetune_encoder.py index 5c27f5b..de6903b 100644 --- a/scripts/encoder_experiment/finetune_encoder.py +++ b/scripts/encoder_experiment/finetune_encoder.py @@ -9,7 +9,9 @@ Each model is fine-tuned separately for each question (NLI-style: input = question + sentence). Results are written to a CSV and a summary table is printed to stdout. -Dependencies (install manually, not in pyproject.toml): +Dependencies for local fine-tuning: + uv sync --group ml-labeller +or pip install "transformers>=4.40" datasets torch accelerate scikit-learn Usage: @@ -59,6 +61,7 @@ def setup_logging(output_dir: Path) -> None: @dataclass class QuestionDataset: + # set of training data for one Pastel question question: str inputs: list[str] labels: list[int] diff --git a/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl b/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl deleted file mode 100644 index acf8952..0000000 --- a/scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl +++ /dev/null @@ -1,118724 +0,0 @@ -[ -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", - "media_hash": "04b6c31bcbf782e92cd7694f251c5e5f8bf0063fac1543da8a706c6d", - "sequence": 189, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465, - "senedd_election": 5.548465 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", - "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.51636, - "senedd_election": 5.51636, - "scottish_elections": 5.51636 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", - "media_hash": "6d42615c7f0605e2173116517852450ce41e72015a7ce881267c0745", - "sequence": 188, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "senedd_election": 5.395685 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", - "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.2593950000000005, - "senedd_election": 5.2593950000000005, - "scottish_elections": 5.2593950000000005 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", - "media_hash": "5cca71869e48351c12169c35e857ba6b12cebb74ad71326f6ed3d94b", - "sequence": 852, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 5.123595, - "scottish_elections": 5.123595 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", - "media_hash": "735b17ec975d6f20b22ae031a12d64fc63dd562a5a9156ec5d19c737", - "sequence": 888, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 5.09725, - "scottish_elections": 5.09725 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", - "media_hash": "e33546ce5c49873822230392e567021631711e43eb996092b3a8aea1", - "sequence": 195, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.981275, - "senedd_election": 4.981275 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", - "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.910905, - "senedd_election": 4.910905, - "scottish_elections": 4.910905 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", - "media_hash": "89ebe066db59c305dd3ec3faa21d71656b9184a78a9f6e2ba4cf78bf", - "sequence": 207, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.901365, - "senedd_election": 4.901365 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", - "media_hash": "cc00c0f2de04f4d6ef1c659b298827e66ce518bce8e886676530ea52", - "sequence": 222, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.884875, - "senedd_election": 4.884875 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", - "media_hash": "f10812f879772d722a90c5753954ada30817cb9cb276769d88c40ae6", - "sequence": 209, - "claim_type": [ - "personal", - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.722555, - "senedd_election": 4.722555 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "The funding comes from \u00a33.8m allocated to Wales by the UK Government earlier this month.", - "media_hash": "1c809ddad81a14516c21b359c702a7f1d785493d28aefb12d24c0690", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.5769, - "senedd_election": 4.5769 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "media_hash": "97e06701f4afc3537fff344c720bd9dfc26d4666a6cfd00dd610558e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another \u00a3150m added (to the \u00a31.1bn forecast).", - "media_hash": "a548162e66678724fc52130304025c60248738e32de1e97e6410abe4", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", - "media_hash": "1790d24fe6a685c7056e090f0b29a3e1327f49fcbf9f3d3d45fc35b4", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", - "media_hash": "5e14b797cb604f60f17ac178f6ca87ee0363656ecceb406b0e31e197", - "sequence": 203, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "Three Reform candidates quit in one Welsh constituency", - "publication_date": "2026-03-31T18:17:49", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/cje47941j4qo", - "media_type": "news_article", - "sentence": { - "text": "In total the party has lost four candidates across Wales in one week - while two had pulled out before Reform's lists were published.", - "media_hash": "63cf5493362055887adfdaf5e1f7e49fb71306f17055f7e0b25334c3", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", - "media_hash": "7321467dbae8b34f32354179b19b9f5b50f626fb02543aabc4e3c615", - "sequence": 213, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52192, - "senedd_election": 4.52192 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", - "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Food for Thought report", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.400095, - "senedd_election": 4.400095, - "scottish_elections": 4.400095 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Across the network, Transport for Wales, via the Welsh Government, has invested \u00a3800m in brand new rolling stock.", - "media_hash": "deb1d28b7151066ba26d0a716bbe5fc4088a6e5b57b1e2b1111364a7", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.3787199999999995, - "senedd_election": 4.3787199999999995 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Thousands in Wales to get \u00a3200 boost as prices rise", - "media_hash": "9e6938159d503cdf718fa61857220ce2ee9c12db1a824303ca77e96f", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.347765, - "senedd_election": 4.347765 - } - } - } -}, -{ - "title": "Third Reform candidate quits before Senedd election citing 'serious concerns'", - "publication_date": "2026-03-31T19:47:01", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/politics/third-reform-candidate-quits-before-33694032", - "media_type": "news_article", - "sentence": { - "text": "Tuesday's announcement represents the third Reform candidate to quit the party a little over a month before the Senedd election.", - "media_hash": "eb832c092728c8d808a7892a29f64ca6a22124ed237824701891f713", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 4.347765 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", - "media_hash": "5efbf740e399c74f90322a3b727665855b05d792d9fa5305688acf39", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.347765, - "senedd_election": 4.347765 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", - "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", - "sequence": 20, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.285765, - "senedd_election": 4.285765, - "scottish_elections": 4.285765 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", - "media_hash": "162427decdce3e89de25776d85b4787b6ab6333ddceb57f4c6a86b16", - "sequence": 2, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.233315, - "senedd_election": 4.233315 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around \u00a31.3bn, nearly double its initial estimate.", - "media_hash": "19984977ee13d7b9a89dca728c6ae1fca5e898f958574fe7fc979f09", - "sequence": 1, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.224345, - "senedd_election": 4.224345 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", - "media_hash": "723a4073ac83b157ce9ce2c829fef1c007c0ffa8387deec8bb340c13", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.213945, - "senedd_election": 4.213945 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", - "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", - "sequence": 986, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.10166, - "senedd_election": 4.10166, - "scottish_elections": 4.10166 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", - "media_hash": "701c815f7dd14dd4af6ed552c3aa758c00e430388f99fab3d97534d8", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.10166, - "senedd_election": 4.10166 - } - } - } -}, -{ - "title": "UK drivers warned about seven key roads over Easter bank holidays with huge delays", - "publication_date": "2026-03-31T15:09:47", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/easter-bank-holiday-travel-disruption-36950018", - "media_type": "news_article", - "sentence": { - "text": "The A487 at Commins Coch near Aberystwyth, Wales, is amongst the longest-running improvement schemes currently underway in the country, with temporary traffic lights expected to remain in place until June 23, making it the most noteworthy set of Welsh roadworks to be aware of.", - "media_hash": "eefd2c58d0e365a555c02020d440367c6f270b23fd2baeb11f89314f", - "sequence": 11, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 4.0675799999999995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", - "media_hash": "1197ec5dba4741ad33a06fc85c2329dda8148771307400261972f525", - "sequence": 721, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.061165, - "senedd_election": 4.061165, - "leo_s_topic": 4.061165 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", - "media_hash": "8bfca18fbf84b97920d21b6ed7a0e629c08aa6a8109b2671f9818000", - "sequence": 17, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.061165, - "senedd_election": 4.061165 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get \u00a3200 towards their energy costs.", - "media_hash": "9a95461557b214e3fd4e4e19072df5b5e8332f2ec98dbc8b90f5ce96", - "sequence": 849, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 4.026165, - "scottish_elections": 4.026165 - } - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", - "media_hash": "3b268f47c38e5a8b213eb4a8f021ebb1463bab4c4c2853e2991ef30c", - "sequence": 21, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.8939399999999997, - "senedd_election": 3.8939399999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", - "media_hash": "3810f68df12e1160540ad95d2cf921bf86b1220ea66bf38307ee0bce", - "sequence": 211, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.866315, - "senedd_election": 3.866315 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", - "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", - "sequence": 971, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Aled Morgan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.758995, - "senedd_election": 3.758995, - "scottish_elections": 3.758995 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", - "media_hash": "30cd1723bfc823d3c1325faef9a519bf15b63ecc2df1f2db562bd254", - "sequence": 206, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", - "media_hash": "dd7fa4c05e4853cd8e48af38f594720ac09b3e705427a66cdefcdc09", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Yes, but they were able to make those reductions in England, weren't they, and we haven't been making them in Wales.", - "media_hash": "3c58c619030a45d79df5a145454fd77d82ac304f71a5dbd9b7678229", - "sequence": 997, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", - "media_hash": "ff60758d4c9ebd7c702029dfa88ddcb9a05353f4ddb2641dc6de91bd", - "sequence": 204, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", - "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.748535, - "senedd_election": 3.748535, - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", - "media_hash": "2673585d7ff5fa0234fc017c81f719afa40d136638c868b1624c1fff", - "sequence": 35, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.739565, - "senedd_election": 3.739565 - } - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", - "media_hash": "573609c807f573b1bd6ee9826ab8e4c956c3cc0a12ed5a64c45a88c2", - "sequence": 38, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "BBC Wales", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003, - "senedd_election": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", - "media_hash": "b229152d7b35d2076b7418f5de224ce7eb8e1a55bff4bdbe38acf7fb", - "sequence": 39, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003, - "senedd_election": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", - "media_hash": "5080801fa8dc55ff7852ae397478b79271eaaa10250c31393fcec110", - "sequence": 205, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135, - "senedd_election": 3.703135 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", - "media_hash": "34ccc96534a02304efc672d48c95705df7e434783b79da696a512117", - "sequence": 202, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.636075, - "senedd_election": 3.636075 - } - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "In Putting Wales First, a recently translated history of Plaid Cymru's political ideas, Prof Richard Wyn Jones references a 1940s newspaper editorial satirising the party's then preoccupations.", - "media_hash": "70b549322b296520ba7cd8af62759e197c7bee10623c05ff35d02895", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Prof Richard Wyn Jones", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", - "media_hash": "58358ea3e614030f18193aa7f5e2368d39bc5a42b77fe1d4e68fa826", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.58131, - "senedd_election": 3.58131 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", - "media_hash": "27e4a3f1581447eb536556e314efc4eb5694e2819e33dede6df8ffbe", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.58131, - "senedd_election": 3.58131 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "This manifesto is titled A new chapter for Wales.", - "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", - "sequence": 981, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "senedd_election": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", - "media_hash": "2148e03f5a316c96d45041dd4c587be626eebd57a33651a007df1db5", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.566845, - "senedd_election": 3.566845 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", - "media_hash": "a36c466ad1ad5179c22f8bc96d7a50c47ded9163e5c203a2276c5eac", - "sequence": 1015, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Reform whistleblower says vetting process is \u2018expensive, flawed and unprofessional\u2019", - "publication_date": "2026-03-31T11:29:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-whistleblower-says-vetting-process-is-expensive-flawed-and-unprofessional/", - "media_type": "news_article", - "sentence": { - "text": "Now a party insider says that the vetting process used for candidates in the Senedd elections in Wales is flawed.", - "media_hash": "1d3cca79d9bd10d704ef713ceb56aac46df8723ece86be3dce440c77", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform UK whistleblower", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", - "media_hash": "71a9563a9b06a998ddd6532b2bb5d34e2eff4a320668e8b864f91efe", - "sequence": 891, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", - "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", - "sequence": 987, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "senedd_election": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", - "media_hash": "02befcea8b75930565027e0a883c97662112260256f7e28092732a76", - "sequence": 33, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997, - "senedd_election": 3.5503549999999997 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", - "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "senedd_election": 3.548465, - "scottish_elections": 3.548465 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", - "media_hash": "cd06ed5004f404717f563a41c98f8290b205fbedbe0dfdd6c61f7e25", - "sequence": 16, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.436025, - "senedd_election": 3.436025 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", - "media_hash": "a5a6e1aec007a74d87cdb081bdc25bf760fbca0b00fa022854411817", - "sequence": 31, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.419705, - "senedd_election": 3.419705 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", - "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.414065, - "senedd_election": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", - "media_hash": "39bf9f789c5f9f7143aab76d89496a5d9e29741c06422b5be5f24ed8", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.414065, - "senedd_election": 3.414065 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", - "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.3956850000000003, - "senedd_election": 3.3956850000000003, - "scottish_elections": 3.3956850000000003 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", - "media_hash": "f16a963461e2d5b708e3a168a2feb7b4990a19962140cf19fb92600e", - "sequence": 32, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.381535, - "senedd_election": 3.381535 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", - "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.226865, - "senedd_election": 3.226865, - "scottish_elections": 3.226865 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", - "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.18436, - "senedd_election": 3.18436, - "scottish_elections": 3.18436 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", - "media_hash": "1a8ebe3abbe18f8d438ca4981f4d4675b005ab2d0c11f2fe222d773f", - "sequence": 890, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.09725, - "scottish_elections": 3.09725 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "As well as the impact on heating, petrol prices have reached highs we saw during the early stages of the war in Ukraine.", - "media_hash": "74ad971b0c41d9e9fe5da086cb058b01e5fab9ba7a86cf4c1c8bc27e", - "sequence": 115, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.09725 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", - "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.063685, - "senedd_election": 3.063685, - "scottish_elections": 3.063685 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Rhian Thomas is head of the Electoral Commission in Wales.", - "media_hash": "bfc418945f3e18f1e9a05c482c7dafcfda7bdb07ffd8bae025224d8d", - "sequence": 884, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.91647, - "scottish_elections": 2.91647 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It was launched yesterday ahead of the Senedd election in May.", - "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", - "sequence": 970, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.91647, - "senedd_election": 2.91647, - "scottish_elections": 2.91647 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", - "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", - "sequence": 18, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", - "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Chris Nottingham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Blaenau Gwent Food Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", - "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", - "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Every one of those increases is significant.", - "media_hash": "d00dc2ac1491107d2002c2ab350ba8801c1692ffb7f7272edec3e4a5", - "sequence": 171, - "checkworthiness": { - "fullfact": { - "senedd_election": 2.73922 - } - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "Numbers have steadily increased since the programme began in 2016, and now top 20,000.", - "media_hash": "b45d4065822e872b97944d36e9f44526a70296a581147b358167b902", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Y Ganolfan Dysgu Cymraeg Genedlaethol", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "More than \u00a3130m is spent each year on such schemes.", - "media_hash": "7e0303524cd63bac6650c4cc3e93fe75a79f51183806cc2f80065247", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "senedd_election": 2.6987249999999996 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", - "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6987249999999996, - "senedd_election": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "A sizable proportion are adult learners who have come via the workplace, but there have also been huge increases in take-up by 16- to 24-year-olds, and there is a growing level of participation among diverse ethnicities.", - "media_hash": "9da33f60e4c95ec505db023d3854105ca479e836946a46bc22705fcb", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Which is why you had stock out and I think that was driven by fear of shortage but also price increase.", - "media_hash": "ecd0375973bb1747fd0f2c7ba72904edbdc4d966b6057f44278f8276", - "sequence": 178, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.658185 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It is slowing up approaching for the four six five to Stan Darcy at 43 and for the A four seventy to Coton interchange, but the rest of the approaches are moving well and at the moment still moving on the A fifty five.", - "media_hash": "67efdae62c9afcfc47dfe70c38de59c33d8e11784381671935381794", - "sequence": 228, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5769 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "That's the latest, more on the roads just after nine.", - "media_hash": "f848ed7953eec660378653a7b1729a88ea92655e51cb73a21886837b", - "sequence": 912, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769, - "senedd_election": 2.5769 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "The maximum award for heating oil has been increased from \u00a3500 to \u00a3750 and people can now apply up to twice within a 12-month period.", - "media_hash": "25fe9f3524764fbdde96ed14412d4ddde8a70454a61f84c885fa613e", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "senedd_election": 2.5769 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", - "media_hash": "f595f3379bb6c0c7ec5223b0549b909175def4f2441a6e06f9ff1473", - "sequence": 11, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.563275, - "senedd_election": 2.563275 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", - "media_hash": "0ed85b9ec2c3c2264f789df882b9c87e8a9264bb75fb0db8b161b667", - "sequence": 944, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sam Davis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002, - "senedd_election": 2.5528750000000002 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The maximum award for heating oil has been increased from 500 pounds to 750.", - "media_hash": "ec6e566bba201aecc47218e747ee9c7d7428527132e332e058d2bff1", - "sequence": 111, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Uh, you had a reaction to the initial crisis, sales went up 40% over three days, which is unsustainable.", - "media_hash": "290450f884e11b64f55dca8540cf02c0711d69a4b9824c4904563ce2", - "sequence": 143, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", - "media_hash": "a7269be0d9118d0566a69aa4523b660b1974f120361f1e611914c5d0", - "sequence": 889, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", - "media_hash": "ccb61923a8122037970ff5be668dabf65abb8a65293ac17254684c4c", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The funding for this measure comes from the 3.8 million pounds given to Welsh ministers by the UK government as part of a package of support for those struggling with the recent jump in the cost of heating oil.", - "media_hash": "8522ab0c8ce1a280cc3655a4741716f83caa8eb614cebced3ca4a52a", - "sequence": 108, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Um, sales are becoming slower, and the margin is smaller, so we're selling less fuel at a lower margin, but our costs remain the same in terms of staffing and business rates etcetera.", - "media_hash": "4d8341ee0294ef175da72de960b8891ace14ccc440439aef8d83e77e", - "sequence": 126, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And we used to have a five-day delivery window, we're now on a six-day delivery window which helps hugely.", - "media_hash": "a35af89a510cc314ff98e9ca0dbe1ff679de2813fe473dc2bfd2e5d0", - "sequence": 163, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Yeah, the cost of our fuel's gone up dramatically, so prior to this crisis I would be paying 44,000 pounds for a load of fuel, it's about 56,000 pounds now.", - "media_hash": "8c3aaeeee01cc7abfe3d8d040cc54a118b833a8271e4583852e12d60", - "sequence": 159, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of \u00a3734m.", - "media_hash": "47080177b9a9766661fcbc56b5e8a3762d314eac6f83eee50d724e9f", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", - "media_hash": "c67679ac07dc8f9eba19de30f771b4bb7ec7c7992b1c313903b7fa97", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The budget had already been revised upwards to \u00a31.1bn in 2023.", - "media_hash": "5db2c65d4bce5a9c2600ba4cbbe5b076bcb0fb2d84f4fd4d506feebd", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The original budget, set back in 2016, consisted of \u00a3164m from the European Union, \u00a3445m from the Welsh Government and the \u00a31.3bn City Deal for the Cardiff Capital Region, and \u00a3125m from the UK Government.", - "media_hash": "49944e632af0943a9b5637ee742a48a4d07670e31f72f1e18a278a94", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "We were working on that basis and you can absorb one or two pence increase in costs, um, we've had three weeks where costs went up 16 pence, six pence and 12 pence.", - "media_hash": "5d3eeaf8d366a735a51fc82ac62188130a1af1db9c68ee0b3e0b9582", - "sequence": 136, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", - "media_hash": "41787f2644ba253a4f2e7f857310aeee8178ba57c4086071edeed42c", - "sequence": 212, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "More broadly, a recent report by the Welsh language commissioner emphasised that while the number of speakers has remained stable over decades, it has not risen to reflect significant growth in the population as a whole.", - "media_hash": "12e06b0e274c05560e776fd4cf545b6ac55f15fbb20322f17c2b9bfa", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "welsh language commissioner", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "That final projected cost has now edged up to around \u00a31.3bn.", - "media_hash": "bd8297e1114fc62c46bed5d670f749300b4d964bb7c623928cda9e2c", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A lot of fuel is bought on what's called Platts lagged, so the average price of the fuel last week is my price for the fuel this week.", - "media_hash": "7e801fc2b0e0325fd2516f06178326f912f9653caa42e11979772d68", - "sequence": 132, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.500545 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", - "media_hash": "004ba823dc56bccdfcc3be4892702fa69fbff9ce9b98ded6bb6c42be", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Genevieve Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.66914, - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.6691400000000005 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", - "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.51636, - "senedd_election": 5.51636, - "scottish_elections": 5.51636 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", - "media_hash": "b66f8e066a2d657921e8cfd051521135d4c6db0be212be923b09ab4a", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "scottish_elections": 5.395685 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", - "media_hash": "0f9e88f058cac2940fbf6498ba2d157d67033836dc35e3a614ea5e55", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", - "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 5.36473 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.395685 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", - "media_hash": "ec50e4f7c10fe0e85b14de778170d48390915708b0f26a73cf29626d", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "scottish_elections": 5.395685 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", - "media_hash": "6554b5bde2af8c5ddb7e290750c470b6a7ab3b127797bb26c36e2d91", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.395685, - "scottish_elections": 5.395685 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", - "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", - "media_hash": "26d2d3297861afc92462f405ae7576948ffeeb57d1ac9ccc1296963e", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.36473, - "clinical_health": 5.36473 - }, - "demo": { - "health": 5.395685 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", - "media_hash": "b29551ca7be24314f5f1d43a494dde5f196f1c6ba4f5da9695917038", - "sequence": 10, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.35651, - "clinical_health": 5.35651 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", - "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.2593950000000005, - "senedd_election": 5.2593950000000005, - "scottish_elections": 5.2593950000000005 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", - "media_hash": "a1c18b06030ee4071712635e52daa53d0bccbd26571f2da7fabfc184", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.123595, - "scottish_elections": 5.123595 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.123595 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", - "media_hash": "5cca71869e48351c12169c35e857ba6b12cebb74ad71326f6ed3d94b", - "sequence": 852, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 5.123595, - "scottish_elections": 5.123595 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", - "media_hash": "735b17ec975d6f20b22ae031a12d64fc63dd562a5a9156ec5d19c737", - "sequence": 888, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 5.09725, - "scottish_elections": 5.09725 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Now it has emerged that while there is a \u00a34.1m publicly funded furlough scheme to save jobs at the plant, ADL are pursuing the axing of a quarter of its workforce in Scotland.", - "media_hash": "05ab8de9104cc12541414d8c96ef2dd2d56fdcff81958b0ccbd06f8e", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.970815 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "According to Scottish Government records, ADL received \u00a358m of public 'subsidy' for green vehicles since 2020 under two schemes aimed at transitioning Scotland to green buses - despite the company having embarked on a 2020 plan to axe a third of its Scottish workforce.", - "media_hash": "1812dbced0c419c9670e5e0ba96db2cd996dd40c66e2099d90e77c9a", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.970815 - }, - "demo": { - "politics_of_food": 2.970815 - }, - "pa-media": { - "politics_of_food": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", - "media_hash": "2611e759b67cbaf02fd2d0c95a28ddda0856ae9c65e556156ec4657b", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.970815, - "scottish_elections": 4.970815 - }, - "demo": { - "health": 5.16655 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.970815 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", - "media_hash": "afde05da79416c3a4056d8f69a2d80422df9e65712db2099d2e60a10", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.970815, - "health": 4.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", - "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.910905, - "senedd_election": 4.910905, - "scottish_elections": 4.910905 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", - "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", - "sequence": 37, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.89529, - "scottish_elections": 4.89529, - "clinical_health": 4.89529 - }, - "demo": { - "health": 4.89644 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.89529 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Scottish Government plans to cut nearly 20,000 public sector jobs by the end of the decade cannot be done without cutting frontline services and could see Scotland \"sleepwalking into austerity\", a new report has warned.", - "media_hash": "5fc53ea8cbc065ae6238879f8b16ee369201f4a424a1fac1787e7af9", - "sequence": 1, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.775650000000001 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "media_hash": "2a25a1faab38036d5d9763298dd6fdfa27319a06d678bc177ccb21b4", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.772635, - "scottish_elections": 4.772635 - }, - "demo": { - "health": 3.47096 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", - "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", - "sequence": 29, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.761455, - "scottish_elections": 4.761455, - "clinical_health": 4.761455 - }, - "demo": { - "health": 4.914235 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.914235 - } - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", - "media_hash": "100af847f6668a7d1f2fafdc857572d77000e15ff174bea3397f1ecb", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.698725, - "scottish_elections": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits 'unacceptable \u0301, says Cancer Research", - "media_hash": "6eaf1f179ea47b820cd1bbeca3dba64b37b0aafee71d084b09644b65", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.67355, - "clinical_health": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", - "media_hash": "87120b7a50ec002539fc16fd9a68fc8443e41c2b9e9999fa88488f1c", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.67355, - "clinical_health": 4.67355 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits 'unacceptable \u0301 says Cancer Research", - "media_hash": "b2a5a16576d84cce39883c1c04ce9838a53c4668a0e31b61278a3f20", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355, - "scottish_elections": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "However, IPPR Scotland suggests that the primary mechanism for this-a \"managed, downward workforce trajectory of 0.5% on average per annum to 2029-30\"-is a \"political choice\" that could have devastating consequences for those who rely on these services most.", - "media_hash": "56abdbc73e0f097268bc7370b75bb3ce72cfb5df2b24a34657780dc3", - "sequence": 5, - "claim_type": [ - "quantity", - "rules", - "predictions" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.66132 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "In June 2025, the company announced plans to end manufacturing altogether in Falkirk and Larbert, consolidating operations at its English site in Scarborough-putting up to 400 jobs at risk in Scotland.", - "media_hash": "9bf4600bba4fc51502e369b57c2bd6f4c69ea1b07b3223d5a1fcc8cc", - "sequence": 24, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.649215 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with \u00a36.1million in dirty cash uncovered in a money laundering probe.", - "media_hash": "886030accad256797c9fbf799d0cbc53bfe44b72c5f1261118599d61", - "sequence": 30, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "EU Agency for Criminal Justice Cooperation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.61247, - "crime": 4.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "There are 32 councils in Scotland, with the majority of them recognising Easter Monday as a public holiday - though there are some notable exceptions.", - "media_hash": "105d6860a8e4f927c72534034fd5015a531a0eea1bb622d03dfa3ef8", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "Out of 32 councils in Scotland, 27 recognise Easter Monday, this year falling on April 6, as a bank holiday:", - "media_hash": "0ee6e4c41329888651f39b8a13725a3fc560528cbe9261b7b9667cc5", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Aberdeenshire Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Fewer houses are being built across Scotland.", - "media_hash": "342b75aeb205a5d36a1e5c7c142c8883d37a1d582cb0445055524184", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.5769, - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "Transport Scotland announced \u00a345 million in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", - "media_hash": "fc533afa4923d5fcf9d010585699c118dd6976e778da7a187a0da63f", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", - "publication_date": "2026-03-31T15:30:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", - "media_type": "news_article", - "sentence": { - "text": "Scotland team news: Scotland manager Steve Clarke has hinted at making six or seven changes from the side that faced Japan to rotate his squad.", - "media_hash": "42fe2912d789357bc60c0881ff8a0f3024e130d17b2dac79eeb19ff8", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scotland manager Steve Clarke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "There are then five councils in Scotland which don't consider Easter Monday a public holiday.", - "media_hash": "242f5216b38508eeab36c07128a13ac4f47ab0f42708b73fac492a69", - "sequence": 57, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Fife Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Midlothian Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North Ayrshire Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Borders Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", - "media_hash": "7dae7b1b15ddc96c46f5b1aa697bb9261b8fe6a6822e45ecd9017144", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769, - "clinical_health": 4.5769 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "It received 285 responses from GPs across Scotland.", - "media_hash": "3d9ac159d4915f533b5f6aa0adea7ee542af99f0bf3af7a52f62b545", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "And it said there was no such relief for the more than 2,000 premises in Scotland with a rateable value of more than \u00a3100,000.", - "media_hash": "6f05b78f338f20bbf2b3780a8cb6adc430053990dc22f2d342bad7e8", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769 - } - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer is the least popular political figure in Scotland.", - "media_hash": "f31660b6e57ddebe22603b82015caa6a3c5e9b98ffa0f6d39971c13b", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.556405, - "scottish_elections": 4.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", - "media_hash": "76ec4a223ed0db2829b87cfa360ee8c0111f354c2ac98afde052399a", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.552875, - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.400095 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", - "media_hash": "08c7e3840f71fb499c0e9e93fc1ea0a9ccd37fa87ac622ed9e272937", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Full Fact", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "health": 4.545945 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (\u03bcg/g), which England and Wales have since adopted.", - "media_hash": "c41dda165efcd05ca3f64ffc2790f54ac233f79e2d2f7d3931313602", - "sequence": 45, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T09:37:57", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "Reform UK leader Nigel Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for his Scottish leader Lord Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", - "media_hash": "9895d46dda169ab3df1fc7a9f96058145ff00b30fdac668fde03ffba", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform UK leader Nigel Farage", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Lord Malcolm Offord", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in...", - "publication_date": "2026-03-31T05:49:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "\"The Scottish Greens would roll out 1,140 hours of funded childcare to all two-year-olds in Scotland and provide 570 hours of funded childcare to every child from six months to two years old,\" she added.", - "media_hash": "3826e109d4cad269cd7307821fe79e8c551fa30876e5db6516cf51c4", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", - "media_hash": "75bd15cfe91e0e65733c558e2de5758cf08ff58f3094468f3aee3276", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945, - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", - "media_hash": "23c6fc7f1a5203bd7309cfa1790d7e445ebbee14ba91edf8cf40f3f9", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Trussell Trust", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Deer numbers, while unknown to the exact figure, are believed to have doubled in Scotland since the 1990s and are sitting at about one million, according to environmental groups.", - "media_hash": "9f09ab00fca8d89b9c783182b15107ec4418607e76b2a19f9caa881e", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Environmental groups", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", - "media_hash": "77fd166baef910f3f07dc4b4c3454cbcdbdec780b0af03dd0eb2e55a", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", - "media_hash": "50948043fc783903a84982750c7cddd6df24ad197ecf5a2785cbb117", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "Transport Scotland announced last Wednesday that \u00a345m in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", - "media_hash": "a0ebc796d6df49ea0668785eb1b154a73d06d760a804541b7e010c4c", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T09:37:57", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47 per cent for Prime Minister Sir Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", - "media_hash": "d4e3614bd48ecfe75c2e3ff4aad4db39b20d50fa3a8d941ad89163ab", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Prime Minister Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour leader Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "The poll also revealed the popularity of several politicians in Scotland, with John Swinney continuing to be the most popular political leader in Scotland, with a net favourability rating of minus 10%.", - "media_hash": "23301ae979f74a26b7def3b662af79f4be6ba362ba3bec31ba9ba9f1", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Private providers play a significantly smaller role in the NHS in Scotland than in England.", - "media_hash": "9b7f7450418b9a6f7a57f2c9a7e09e89a4dad5db115ef49b4d211f59", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "It comes as the Scottish Retail Consortium (SRC) warned that medium and larger shops in Scotland will pay \u00a3162 million more than their English counterparts over the next three years.", - "media_hash": "6ec863bb3f46cddcfc4f2d7d9a05255e175993835339be2ec61698a0", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "Data compiled from pump price comparison website PetrolPrices.com shows a litre of diesel costs up to 217.0p at some forecourts in rural Scotland.", - "media_hash": "a95b3ecc2083060a7c2c3f72e9cbcec78c1630baa2ae9e7cbbd18246", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "media_hash": "1c7e438a20ffd2f9661537161467b6da5cbec91235ba69da12027d07", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", - "media_hash": "495b0535e398cdee5acd61ae8d7aef1ec7fd9463a572e5f7e7cb441b", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "A total of 84 of Scotland's primary schools ensure that almost ever primary seven pupil is up to standard in reading, writing, numeracy, listening and talking according to a new league table.", - "media_hash": "8d750befa1114e70276632c45265b31435ae966cf7868fedf125a5a3", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Sunday Times", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40413, - "score": 0.21319999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Scottish social housing builds fall to lowest level since 2014", - "media_hash": "e26ab068c6cacaca523ace35ae70e3cc60ef0b5b6a0e67925aa64332", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", - "media_hash": "ce125bfcca3bd148604aa672cc71ccb57b435addd135db195f8303f6", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "ADL said the proposal would safeguard approximately 200 skilled manufacturing and support jobs previously at risk of redundancy and would retain approximately 350 roles within Scotland.", - "media_hash": "071e4de3fe9e2b2d86e6696ac29e6a08347f5bc8b03c4b8f05cff03e", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", - "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Currently, the public sector in Scotland employs 22.2% of workers, compared with 18.1% in the UK as a whole.", - "media_hash": "6e348b211564db92a3da88788b58cdcd3337a09d2f8077280cfac8d0", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", - "media_hash": "0394d2a438e55d77c935963434df6a27c982e1f33ec53377b8a33efd", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "1919 magazine", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "crime": 4.545945 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T17:00:00+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/DaveDooganSNP/status/2039024927437709388", - "media_type": "social_post", - "sentence": { - "text": "\u26a1\ufe0f\ud83d\udcb8 Scotland is a net exporter of electricity, yet households here are hit with some of the highest standing charges in the UK.", - "media_hash": "72d5121af43c4f25dcf600cee59ca8256c9aaa0e1a10cc2be70e42c2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Some \u00a34.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional \u00a35.4m.", - "media_hash": "930a886ee8c0000fe195223b32259aa786ec034a1b8aa96c95458bbb", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.5368999999999999 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", - "media_hash": "42d0adc8d3f341c013f99fc4f36a6d2243f8c7abd60aa666d92dc163", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "health": 4.545945 - } - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "This compared with minus 47 per cent for Prime Minister Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", - "media_hash": "0f20a7a91a5efbd471be68ca79a6157a7ab6e3b97f0a7c6a5ccc25d0", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "polls": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for Reform's Scottish leader Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", - "media_hash": "784e7e43c13ec30242124ed11c0e2037fedea75045102e527c841512", - "sequence": 13, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "A total of 1,197 primary schools provided data for the annual Achievement in Curriculum for Excellence Levels publications, with the remaining 729 on the government database not participating, either because no children were up to standard, the school roll was too small or the data was not collected centrally.", - "media_hash": "e09a6cc54383a2382e1aef8c09db1dcb3221e91272d7ce721e2b8079", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Sunday Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "By the time the 2020 jobs cut was in place, ADL had already received over \u00a38m in 'job securing' taxpayer funding which was promoted as supporting building a new greener business in Scotland.", - "media_hash": "9ddf78feff1a8cbf188097ab441989de7b6d7f7c037b21ccc7b7e12a", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.35450000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "Reform UK leader Nigel Farage has a minus 31% rating in Scotland, compared with minus 15% for his Scottish leader Lord Malcolm Offord, although 55% of respondents said they had no opinion of Lord Offord.", - "media_hash": "bc10e51272f1f44e89ccfb67cb743b3e3cc0fab603364b24e2467a7e", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Lord Malcolm Offord", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "65% of voters would back Mr Swinney over the Reform UK Scotland boss, while 35% would support Lord Offord.", - "media_hash": "e9480f164ab260b52f18422b7a168acc05da8e74778629708def8ca3", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "McBurnie hasn't played for Scotland for five years - and may never again - but he has 13 goals and seven assists in 30 games in the English Championship.", - "media_hash": "8529ee136d3ac5b83a802238a23b5f4ef89b2636ae6daa3dd5347ebf", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Oli McBurnie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "Scotland had 14 shots to Ivory Coast's 12 and four on target to their opponents' three.", - "media_hash": "e721dd7298689e517b193e28ddb47bc92d5311d7cfb36b81366f5911", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scotland fans", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "The survey also found SNP leader John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10 per cent.", - "media_hash": "6ceddc636712cd35d14de3caf10abfdf8451ba6e2180b93309736714", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "polls": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", - "media_hash": "8d924471eb470cdf421ef9d21a7ed9335d69c43f9fbaf1f019a59645", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47% for Prime Minister Sir Keir Starmer and minus 25% for Scottish Labour leader Anas Sarwar.", - "media_hash": "06304fb6b13dd315f9c0803242d0cd68c04b82af4231053805b5a56a", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", - "media_hash": "0692d4b29d4d6a04e64057f461ad72382349124a8e881c1b2ff6c0e4", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Trussell Trust", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "publication_date": "2026-03-31T15:03:10+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/jcartlidgemp/status/2038995523269480851", - "media_type": "social_post", - "sentence": { - "text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", - "media_hash": "fabe7c09c45efe890a986c3c7e29dd896d0c00fe58aeeedaffb2841e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "defence": 4.545945 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "It was perhaps her experience that drove attitudes in the recent Logos survey of Christians in Scotland, which found that more than 80 per cent of participants said they were worried about the negative reaction or criticism that Christian politicians have received.", - "media_hash": "afbb7864dcbaae5817cd6c90df5f614db6d9060bedaed46479fae43c", - "sequence": 23, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Logos Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - }, - "demo": { - "race__ethinicy__religion": 4.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "The Grangemouth refinery produced 97% of Scotland's aviation fuel before it closed.", - "media_hash": "2a837d6787b38704b4b0229bd69c7519cf668bd8b72de429c93836a8", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", - "media_hash": "3ff650a586805fd9d9eb88ba98b49d6388bedd0e5e1371dfa2a552db", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.540725, - "crime": 4.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:48:34+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", - "media_type": "social_post", - "sentence": { - "text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", - "media_hash": "44040b133caca303abc5f1a268e4de1fcd62070a4d507d4a96adae92", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "the SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.500545, - "scottish_elections": 4.500545 - } - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "Britain's biggest bus and coach manufacturer which has been propped up by tens of millions in public money in Scotland has set out plans to axed a quarter of ifs staff despite a government-rescue bid sparked by its threat to move to England.", - "media_hash": "252ce14bd610685cb2e9094893d551d4a478af31d3ffde7bb28ee53b", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.496495 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", - "media_hash": "2adfdc7e49415afec074f7f64afbe9c23dc2951cf0284cccaf1bb491", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.486035, - "health": 4.486035 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland's energy workers face redundancies on an industrial scale thanks to Labour's crippling tax on Scotland's energy with 1000 jobs a month at risk - for Anas Sarwar to pose as the friend of Scottish industry is a kick in the teeth to workers across Scotland.", - "media_hash": "290d9068f0e76306fe454d4f5c775aa548e83a36407c1a4e2d068de7", - "sequence": 35, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Keith Brown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "This will be Scotland's first time in a World Cup since 1998.", - "media_hash": "b183c07106a5bfd88f1eea57f723afc43d289f3fc66edf14884e3313", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.46844 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", - "media_hash": "038f920dcca94e97602d994e708b20f84cf4eb9d35cd41338d62ce52", - "sequence": 8, - "checkworthiness": { - "fullfact": { - "clinical_health": 4.460005, - "scottish_elections": 4.460005 - }, - "demo": { - "health": 3.02204 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", - "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", - "sequence": 42, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.429455, - "scottish_elections": 4.429455, - "clinical_health": 4.429455 - }, - "demo": { - "health": 4.094984999999999 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.429455 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", - "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Food for Thought report", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.400095, - "senedd_election": 4.400095, - "scottish_elections": 4.400095 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "GMB Scotland warned that public money intended to support green jobs is instead flowing abroad, undermining domestic industry and putting livelihoods at risk.", - "media_hash": "4c0f7f00bdf5ec6b7c10794507ae1fb557b52340df68cc80350a0c9a", - "sequence": 30, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "GMB Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.36914 - }, - "demo": { - "politics_of_food": 2.5219199999999997 - }, - "pa-media": { - "politics_of_food": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", - "publication_date": "2026-03-31T05:01:49", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", - "media_type": "news_article", - "sentence": { - "text": "READ MORE: John Swinney vows new childcare system for Scotland if SNP win Holyrood election with \u00a3500m spending boost", - "media_hash": "1c35882872494efc7ba9afaad4395343b8d92d9fd0e9a93b636ed4a7", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "This was Scotland's last game before Clarke picks the 26 for America.", - "media_hash": "a8224b6d27ad9ea7aabae80f11bbe0bdabe0ccc7c48033965d94102f", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.347765 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "But successive 1-0 defeats to Japan and Ivory Coast have underlined the need for no further distractions as Scotland prepare to return to the World Cup for the first time since 1998.", - "media_hash": "caae222f29f69912b0c3d997dfe08b52f5be6e35a0cb724dc019e50c", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", - "media_hash": "fd6136869b9b62d77d42ff7007b79321d337343dc2b40c7be2c474dd", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Fair Feast", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.347765, - "scottish_elections": 4.347765 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "The latest loss - 1-0 against Ivory Coast in Liverpool - means Scotland now have only two games to work on improvements before their tournament gets underway against Haiti in Boston on 13 June.", - "media_hash": "2b7db93077bb0389b11062c5c621c1ec5966b0f2c00a256775201f96", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", - "media_hash": "272411c20dabb6e93f34343bb819c561d9574c643d13f77acf4438db", - "sequence": 13, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.331365, - "crime": 4.331365 - }, - "demo": {}, - "aapfactcheck": { - "queer-trans-sexuality": 4.331365 - }, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", - "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.326185, - "scottish_elections": 4.326185, - "clinical_health": 4.326185 - }, - "demo": { - "health": 4.326185 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.326185 - } - } - } -}, -{ - "publication_date": "2026-03-31T13:35:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/lucydahlia/status/2038973481841234064", - "media_type": "social_post", - "sentence": { - "text": "RT @STVNews: Thousands of ex-battery hens need new homes across Scotland or face death.", - "media_hash": "9c47b1ea03cfacf809eba5ba4ff9bffe2d4e04a36ed484e58c7a5251", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "STV News", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.287855 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", - "media_hash": "2095563abb1714ac6f688e6064acef4015abf0f35a5e22fdcc7055a6", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855, - "scottish_elections": 4.287855 - }, - "demo": { - "health": 4.712725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", - "media_hash": "78f07ccb46438e4c9836e219a4283f95a83723e85f0fcc360797dede", - "sequence": 28, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855, - "scottish_elections": 4.287855 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", - "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", - "sequence": 20, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.285765, - "senedd_election": 4.285765, - "scottish_elections": 4.285765 - } - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", - "media_hash": "3bef971223bf0779f87941fff65ae27737ed8730d549135bbc8868e3", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.263805, - "crime": 4.263805 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK drivers warned about seven key roads over Easter bank holidays with huge delays", - "publication_date": "2026-03-31T15:09:47", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/easter-bank-holiday-travel-disruption-36950018", - "media_type": "news_article", - "sentence": { - "text": "Traffic Scotland confirms that from the evening of April 2 until the morning of April 15, the stretch from River Garry to Shierglas will have temporary traffic lights in operation at all times, alongside a 10mph convoy system overnight and a 30mph restriction outside working hours.", - "media_hash": "eeb7deb105e548d2b60c506782384a733e62c3bf42c691576fdd41c0", - "sequence": 10, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Traffic Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.2553 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "April 1 marks the start of the new non\u2010domestic rating year and the Scotland\u2010wide revaluation with many firms facing a significant jump in their bills.", - "media_hash": "0f2d11aa70e88082177c3d8c93f417dfc743a1c8574276eda1310b99", - "sequence": 2, - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.233315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "He likely knows the majority of the 26 he'll be taking to Scotland's Charlotte, South Carolina base, but there are still a select number of slots to be claimed between now and then.", - "media_hash": "bf0b9837d12054388538f19583e96d1234d0d7d908f2007795a6916a", - "sequence": 7, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.224345 - } - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "Reform UK are set to become Scotland's second-largest party at Holyrood elections in May, according to a new poll.", - "media_hash": "4a066b3d22977a50859c0b9bd1cecbd5244fa4ea3e5623fced0da2fd", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.224345 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.224345 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", - "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", - "sequence": 43, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.224345, - "scottish_elections": 4.224345, - "clinical_health": 4.224345 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", - "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", - "sequence": 35, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.173405, - "scottish_elections": 4.173405, - "clinical_health": 4.173405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", - "media_hash": "4054ce172dbafe0019c7cc7c4854f178d6e0e230f1f21e07050f54ab", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.173405, - "scottish_elections": 4.173405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", - "media_hash": "9f6ae987c0baca74357aa22a06172ada9354698ae722bb0b0c9eeede", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.128005, - "scottish_elections": 4.128005 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "The people of Scotland deserve better from their cancer strategy.", - "media_hash": "e672ba027054e1045da9133d710b4bf83941bf1488b254f450a82198", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.128005, - "health": 4.128005 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", - "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", - "sequence": 986, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.10166, - "senedd_election": 4.10166, - "scottish_elections": 4.10166 - } - } - } -}, -{ - "title": "Ex-SNP candidate under investigation over alleged sexual offences", - "publication_date": "2026-03-31T11:15:31", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983585.stefan-hoggan-faces-police-probe-alleged-sexual-offences/", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", - "media_hash": "f119ef7581a322aec8188c5d4efc169dceec171ca39b9bc6372b84fa", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - } - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", - "media_hash": "8d882f7790685ab42df5d3c1acbe8682c377185d1cc7a0d325efe63c", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police investigating former SNP Holyrood candidate over...", - "publication_date": "2026-03-31T17:34:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", - "media_hash": "81e1fa29e1e255c5a9a56876cdd6c4ed53684116f135ccb74a1b43d0", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The report warns: \"If austerity is taken to refer to a degradation of public services in pursuit of balanced public finances, then the workforce reduction target risks Scotland slipping into austerity.", - "media_hash": "a1356d00f123e5f6f9ec44c2efb372db2c6d8fed1b3959475fa6605e", - "sequence": 28, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "A spokesperson for the group said: \"We did say closing Scotland's only refinery would leave us fuel insecure - an oil producing country relying solely on imports in a volatile world with potential conflict, shipping problems, and at the very end of a supply chain.", - "media_hash": "8dbe87d9f63ec252dd0bca289a139ec4c9dee3af3c1995fdad3d296c", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keep Grangemouth Working", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166 - } - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", - "media_hash": "8918e592ced05ef5e55087b7b355f25f4798b98d2834766a2f1d1913", - "sequence": 13, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in Scotland", - "publication_date": "2026-03-31T05:58:30", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", - "media_type": "news_article", - "sentence": { - "text": "\"Year-round childcare support, 52 weeks a year, for every child from nine months old, right until they leave primary school - that's what an SNP government on Scotland's side will deliver.", - "media_hash": "eee360c72c28ffbcf0f7607a9459721b05be91334664e66ee6dcedcb", - "sequence": 24, - "claim_type": [ - "quantity", - "rules" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.097144999999999 - } - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Scotland have failed to score in over 180 minutes of friendly football against admittedly very good opposition.", - "media_hash": "3d00e4f771373f8f1a8489b7280298eb19554154dae57af82628da87", - "sequence": 19, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.0921199999999995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", - "publication_date": "2026-03-31T16:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", - "media_type": "news_article", - "sentence": { - "text": "Last week it was announced that Alexander Dennis had won an order for 123 vehicles through the Scottish Zero Emission Bus Challenge Fund (ScotZEB3) led by Transport Scotland and administered on its behalf by the Energy Savings Trust.", - "media_hash": "d6872f988df8ae8c3d921002910396f96ba416a7995a8d2e0020f2fd", - "sequence": 7, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.0921199999999995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland is Europe's second biggest oil producer. We now have to import all our oil products at inflated prices,\" he said.", - "media_hash": "b357d8cfdd66f22fd6ad0bf7d80028d3528e7cdc06a5540a4ec625e9", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Simon Forrest", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.071625 - } - } - } -}, -{ - "title": "Campfire ban in Cairngorms with \u00a3500 penalty if broken comes into force", - "publication_date": "2026-03-31T06:36:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/campfire-ban-in-cairngorms-with-ps500-penalty-if-broken-comes-into-force-6528415", - "media_type": "news_article", - "sentence": { - "text": "Last year, Scotland faced what has been described as the UK's largest wildfire incident.", - "media_hash": "de266ed5128d72f3edd2a751e087cc05a1f75bd750f513f809b87f12", - "sequence": 15, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.071625 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "Ministers are facing growing calls to scrap subsidy schemes after the UK's biggest bus manufacturer moved to axe more than a quarter of its workforce - despite receiving millions in public funding to keep jobs in Scotland.", - "media_hash": "17d5f5e1ea6d7181d25011dfa5bcf74689e7d419c2d68b5ccb0ee72c", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Ministers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.071625 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a \u00a3500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", - "media_hash": "95f36115ba3a97b86eaf7f0acd6129e21af3f8153590b006af4f14f1", - "sequence": 24, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jackie Dunbar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.071625, - "energy": 4.071625 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", - "media_hash": "7b174f2126a3771613e30b8f6ffc8a4673a308afa6f4ca81046daa7a", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "health": 4.061165 - } - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "The Herald previously revealed that the move followed a row between ministers and ADL over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which have been worth a total of \u00a3155.8m to date.", - "media_hash": "e17f25e71e3e3d6cb92f90522205602ec4cb7b917798f3368694b95f", - "sequence": 33, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "ADL is one of the largest manufacturing employers in central Scotland with many roles in engineering, apprenticeships, and high-skill technical jobs.", - "media_hash": "0d40facf45096dad24d1bb20c92d852cef259e71005e6d83faefc956", - "sequence": 29, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "John O'Connell, chief executive of the TaxPayers' Alliance, said it was \"shocking\" that the Scottish government had \"doubled down on on its multi-million pound bribe\" to Alexander Dennis with a furlough scheme in a \"desperate attempt\" to keep it operating in Scotland.", - "media_hash": "1c8324efcda887298ddfea10db242c5b395d9ff80f1dbb0bd4710725", - "sequence": 19, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "John O'Connell", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "TaxPayers' Alliance", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "The Herald previously revealed that the move to consolidate operations in Scarborough followed a row between ministers and company executives over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which up till last year was worth a total of \u00a3155.8m to date.", - "media_hash": "f085ed25ed110744614d130a54876ccbbb4b430802f506f00c2c445c", - "sequence": 49, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "But when Christie and McTominay got in each other's way trying to get on the end of a Robertson cross from Kieran Tierney's through-ball Scotland were punished on the counter, having committed five players to the attack.", - "media_hash": "c4e8db7ec57949e1c5680572468c7bb75776b484ebc24125402e201a", - "sequence": 12, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", - "media_hash": "6962ae9b2ee416759e0ad7d4a2d43cf577ae5f59b2bb08897e9ec0d2", - "sequence": 74, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Martin Whitfield", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", - "media_hash": "7380b00349ad3920fad3371d5226a200ec016b157901cee9997c229e", - "sequence": 32, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "clinical_health": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", - "publication_date": "2026-03-31T11:28:24", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", - "media_type": "news_article", - "sentence": { - "text": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", - "media_hash": "9b9b2a88a6305b964be48ed5730eac83d9b9f4d9432b46134e8e83ef", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", - "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", - "sequence": 41, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.061165, - "scottish_elections": 4.061165, - "clinical_health": 4.061165 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", - "media_hash": "1b54f26520edbcc346fb2c8d155c5f29d7877674c0075e788b8c690c", - "sequence": 37, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.061165, - "scottish_elections": 4.061165 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The report also finds that median public sector pay in Scotland remains below pre-austerity levels and argues that lower pay elsewhere in the UK \"does not constitute a good argument that it is excessive in Scotland\".", - "media_hash": "91a30cddff13b33f52141ce4c6976314f7701c54fb133a99de2a483c", - "sequence": 35, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He said the Lib Dems are poised to beat the SNP in 10 constituencies across Scotland.", - "media_hash": "69833640dde3ed5fa3ed9d668feeebddd85dc42e520cf80cbbc14744", - "sequence": 67, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Lib Dems", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cole-Hamilton opens door to helping Sarwar become first...", - "publication_date": "2026-03-31T12:44:27", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", - "media_type": "news_article", - "sentence": { - "text": "\"I'm focused on delivering as many MSPs as I can for the Lib Dems and that's happening in 10 seats across Scotland, or wherever you are, on that peach ballot paper, the regional vote, where we can win.", - "media_hash": "a59e282ae31a4adec2a1ff98531f232b47245af3136981281eb9628a", - "sequence": 17, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Scottish Liberal Democrat Falkirk West candidate, Lucy Smith, said: \"Just days after Transport Scotland announced millions of pounds in support for Alexander Dennis we get the terrible news that more than a hundred workers in Falkirk are at risk of redundancy.", - "media_hash": "f0512891491c87af54eec40530f43e1d46118beaceb555ac719d57bb", - "sequence": 36, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Lucy Smith", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", - "publication_date": "2026-03-31T09:21:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", - "media_type": "news_article", - "sentence": { - "text": "Families can enjoy the one-hour Signature Tour, which explores 500 million years of natural history, folklore, and scientific research surrounding Scotland's most famous legend.", - "media_hash": "88e60839c7f0094919f4c35efe35753a00dc9f00aab0615e20087571", - "sequence": 24, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "The Loch Ness Centre", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", - "media_hash": "a57a83439d4b8f3a3cc370dca4b86aa6c09bd6d643ea6c8a2ea715bd", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.061165, - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Ivory Coast star Benie Traore was happy with the side's 4-0 thrashing of South Korea on Saturday and is hopeful they can deliver a similar performance against Scotland.", - "media_hash": "db2a21e98caccff2ce8560033dabfffbf83edf6540d3ffc598bb3d40", - "sequence": 55, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - } - } - } -}, -{ - "title": "Steve Clarke admits Scotland must find attacking...", - "publication_date": "2026-03-31T22:14:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696365/Steve-Clarke-admits-Scotland-attacking-quality-World-Cup.html", - "media_type": "news_article", - "sentence": { - "text": "Scotland head coach Steve Clarke admitted his side need to find more quality in the final third after their 1-0 defeat to the Ivory Coast at Everton's Hill Dickinson Stadium.", - "media_hash": "4476fd226c45a0d08a6ff73435a78ec4f45613313f5558b32c52bea0", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Steve Clarke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "A much-changed Scotland suffered another friendly defeat with the 1-0 loss to Ivory Coast offering manager Steve Clarke few solutions to their creativity problems as he prepares for the nation's first World Cup since 1998.", - "media_hash": "46a3ada87c41021b632f091674facb7eaf38078940ff52da1d6f1a53", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", - "media_hash": "ff53a3a7ad58317f37d43abf159f1a78b0bb8f5720600b0b964bb4b7", - "sequence": 70, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.2905 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", - "media_hash": "61d964f314636c9e38b36641749439b1d74ec8151d5be87a3fb46294", - "sequence": 20, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.059075, - "scottish_elections": 4.059075 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", - "media_hash": "d6dea1a7a319f23285c793b94df609d492d2446fc48dc2636e92b533", - "sequence": 2, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.27569999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.059075, - "scottish_elections": 4.059075 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in Scotland", - "publication_date": "2026-03-31T05:58:30", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", - "media_type": "news_article", - "sentence": { - "text": "Labour pledge two weeks of funded summer childcare in Scotland", - "media_hash": "9a50c2f36e42c432c53918d6a1492b71ba76f511927c1cdf7e6d0ca7", - "sequence": 0, - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.035135 - } - } - } -}, -{ - "title": "Scotsman hustings LIVE: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T16:29:41", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-live-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "The Scotsman's election hustings with Scotland 2050 is taking place at the Assembly Rooms in Edinburgh from 6pm", - "media_hash": "4c3eaafd132ba6e0adfbbc42e5289cb37fb6639b2f637361aaf9d2f4", - "sequence": 13, - "claimer": [ - { - "name": "The Scotsman", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scotland 2050", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "There was further cause to feel worried about Scotland's lack of edge up front.", - "media_hash": "2bf11e61041f107bab425a2cc9ceb9346304c664714b8366033644ca", - "sequence": 25, - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.035135 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Scotland head coach Steve Clarke watches on as his team lost 1-0 to Ivory Coast.", - "media_hash": "174e7c1d0cb8f7cb0537b12c61b5790fba13136a62a7501fded93025", - "sequence": 16, - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "This includes all three games in the group phase and in the knockout stages, if Scotland progresses further.", - "media_hash": "a16538021d9aec6a4c6f0aa25ff6710503aa4f9039f9f33e250206f4", - "sequence": 15, - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.035135 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get \u00a3200 towards their energy costs.", - "media_hash": "9a95461557b214e3fd4e4e19072df5b5e8332f2ec98dbc8b90f5ce96", - "sequence": 849, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 4.026165, - "scottish_elections": 4.026165 - } - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for \u00a3300 of support with their bills.", - "media_hash": "9067383b77bb0df353d633e264773cd338b1075a5cd22c2b406ddc3e", - "sequence": 19, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Advice Direct Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.026165, - "scottish_elections": 4.026165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", - "publication_date": "2026-03-31T11:28:24", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", - "media_type": "news_article", - "sentence": { - "text": "Tens of thousands of Scotland fans will be in the American city for Scotland's opening two games against Haiti and Morocco.", - "media_hash": "1f4c704bcc1a12d1b13219602aaa8b931ded1e17915d7292b11ec7b0", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.026165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", - "publication_date": "2026-03-31T16:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", - "media_type": "news_article", - "sentence": { - "text": "As things currently stand Alexander Dennis will close its Falkirk site and convert its Larbert facility into a chassis manufacturing hub, retaining roughly 350 staff in Scotland.", - "media_hash": "312b3ec140263789e47264da60dbc2cde653c9c31be171134af04967", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.026165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "IPPR Scotland adds that \"by failing to present (at the Scottish Parliament election in May 2026, for instance) the costs of constraining public services (in order to keep taxes down), politicians risk sleepwalking Scotland into similar outcomes\" to the UK Government's 2010 austerity programme.", - "media_hash": "afdd33891ce1c77867ced72b718a9e05e001b812c016fafa45f714d3", - "sequence": 32, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 39629, - "score": 0.29679999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.98733 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", - "media_hash": "0376c712fb7da35ef601cb6ab92ed7b92da964c028b8a5902942962d", - "sequence": 46, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Genevieve Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:01:20+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Alison_S_Taylor/status/2039040361977233737", - "media_type": "social_post", - "sentence": { - "text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", - "media_hash": "829c335a01bdca0183fa9d4f012164e2ca50f51079aa150aa6d15ed5", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.975225, - "scottish_elections": 3.975225 - } - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", - "media_hash": "3300a23f6cf1f9f0f23ade639188c03cee5fc3eefff4a6797fa33768", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", - "media_hash": "3c6d02636919a130275f51d1f229b8abd9eb72701e3f61f9fe2ea444", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", - "publication_date": "2026-03-31T11:06:15", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", - "media_type": "news_article", - "sentence": { - "text": "He said: \"This is a short-sighted decision that removes the only diving facility in the west of Scotland. Once it's gone, it's gone-and the community will not get it back.\"", - "media_hash": "40704f050a6b60b57a56b64076e9ef21dca7231e997cb7bd81562f0f", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Brian McGinley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", - "media_hash": "40b62d3dd90fb00582deb34f91d733adbadf22864589622925ab6182", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Susan Murray MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", - "media_hash": "85ddf4132aa1fae9eab9fb21c9aca9df83d71954df4c20578a6b8018", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.975225 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", - "media_hash": "26c73ba770ac8722398228649759b670308fd58b60b4b21859b1bc73", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", - "media_hash": "940d043e5e1428f9b31d6d6ea7d4efe650814d22041cd67beeb1dc09", - "sequence": 33, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", - "media_hash": "ed723601e675a3fea5ca775d8ba9c4ff7bdb173cc541fba1ff1ebf49", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "\"Grangemouth produced jet fuel for all of Scotland. The UK Government let it shut,\" he said.", - "media_hash": "05fe99f653ad2938fe3d2e505711abd0d950546a1e677a5a2fcf4ec3", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP MP Stephen Flynn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", - "media_hash": "7aebb7140b04b0299ebc18a9dfa1913093b38f4c1a3738b098ec72f8", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 4.36914 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", - "media_hash": "1e7402fd3cb8849eba07f7450f23961099de357ce2ccceda9235081c", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", - "media_hash": "388007679c4a042a020b6d511ae4f98591d3fcbf5b0cd46d3756ca95", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth refinery closure", - "media_hash": "11402838f27334abfbcb8982f8f7b484be9b38be0148eb27354e020c", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", - "media_hash": "b57d5be833b52020235188215fc83747d4ea69030a7f8b4e8dbf3cd4", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "nutrition_": 2.7201, - "politics_of_food": 2.7201 - }, - "pa-media": { - "nutrition": 0.0 - }, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Council criticised for closing crucial transport link during school exam season", - "publication_date": "2026-03-31T16:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985045.council-close-key-island-road-school-exams/", - "media_type": "news_article", - "sentence": { - "text": "Pupils in Scotland whose exam performance is affected by circumstances outwith their control may be entitled to special consideration under the Exam Exceptional Circumstances Consideration Service (EECCS).", - "media_hash": "2885cf2b86bef22650f9fbe9fdb653aaba958c8df1ba29b0e82196fe", - "sequence": 23, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.920805 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Pubs will be allowed to open until 30 minutes after the final whistle for Scotland games, but there are different rules for other matches.", - "media_hash": "058af12bfaa36238336b5ca634b3427bc96fe56fe2129c1dce199d80", - "sequence": 1, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.920805 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "It has been argued that losing manufacturing in Larbert and Falkirk would diminish Scotland's ability to innovate and scale production in green mobility - a strategic disadvantage amid increasing global demand for clean public transport.", - "media_hash": "08fb5585bf5c72b7dc453dfe62cdfdbed08b44940dd0fa1af79ed7c5", - "sequence": 32, - "claim_type": [ - "correlation", - "predictions" - ], - "claims_matched": [ - { - "tracked_claim_id": 104574, - "score": 0.0947 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.911715 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", - "publication_date": "2026-03-31T11:06:15", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", - "media_type": "news_article", - "sentence": { - "text": "The loss of the diving pool means there will be no diving provision in the west of Scotland, with the nearest facilities located in Edinburgh, and described the proposed leisure centre as offering \"less\" than the existing Citadel.", - "media_hash": "5dfc9f143b9c088cedaf8c40b86a751ecdd12f9c553e5179d61b2ee0", - "sequence": 16, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.911715 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Scotland will play in Liverpool for the fourth time tonight against a third different country.", - "media_hash": "204586114509eddc19775d1dd3aa91c106c7c015e98380a1e9d46247", - "sequence": 119, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.911715 - } - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", - "media_hash": "541859e8ca7689c57fae1c202c0a39f16eba65f69e43d8c29f712e44", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - }, - "demo": { - "politics_of_food": 0.0 - }, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", - "media_hash": "25d8357c62b597f7a5af980a82d300bf7f5581f9a8f6a1f8e1927a88", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Record View", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", - "media_hash": "7f13f2a4150e445aaa4e656ea3130781d03bb6184b9d5b2f2e1275f5", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - } - } - } -}, -{ - "publication_date": "2026-03-31T08:48:34+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", - "media_type": "social_post", - "sentence": { - "text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", - "media_hash": "35eaf5d51b900e1aa2a942ecbd2ba82e298fd6f02fdd540df44201c3", - "sequence": 2, - "claimer": [ - { - "name": "the SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.898845, - "scottish_elections": 3.898845 - } - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", - "media_hash": "3b268f47c38e5a8b213eb4a8f021ebb1463bab4c4c2853e2991ef30c", - "sequence": 21, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.8939399999999997, - "senedd_election": 3.8939399999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", - "publication_date": "2026-03-31T12:31:33", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", - "media_type": "news_article", - "sentence": { - "text": "The Men's and Women's 10K Glasgow are among the most distinctive and inspiring mass-participation running events in Scotland, and what makes them especially memorable is that they are two separate events taking place on the same day.", - "media_hash": "45176cdf5ef09018a3e731bb3d2f0dc68e8ccbfc7f301a4ff6e168f0", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.8939399999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", - "publication_date": "2026-03-31T09:21:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", - "media_type": "news_article", - "sentence": { - "text": "The Easter holidays are just around the corner, and so families all over Scotland will be trying to decide how best to make the most of the time off.", - "media_hash": "ede5fd525722e0aed7f9ea429357594f2c6c81e4f25b622c70035fe1", - "sequence": 2, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.866315 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "It backfired when an estimated 50,000 Tartan Army fans saw Don Masson convert a penalty and Kenny Dalglish head Scotland to Argentina.", - "media_hash": "645844e6ca6e72e832e30d4604513b3fe938a63979cd57ebe0d0b587", - "sequence": 129, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "Scotland's only oil refinery closed in April last year, leading to around 400 jobs being lost as the facility owners, Petroineos, said the site would transition to becoming an import terminal to \"meet Scotland's demand for transport fuels\".", - "media_hash": "bfb604be433654fb10922e8375d7bd4aab580264c1617851e6794c4e", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Petroineos", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - } - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "Scotland were though lucky to avoid going 2-0 down on 25 minutes when Wahi's 25-yard effort landed on top of the goalnet.", - "media_hash": "e6f80979b0cb53e3822650e012fd9fc46af6fa5b5a22ef0510b1538a", - "sequence": 58, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Elye Wahi", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:39:12+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/AndrewBowie_MP/status/2038883795730858081", - "media_type": "social_post", - "sentence": { - "text": "RT @ewangibbs: Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", - "media_hash": "6796b1c551ed80b827702568aa179f3e44fd1a4d9b9a1fab15af9499", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "England handed a debut to the Reverend Kennie Hunt, but couldn't get a win over the Scots in front of 38,000 at Goodison Park after Newcastle United striker Alexander Higgins scored for Scotland.", - "media_hash": "3a3eca49977a44113f9ec5fef1fafb9129b37edc2b6f118a69379f9d", - "sequence": 125, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - } - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "Scotland are currently battling with the world's best curlers at the Men's World Curling Championship in Ogden, Utah, in the USA.", - "media_hash": "625bd28dbccf15b2c3956961a559c460579ed052d519cf34daa68d80", - "sequence": 15, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Team Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", - "publication_date": "2026-03-31T05:00:00", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", - "media_type": "news_article", - "sentence": { - "text": "A \"life-saving\" charity is today celebrating 50 years of supporting people affected by domestic abuse and reshaping responses to the crime in Scotland.", - "media_hash": "ecf12a01d84a046b1670bb3fe00221ad57c7a7cb897ffd23fcd22551", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:48:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", - "media_type": "social_post", - "sentence": { - "text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", - "media_hash": "f10998e5e2c68043328e774e2c8f5ca176e17069b6ef17d1c7d7c00b", - "sequence": 1, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.860895, - "scottish_elections": 3.860895 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", - "media_hash": "24196df121e0b1a190caff62d537cc5aee3cda22501b00fbdcad2a04", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Scottish Tory energy spokesman Douglas Lumsden", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.788715, - "energy": 3.788715 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", - "media_hash": "71cc32dd894a229697cb2a9191e54582bb4eebf8c0e51598540cac7c", - "sequence": 30, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7800599999999998, - "scottish_elections": 3.7800599999999998 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", - "media_hash": "e7a3146e65a33ae931a15041ba0a62198d284507e12bb8864ac1cff7", - "sequence": 1, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7800599999999998, - "crime": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"That is a political choice, and Scotland is paying the price.\"", - "media_hash": "ab079b01b0271a5c469ff20335ca84b7b1ea55af5e0a8c532dc8b3ce", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7623699999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", - "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", - "sequence": 971, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Aled Morgan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.758995, - "senedd_election": 3.758995, - "scottish_elections": 3.758995 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", - "media_hash": "cb12d6b08127cb91842ef1759b8e950904991a5efc9c268e837b5a79", - "sequence": 41, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "clinical_health": 3.748535 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", - "publication_date": "2026-03-31T11:03:14", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", - "media_type": "news_article", - "sentence": { - "text": "\"I'd rather watch Scotland get hammered having a go than get beaten not having a go. There was a substantial crowd at Hampden for a friendly, who paid a lot of money for tickets and travel. Quite simply, the fans deserved far better than the dross put on a show. Sorry, John McGinn, there was no justification, and the boos were deserved.\"", - "media_hash": "5203d60c9f58659f9c2900b2bc4034a622ef38ae0262264771fc49da", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scott Gowers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Opposition politicians accused SNP ministers of presiding over a growing workforce crisis in Scotland's NHS.", - "media_hash": "26219861c873b9db89176e153433e5a970787da34f33923039a0836e", - "sequence": 14, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "Reform's focus right now is on non-white speakers of other languages, but Welsh has taken a bit of an attack, and I think it is scary for Gaelic speakers because we are such a small proportion of the population in Scotland compared to Wales.", - "media_hash": "b1d640bcaa37bfa2bb9c99921c78afcec677d192ccc2764b012d33db", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Eilidh Munro", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "Steve Clarke blanking out Scotland boos and stalling contract talks as World Cup deadline shifts", - "publication_date": "2026-03-31T21:50:39", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/steve-clarke-blanking-out-scotland-36951782", - "media_type": "news_article", - "sentence": { - "text": "The Scotland boss heard more jeers ring out around Everton's Hill Dickinson Stadium at both half time and full time in the latest friendly defeat to Ivory Coast.", - "media_hash": "85c7d50907e6c92626b9d17f6a4665a02c6590b6ac52714ba2de1614", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", - "publication_date": "2026-03-31T11:32:07", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", - "media_type": "news_article", - "sentence": { - "text": "One is making Scotland's clean energy infrastructure safer and more efficient.", - "media_hash": "d42570e0961c6e67843224242c26cf47a064a3eba2668f68abac9dc0", - "sequence": 26, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", - "media_hash": "48fdf07dfdf02242ff686315577f42532a9048c4ff29d403432d0bbb", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Gregor Poynton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "health": 3.748535 - } - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", - "media_hash": "e99add1c9063c7c65566f4d0c3e04a07d3e42d044e79acd88265876e", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.748535, - "scottish_elections": 3.748535, - "energy": 3.748535 - } - } - } -}, -{ - "title": "Edinburgh Festival Fringe reveals surge in demand to stage shows despite cost fears", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985017.edinburgh-festival-fringe-reveals-surge-demand-put-shows/", - "media_type": "news_article", - "sentence": { - "text": "The Edinburgh Festival Fringe is experiencing a huge surge in artists and companies taking part in this year's event - despite widespread concerns over the cost of taking a show to Scotland's biggest cultural showcase.", - "media_hash": "d9d29d0f94e41a84b3594b3eeaff0505c9e67c042e4d20ed4bf9cae4", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Motorists across Scotland faced soaring prices at the pumps", - "media_hash": "e4cb4fab4d33e1581f9614450c933821ca78e8692ffb27c7ca7ec1b4", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", - "media_hash": "002929fdc052da2c1c0be435aff697b1c0afcc16ce329618f20e4702", - "sequence": 76, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Mr Boyd, the director of IPPR Scotland, said: \"With a Scottish election approaching, voters deserve a more honest debate about the future of public services, and the taxation needed to sustain them.", - "media_hash": "ea30b2976ae024d815f8d59501e331ffee34a23deecb94c0fd713493", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stephen Boyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "For the first episode, which starts on Tuesday, Vicky and Jonny travel to the capital to discover more about another of Scotland's most infamous murderers, William Burke and William Hare.", - "media_hash": "52a89f4f6e03262175a8eba63673fd9b3e294edd4da44dbf85b1fd9d", - "sequence": 41, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He says the party is centre-right and is focusing his initial pitch on \"unleashing the potential of the people of Scotland who are over-taxed and over-regulated\".", - "media_hash": "8b7d23ddb05f8ccd395405101ac2aae6705e386ed8714c2ab1f70419", - "sequence": 49, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Scottish Labour leader Anas Sarwar said: \"When Scotland needs more buses built by Scottish firms, it is devastating to see Alexander Dennis downscale and workers' lives thrown into uncertainty.", - "media_hash": "7830a96e652dd81cc12ec19ec55a64608a79de2fb6cc228d9c623597", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", - "media_hash": "a416afed82bcdeff7e456cd28a3bee06154fee07e467bb256a9704b1", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "scottish_elections": 3.748535 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Cole-Hamilton opens door to helping Sarwar become first...", - "publication_date": "2026-03-31T12:44:27", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", - "media_type": "news_article", - "sentence": { - "text": "He added: \"I'm focused on delivering as many Lib Dem MSPs (as possible) and our vision, fixing our health service, driving down the cost of living, lifting up Scottish education and getting Scotland moving again.", - "media_hash": "b02268f982138b97ad9f701bda91356689eafbf4ecbf9eee9a750a8b", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "Farage has not made any explicit attacks on the Gaelic language yet, but Munro said that is likely because it hasn't entered his consciousness given it is not as widely spoken in Scotland as Welsh is in Wales.", - "media_hash": "a6dec3954b72e4004ea935080cbe22fb702a60dfa4f4e1c5ecc66df9", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "Ministers discuss how to help Scots faced with rising...", - "publication_date": "2026-03-31T21:24:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696235/Ministers-discuss-help-Scots-faced-rising-costs-Iran-war.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Swinney said: \"The impact of the ongoing conflict in the Middle East on people and businesses in Scotland is becoming more significant by the day.", - "media_hash": "79e0c2ec25a36e8bf481a0af0fd1f95c20bfe2b68a2e7106d6eb9b36", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "Although Scotland made a spirited enough attempt to rectify matters, the early goal remained the difference.", - "media_hash": "a12c1d8d73a75b8e18ba706ec4c9d292e4fc5276d3277561db023755", - "sequence": 14, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "Sheep farmer Tim Eagle, who is standing for the Scottish Conservatives in Moray, said: 'Serious questions must be asked about whether these consultancy fees have been value for money for two of the most dangerous roads in Scotland when so few improvements, if any in the case of the A96, have been made.", - "media_hash": "3bf152482334c7d68863cbf2b1a387b7b951a7f7a2ba50d23f697d9f", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Tim Eagle", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", - "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.748535, - "senedd_election": 3.748535, - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", - "media_hash": "b89c04b51de045c663054fbfc6865a27fbc198eaed8d44ca6fa5e307", - "sequence": 35, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Farming groups", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "National Farmers Union Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.748535, - "scottish_elections": 3.748535 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "He promised that a Scottish Labour government will build and buy more in Scotland, \"so public money backs Scottish jobs, Scottish businesses and Scottish communities\".", - "media_hash": "d16773602a7955ac24573e285363ee88edbd01fdeef4db3e72c1362d", - "sequence": 15, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"The family farm tax put Scotland's world class produce under threat and the rise in employer's national insurance is making it harder for firms to make ends meet.", - "media_hash": "ae36c950b48cc62dd07ae641b1ae8a53c9ddd63c1d47ace45dd02a90", - "sequence": 26, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Liberal Democrat", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jamie Greene", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", - "media_hash": "98365704f35fb6c4239da81b113b322ef23ad98adff1116f09805dc3", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scotland's farming industry", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "NFU Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "energy": 3.748535 - }, - "demo": { - "politics_of_food": 0.0 - }, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", - "publication_date": "2026-03-31T15:30:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", - "media_type": "news_article", - "sentence": { - "text": "UK TV channel: Live television coverage will be provided by BBC Scotland and BBC Two.", - "media_hash": "3fb889d04c5c8ded3ef7f902f6b7093f36d150bbe5c3c6f7122a2616", - "sequence": 20, - "claim_type": [ - "predictions" - ], - "claims_matched": [ - { - "tracked_claim_id": 17913, - "score": 0.46930000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.74449 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "A spokesman for Transport Scotland said: 'On complex, high-value projects, specialist advice is required to ensure contracts meet contractual and legal requirements whilst meeting policy objectives.", - "media_hash": "efc527385f8c2814bd36a78ca121ce200e769889803716a366151e00", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.73409 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "Good Friday is a public holiday in Scotland, which is followed by the early May bank holiday - but not Easter Monday.", - "media_hash": "babca4512d31fc41b9f1755d718cdb41397450e05f806c740c0ff149", - "sequence": 19, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.73294 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", - "media_hash": "573609c807f573b1bd6ee9826ab8e4c956c3cc0a12ed5a64c45a88c2", - "sequence": 38, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "BBC Wales", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003, - "senedd_election": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", - "media_hash": "ecfb88a8e6be59febe9decc81c6b6eb1ad4ba564216948d9e880573e", - "sequence": 18, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "There is an expectation that a disastrous result for Labour in Scotland, as well as in elections in England and Wales in May, will prompt an effort to oust Sir Keir among Labour MPs.", - "media_hash": "a6ab41168483026bb1a3d896a29629cbbd4b35c114477afb1f2f3e82", - "sequence": 18, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.7135350000000003, - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "aapfactcheck": { - "polls": 3.7135350000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", - "publication_date": "2026-03-31T09:21:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", - "media_type": "news_article", - "sentence": { - "text": "To celebrate Easter, Graham's Family Dairy will turn the whole of Scotland into a giant treasure map.", - "media_hash": "e64878fa6839f6176bea22f967fcc10653a2a90397193eeac745939b", - "sequence": 38, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Graham's Family Dairy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "What could six fictional voters teach us about how social media really works?", - "publication_date": "2026-03-31T05:23:02", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c0j68jp6l4vo", - "media_type": "news_article", - "sentence": { - "text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", - "media_hash": "b229152d7b35d2076b7418f5de224ce7eb8e1a55bff4bdbe38acf7fb", - "sequence": 39, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ben Summer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003, - "senedd_election": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Campfire ban in Cairngorms with \u00a3500 penalty if broken comes into force", - "publication_date": "2026-03-31T06:36:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/campfire-ban-in-cairngorms-with-ps500-penalty-if-broken-comes-into-force-6528415", - "media_type": "news_article", - "sentence": { - "text": "There will also be a joint effort with Police Scotland to patrol areas that are most at risk.", - "media_hash": "115646a74815aca1366f85101dd373ba6c89cc16a7b91a4984ce41bf", - "sequence": 12, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", - "publication_date": "2026-03-31T13:53:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", - "media_type": "news_article", - "sentence": { - "text": "NHS staff in the region will join those from across Scotland in being given the holiday on June 15 to mark the national team's opening match of the tournament.", - "media_hash": "0908368457e64c5b663ce8a069456910cea84fe4339cf856ca612d3c", - "sequence": 1, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Andy Robertson will become Scotland's second-most capped player should be appear against Ivory Coast tonight.", - "media_hash": "61f8dcdae9c2618e5c85852dfd1d3c0d0d8a5af5221b1da91e55b18f", - "sequence": 74, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Scotland and Ivory Coast will face off for the first time tonight.", - "media_hash": "b70c7b7dc6d1ae36c627e34a3facded283b5e55d429423ca4b4d985a", - "sequence": 155, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", - "publication_date": "2026-03-31T15:43:02", - "publication": "novaramedia", - "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", - "media_type": "news_article", - "sentence": { - "text": "On 7 May, Scotland will hold a general election for our devolved parliament in Holyrood, Edinburgh.", - "media_hash": "03ef32346c67bde12e3c1a091557f38365f932a10aa193eb5aa0bb2f", - "sequence": 19, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Willie Miller: Stephen Robinson\u2019s 3 priorities to save Aberdeen from relegation -and why it was right to let experienced Sivert Heltne Nilsen go", - "publication_date": "2026-03-31T10:45:21", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/sport/football/aberdeen-fc/6986505/aberdeen-fc-willie-miller-stephen-robinson-priorities-relegation-battle/", - "media_type": "news_article", - "sentence": { - "text": "Scotland will face Haiti, Morocco and Brazil in their World Cup group.", - "media_hash": "93beaf191e10029e90251436d1a807f5c9a9986b72f4d220a995e1d3", - "sequence": 51, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Pubs will be allowed to open late for all of Scotland games.", - "media_hash": "b802d331d7209e2c53a71e3371446ff74ea4e044698655846d34d79d", - "sequence": 11, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - } - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "Team Scotland are looking to win a second successive World Curling Championship gold.", - "media_hash": "1667fa447d5c7ca9463d7af9ded1f78600548b23571a8630f3abb9f2", - "sequence": 3, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ross Whyte", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Team Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Wishaw MSP welcomes new funding to support Scottish-based musicians", - "publication_date": "2026-03-31T19:20:00", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/wishaw-msp-welcomes-new-funding-36950742", - "media_type": "news_article", - "sentence": { - "text": "Commenting, Ms Adamson said: \"Scotland's musicians are renowned across the world, and international touring plays a vital role in helping artists build sustainable careers, reach new audiences and showcase our country's creativity on the global stage.", - "media_hash": "79e5313123925ec2c14565541caaf63afa8d2d4f2dcded8d1025360a", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Clare Adamson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", - "media_hash": "e8010740956593f59364f297e55c4c3f588ee2c17dd1ae0cf584a843", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "crime": 3.703135 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", - "publication_date": "2026-03-31T11:32:07", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", - "media_type": "news_article", - "sentence": { - "text": "One is giving people in social housing the right to a healthy, sustainable home.", - "media_hash": "9e0ff278c501499dd6606a62a2b2fb49148812237370b3c507aff45a", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Paul Wilson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "housing": 3.703135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", - "media_hash": "7100c011b1055c79ac87f787a38bb80410cc71d65200cf519d05f4d4", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "crime": 3.703135 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "Holyrood is there to represent Scotland in all its diversity, and faith continues to play an important part in the lives of, at least, a very significant minority of the population.", - "media_hash": "07d5c0c62e84b10d7c071d340cc48e363c433b36446399df2b462fd7", - "sequence": 31, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", - "media_hash": "a72191d958d6a8b204303a3d8d073db19741884ff7c2fb17bb3c1867", - "sequence": 53, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Patrick Harvie", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Green", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.697825, - "scottish_elections": 3.697825 - }, - "demo": {}, - "pa-media": { - "food_systems": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", - "media_hash": "6658be1562fca05b50ab85e47c96a447f717cb65be4fd4d13ae8d27b", - "sequence": 1, - "claim_type": [ - "rules", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.66573, - "crime": 3.66573 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", - "media_hash": "4a5857123438eb8fa4dc702c657c297d6b7c8635f8108ed18a7aeee4", - "sequence": 42, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625, - "scottish_elections": 3.653625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "\"An SNP majority would be a disaster for Scotland's economy, but voters can stop this nightmare scenario by backing the Scottish Conservatives on their peach ballot paper.\"", - "media_hash": "1133322de785005d36ea77b1adf85f2a249b846e64a7fe0c64588186", - "sequence": 15, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Russell Findlay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservative leader", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.64377 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", - "media_hash": "a49f7bcc45c19245eb94bbee8fb52ad5f0a2f9198e1c331930bffad7", - "sequence": 19, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.635935, - "health": 3.635935 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", - "media_hash": "dd176e5ada44b4001da5152b79c4dd099e7d90cf283d7100f41e672a", - "sequence": 10, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.635935, - "health": 3.635935 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", - "publication_date": "2026-03-31T03:45:56", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", - "media_type": "news_article", - "sentence": { - "text": "\"They do have powers in Wales under legislation that came in this year, but we don't have the same powers in Scotland.", - "media_hash": "d018e0b720908663c5b1d01b9e30e1e9a3a153d38155188345e2b806", - "sequence": 26, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Stephen Jenkinson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.634205 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "\"A far more ambitious approach is required from those political parties seeking to form the next Scottish Government, one that at the very least ensures a competitive level playing field with England and which delivers on the industry's vision to make Scotland the best place in the UK to grow a retail business.\"", - "media_hash": "c337d04b85f62063ee94c3a71ee79142fa001bf01ac8e775492a570e", - "sequence": 24, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium (SRC)", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "David Lonsdale", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.6342049999999997 - } - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "... whereas Scotland has always had and continued to have a different legal system, different education system, different church system, so Gaelic is less of a factor for people in terms of national identity I would say.", - "media_hash": "6a09f4fa6f0cdd3f0fd7d65a3b94e9ccf5d8ac6fef11acbf5e1a782b", - "sequence": 28, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Eilidh Munro", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.6342049999999997 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "The public funding is contentious because substantial taxpayer money - allocated to secure jobs and promote clean, local manufacturing in Scotland has coincided with offshore production, reduced domestic orders, and now a possible factory closure and mass redundancies.", - "media_hash": "6a3b28b0b04a387a60b30dbafeadc961446af4046a047d48e7e3fb7d", - "sequence": 38, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.6342049999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", - "media_hash": "80bfd913544d43bad3c59d32bcdae3e643d9bd9a9365f1f7e642b1ff", - "sequence": 34, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "clinical_health": 3.612245 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", - "media_hash": "1000eaf6f4fec5852dc88f3720f6c9083f6ef71f8995a2b47df327fb", - "sequence": 15, - "claim_type": [ - "voting", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "energy": 3.612245 - } - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"We need a proper industrial strategy so we build more of our ferries, buses, trains, wind turbines and vital infrastructure here in Scotland.", - "media_hash": "5c1200a188f514f6c141294c9280cf4cf572f733d8c9c9cfe138ed58", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "Mr Sarwar is expected to say: \"A Scottish Labour government will build and buy more in Scotland so public money backs Scottish jobs, Scottish businesses and Scottish communities.", - "media_hash": "f09870df272103135b894340b437dee67caf9422a32d5f778e4f34d2", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", - "media_hash": "e8ba0501f33a1ca5f9728b40fc001b175d4b1e4c5c32de20d8b0d702", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour finance spokesman Michael Marra", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "energy": 3.612245 - } - } - } -}, -{ - "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", - "publication_date": "2026-03-31T05:01:49", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", - "media_type": "news_article", - "sentence": { - "text": "Mr Swinney's pledge would provide year-round childcare for every child from nine months to 12 years of age, with a promise that \"every single family in Scotland will get help\" towards the costs.", - "media_hash": "02a3ba0798eee05b9f32f8031e3697798c9bcbf45ec9972e7c27846a", - "sequence": 18, - "claim_type": [ - "rules", - "predictions" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.599205 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Check if you are owed \u00a3829 car finance compensation as over 12 million due payout", - "publication_date": "2026-03-31T06:43:07", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/check-car-finance-compensation-payout-36946549", - "media_type": "news_article", - "sentence": { - "text": "Scots urged to submit meter readings this week to avoid higher energy bills", - "media_hash": "2a9c1aab97cbcc0ab769a437aafb3cb9c031ad15d2ca04efa0596c79", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.59665, - "scottish_elections": 3.59665 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", - "publication_date": "2026-03-31T11:03:14", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", - "media_type": "news_article", - "sentence": { - "text": "John McGinn may be a Scotland hero.", - "media_hash": "22b2dfc9fac8786e2f46731d9515b8341f1399b226db86412000c27d", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I'd happily lose Scotland friendlies for the next ten years in exchange for ultimate international payoff", - "publication_date": "2026-03-31T05:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/id-happily-lose-scotland-friendlies-36945989", - "media_type": "news_article", - "sentence": { - "text": "At 31, McGinn knows this could be his last crack at a World Cup for Scotland.", - "media_hash": "0d950782b9ed606cc711b3af7f7799d29d382568ed0bee05c35a7685", - "sequence": 36, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Also, Scotland's publicly owned water and ferry companies do not have equivalents in other parts of the UK.", - "media_hash": "2759da544f278c1fb79878da14bbc6b64c5e75f1c51ecc11cebdbee3", - "sequence": 23, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Although they pressed in the second half, with Ipswich Town striker George Hirst getting into good positions, Scotland lacked cutting edge.", - "media_hash": "95b70388b95ef736b7140d3374c4779f1d868b76366e5c75700fcfd7", - "sequence": 24, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire urging people to prepare in advance for any healthcare needs to help reduce out-of-hours services demand", - "publication_date": "2026-03-31T12:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-urging-people-prepare-36948783", - "media_type": "news_article", - "sentence": { - "text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", - "media_hash": "2cce2c2834e7311d8cd62a21687a936e75b312ae0fa35347c6086ac7", - "sequence": 24, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "On the Radio Scotland Breakfast travel in Glasgow, there are emergency repairs, so there's one lane closed on Cathedral Street going west at North Frederick Street.", - "media_hash": "5044b77adbb5c24060e3935e8357a6f257e571b8997edf722faef44e", - "sequence": 59, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", - "media_hash": "6e249f27707f33ccc1a4bd3b7ac6c95408161b9f01357b8f1454521d", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Medicines Consortium", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "Murdo Fraser is a Scottish Conservative MSP for Mid-Scotland and Fife", - "media_hash": "7323c51dd17b00d96dce1604c075980f5be282371c031b3ef8004ead", - "sequence": 46, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "Typically the arrival of Easter also marks the beginning of school holidays around Scotland, with many councils lining up the spring term break with the annual celebration.", - "media_hash": "3a2a34992f99fc0a1501650b9d391ac3782a7a989c245611aef4adfd", - "sequence": 66, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "MLS side Charlotte are coached by Dean Smith, the former Aston Villa manager and pal of Clarke, his assistant is the Scotland boss' former Kilmarnock player, Gary Dicker and the club's technical director is Clarke's ex-St Mirren team-mate, Tommy Smith.", - "media_hash": "9adc32843fb8568f319aa881c6a003c897769b381d3b697d4903683f", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "This manifesto is titled A new chapter for Wales.", - "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", - "sequence": 981, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "senedd_election": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", - "media_hash": "943254d39c6b70c5bfd841cf0e666a83f183640984702dbb505f71a3", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's annual membership survey was carried out between July 28 and August 20 last year.", - "media_hash": "92e2710768a11115e0f02b2445449c84a771bb67d16f3e43978aeeaa", - "sequence": 31, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Clarke afterwards confirmed that Scotland will play Bolivia in New Jersey on 6 June.", - "media_hash": "47e5fc74b67e3943e7873329835eadf20cfbcb56de051012ab01cc36", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steve Clarke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", - "publication_date": "2026-03-31T12:53:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", - "media_type": "news_article", - "sentence": { - "text": "Kevin Hobbs, CMAL Chief Executive, added: \"It is a proud moment to see MV Isle of Islay carry passengers for the first time. Her entry to service is a clear demonstration of the progress being made to rejuvenate Scotland's ferry fleet. Our focus is now on expediting the delivery of her three sister vessels, which will provide further flexibility and resilience across the west coast network.\"", - "media_hash": "1ec627e126a09719edb05a7ed1330d2405f38020b44d42607d7e842f", - "sequence": 18, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "CMAL", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Kevin Hobbs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5723399999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", - "media_hash": "29a18e17320a82af97cbcaec70f86b027174eb5e43a076a1a05f9c93", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.562025, - "scottish_elections": 3.562025 - } - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "He said: \"It's the best I've ever seen Scotland play, it's outstanding.\"", - "media_hash": "7250819e1c20107e1a6bc41a6e41a109b95a088398a41b17057dd96f", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland fans", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Niall Reagan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.560815 - } - } - } -}, -{ - "title": "Willie Miller: Stephen Robinson\u2019s 3 priorities to save Aberdeen from relegation -and why it was right to let experienced Sivert Heltne Nilsen go", - "publication_date": "2026-03-31T10:45:21", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/sport/football/aberdeen-fc/6986505/aberdeen-fc-willie-miller-stephen-robinson-priorities-relegation-battle/", - "media_type": "news_article", - "sentence": { - "text": "It offers a strong possibility of Scotland qualifying from a group stage for the first time ever - but positive momentum is needed.", - "media_hash": "87ac20e2d4c7077df57f4cf0fbe197a90b6b5961851e627f9e181bae", - "sequence": 52, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.560815 - } - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "The search for the killer became Scotland's biggest manhunt and newspapers at the time labelled him Bible John after a witness said he quoted scripture.", - "media_hash": "724af7be0572f749296c2f9aa05c145304290590c6813d5a26b306eb", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.560815 - } - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "\"My party would fundamentally overhaul Scotland's business rates system to make them fair and transparent.", - "media_hash": "1eb2f07ed58cd46e7c105747d75f6ea1352bac8320295dcefef76644", - "sequence": 13, - "claim_type": [ - "support" - ], - "claimer": [ - { - "name": "Russell Findlay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservative leader", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.559555 - } - } - } -}, -{ - "title": "Glasgow tower block tragedy as man plunges to death and cops lock down area", - "publication_date": "2026-03-31T13:17:28", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-glasgow-tower-block-tragedy-36946528", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", - "media_hash": "c4b94cec680620537c00218d235dc9d49fc8b3ea7da08e3af0f3394f", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", - "publication_date": "2026-03-31T12:53:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", - "media_type": "news_article", - "sentence": { - "text": "The vessel, which will provide a mainland link for the people of Islay and Jura, arrived in Scotland at the end of February.", - "media_hash": "2fa33f5fc23ac4d111dfa07358dca9fdd48aa971653ac24fe77f9054", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'GTA Paisley' creator shares update after fundraiser for game's launch falls short", - "publication_date": "2026-03-31T12:29:24", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984043.gta-paisley-creator-shares-update-games-fundraiser-fails/", - "media_type": "news_article", - "sentence": { - "text": "People were quick to draw comparisons with Gellalty's game and the world-famous Grand Theft Auto series, which is also created in Scotland with studios in Dundee and Edinburgh, by Rockstar Games.", - "media_hash": "613c6665c9a57b2168ab0e6ac6868977c8156a7ff58b7449b574abbb", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "In order to access the funding, Alexander Dennis had to provide evidence of sufficient orders to sustain its operations in Scotland.", - "media_hash": "d0caf6fba9e8dbe9c63749029b2d563e4996610cc6ebd388e162b1a2", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", - "publication_date": "2026-03-31T11:07:30", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", - "media_type": "news_article", - "sentence": { - "text": "He added: \"This matter remains under active consideration as part of our wider approach to supporting Scotland's learning estate.\"", - "media_hash": "dec9ba203156d2bd54f87c4a75af665e4c2c0c633163e9ac43a7f63b", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Ivan McKee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "Swinney got year-long warning England-bound bus firm was 'reconsidering' Scotland", - "media_hash": "152b3a2fdf9ae789c859a1037cd4a578285a93ea907618225d1665f2", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland.\"", - "media_hash": "66e79267f2f20285e46da231609f2b1b317c6d4fc22a613cbe4f833a", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Paul Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", - "publication_date": "2026-03-31T09:21:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", - "media_type": "news_article", - "sentence": { - "text": "There is also lots on offer for the whole family in terms of food, from a bustling pizzeria in the heart of the Scottish capital to a rooftop venue with views out over one of Scotland's top golf courses.", - "media_hash": "bf4b628fe3db5d9357158e058e82e221347a37b5bd7ff09694313531", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", - "media_hash": "7e78dab14349a3bfc0a0d77081844f3b8fcd71503353f17772db6138", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mark Diffley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "The crime boss left Scotland in 2006 and had been living in Dubai, but was expelled from the United Arab Emirates (UAE) last September after a number of headlines on the Scottish gangster began to circulate.", - "media_hash": "e57d8a67aed9b30135d41c7116a07232b0623a2dd45a3ca937e91b3d", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "For Scotland, Naismith admitted getting it right for \"travel and humidity\" was paramount.", - "media_hash": "0b539859eca752c80b698a3027e68efe236cf32399c25e5f0f0a6012", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steven Naismith", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in Scotland", - "publication_date": "2026-03-31T05:58:30", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", - "media_type": "news_article", - "sentence": { - "text": "\"John Swinney's strong leadership is firmly focused on the priorities of the people of Scotland and our landmark childcare policy is a clear demonstration of the type of Scotland we will build - that's what's on the ballot in May.\"", - "media_hash": "57de207247e559a7b47618934a7807bbb5aa2fafc9376e28e3e90265", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "Mr Findlay said: \". Reform candidates are quitting before they've even begun. It's complete chaos and we're the only party with a credible, common-sense plan for Scotland.\"", - "media_hash": "806f9a373d1b541ec8a8662da984afd17d651e7853d6a3235cb45763", - "sequence": 83, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Russel Findlay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservative", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", - "publication_date": "2026-03-31T05:01:49", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", - "media_type": "news_article", - "sentence": { - "text": "Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard earned cash.", - "media_hash": "171443f6f6ea3f791caada4ede9c8d05114bff5da7be2d29c44adbab", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans want Steve Clarke football without fear back as boss swerves boos session with players", - "publication_date": "2026-03-31T05:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-want-steve-clarke-36946013", - "media_type": "news_article", - "sentence": { - "text": "The fear is that the wind could be knocked out of Scotland's sails all over again, just as it was on the road to Germany two summers ago.", - "media_hash": "7e06a329b4f291969766eced53b374f7f797381decf59a845ca9749f", - "sequence": 53, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "In a recent survey, the 'Pregnant then Screwed Scotland' group revealed the impact childcare is having on mothers in Scotland.", - "media_hash": "701981525ad19e938453e8f88df472449f00dfe580d5d1ac557797b9", - "sequence": 27, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "The actor visits Glasgow in a new Sky History programme to find out more about Scotland's notorious serial killer.", - "media_hash": "ef7ec0bc7772cd4e0e1a114da1a305dd59a4e179fd63985ce315816c", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "Vicky added: \"The dark nature of their crimes made them Scotland's first serial killer celebrities.\"", - "media_hash": "b01d7b3031e47a489e14b0cc7db5b69c84ff9f76f6aa09badfaf0a2b", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Vicky McClure", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Police investigating former SNP Holyrood candidate over...", - "publication_date": "2026-03-31T17:34:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", - "media_hash": "b482a75e855d18922197af3adb1189ba95d3866e30faa297c290aec5", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "\"It's the Scotland atmosphere.", - "media_hash": "01c89c1ce85687435cd4e3aa7c7ce956361dd6c1d40372926ddfbf35", - "sequence": 25, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", - "media_hash": "f420d8586b09e7fef11fc850fa9a6fbb016985a27218e68e9a599de2", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", - "publication_date": "2026-03-31T15:25:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", - "media_type": "news_article", - "sentence": { - "text": "Plans to make the day after Scotland men's team's first participation in the World Cup for the first time in 28 years a holiday have fallen foul of council officers for financial reasons.", - "media_hash": "f16349f2aa56757c53c7ab11ff014ffa0b7f50d0ef9f65268dcf79b4", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "Energy historian at Glasgow University, Dr Ewan Gibbs, also expressed his frustration as he wrote on Twitter/X: \"Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", - "media_hash": "990b73ff0fedb5ab0460e241f9c673772b37206e64e21d13a00328bb", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP MP Stephen Flynn", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Ewan Gibbs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "In a strange and angry pocket of the Tartan Army, there is a section of Scotland supporters who have taken to booing the head coach and the team.", - "media_hash": "32bda8499297d06a8ff94bf56f5572daede89134d98d193f920a3b8e", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Steve Clarke admits Scotland must find attacking...", - "publication_date": "2026-03-31T22:14:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696365/Steve-Clarke-admits-Scotland-attacking-quality-World-Cup.html", - "media_type": "news_article", - "sentence": { - "text": "Clarke refused to talk about his future beyond the World Cup - he has yet to agree an extension to stay on beyond Scotland's first appearance since 1998 - but confirmed their final warm-up match will be against Bolivia in New Jersey on June 6.", - "media_hash": "c6d483e2417823823c7a831307e3b6a2830186aa2f25739b1e7b6697", - "sequence": 14, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "They took the lead shortly afterwards with a quick break that saw them inflict maximum punishment on an exposed Scotland.", - "media_hash": "1b293dbbb8ef8e67987359a3530c05d609b4539ad9f5de7b79c0b912", - "sequence": 50, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland has previously said it will continue with its current policy.", - "media_hash": "28e703e2ff069434c235fcab2dfca6c6adcc76b1c6ac12a8260a7ec2", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", - "publication_date": "2026-03-31T20:36:44", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", - "media_type": "news_article", - "sentence": { - "text": "Ultimately, Scotland lost to Nicolas Pepe's first-half tap-in.", - "media_hash": "93e4b368f230f15447c72858ae6f748ff2d0435ba33969361c8455df", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "Chasing the game is not Scotland's strength but McTominay forced Lafont to concede a corner with a shot from distance after three team-mates had pressured Christ Inao Oulai into losing possession.", - "media_hash": "2fc3afb19cf6b65fc6e7401c39a19240840cf1ca4ee67ebae8424b6c", - "sequence": 15, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "Substitute Nathan Patterson's well-timed tackle in the penalty area prevented Amad Diallo pulling the trigger after a break from a Scotland corner while Bain pulled off a good save to deny the Manchester United winger, before Monaco's on-loan Sunderland winger Simon Adingra hit the post in added-time.", - "media_hash": "0f826f193778d055a271947943e85d7f02a947e693640befe8d56ae9", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Malcolm Offord is the leader of Reform UK in Scotland and the party's candidate for Inverclyde.", - "media_hash": "a0cd36677584fc519cfe3f4d8bba2e645904f26e32e8b5d5809faa65", - "sequence": 23, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man dies after falling from window of tower block", - "publication_date": "2026-03-31T13:57:31", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984593.man-dies-falling-flat-glasgows-dougrie-place/", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, March 31, 2026, police received a report that a man had fallen from a flat in Dougrie Place, Glasgow.", - "media_hash": "1fd8318d221d96ddf2cb76c45f3b8b5cccc9866ef684d2b531544ad6", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", - "media_hash": "3671056854f967d53285a39691be240f4dbfa67a2a893b7e05804806", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T11:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Responding to news of the consultation, a Scottish Government spokesperson said: \"The Scottish Government remains in regular contact with Alexander Dennis and trades unions and stands ready to discuss all options, across a range of areas, to protect skilled jobs and achieve the best economic outcome for Scotland.", - "media_hash": "b59ad083118be3ea3b21cd2834d67d38e5b6267fa9b7baadcdd1ec74", - "sequence": 24, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "The SNP candidate for Edinburgh Central added: \"There is no room for complacency, but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", - "media_hash": "b1bd0a6f9c2373d834bf1d7ac3c2ef85c4e56aea512cd3a2058c99d0", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Angus Robertson MSP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Here's when viral sensation Angine De Poitrine are coming to Scotland", - "publication_date": "2026-03-31T09:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981988.angine-de-poitrine-coming-scotland/", - "media_type": "news_article", - "sentence": { - "text": "VIRAL experimental math-rockers Angine De Poitrine from Quebec are coming to Scotland.", - "media_hash": "9224f620453d93aa087f4c8b3a7958e4bfb8598fe43f6b5af6d8630c", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "On his search for Scotland's World Cup base camp, the head coach found the one in North Carolina, with a wee hand from a few familiar faces.", - "media_hash": "70612f648fcbe21609ab5dfd295bf236a547f1af7956e8b7667a0dd9", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "With the help of Charlotte assistant Dicker and Scotland assistant Steven Naismith, BBC Scotland gets the lowdown on \"one of the best facilities in the MLS\" and the national team's summer set-up.", - "media_hash": "87278a3529c85d772a40c6df2b89c24dea47e6688c28b3b5bc13c840", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "\"It is not in the interests of Scotland's economy for shop owners to be incentivised to invest in Berwick-upon-Tweed over Bothwell, Buckhaven, or Blairgowrie.", - "media_hash": "6037cde94e5109a4d924ac954c2d0be1c286714e4a772735c28c8787", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium (SRC)", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "David Lonsdale", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "He mans a ship off the West Coast of Scotland and he's also, uh, very, very lyrical.", - "media_hash": "e0ad281bce8bd713fa801504db2d2af1fd09bfb642c176c53079ba42", - "sequence": 1736, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "Scotland job cuts plan risks austerity, IPPR Scotland warns", - "media_hash": "6724df0bfcf7d769a3634f7f2c36d46e0e946add748580087ab6ca57", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland needs change after 20 years of SNP government,\" the Scottish Labour leader said.", - "media_hash": "57eb78597b5d7601492757d909b36db6214768fd438c86f4595be0b1", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T22:34:30+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/ChrisLawSNP/status/2039109107970367522", - "media_type": "social_post", - "sentence": { - "text": "RT @theSNP: A historic SNP majority can unlock transformational change with independence - and make Nigel Farage irrelevant in Scotland's Parliament.", - "media_hash": "e782af747603e49ab18417b2e63a48b08b680a72c862b1779badf433", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "the SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Steve Clarke has called for an end to speculation about his future so he can concentrate on the World Cup after Scotland suffered a second friendly defeat in succession.", - "media_hash": "bcfec979b3a667157a0be94ab84ad734768c27a8d77457a5199006ee", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steve Clarke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", - "media_hash": "f8d3a4c92e59f62006be5cdca6367b18b0661350a3c3607074aadd2e", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", - "media_hash": "78e07e46d212bd0cd5e21f1d4cfa6b194306773895b0edd66947af91", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", - "publication_date": "2026-03-31T20:36:44", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", - "media_type": "news_article", - "sentence": { - "text": "He claimed that if Scotland go gung-ho against top teams, we run the risk of being left embarrassed.", - "media_hash": "c1c680fbb9300f69b0525a035b577d429c947cc6023283f9c0431fb4", - "sequence": 33, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John McGinn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", - "publication_date": "2026-03-31T20:36:44", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", - "media_type": "news_article", - "sentence": { - "text": "But from early on here, Scotland's intent was clear.", - "media_hash": "bc3df636b00f7368a92dbde045ea51984aa82f190225654a5de3ad79", - "sequence": 36, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steve Clarke", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He is a former Scotland Office minister, but has got himself into hot water recently with some of his past comments.", - "media_hash": "fabe1e64889f407b24aa8ad63c818861e386065e5a9449a8e7048c18", - "sequence": 25, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", - "media_hash": "225f398a9c173c03c7d4f4abbf2b8ffc518f20852ecdc157df373c45", - "sequence": 60, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T17:00:00+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/DaveDooganSNP/status/2039024927437709388", - "media_type": "social_post", - "sentence": { - "text": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f Scotland's energy must be in Scotland's hands, and that can only happen with independence.", - "media_hash": "58f928154dd3b1aee278448d861e9c10f5ba15aa0009efb8f01abd96", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "The company is a leader in zero-emission bus technology - electric and hydrogen buses - and plays a key role in delivering Scotland's and the UK's green transport ambitions.", - "media_hash": "78effa7b02faef3b65642d2a3ad87354fc90124df7bc6e65ca9ba5de", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "As the ECHO spoke to James Milne, 41, from Shetland, and Andy Irvine, 32, from Paisley, outside the venue, a line of Scotland fans emerged from inside the pub.", - "media_hash": "a73b570a04c43fa3e213e2d9868d285d1f7a4a546aef7c915afe2948", - "sequence": 34, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "Alexander Dennis workers have been on furlough since last September while awaiting the outcome of the latest round of bus funding, with ministers hoping fresh contracts would stabilise the firm's long-term future in Scotland.", - "media_hash": "4dd6072f54628d2c16ebdf4a812c62d83de72c4906a09ebfbc312807", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "He added that the wider economic environment was driving companies away from Scotland.", - "media_hash": "5591fae97b4a3a51790fbe79a4159c5e5b811fc0093ae2a747c0dddc", - "sequence": 22, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "The criticism comes as questions mount over the effectiveness of Scotland's flagship green transport funding schemes.", - "media_hash": "a1faf01f10898c20423594191dc9421dfa997cb6dba423c2be27ff7b", - "sequence": 26, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Green candidate replaced by rival who complained about him", - "publication_date": "2026-03-31T16:22:37", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", - "media_type": "news_article", - "sentence": { - "text": "BBC Scotland News understands that one of the individuals who submitted the complaint against him was Maggie Chapman, who will now take Ingerson's place at the top of the list.", - "media_hash": "c33be1b75e3fea806d8df23764a38dcfe0f7d2a20bd03afeb0807bf5", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", - "publication_date": "2026-03-31T15:36:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", - "media_type": "news_article", - "sentence": { - "text": "The stories of refugees integrating their lives to Scotland are the subject of a new drama project being launched in Stirling next week.", - "media_hash": "1f85669d6e85135badadd59d6e7d022f526e9f4699cd20d6c1da933c", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "Scotland's Assisted Dying Bill was opposed by people for a range of reasons, not just religious faith (Picture: Jeff J Mitchell) | Getty Images", - "media_hash": "e8f49fb3633f0010da7499e59c17a1bca1eb5b4e6daa2f1ed9c9ef1e", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", - "publication_date": "2026-03-31T13:53:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", - "media_type": "news_article", - "sentence": { - "text": "Last week First Minister John Swinney announced NHS staff would be given a one-off national holiday to mark Scotland's men's football team participating in its first FIFA World Cup since 1998.", - "media_hash": "969bd4b62e13d32a28b50ca3c62b23386ebe72125b2a4a2c511d6ef1", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", - "media_hash": "f57a0718e8725e4d6c754a5b495a6754c818ffb0b525e28b2d4d4ae2", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Cole-Hamilton opens door to helping Sarwar become first...", - "publication_date": "2026-03-31T12:44:27", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland's been very badly run for two decades by the SNP,\" he said.", - "media_hash": "d074246bcc12a5985c07c2d5cad78a22f8b55d479d62a732af76afc4", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Ed Davey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", - "media_hash": "468850ba63dba7734051a57781c59cab68bc4fbad4d5c5664ee2ed6c", - "sequence": 42, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "The Deputy First Minister added: \"Meanwhile, the UK Government has been sitting on its hands when it comes to the policy levers which would make a vital difference to order numbers at Alexander Dennis and support domestic bus manufacturing in Scotland.", - "media_hash": "c3c60140c2c73bac5f4ad44bd05e138639a2a83be048541c7374e060", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kate Forbes", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", - "media_hash": "74f292618f0c059f2e657ba424aa4f2bd7d85b6ef6040c9e0e310cff", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steven Lyons", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Amanda", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", - "media_hash": "5870605429121f95ba5a5e437d9441e8607a45271379abe867dd40d3", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mob boss Steven Lyons to be deported from Bali to Spain after arrest", - "publication_date": "2026-03-31T10:29:28", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/mob-boss-steven-lyons-deported-36948100", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"We are aware of the arrest of a Scottish nominal in Bali and we are working closely with European partners.\"", - "media_hash": "8b57b18fc7e73a8cc3c656cd9eeba68b4d4a7ab5e669c5298f4b6030", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "It was First Minister John Swinney that confirmed the new furlough support for ADL which he said would need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", - "media_hash": "78d5e46abb52bfc25027e05d01a3017c10617a836e8ce67096fef251", - "sequence": 40, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.21660000000000001 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland", - "media_hash": "8d8fa84d86d5114cdf23136928618ae2b295fb3b933b6909ad058d50", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "\"There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.\"", - "media_hash": "5b2dfbacfa904247a2a13f7ab5a3e9c65690cf7e457f50904f0b47e6", - "sequence": 25, - "claim_type": [ - "voting", - "other" - ], - "claimer": [ - { - "name": "Angus Robertson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Scottish family days out and dining deals to enjoy this Easter holidays", - "publication_date": "2026-03-31T09:21:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/scotland-now/top-scottish-family-days-out-36945208", - "media_type": "news_article", - "sentence": { - "text": "Earning fans thanks to its bustling and family-friendly atmosphere, Vittoria on the Walk specialises in Italian classics made with ingredients from both Italy and Scotland.", - "media_hash": "64e42ffbd50c0d236e10041003b27959ad579dec128dcb389b5756e2", - "sequence": 47, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Vittoria on the Walk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "John Swinney: SNP plan for NHS 'is working'", - "publication_date": "2026-03-31T06:29:37", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", - "media_type": "news_article", - "sentence": { - "text": "NHS in Scotland plan 'is working' says First Minister John Swinney", - "media_hash": "cbbeb8afc6616e6662d68ee41bc47519f828889f79d0c137365e86a2", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "First Minister John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "\"The gaffer here obviously knows Steve well, I think they know they'll be looked after quite well. He worked with John McGinn and a few other Scotland players, so having that connection, understanding what teams need and being flexible with it, really helps.\"", - "media_hash": "32421abaf6078a24165000726e396200dc2d1911a11f018c585bc388", - "sequence": 40, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Gary Dicker", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "Russell Findlay has promised to cut taxes permanently for businesses in Scotland if his party wins the Holyrood election.", - "media_hash": "8deb4cd87243bed4914fe0688a23e2c04756644d1de4c3ea731a98c5", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Russell Findlay", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in Scotland", - "publication_date": "2026-03-31T05:58:30", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", - "media_type": "news_article", - "sentence": { - "text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government, and parents need a break from John Swinney's failures draining their hard-earned cash.", - "media_hash": "6cacd39abb46ff6b776b6c0880fbdf387d7e28328d4b0261bf67bbbe", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "At the same time, SNP leader John Swinney was braving the stormy winds at the St Fergus gas terminal to push the case for independence - saying this would \"put the region's energy future in Scotland's hands\".", - "media_hash": "588a6d548b542118b8d79736a0e61532768bf092823a4e5271420ced", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "And they're the perfect opponents to for Scotland to play tonight, according to midfielder John McGinn.", - "media_hash": "778ee510316f0699874e3c93f60ffef906c1eb63c9dcf6d3bda34716", - "sequence": 135, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steve Clark", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "A man that knows a fair few things about the benefit or otherwise of a World Cup warm up match is the former Scotland striker Darren Jackson, went of course and played in France 98. Darren Morning to you.", - "media_hash": "15c773db57faf37363fba0607e2dca1a89bb649da3616157562add18", - "sequence": 969, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland fans want Steve Clarke football without fear back as boss swerves boos session with players", - "publication_date": "2026-03-31T05:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-want-steve-clarke-36946013", - "media_type": "news_article", - "sentence": { - "text": "Scotland 's big bus to Germany two years ago began to stall and splutter at around this exact same stage in the journey.", - "media_hash": "bf64e77aeae2d78a54c6ab97bef2870c66eb3e986a54cb77bf89f9c7", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "In the paper, Employment, Productivity and Reform in the Scottish Public Sector, the thinktank IPPR Scotland argues that the SNP plan for public service reform is based on flawed assumptions and includes multiple strategies \"pulling in contradictory directions\".", - "media_hash": "6ca23450e45e47d35b475efa05e782c621506b244a1ebbd78304a2f8", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", - "media_hash": "037f80d72150856bb52dab37bc9a5ac73a7f29fe0900201608e5ca41", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.3982 - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "Scotland have to get back to what has brought them joy in the recent past - huge tempo, dangerous deliveries from wide, a flooding of an opponent's penalty box, a creation of chaos, a flick-on, a ricochet, a breaking ball launched into a net.", - "media_hash": "021eeaff64a2cb9967ed15f8161d2dff29130f80cf329c09ab252a90", - "sequence": 54, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland fans", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Steve Clarke", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "The African side were unsettled by Scotland in the opening ten minutes but asserted themselves following Pepe's goal and hit the post late on.", - "media_hash": "2bed100860d68223b568545e80d8c94fda50888d8048fde8d55d3cc2", - "sequence": 23, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", - "media_hash": "c8010e05506ef0df19188606dfc2b242e9a89867bb810270a3229b43", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "Falkirk goalkeeper Scott Bain and Bologna midfielder Lewis Ferguson replaced Kelly and McTominay for the second half in which Scotland stepped up the pressure but still struggled to create clear-cut chances.", - "media_hash": "0ed4bf37943bf5fca3b8612b0d36e8ff082405eae47c09118bbc7754", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", - "publication_date": "2026-03-31T18:58:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", - "media_type": "news_article", - "sentence": { - "text": "Scots gangland figure arrested in Indonesia following Police Scotland raids", - "media_hash": "22c6512ea22b06481c7734da2ea2d99feddc44e67bb090cf17dbdb69", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "Niall said it was a good time to be supporting Scotland.", - "media_hash": "3a354f36a68fc323110c1fe0259235a3b9a2c7c59a99b499ea51d685", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", - "publication_date": "2026-03-31T16:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", - "media_type": "news_article", - "sentence": { - "text": "She said: 'For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland.", - "media_hash": "92d3f57bf1b6923272bfdbf189d1ddd3631667ced56971d1d604c81a", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Kate Forbes", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Council criticised for closing crucial transport link during school exam season", - "publication_date": "2026-03-31T16:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985045.council-close-key-island-road-school-exams/", - "media_type": "news_article", - "sentence": { - "text": "The Herald has asked Qualifications Scotland (formerly known as the SQA) to confirm whether those impacted by the disruption on Arran would be eligible to receive this form of support.", - "media_hash": "03bc97ee307b72ef019e0cd6fb90b1dd12abfafdc1cc1dbb3fbb40ee", - "sequence": 24, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "\"There's a lot of people in Scotland who really don't like Gaelic and don't think it should have money spent on it and it's concerning there could be that opportunism there from Reform to try and capitalise on that at a time when money is tight across everything, but it's also a really important time for the language.", - "media_hash": "8a4a0a9ce4bf20c3f7f506d1f96ae910c41873932d62935cc15a56b6", - "sequence": 29, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Eilidh Munro", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", - "publication_date": "2026-03-31T15:21:22", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland were called to the address after concerns were raised about the occupant.", - "media_hash": "2ef55cffda923da1dfadb60ebb60c1596d17d916550a785ab2e43e36", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "NHS Tayside make preparations for staff World Cup holiday after council snub", - "publication_date": "2026-03-31T13:53:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/nhs-tayside-make-preparations-staff-36949701", - "media_type": "news_article", - "sentence": { - "text": "Last month, NHS Tayside told the Local Democracy Reporting Service it was awaiting direction from the Scottish Government about the public holiday after the First Minister and Perthshire North MSP John Swinney's proposal to make June 15 a bank holiday in Scotland was approved by His Majesty King Charles.", - "media_hash": "23c77bd51acd9872fa17a97911484fa5ebb92547dcfdece4b530a50c", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "His Majesty King Charles", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", - "publication_date": "2026-03-31T13:23:56", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", - "media_type": "news_article", - "sentence": { - "text": "Officers from Police Scotland say his death is currently being treated as unexplained.", - "media_hash": "4b4d52218bed3bc6d74ab0f6a54f0baae34682d5c05b069c00cf26d8", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "Scotland are the defending Men's World Curling Champions - so no pressure!", - "media_hash": "a60a7e9498f714d5d3527b16d5cfb723ff87dd27ec22b71458491e71", - "sequence": 48, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Team Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Pubs in the Highlands have been given the go-ahead to stay open late for all of Scotland's World Cup games this summer.", - "media_hash": "45d5d07de73cd15c1d094459cebce175df2a2f41d2826e140f6971e6", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "And Scotland is paying the price for it.", - "media_hash": "06e483bf0abb4c0eb8f6a692e206a2af32553bf3250494c786e24de0", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "'There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", - "media_hash": "b97796a98b198e76b280b455046ac75d156e7f256da50bfa5741482c", - "sequence": 23, - "claim_type": [ - "voting", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 3.703135 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "'Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", - "media_hash": "d5fffd4c874dd64dd036d47accf1681feac839847309f2a681a6d06e", - "sequence": 36, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 3.5503549999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "\"For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland,\" she said.", - "media_hash": "07b322c6feddb4fd3800c9cdc05d69f1e37ae50433feb2436e5f8c84", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", - "publication_date": "2026-03-31T11:03:14", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", - "media_type": "news_article", - "sentence": { - "text": "Our man Ryan McDonald handled the phone lines today ahead of Scotland's friendly against Ivory Coast", - "media_hash": "a2eddf532642dbb1d9802eac7841d2a4153698649fdd20e064fc4f0d", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", - "publication_date": "2026-03-31T11:03:14", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", - "media_type": "news_article", - "sentence": { - "text": "He said: \"As for the booing of a Celtic player, this is a common thing even when they are playing for Scotland, ask Davie Hay.\"", - "media_hash": "79366133660f189fb015b8995c62036568db15fa3e76b0cfd8fb74f4", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Eddie McCaffery", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", - "media_hash": "f53b2ae83cbb151ae7c9721d1b15c6a5e5ff13daef3d596f7c5f43c3", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alison Watson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Shelter Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland. Since February, we've seen a clear drop in the proportion of voters who say they 'don't know' their view of each party leader, indicating that engagement is increasing as the election draws nearer.\"", - "media_hash": "fa9d76d33dc140b9da1600d35fec1c9c72865b065e4d46b3606f6c9b", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Mark Diffley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "Lyons - one of Scotland's most high-profile gangland figures - was detained shortly after landing at Bali's I Gusti Ngurah Rai International Airport on a flight from Singapore on Saturday, only days after he was deported from Qatar.", - "media_hash": "dcbeedd6eeea05a61591ff207eca88efa27a5fae8c92cd87be884e8c", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", - "media_hash": "4de07c284139b1bffa489a0527b8d1f62ebdd808f2372c3bf52f959c", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "Clarke's former Killie midfielder Dicker agreed it's \"a really good central base\" with flights to both Scotland's match cities only a couple of hours.", - "media_hash": "7541afc3be2446acff8bdb32f1b5c3e034c715528aece03261940e9f", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Gary Dicker", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "Scottish Liberal Democrat finance and economy spokesperson Jamie Greene MSP said: \"The Tories like to talk the big talk on business, but when it comes down to it, the Lib Dems actually get stuff done for Scotland's hard-pressed SMEs.", - "media_hash": "20a6c36cb9e3cb49e276f6b1ec59f5599216a4f4a7ca898b9e415fa5", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jamie Greene MSP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Liberal Democrat finance and economy spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in...", - "publication_date": "2026-03-31T05:49:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard-earned cash.", - "media_hash": "8afe83ddf8d006a97d22d73b81e4c50362bad83d71d8a84355b9cf6f", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", - "publication_date": "2026-03-31T05:00:00", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", - "media_type": "news_article", - "sentence": { - "text": "Since 1976, Scottish Women's Aid has helped women, children and young people and has driven change in policy, law and public understanding in its drive to create a Scotland that no longer needs its services.", - "media_hash": "5d1390326efedf5b18d6ddbae84d4a980a00a6dbde2146f20a72e983", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland's voters deserve better.\"", - "media_hash": "386b87780a220fc0e8dd6e7a21323313af38cb2494a9be41c5d1d87f", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stephen Boyd", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "They visit Glasgow to find out more about Scotland's notorious serial killer who cops believed murdered three women Patricia Docker, Jemima MacDonald and Helen Puttock in the late 1960s.", - "media_hash": "1bd889aa6d72e854b0ea0d71345dd8351caff5a8d2b8bf4de80f0c19", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "cops", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "Liverpool city centre was packed with Scotland fans ahead of the World Cup warm up match at the Hill Dickinson Stadium", - "media_hash": "c61c2cad26efa130583ecdf7b492dd2f7875d6821f67bd6aa94868e3", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "The unfolding situation has exposed tensions at the heart of industrial policy in Scotland and across the UK.", - "media_hash": "e8c6b33e1dee8a6e354751d6bb8c45eca790aa9fb1da3f2830ced3ea", - "sequence": 37, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland,\" he said.", - "media_hash": "5ae2d4a07183c5b54fa79f6fb19132cf91df348387a629039b5e4856", - "sequence": 51, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Paul Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", - "publication_date": "2026-03-31T16:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", - "media_type": "news_article", - "sentence": { - "text": "Unions said the scheme was critical to the short-term sustainability of ADL's future in Scotland after the company previously announced in June 2025 it intended to centralise its manufacturing operations at a single site in Scarborough.", - "media_hash": "7a3e970c3263e9b38533dd7c46634fe177703df2f6b3bbfcf95e3823", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Unions", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alexander Dennis Limited", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", - "publication_date": "2026-03-31T15:25:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", - "media_type": "news_article", - "sentence": { - "text": "\"We want to make the most of Scotland's participation in this global sporting event by ensuring people have the opportunity to come together and celebrate - no matter the outcome of the match.", - "media_hash": "fc623e99889cd068070cde77710442dab6e23b1076105fd0b6b214e9", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "This reaction was all the more surprising given it was no secret that Forbes was a member of the Free Church of Scotland, and it was entirely reasonable to expect that her views would be in line with her church's teaching.", - "media_hash": "9534e7ba0165fcaac4d5773861c70919cbe78534b78a9f2ac9e17f00", - "sequence": 15, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Free Church of Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "The Labour leader has accused John Swinney \u0301s party of failing to invest in Scotland (Robert Perry/PA)", - "media_hash": "7f9aefb60ad2f91884427c82b0c61ad7ef8851daccc185b07d2a3309", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Scotland fans can fret - but they need to keep perspective too'", - "publication_date": "2026-03-31T23:01:17", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cn0wggq2lveo", - "media_type": "news_article", - "sentence": { - "text": "There was cause to be disappointed in the way Scotland conceded from a counter-attack, a run from Nicolas Pepe that wasn't tracked by Billy Gilmour, a defensive lapse that wasn't recovered by Kieran Tierney, and a shot that Liam Kelly presumed was going in until it came off a post.", - "media_hash": "c8caf2b0336271e856c9b9443cfc465af2b4d9f2e28f74981f193876", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Steve Clarke 'not bothered' about red-hot Scotland talking point as another friendly confirmed", - "publication_date": "2026-03-31T22:13:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/steve-clarke-not-bothered-about-red-hot-scotland-talking-point-as-another-friendly-confirmed-6531039", - "media_type": "news_article", - "sentence": { - "text": "Scotland have already scheduled a World Cup farewell against Curacao at Hampden on 30 May.", - "media_hash": "c9c43855dad904c86422fe71eb568fb1fe63616117aee4c65cc87754", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "McTominay hit the post early on against Japan on Saturday night but the ball screwed off the woodwork to safety rather than into the net or back out to a Scotland player.", - "media_hash": "2c59c0b8fc52c86255dd7b635b12137da5cc519177ac75602d81266c", - "sequence": 57, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scott McTominay", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", - "media_hash": "f543675647f69b6e1babf6c951ea028d19cb40083f64a0b938a8fc1a", - "sequence": 71, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", - "publication_date": "2026-03-31T18:58:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", - "media_type": "news_article", - "sentence": { - "text": "On Tuesday, Police Scotland confirmed it is working alongside European authorities in relation to the arrest.", - "media_hash": "79b0ddd12b376d48a06113d660abec70c8e9430a6e6f4650c2ddf641", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "Armchair sports fans once again discovered a passion for curling at the Winter Olympics earlier this year - enjoying three weeks of thrills and spills on ice for Team GB (who, as ever, were from Scotland).", - "media_hash": "0621b917be63c4d3f3edc017dfdd81fbfb07e24c3aea98501190bae1", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John McGinn sparks Tartan Army backlash as Celtic fan predicts next Rangers conspiracy - Hotline", - "publication_date": "2026-03-31T11:03:14", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/john-mcginn-sparks-tartan-army-36948409", - "media_type": "news_article", - "sentence": { - "text": "Eddie also had his say after Daizen Maeda was jeered by Scotland fans.", - "media_hash": "28e56439c12197497976864fb96e41457c4abe68c8547f3c60012744", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", - "media_hash": "4eed64d849cddd4f921f27c111f1b5b605953a97bb6eb68a81884403", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "international law enforcement", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Norman Silvester", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Swinney says Scotland not invited to key Cobra meeting on Iran war", - "publication_date": "2026-03-31T10:34:15", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983277.john-swinney-says-scotland-not-invited-cobra-meeting-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "FIRST Minister John Swinney has called for Scotland and other devolved nations to be involved in a planned UK Government Cobra meeting on Tuesday after no receiving any invitation.", - "media_hash": "31651f9bbeed14fd2736d1216685888e99e1e2b12f2e66eef134c741", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "John Swinney says Scotland not invited to key Cobra meeting on Iran war", - "publication_date": "2026-03-31T10:34:15", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983277.john-swinney-says-scotland-not-invited-cobra-meeting-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Government has released a statement detailing the First Minister has requested an invite be extended to Scotland, Wales and Northern Ireland.", - "media_hash": "88bf53272214b06226bef21eaaab94307c83a275334340fab37e347a", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Princes Street incident: Boy, 15, arrested after car chase in Edinburgh city centre", - "publication_date": "2026-03-31T08:23:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/boy-15-arrested-after-early-hours-car-chase-on-princes-street-6529563", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", - "media_hash": "932144d920312a346138f7c3fcf63bc8b4ebf9665ae1d9b668d6295a", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland found their base camp for 'travelling' World Cup", - "publication_date": "2026-03-31T06:24:03", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cpqw58jrex7o", - "media_type": "news_article", - "sentence": { - "text": "Steve Clarke's former Kilmarnock midfielder Gary Dicker is assistant coach at MLS side Charlotte FC - where Clarke's Scotland squad will be based for the World Cup", - "media_hash": "685ade53577ab9483540ec47ac2b25d798a4f125f321d6eebed2aa40", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", - "media_hash": "71a9563a9b06a998ddd6532b2bb5d34e2eff4a320668e8b864f91efe", - "sequence": 891, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", - "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", - "sequence": 987, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "senedd_election": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", - "media_hash": "8e8fa0be58a7449a317b4c331f6070ab4869fa6b9d93504f4deadf1a", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", - "media_hash": "57434479d14b7e0cf6a48505f39003f800b3bd2b52e9efe71617c202", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Biogen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Ms Stewart said she hopes the expansion of Fair Feast will be some sort of blueprint for other communities across Scotland and beyond.", - "media_hash": "210f49fc5ec32d392d77ffae030b40437466fcf76e1bcbc7e17071b8", - "sequence": 36, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "We had JJ Bule on, uh, radio Scotland last week, who did a, I think you could like an LCD sound system kind of very funky hipster kind of track.", - "media_hash": "00fb1f5dcb8b0a8213a36502aab3d16e7526d0700d643055675b6025", - "sequence": 1627, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "However, IPPR Scotland argues this does not mean the sector is \"bloated.\"", - "media_hash": "031467d95cbf8425d6fd96bfe2359405ae458adb370cd6447a14ded5", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "ADL positions Scotland at the forefront of zero-emission transport technology, aligning with national climate targets and global export opportunities.", - "media_hash": "1752255716c701c1594950d8aab7491574281da218ffda8b7834a57e", - "sequence": 31, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "Mathew Street was lined with Scotland fans just before 2pm, with constant chanting for midfielders Scott McTominay and John McGinn.", - "media_hash": "9288794828f6c59e317415ed3cb6ece7a46fddb3a7155d6146d6fbeb", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "It was back down to earth with a bump for Scotland at the weekend.", - "media_hash": "5b3446b9c18c31d75e5b8adceca46002e3092be84d37a1e95af84501", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "Robert Deavy, senior organiser in manufacturing at GMB Scotland, said: \"How many jobs must be lost and factories closed in Scotland before our governments stop sending contracts around the world?", - "media_hash": "2ef4c4471d858bab155b3811ab1fddeed58b275e3d869dccae95b7ab", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "GMB Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Robert Deavy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "It's meant that there are portions of people across Scotland who do not support Gaelic being funded in any way.", - "media_hash": "642459b2790981d262247ddcbbf1c46c386b8487dd0502c9481d0831", - "sequence": 23, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Why is Scotland vs Ivory Coast being played in Liverpool? How to watch and live stream", - "publication_date": "2026-03-31T15:30:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/sport/football/news/scotland-ivory-coast-liverpool-friendly-36941573", - "media_type": "news_article", - "sentence": { - "text": "Scotland manager Steve Clarke specifically requested a match against strong African opposition to prepare for their World Cup group stage game against Morocco this summer.", - "media_hash": "2ca0eeb3de3a2c7f3f361b4a4ced1d8f9ab0f5e3f7fa1cc2dc13628b", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland manager Steve Clarke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", - "publication_date": "2026-03-31T15:21:22", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", - "media_hash": "a5928758ecdf0493a55f46e7e1a8eafde9068ca7b3ec71a933cf7222", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", - "publication_date": "2026-03-31T03:45:56", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", - "media_type": "news_article", - "sentence": { - "text": "In her letter, Ms Hyslop said Transport for Scotland had been engaging with the UK Department for Transport over a trial being conducted in England.", - "media_hash": "54a728660cbb1e78655afabf49eae57b9166e62f18156c7dac4a5364", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Fiona Hyslop", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "That reflects a deeper, structural issue which is driving up the cost of doing business in Scotland.", - "media_hash": "d1c652bd6152912d9146d4bad702a518bf5f8061a8f0bb2a6c5fa977", - "sequence": 13, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "The roar Nathan Patterson received when he replaced Ross McCrorie after 61 minutes suggested many Evertonians had responded to manager David Moyes' call to come out and support Scotland.", - "media_hash": "d7e7e53bc431e8850e30f92718f3f7efe9207bf8e62c1e5416353a37", - "sequence": 62, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland must look at bigger picture but Ivory Coast defeat highlights what a blind man can see \u2013 five talking points", - "publication_date": "2026-03-31T20:36:44", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-must-look-bigger-picture-36951310", - "media_type": "news_article", - "sentence": { - "text": "Ryan Christie had a weak, close-range shot at the end of a promising Scotland attack - and seconds later the Africans were opening the scoring at the other end through Pepe.", - "media_hash": "116c54d5d469e8e77b64e86643e499aa84ab657a2cb805978c3bcf6a", - "sequence": 41, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Wishaw MSP welcomes new funding to support Scottish-based musicians", - "publication_date": "2026-03-31T19:20:00", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/wishaw-msp-welcomes-new-funding-36950742", - "media_type": "news_article", - "sentence": { - "text": "Motherwell and Wishaw Clare Adamson has welcomed new Scottish Government funding to support Scotland-based musicians with the rising costs of international touring.", - "media_hash": "b7c9081ac42c4e4d9f083ba4b1851ce54f9f66b6a20e356db6a0a07c", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Malcolm Offord from Reform UK is next saying the best form of opportunity is a good job, and says Scotland is the best country in the world for financial resources and people.", - "media_hash": "6c8c743076dcb63886a40b76bd2938f1e8127d775cf5c991eaf1c589", - "sequence": 48, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "Former Olympic silver medalist Ross Whyte is captaining Team Scotland at the 2026 Mens World Curling Championship.", - "media_hash": "d6e636da6497452c1a2e0388b2438db582ea0ff143ca9181b37ac8c9", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Green candidate replaced by rival who complained about him", - "publication_date": "2026-03-31T16:22:37", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", - "media_type": "news_article", - "sentence": { - "text": "A Green source told BBC Scotland that this was not the only complaint that had been made against Guy Ingerson.", - "media_hash": "002c816dbbbf4a3320a7b6eef86078bd55034e1d3d07bf21a43fb8ce", - "sequence": 30, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", - "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.51751 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", - "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", - "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.548465 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", - "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "senedd_election": 3.548465, - "scottish_elections": 3.548465 - } - } - } -}, -{ - "title": "Financial education in Scottish schools does not add up", - "publication_date": "2026-03-31T14:21:59", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", - "media_type": "news_article", - "sentence": { - "text": "Despite financial education already being included in the Curriculum for Excellence, the Scottish public believes schools should do more to teach students about money.", - "media_hash": "1a1225c6f79889768d722cdcd3c42d3164f607da50cd923078b2d969", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Money Ready", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5299199999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", - "publication_date": "2026-03-31T03:45:56", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", - "media_type": "news_article", - "sentence": { - "text": "\"If local authorities in Scotland wish to implement a trial it would mean their acceptance that any crossing, under trial conditions, may be unenforceable which comes with risks. A collective way forward may be to proceed with shared discussions on the potential risks, benefits and opportunities of trialling and ultimately introducing side road zebra crossings in Scotland.\"", - "media_hash": "d272db30bbbaeb2f90de80661df977603db2fb12be6c55935b0d58be", - "sequence": 22, - "claim_type": [ - "correlation", - "rules", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Fiona Hyslop", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.52944 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations according to research.", - "media_hash": "78e6c20cd8e71cf88a474906470ae73a4a780eae2c21b6870fb480bc", - "sequence": 540, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5163599999999997 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", - "media_hash": "bebcb4208b02f29456620f944e2fd8a509c525a3ca23d151f87ec087", - "sequence": 27, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.47393, - "scottish_elections": 3.47393 - } - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "Unlike other areas of the UK, however, Scotland doesn't recognise Easter Monday as a national public holiday, meaning that not everyone is entitled to an extra day off.", - "media_hash": "6dda8513cef9634a53e1e617ac934bbf61437a71699053cb1086d262", - "sequence": 13, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.46698 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Life-saving' organisation celebrates 50 years of supporting domestic abuse survivors", - "publication_date": "2026-03-31T05:00:00", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25980969.scottish-womens-aid-celebrates-50-years-supporting-survivors/", - "media_type": "news_article", - "sentence": { - "text": "The charity has also pioneered the recognition of children as victims of domestic abuse in their own right and influenced the introduction of the Domestic Abuse (Scotland) Act, which criminalises psychological abuse, coercive control and controlling behaviour.", - "media_hash": "40c553c96490d19b061290fe10b438bb094222cb70ac15f0e09616fd", - "sequence": 6, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.436025 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Earlier today, councillors decided to grant a general extension of opening hours for all of Scotland's matches until 30 minutes after the final whistle.", - "media_hash": "da2730e7e3747626ed7dfc9c95571a3f16d06a57ab46d488b4d76c39", - "sequence": 14, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Councillors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.436025 - } - } - } -}, -{ - "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", - "publication_date": "2026-03-31T03:45:56", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", - "media_type": "news_article", - "sentence": { - "text": "An update for this week's meeting of the committee says: \"The Cabinet Secretary responded but offered no current legislative route to allow the introduction of continental style zebra crossings on public roads in Scotland. The decision of the committee taken on 3 April 2025 is therefore that the proposed study should not proceed.\"", - "media_hash": "5528d57165d37068f23468f33ea1765b7b0670b44555f9fab68bec4e", - "sequence": 18, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Edinburgh council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.436025 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Highland pubs will have to plan ahead to show most World Cup games", - "publication_date": "2026-03-31T10:30:11", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/inverness/6987000/highland-pubs-world-cup-games-scotland/", - "media_type": "news_article", - "sentence": { - "text": "She said: \"In relation to licensed premises that have a full premises license and have televised sport if a Scotland match is played beyond the core licensing hours, there'll be late opening until 30 minutes after the final whistle.", - "media_hash": "d6decb10695cab923ba1dd693862bc081d2e4086507d72d2c6bfdaf0", - "sequence": 20, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Councillors", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jackie Hendry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.4269350000000003 - } - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops and our fear is this could see a shift in investment down south.", - "media_hash": "eaf690255c1fe4dd374e83b93b80c4b1adde58cf6c0172967755c9c0", - "sequence": 25, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "David Lonsdale", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.4269350000000003 - } - } - } -}, -{ - "title": "Medieval Scottish ferry found on Mull abandoned due to 'technical difficulties'", - "publication_date": "2026-03-31T23:01:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/heritage-and-retro/medieval-scottish-ferry-found-on-mull-abandoned-due-to-technical-difficulties-6529894", - "media_type": "news_article", - "sentence": { - "text": "Dr Macdonald went on to say that further work on Scotland's maritime history is expected to reveal more details about transport between the islands, and between the islands and the mainland.", - "media_hash": "094e32fade9fbc61dc318e74bfad9aff89d2e6a8f24e57c9860cfa5c", - "sequence": 20, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Dr Donald Macdonald", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.4269350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops, and our fear is this could see a shift in investment down south.", - "media_hash": "d8acf5adfbb741b8f55fa09c99fea7d15eb5b038c4a3303823d53ff5", - "sequence": 21, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium (SRC)", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "David Lonsdale", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.4269350000000003 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", - "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.414065, - "senedd_election": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", - "media_hash": "0eec77037a0660c7c69def7a32862548924b924582b4d4d4aa2ac657", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour finance spokesman Michael Marra", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065, - "energy": 3.414065 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Gordon Strachan has urged everyone associated with the Scotland national team to not even think about Steve Clarke's long-term future until afrer the World Cup.", - "media_hash": "ca6090be9ffbea0177588d84a24cda5bcad3a2044ba0bb6fb6a44f57", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", - "media_hash": "ea4c776071e4e1f3e5a2dd470dd7b71d087993258fdac6352bcc171b", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", - "media_hash": "52573a6944ac3078f1f560c59b0e9b589b1e113c4372e9a47858c692", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", - "media_hash": "e9c1379ac05eab18894ec619fa2bf225fd566c072d7c61170a62a524", - "sequence": 29, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Conservative", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", - "media_hash": "393a931a9a6085fd9209116b4867174d584df29766536993536dada4", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065, - "crime": 3.414065 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "\"The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government acting now.\"", - "media_hash": "87e931b750c69be16b4b0c26b4dbe320fde1e75128722da2ed25ab26", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Kate Forbes", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar: SNP has sold out Scottish industry by sending...", - "publication_date": "2026-03-31T23:04:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696459/Sarwar-SNP-sold-Scottish-industry-sending-jobs-investment-abroad.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Sarwar told voters he is standing as first minister to \"fix the mess, get the basics right, and build a better future for Scotland\".", - "media_hash": "8d5752ad5776e4142bce4ef9129c4ec8ad8b1429a62ea24c59c184f7", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", - "publication_date": "2026-03-31T05:01:49", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", - "media_type": "news_article", - "sentence": { - "text": "He added: \"I'm standing to fix the mess, get the basics right, and build a better future for Scotland.", - "media_hash": "de910c117c1333d12088e7a1577e434e914739a27d12c7e73b6322fd", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", - "media_hash": "98d1471372b8b9cc449bbaa4203bae3e53faf553285c4a4c8a226b98", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.414065, - "scottish_elections": 3.414065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", - "publication_date": "2026-03-31T15:25:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", - "media_type": "news_article", - "sentence": { - "text": "The First Minister previously he wants \"as many people as possible to celebrate\" Scotland's return to the World Cup.", - "media_hash": "17294b1d82f257515b1927a8b479332a63139b0a94ad7e8acbac9faa", - "sequence": 15, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.4092450000000003 - } - } - } -}, -{ - "title": "I'd happily lose Scotland friendlies for the next ten years in exchange for ultimate international payoff", - "publication_date": "2026-03-31T05:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/id-happily-lose-scotland-friendlies-36945989", - "media_type": "news_article", - "sentence": { - "text": "I've said before, I'll play for Scotland until I'm told I'm not good enough.", - "media_hash": "7ec467c351e68d5d736149be8685dc1ca9b8e46740325c4f7ecaec22", - "sequence": 47, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.407405 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", - "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.3956850000000003, - "senedd_election": 3.3956850000000003, - "scottish_elections": 3.3956850000000003 - } - } - } -}, -{ - "title": "Scottish gangland figure to be extradited from Bali to Spain after two years on run", - "publication_date": "2026-03-31T18:58:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985875.scottish-gangland-figure-extradited-bali-spain/", - "media_type": "news_article", - "sentence": { - "text": "Thirteen arrested in organised crime raids in Scotland and Spain", - "media_hash": "a84f9e38be663d70a43b48936bcddc4bf6f9faaad78223096ecdc7a6", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "\"It is vital that the UK Government ensures a long-term pipeline of orders and a supportive approach to reserved matters such as subsidy and procurement. A first step would be changes to the Subsidy Control Act 2022 in order to create that pathway for procurement reform. The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government to acting now.\"", - "media_hash": "0da7f21c560970d06abd9c85c3c40746ed7f488dcdf54c1a0d9c9426", - "sequence": 24, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Kate Forbes", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.299735 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", - "media_hash": "21efe1aab0ff4a772f97d563de1b0245d56f9eb68446f41421c1dc5a", - "sequence": 25, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jackie Dunbar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.290645, - "energy": 3.290645 - } - } - } -}, -{ - "title": "Why isn't Easter Monday a bank holiday in Scotland? Here are the councils off for the day, school holidays and more", - "publication_date": "2026-03-31T13:15:33", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/scotland/easter-monday-bank-holiday-scotland-council-days-school-holidays-6529552", - "media_type": "news_article", - "sentence": { - "text": "Despite some areas of Scotland being hit with snow last week, Easter is almost here - bringing with it a lovely long weekend.", - "media_hash": "fd01e9b1359094c07d716f8f66d551a2bab1cb0f73a29cc5b6c3be8b", - "sequence": 11, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.25971 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Alarmingly, more than 140,000 of these were for families with at least one child.", - "media_hash": "1b7e0b9c1f1eda1988c4cc7faf19ffa9e421899da274aecf24748d1a", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.2500299999999998, - "scottish_elections": 3.2500299999999998 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.2500299999999998 - } - } - } -}, -{ - "title": "Stirling Council reject World Cup holiday plans as cost impact revealed", - "publication_date": "2026-03-31T15:25:13", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-council-reject-world-cup-36950564", - "media_type": "news_article", - "sentence": { - "text": "John Swinney said: \"Scotland will be on the world stage this summer and I want as many people as possible to be able to celebrate that moment.", - "media_hash": "04b37f0103d69db28ba68fa4858f66ecd2edcf61f94b2b95a959288a", - "sequence": 16, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "THE UK Government has been told the closure of Grangemouth oil refinery has made Scotland \"vulnerable\" to supply shortages as the last shipment of jet fuel from the Middle East is to be received this week.", - "media_hash": "98b8c8369a7d450a033e23b49ed068714d6464850d7292e0eff6ab98", - "sequence": 1, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - } - } - } -}, -{ - "title": "John Swinney: SNP plan for NHS 'is working'", - "publication_date": "2026-03-31T06:29:37", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", - "media_type": "news_article", - "sentence": { - "text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", - "media_hash": "187f362805f21dfa00c539853f8a8c47c59d952a3ff1ede6aafd8b60", - "sequence": 12, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "First Minister John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in Scotland", - "publication_date": "2026-03-31T05:58:30", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/labour-pledge-two-weeks-of-funded-summer-childcare-in-scotland", - "media_type": "news_article", - "sentence": { - "text": "Mairi McAllan, SNP candidate for Clydesdale, said: \"Our transformational childcare package will be a complete game-changer for families across Scotland.", - "media_hash": "a428f34c93da8bf0a3c4034af85ea1af916a2f5ce6ddf058990cf743", - "sequence": 23, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - } - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "First Minister John Swinney confirmed the support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", - "media_hash": "3a9ac79e839c6d6359dfa467d55052fc32fb5fe3450ea0bb3dcf1868", - "sequence": 28, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "It was First Minister John Swinney who confirmed the furlough support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", - "media_hash": "130cb0b6822df65b08fdfeba895a7973c497beee2661c90db37bac7e", - "sequence": 46, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.228755 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", - "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.226865, - "senedd_election": 3.226865, - "scottish_elections": 3.226865 - } - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "The SRC has also been campaigning for reforms to the way businesses in Scotland are taxed.", - "media_hash": "870eed68ee2f65a0b364c6c1d08125252a57f5ba0fd277141548dc2d", - "sequence": 20, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth oil refinery closure", - "publication_date": "2026-03-31T14:45:07", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985011.scotland-vulnerable-fuel-supply-shortages-grangemouth-closure/", - "media_type": "news_article", - "sentence": { - "text": "SNP MP Stephen Flynn has criticised the UK Government over its decision not to intervene and save the Grangemouth refinery from closure, as he said \"Scotland's resources should be controlled by Scotland\".", - "media_hash": "0c680fe780f7b53e565068ec2825f9e0328cf8fb7de692eaeed6983a", - "sequence": 9, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "SNP MP Stephen Flynn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "Bus manufacturer Alexander Dennis to slash Scots jobs and close factory in Falkirk", - "publication_date": "2026-03-31T11:00:00", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/politics/bus-manufacturer-alexander-dennis-slash-36947245", - "media_type": "news_article", - "sentence": { - "text": "\"We remain grateful to the Scottish Government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", - "media_hash": "13fc55fc0f4380d8d6b021aa181ab5fa12554d92529b40633ad3c91a", - "sequence": 17, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Alexander Dennis Limited", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Paul Davies", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", - "publication_date": "2026-03-31T12:05:09", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", - "media_type": "news_article", - "sentence": { - "text": "\"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", - "media_hash": "351ed8e066f908af8391379dc391dd88b8fb1c3ed85f498e106f2da6", - "sequence": 19, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Paul Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "Following the consultation announcement, Deputy First Minister Kate Forbes has called on the UK Government to \"urgently deliver\" on the promises made to Alexander Dennis and help secure vital manufacturing jobs in Scotland.", - "media_hash": "27f812e89d562c02cdf4f172ed03583375406b2fcb4843712bc845df", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Kate Forbes", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", - "media_hash": "4a2783b6197af9efa0d12701a5e3607ee5da0ef8efa0de3068cc8ba9", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "End `ridiculous\u00b4 royal tax breaks, Greens urge in...", - "publication_date": "2026-03-31T23:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696455/End-ridiculous-royal-tax-breaks-Greens-urge-election-pledge.html", - "media_type": "news_article", - "sentence": { - "text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", - "media_hash": "90b275fb62298fa1e30aaa8c12095bbad025b618b2b6be0e6250652b", - "sequence": 13, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065, - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "\"Just one example, we've delivered social security Scotland and the national investment bank bringing jobs and investment to the economy. We've used progressive taxation to fund policies like free tuition and prescriptions. We believe in using Scotland's energy wealth and becoming an independent county and re-joining the EU.\"", - "media_hash": "67be06a781cd9cad8519b659f5204bf842f9fe8646114c8ae71e6c17", - "sequence": 46, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "CalMac ferry crisis: Lib Dems demand Holyrood be recalled over vessels shortage", - "publication_date": "2026-03-31T08:58:16", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982645.lib-dems-call-holyrood-recalled-calmac-crisis/", - "media_type": "news_article", - "sentence": { - "text": "The leader of the Liberal Democrats has called for the Scottish Parliament to be recalled to address the crisis engulfing Scotland's ferry network.", - "media_hash": "417a95f1656ef8d353901eeb80367a6ba2f908f5e10e72f1a8c3ef41", - "sequence": 1, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:48:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", - "media_type": "social_post", - "sentence": { - "text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", - "media_hash": "8ec10c3352342495edc697bd098438eec80d5a70bcb4a2738b263378", - "sequence": 2, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "Davies added: \"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", - "media_hash": "5ac85ee2df3880d42575ba991522c6f245a117424fcc885edadb0559", - "sequence": 8, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Paul Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", - "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.211065, - "scottish_elections": 3.211065, - "clinical_health": 3.211065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", - "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.18436, - "senedd_election": 3.18436, - "scottish_elections": 3.18436 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "Scots council pays \u00a330k after child given food they were allergic to", - "media_hash": "4103c42e04a2f9598a31600ecb80a061fe123e17f14e587229ec6cea", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.16655, - "scottish_elections": 3.16655 - }, - "demo": { - "politics_of_food": 3.31818 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", - "media_hash": "5d4250299936dc3bf7a2ad4fca723fe889fb12f24f02b6114c12dbfb", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.16655, - "scottish_elections": 3.16655 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "Dumfries and Galloway Council recently forked out \u00a330,000 in compensation to a family after a child was repeatedly given food they were allergic to.", - "media_hash": "b22da22d3aef3cb1feaaf1ba686fc6d15f5b157595eb265f81a97258", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.16655, - "scottish_elections": 3.16655 - }, - "demo": { - "politics_of_food": 3.16655 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "Over a third (34.5%) of mothers said they often find themselves choosing between paying for childcare and household essentials.", - "media_hash": "50f8879d9ec5d148a67d94ebfbfed4059fdcec396630caae56a64a2d", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pregnant then Screwed Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.123595 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Bowel Cancer UK found that around a third of people who are eligible here don't complete their test.", - "media_hash": "cc7942b4eba755ca82265a54cad59920ae9548e9f84ecda72c53eef7", - "sequence": 541, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.123595 - } - } - } -}, -{ - "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", - "publication_date": "2026-03-31T15:43:02", - "publication": "novaramedia", - "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", - "media_type": "news_article", - "sentence": { - "text": "It's now consistently true that majorities of young people in each of Scotland, Wales and Northern Ireland want to leave the UK, and the coming elections in Scotland and Wales will almost certainly bear that out.", - "media_hash": "bad8500c30064fa560ab30074218532482bb42245d0db5b4bfa88ffa", - "sequence": 42, - "claim_type": [ - "rules", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.1144249999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", - "media_hash": "1a8ebe3abbe18f8d438ca4981f4d4675b005ab2d0c11f2fe222d773f", - "sequence": 890, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.09725, - "scottish_elections": 3.09725 - } - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "New figures from the RAC Foundation show that the cost of the Middle East conflict has cost drivers across the country more than half-a-billion pounds in higher fuel prices.", - "media_hash": "dd4a3547d66292354f40c0893b95a3f7e2d19820262d2b2b14d931da", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.09725 - }, - "demo": {}, - "aapfactcheck": { - "economy": 5.09725 - }, - "pa-media": {}, - "maldita": { - "general": 3.09725, - "energy": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Edinburgh council rules out low-cost zebra crossings because there is no legislative backing to enforce them", - "publication_date": "2026-03-31T03:45:56", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/edinburgh-council-rules-out-low-cost-zebra-crossings-because-there-is-no-legislative-backing-to-enforce-them-6529080", - "media_type": "news_article", - "sentence": { - "text": "I have asked Transport Scotland officials to seek further legal confirmation, as they consider the effectiveness of this type of crossing upon review of the published trial findings.", - "media_hash": "ddbffa852dd5dbb7cd4e17ae5e5dd0b6c2e0daba80fbcd79fbe62a55", - "sequence": 21, - "claim_type": [ - "rules", - "support", - "other" - ], - "claimer": [ - { - "name": "Fiona Hyslop", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.096735 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cole-Hamilton opens door to helping Sarwar become first...", - "publication_date": "2026-03-31T14:54:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", - "media_type": "news_article", - "sentence": { - "text": "\"But listen, Scotland needs change, and if there is an opportunity to get rid of the SNP and deliver change with fairness in its heart, which shares our values, of course, we'll look at that.\"", - "media_hash": "59970daec93333c127ed5522b48e23b7f9927bae6ad71d4c2784ea62", - "sequence": 18, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.092465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", - "media_hash": "009d0f925b83954eeba3eeb74adcdf138530faf6921ddc8adb236fcc", - "sequence": 25, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.092465, - "clinical_health": 3.092465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Scotland's Deputy First Minister Kate Forbes called for action from the UK Government.", - "media_hash": "e346570df6f15b41ad3230ad73fbf1813a489a3cecbdaa3b261f98e9", - "sequence": 27, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.074775 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "RUSSELL Findlay has promised to establish Canary Wharf-style enterprise zones in Scotland.", - "media_hash": "0a5b798956bbf403e062fb849f19d45dc5530453506374e20f2fa8ae", - "sequence": 2, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Russell Findlay", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.074775 - } - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", - "media_hash": "5f1fde4db51650778b64b784c3a487b3c8477bd3152bd0313aae5cb1", - "sequence": 61, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.063685, - "housing": 3.063685 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", - "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.063685, - "senedd_election": 3.063685, - "scottish_elections": 3.063685 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "\"And given that the council recently paid out \u00a330,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", - "media_hash": "12314b755594ea761309afedca6739fde76c88e89a7abbcdc6038b75", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dumfries and Galloway Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Annandale North Councillor Carolyne Wilson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Labour Group", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.061215, - "scottish_elections": 3.061215 - }, - "demo": { - "health": 3.061215, - "politics_of_food": 3.061215, - "nutrition_": 3.061215 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", - "media_hash": "2d96af65d00637e2c8f45d9d22e7116bd28156d393ee419116c3b175", - "sequence": 27, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Susan Murray MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.037655, - "scottish_elections": 3.037655 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", - "media_hash": "db80b90ea4e3d9d575b907a1dcfc3e8ab1040a8b3f8048639dc01b4f", - "sequence": 29, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.023415, - "crime": 3.023415 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.89698 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Swinney: SNP plan for NHS 'is working'", - "publication_date": "2026-03-31T06:29:37", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", - "media_type": "news_article", - "sentence": { - "text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", - "media_hash": "49c470606051982fb10a5869b5ace71ba84f771b53069000b7c1a56b", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Labour deputy leader Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cole-Hamilton opens door to helping Sarwar become first...", - "publication_date": "2026-03-31T12:44:27", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694727/Cole-Hamilton-opens-door-helping-Sarwar-minister.html", - "media_type": "news_article", - "sentence": { - "text": "A Survation poll on Tuesday suggested the SNP could win 62 seats at Holyrood, Reform 19, Labour 18, Tories 13, the Greens 10 and Lib Dems 7.", - "media_hash": "3cf483ee40518f2545427f6bb49816dc457ad2aa56ca4c3a1ecab9c7", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Union says 1600 Scots jobs at risk if government doesn't act in 'national interest'", - "media_hash": "66d09be499124832f1c212badcda259058c60794c4b6a8e656de597f", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", - "media_hash": "27d3523d82bf99d4d959077e4d892e473c95daf935e5ff47a90d3085", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815, - "health": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "The price of filing up at the pump has been steadily rising since the war in the Middle East broke out just over a month ago.", - "media_hash": "bdf4c7dbe3b7079415cb58931fd513ba858a0f35a8a4c3cb6ac3bce8", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.89907 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "\"The most important ones in my view are those where 20% or more speak the language and that's where the extra funding will be.", - "media_hash": "4d6bf40fd8d191d270d8a14a2f41882ad818af6f28013cea88d0e29a", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815 - } - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "James said: \"It's my first time in Liverpool. It's amazing. I love the accent. It's just an extended city of Scotland.\"", - "media_hash": "9930faa542bcdaa0d9bc14341f380a658ff4ee18ad44e00ebd3b2a21", - "sequence": 38, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Scotland fans", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Milne", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.922625 - } - } - } -}, -{ - "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", - "publication_date": "2026-03-31T15:36:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", - "media_type": "news_article", - "sentence": { - "text": "\"It makes me happy to help people unlock their creative potential and show Scotland their captivating stories of dignity, resilience, and the desire to make the world a better place, starting with oneself.\"", - "media_hash": "f7aa8473311e142349749c7e1083cd6d378d0d5636a687c52ae61e38", - "sequence": 11, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Vira Klymkovetska", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.922625 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "Amongst the many hustings events I'm doing during the Scottish Parliament election campaign, I took part in one last week hosted by Christian think tank Logos Scotland.", - "media_hash": "83f4d99bcaef2d90f7120c3fe9046c8ca22d03aaa8813a0607aa5010", - "sequence": 10, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.922625 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", - "publication_date": "2026-03-31T15:36:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", - "media_type": "news_article", - "sentence": { - "text": "\"Moving to Scotland with two young children as a single mother made it impossible to continue my acting career at that time.", - "media_hash": "1e6b02f170311ed14cf69f14b0f15fda01d9f3bb23bc6a558db06180", - "sequence": 9, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Vira Klymkovetska", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.922625 - } - } - } -}, -{ - "title": "Green candidate replaced by rival who complained about him", - "publication_date": "2026-03-31T16:22:37", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c4glrxrnlywo", - "media_type": "news_article", - "sentence": { - "text": "Guy Ingerson was due to top the regional list for the party in the North East of Scotland in May.", - "media_hash": "fb39bd372f69ba715c40ebb30d9748f558584192fc0cb7a64b3c117f", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.91647 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Rhian Thomas is head of the Electoral Commission in Wales.", - "media_hash": "bfc418945f3e18f1e9a05c482c7dafcfda7bdb07ffd8bae025224d8d", - "sequence": 884, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.91647, - "scottish_elections": 2.91647 - } - } - } -}, -{ - "title": "Scotsman hustings LIVE: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T16:29:41", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-live-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He has served as an MSP for South Scotland since 2021 and has played a key role on Holyrood's standards committee", - "media_hash": "b5d394fae150a24208ed55058581cf903c24157b927f374f1f9530b5", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Martin Whitfield MSP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.91647 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It was launched yesterday ahead of the Senedd election in May.", - "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", - "sequence": 970, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.91647, - "senedd_election": 2.91647, - "scottish_elections": 2.91647 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "Scores of Torry residents faced losing thousands as they were told to sell up their homes for less than market value, after they were deemed unsafe and earmarked for demolition.", - "media_hash": "ef0aa8cbe7476c6713d477f664b649850c40b72e2c3b5e1f221be5ed", - "sequence": 55, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", - "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", - "sequence": 18, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", - "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Chris Nottingham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Blaenau Gwent Food Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "John Swinney: SNP plan for NHS 'is working'", - "publication_date": "2026-03-31T06:29:37", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", - "media_type": "news_article", - "sentence": { - "text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", - "media_hash": "d535025bd03429fd22329696ad5629d60232c430333daa77497e1e56", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Scottish Tory health spokesman Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", - "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", - "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "22 people went to clear up Cardiff Bay and were shocked at what they found", - "publication_date": "2026-03-31T19:20:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/22-people-went-clear-up-33693074", - "media_type": "news_article", - "sentence": { - "text": "He explained: \"The worst for pollution and litter is polysterene.", - "media_hash": "d1cf0984e0dd28c4ac5d0d37a3c3fad3c11523ddc081f84266cbcf3a", - "sequence": 21, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.8655049999999997 - } - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", - "media_hash": "12ebeb8b8006ad21fa2b481f3fc934b00020ee1734ac320d945462d7", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.862985, - "crime": 2.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP push for independence would only bring joy to...", - "publication_date": "2026-03-31T23:04:57", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696463/SNP-push-independence-bring-joy-despots-like-Putin--Findlay.html", - "media_type": "news_article", - "sentence": { - "text": "\"And, of course, John Swinney only cares about independence, when breaking up the UK would instantly make our great country poorer, less stable and less safe and bring joy to despots like Putin.", - "media_hash": "706e40a8d8c97239fd4d9eb3c03e718d2a4d0bd537ea35b88d1b0f70", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Russell Findlay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "culture-wars": 2.851145, - "scottish_elections": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "It's clearly wrong that individuals are tortured or coerced in an attempt to change their sexuality or gender identities, but such behaviour is almost certainly already illegal.", - "media_hash": "3e5b646ef3214b804a7515b8da8a68b25c497ae1bb5f1aba360539d0", - "sequence": 35, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.81209 - }, - "demo": { - "race__ethinicy__religion": 2.81209 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Stirling refugee-led drama project tells story of finding fresh Scottish start", - "publication_date": "2026-03-31T15:36:19", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/stirling-refugee-led-drama-project-36950620", - "media_type": "news_article", - "sentence": { - "text": "\"I hope that this project will help refugees overcome trauma and send a strong message to the world that wars and violations of human rights have always been harmful to humanity and to women.\"", - "media_hash": "871700410150fb856661a5bffde0ffd3cfda8d0a12342db8a79ab569", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Iryna", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.805745 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", - "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.799985, - "scottish_elections": 2.799985, - "clinical_health": 2.799985 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.53726 - } - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, the \u00a380million spent on the A96 hasn't resulted in any dualling at all.", - "media_hash": "ff37d30fbd3a159ef06e46c9690a930edc7a30911605ad628b2de53f", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.772635 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "Critics argue that despite tens of millions of pounds in public backing over recent years, jobs are still being lost and production remains under threat.", - "media_hash": "735b6bb5cfe0bf3dbb58fb2dff76e91ba67c69dc1714bf38a6f90f04", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.772635 - }, - "demo": { - "politics_of_food": 3.09725 - }, - "pa-media": { - "politics_of_food": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", - "media_hash": "eaa02221fdad37e1e16920f4e8a9357f1d45634069cfa01b48fc4b75", - "sequence": 11, - "claim_type": [ - "predictions", - "support", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.753175, - "energy": 2.753175 - } - } - } -}, -{ - "title": "Financial education in Scottish schools does not add up", - "publication_date": "2026-03-31T14:21:59", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", - "media_type": "news_article", - "sentence": { - "text": "Leon Ward, chief executive of Money Ready, comments: \"We are seeing a massive public consensus that current levels of financial literacy are just not up to scratch. The 'cost of not knowing' is not just a phrase - it is the missed compound interest on a pension, the struggle to manage bills, and the anxiety of not understanding a credit score. By the time many people realise what they don't know, they have already missed out on years of potential financial growth and opportunities.\"", - "media_hash": "e6b6accccf8705f87caa541eaa48b2589309e5bcc3fd1f580342fb8f", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Money Ready", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Leon Ward", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.751055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", - "media_hash": "deed62a4ff8fb436ae263ebf718bcf36975cde689cf518d8d8520565", - "sequence": 12, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.751055, - "energy": 2.751055 - } - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", - "media_hash": "375bb9c9d8fab907da770ab5766606d9a0e967b87984eb206f698170", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.748535, - "crime": 2.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dumbarton Health Centre labelled \"not fit for purpose\" after funding snub", - "publication_date": "2026-03-31T13:20:29", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/dumbarton-health-centre-labelled-not-36949594", - "media_type": "news_article", - "sentence": { - "text": "As an ageing property, the building presents several risks, primarily due to the use of the building beyond its intended lifespan as CLASP buildings were only expected to last in the region of 50 years, yet Dumbarton Health Centre remains in use.", - "media_hash": "e4b9ae6a6267e143c8e089b524e62d27cd0551b6bf698a5b4b0356e0", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.7436800000000003 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Winds quite light with loads of 6 to 9 Celsius.", - "media_hash": "3c23785cc33b1b9a5cadbf669cb49e5456b3dcc12a66547975c228cb", - "sequence": 89, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.72968 - } - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "The pair killed 16 people in 10 months in 1828 selling the corpses to anatomist Robert Knox who would dissect them in his anatomy lectures.", - "media_hash": "6a554ab32f82d2f15e2cec1116263b3b691822945eaba676d499eb84", - "sequence": 42, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.72832 - } - } - } -}, -{ - "title": "John Swinney dodges questions on whether aides knew of Jordan Linden complaints", - "publication_date": "2026-03-31T12:53:35", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984174.john-swinney-accused-cover-up-amid-jordan-linden-questions/", - "media_type": "news_article", - "sentence": { - "text": "Linden, the former leader of North Lanarkshire Council, was convicted of 10 offences last week, including five sexual assaults between 2011 and 2021.", - "media_hash": "fb7d0d7b146c8e66d36df77e70c5e4b1a07f9c2fe0aa8871202f0dd9", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", - "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", - "sequence": 40, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Liberal Democrat", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.712725, - "scottish_elections": 2.712725, - "clinical_health": 2.712725 - }, - "demo": { - "health": 4.41429 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", - "media_hash": "fb4c9100ddd507fb12b6af7ff17a02659187b75b57e30c072bc217af", - "sequence": 27, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.712725, - "health": 2.712725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.712725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "\"Business rates thresholds have barely moved in recent years, while inflation has pushed up costs and rateable values.", - "media_hash": "fcb830f24153db619521594f5f82d126c197dcb57a31061f56780620", - "sequence": 14, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "A total of 12 per cent reported a significant increase in those presentations, and zero reported seeing a decrease.", - "media_hash": "cc3d2e2e24f1cf84f6bf48399eb083ecbb677870381a633aea57e85a", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "The research found that two-thirds (66.1%) of mums agreed or strongly agreed that their childcare costs are the same or more than their income.", - "media_hash": "8b022c26b8091e431e5c176897ebd3f8e89589bc37129fb540cd6da5", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pregnant then Screwed Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "title": "Financial education in Scottish schools does not add up", - "publication_date": "2026-03-31T14:21:59", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", - "media_type": "news_article", - "sentence": { - "text": "The charity works with more than 50,000 people across the UK every year delivering financial education programmes.", - "media_hash": "dcc0fad3432e4f8a708206ebaa0c43fb51902bfb490a4c8eb60b66b0", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The planned job losses are a key plank of the government's plan to fill a looming \u00a34.7 billion black hole in the public finances.", - "media_hash": "2baa08362c5548db1f17f3c0e5b2bdc7724348c10d165f730e23efdc", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "The figures are based on average daily pump price rises and last year's fuel consumption rate.", - "media_hash": "1b21e7c77c6daa935a99bd404ea5ac314170bb63f94be41e56af55d7", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", - "media_hash": "784e0d930b5c73351a6c477e8f3b69476b0d89820ea583ee8b125ed6", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T19:00:48+00:00", - "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", - "url": "https://x.com/theSNP/status/2039055327723766076", - "media_type": "social_post", - "sentence": { - "text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", - "media_hash": "e202f9a265e3e544a46a557204abdd5a4504f3872dd50bfa45facf8c", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", - "media_hash": "2ffc0a8a2bb10e3c7850d0abf7091ace3114ced9424b2acaf5c49ea4", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "The polling also reveals that 73% of firms expect to increase prices over the coming quarter.", - "media_hash": "246c89c222a60cf300ca3baea8885780836e9df9a1dc648cf12124a3", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Chamber of Commerce", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "The average cost of petrol is 152.8p per litre, an increase of 20p since the war began.", - "media_hash": "1bd8bf776be41915e86bf1bee7552b88acd4d6744a3a0f7211d19a20", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", - "media_hash": "1ccd5bc5d40ea0949a101c238d1e556667b785ada7dcfdba34fae724", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", - "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6987249999999996, - "senedd_election": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", - "publication_date": "2026-03-31T15:43:02", - "publication": "novaramedia", - "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", - "media_type": "news_article", - "sentence": { - "text": "As Swinney pointed out last year, by 2030, there will be 1 million young Scots eligible to vote, who weren't in 2014 - more than a fifth of the electorate.", - "media_hash": "d14c29e44d330cf8bd7a70427c49aa88a9e8a19a8fdfc6e899bbf5b2", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Scots motorists have been dealt a 'hammer blow' as the cost of petrol has soared to more than \u00a32 a litre - the highest in the UK.", - "media_hash": "9e34976bd885a7a6dfba04202b0241f758ec1c786dca55cbf603b373", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.67708 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.556405 - }, - "pa-media": {}, - "maldita": { - "general": 2.556405, - "energy": 2.556405 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", - "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservative", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.799985 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", - "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", - "sequence": 36, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "It was undoubtedly the case that some of those opposing assisted dying came at the issue from a faith perspective, but many more did so because of the belief that the weak, vulnerable and disabled would be put at risk should the law be changed in this way.", - "media_hash": "c1abfd5b5ddb97c9ebf60bcb512275b498b51320779e355e65843ede", - "sequence": 28, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.67029 - }, - "demo": { - "race__ethinicy__religion": 2.67029 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "By the time Scots come to cast their vote in the Holyrood elections on May 7, we could be in the throes of the worst economic shock since the 2007 crash.", - "media_hash": "74be11b32ebd8a16b8ca1179b772f7c02a7f9e621a369605c43d5cda", - "sequence": 7, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Record View", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.658185 - } - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "READ MORE: Reform plan to stuff Lords with '900 peers' to push deportation plans", - "media_hash": "3256800ba9e804256d5b1de93ce15a136528418d70a2e128c0cae9bd", - "sequence": 36, - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.658185 - } - } - } -}, -{ - "title": "SNP sex offender Jordan Linden: Whose side are you on, John Swinney?", - "publication_date": "2026-03-31T15:00:22", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/snp-sex-offender-jordan-linden-whose-side-are-you-on-john-swinney-6529550", - "media_type": "news_article", - "sentence": { - "text": "Otherwise, there is only one conclusion to draw - that Swinney is not on the side of the victims of Linden's sexual abuse, but on the side of those who covered up for him, with the SNP putting party before the victims of sexual abuse yet again.", - "media_hash": "e9d5dab27878f9824e1053792e3bf08a5833b867312b1bf0664e9761", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Unite and other unions warned that up to a multiplier of 1,600 jobs could be affected in the wider supply chain and support services if the closures proceed.", - "media_hash": "c5e35eb4fb1f401455bd1d7c8d2ae9f258f66b3b6fb0f5b261ce6928", - "sequence": 26, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Unite and other unions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.649215 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.649215 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The report, authored by Stephen Boyd, Dave Hawkey, and Casey Smith, states: \"The estimate that if frontline protection means freezing teacher numbers and seeing NHS staff increase at 1% cent per year, the government's target would imply employment reductions elsewhere of 3,600 per year, or 18,000 over five years.\"", - "media_hash": "f1a243e89e6755a740bda4bb0bff481d6d2df65d27803c8a923e3be4", - "sequence": 13, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stephen Boyd", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dave Hawkey", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Casey Smith", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The report authors say that if the burden is to fall on \"non-frontline\" roles in these areas, the cuts could be roughly equivalent to how many jobs \"were lost from local government in the first five years of 2010s austerity\".", - "media_hash": "6ec033cf4316d886e3a74f62e9d05cb80f405a5082c35d36a52372e0", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "support" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.631525 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man dies after falling from window of tower block", - "publication_date": "2026-03-31T13:57:31", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984593.man-dies-falling-flat-glasgows-dougrie-place/", - "media_type": "news_article", - "sentence": { - "text": "Glasgow supermarket worker shot with BB gun in attempted robbery", - "media_hash": "9263283ae967936321113ef1f7b624a7ba7ddc0069640b55123e7a18", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", - "publication_date": "2026-03-31T12:31:33", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", - "media_type": "news_article", - "sentence": { - "text": "There's a massive turnout for a 10K and hearing people cheering you on really helps when you're digging deep.", - "media_hash": "d97b7cadafa9dd07e4138c9d7cb1e15e2e479ac48f6849fa174fd3aa", - "sequence": 57, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Jock Rintoul", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.62122 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "\"By bringing check-ups and advice into everyday community settings - from workplaces and pharmacies to football clubs and shopping centres - we can reach people who might not otherwise come forward, particularly in more disadvantaged communities where the burden of ill health is greatest,\" the First Minister said.", - "media_hash": "c2c4a011944d862d31800552f649bc49c365ca8662bfec295df3d00f", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.6147650000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", - "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", - "sequence": 33, - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6127849999999997, - "scottish_elections": 2.6127849999999997, - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", - "media_hash": "fe5392c18430df8ead347a4a1f48e2f535a42890e1974abebee7a12a", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.61247, - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So we kind of know that this stuff's out there and that people are finding their news online and you might have also heard earlier this month on Radio Wales and across BBC Wales, my investigation into political deep fakes, I found more than a dozen pages on Facebook sharing fake news about British politicians along with some AI generated images and examples of deep fake videos of Welsh politicians, although those were labeled as satirical.", - "media_hash": "ba8e84d7ddbf38d0327a00473beb45b9e3691a65c712106904d2107e", - "sequence": 407, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.61247 - } - } - } -}, -{ - "title": "Three teens and man charged after 'armed gangs clash' at Edinburgh Asda car park", - "publication_date": "2026-03-31T16:41:41", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/three-teens-man-charged-after-36950874", - "media_type": "news_article", - "sentence": { - "text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", - "media_hash": "8396cc78831f783b6122529d651a82b24dfec458229190f68d8ad67c", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.61247, - "crime": 2.61247 - } - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "Welcome Break's Woodall Services on the M1 in Sheffield has the highest price for petrol, at 189.9p per litre.", - "media_hash": "232bbb4e883b249f0747defc6f41ba67c9db19a3086a17c6f723f9ff", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.58736 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", - "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", - "sequence": 30, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.579765, - "scottish_elections": 2.579765, - "clinical_health": 2.579765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.579765 - } - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "The most expensive motorway service area for diesel is Euro Garages' Rivington Services on the M61 in Bolton, Greater Manchester, where the price is 200.9p per litre.", - "media_hash": "cbfdd9f5a4617afbc703b99b24d49691c6206f7227a136de362810bd", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", - "publication_date": "2026-03-31T11:50:27", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", - "media_type": "news_article", - "sentence": { - "text": "The bus manufacturing sector in the UK suffered in 2025, with 51% of all zero-emission buses purchased being sourced from overseas.", - "media_hash": "6ffb0e6c207827dec69c71d4f7c19acdf7096ce488d361cbda9bd220", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "In the area covered by the Fife Council a total of 10 received at least 380 points - with three earning full marks.", - "media_hash": "60982be81b513233820e25050b604e83113c83238ffe822112929d4a", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Sunday Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", - "publication_date": "2026-03-31T16:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", - "media_type": "news_article", - "sentence": { - "text": "But just 14 of those new vehicles are understood to be double deckers - the type of bus that ADL specialises in building in Falkirk.", - "media_hash": "4df0e24ba8ad43f812db43a068703eea55aa305b6a19e53988a2fbce", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "The UK's most expensive petrol is being sold for 199.9p per litre at Avenue Garage in Northwich, Cheshire.", - "media_hash": "12bb90e48926132b03a7a882164b2ee5cccd7e83029107b5bfc4f66e", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "This consists of \u00a3409 million for diesel and \u00a3135 million for petrol.", - "media_hash": "a84b870f6a0e1b6f56540f17cfffda59b2fbaee3b2808695ca14355f", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", - "publication_date": "2026-03-31T12:53:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", - "media_type": "news_article", - "sentence": { - "text": "Eight CalMac ferries are currently out of action, four of them for planned maintenance and the others due to technical issues.", - "media_hash": "da84d4864e542241af4c2a94baa15e0134f6cc3b028c2352b0dbda3e", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EXCLUSIVE: Fife councillor who quit SNP faces police probe over alleged sexual offences", - "publication_date": "2026-03-31T11:06:58", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/5462114/fife-councillor-stefan-hoggan-alleged-sexual-offences/", - "media_type": "news_article", - "sentence": { - "text": "He later contested the 2024 general election for Westminster in North East Fife, finishing second with 9,905 votes behind Lib Dem Wendy Chamberlain, who received 23,384 votes.", - "media_hash": "32b4756627df6ebe51bad9fb6a79544e1f9e4c6bac41dafba1fa86ef", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "Also scoring the full 400 points with fewer than 10 per cent of pupils from 'very disadvantaged' families is Wormit Primary School, in the village on the bank of the River Tay opposite Dundee.", - "media_hash": "4811f6263460aa275d5fdc26063309c2e07dab181dbbd48691794ef4", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wormit Primary School", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "The school has nine teachers and an average class size of 22.8 puils.", - "media_hash": "84dd78bf3fccd61a81102ea16c1835f0d93737752a79ba93f0ecf73a", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", - "publication_date": "2026-03-31T09:23:58", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", - "media_type": "news_article", - "sentence": { - "text": "Following that win against Craig Levein's St Johnstone there were still 12 games to and there proved to be plenty of twists in turns.", - "media_hash": "2c2d533ca53343204e7fa8895f520c9bb07c7826d968fdc16dcbe114", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "It is understood that about 85 employees have since left the business.", - "media_hash": "af6a1935b33d1a2ec41609dafe373a23a4d0c14f14f0ad46407d415c", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", - "publication_date": "2026-03-31T12:00:49", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", - "media_type": "news_article", - "sentence": { - "text": "A Dunfermline statement reads: \"With over 9,000 tickets now sold for our upcoming semi-Final tie with Falkirk, the club can confirm we have been allocated a further 2,000 tickets for the match.", - "media_hash": "1d17d975e0a4ab2cc4b0bc0df650fa93679b4ccceaa4bf26ed5d5fc7", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dunfermline", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", - "publication_date": "2026-03-31T11:07:30", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", - "media_type": "news_article", - "sentence": { - "text": "Contacted by the Local Democracy Reporting the First Minister's office detailed that in 2026-27, West Lothian Council will receive \u00a3498.9 million to fund local services.", - "media_hash": "0de1cf4308f8cd49f130238d608a1b290fd97e0750ddb21852a0ac08", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "This policy alone accounted for around 7,500 new staff in local government.", - "media_hash": "64a3a378b0d934049f550e3d4a30bb3ff3e51f599b4ac54cf2911a02", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "The Liberal Democrats are projected to receive 8% on both ballots.", - "media_hash": "f1c421ef60a9461e151f7cb167ff08ae65d5871d4a80d9f2eb746684", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Approval recommended for 94-house scheme beside airport", - "publication_date": "2026-03-31T18:29:11", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985860.approval-recommended-94-house-scheme-beside-stornoway-airport/", - "media_type": "news_article", - "sentence": { - "text": "The application attracted six public representations, a formal objection from Sandwick Community Council, and a petition signed by 40 residents.", - "media_hash": "1257d67ff9b084118d8d9f2c6131c53a40ee916659383fd7642ee195", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "Average diesel prices at UK forecourts on Tuesday were 182.8p per litre, up 40p since the start of the conflict in the Middle East on February 28, the RAC said.", - "media_hash": "c6570a7ddd6d969f32bfd8373a7813e6b2eedc404918880770d43140", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", - "publication_date": "2026-03-31T12:00:49", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", - "media_type": "news_article", - "sentence": { - "text": "On that occasion, in April 2009, 17,124 supporters watched Falkirk run out 2-0 victors to earn a place in the final against Rangers.", - "media_hash": "2ab2da3c7482c233441fea384efe49d3ceb92a68376b58ebb18d6b26", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - } - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "Again, fewer than 10 per cent of pupils are 'very disadvantaged' and the school has a 93 percent attendance rate.", - "media_hash": "14d9209b2748c477ad300b85e76f9ec53c71bdcd299bd8437f8b95e7", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "This included 2,159 exceeding two years, which was down 45 compared to January.", - "media_hash": "0bb757b57ee197cf8e8b91c0075f2403e3dcf9a947b07198555112f6", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769, - "health": 2.5769 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "\"We have fewer police, we are all paying the highest taxes in the UK.", - "media_hash": "c487e2f3c4fe5efa00cba6f190688f5cc83476f17490267e306f6278", - "sequence": 62, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "The UK's largest bus manufacturer is at the centre of a row over the planned axing of a quarter of its staff after over \u00a390m in taxpayer support.", - "media_hash": "92a9b6ef6bf24032df365fe5702a01a07895e6cfef0347a6a5203f72", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", - "media_hash": "4cfcab5b6c35f455f8719d6a8980249ae08660c6d4dd870d364ed749", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.556405, - "clinical_health": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fife disabled drivers waiting months for blue badge bays amid huge backlog", - "publication_date": "2026-03-31T05:10:25", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461863/disabled-parking-bays-backlog-waits/", - "media_type": "news_article", - "sentence": { - "text": "\"Lack of access to a disabled bay can have a severely detrimental impact on a person's life.\"", - "media_hash": "b864dc15649d549706a7e52bb1a55d0b6a073d402fcfd281fa797d76", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Lynda Holton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5528750000000002 - } - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", - "media_hash": "35bd5c83dbd7a93284ceef661c43ba2b5c15a8203e95e66da1babfd6", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997, - "crime": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland serve up reasons to be a little worried ahead of World Cup", - "publication_date": "2026-03-31T21:02:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/football/international/scotland-serve-up-reasons-to-be-a-little-worried-ahead-of-world-cup-6531020", - "media_type": "news_article", - "sentence": { - "text": "But after a promising start as Scotland felt their way back into the 3-5-2 system that had been dusted down to try to cope with the physical challenge of Ivory Coast, things began to go awry just 12 minutes in as Nicolas Pepe bundled in the opener for the so-called home team.", - "media_hash": "49d4f68147d5ff29fc22fce40aa9a69a361efedef9cfe0ab68957980", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nicolas Pepe", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "World Men's Curling Championship 2026 Latest: How team Scotland are doing, format, fixtures and how to watch", - "publication_date": "2026-03-31T11:59:42", - "publication": "scotsman", - "url": "https://www.scotsman.com/sport/other-sport/world-mens-curling-championship-2026-latest-how-team-scotland-are-doing-format-fixtures-and-how-to-watch-6528778", - "media_type": "news_article", - "sentence": { - "text": "The teams who have qualified are United States, Canada, Japan, China, South Korea, Sweden, Switzerland, Scotland, Italy, Germany, Czech Republic, Poland and Norway.", - "media_hash": "30129b79e87ed7ab4f87709fb0da5aca97567ffad900b8516eb8e4ee", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", - "media_hash": "a153fc2ac7b82fa57fc3a86af99525f97e7a529a42c0c5ebcaad8816", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Interpol", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997, - "crime": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices have led to motorists paying an additional \u00a3544 million for petrol and diesel.", - "media_hash": "3aa55b1c9e2b76fb936dcc5c9bda9a9b5f7c49fb552cead55586d066", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "The poll also projected the SNP would win 62 seats at the Holyrood contests on 7 May, which would leave the nationalist party three seats short of a majority.", - "media_hash": "8ef526411496fa0482eaa2940a6c46028143981ba5754f5afde92881", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "The survey of 1,068 people, carried out between 16 to 23 March, put the SNP on 35 per cent support in the Holyrood constituency vote and 32 per cent in the regional list.", - "media_hash": "695fa3e2a94fbc8b27ff9b7f7501f83918afb220a7bba4813cda75ee", - "sequence": 6, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament", - "media_hash": "3e00f9246f5696d95ee745ee0a8bdb750c2f55309e20baa21912c79b", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Recall Parliament to sort out ferries crisis, demands...", - "publication_date": "2026-03-31T12:14:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694637/Recall-Parliament-sort-ferries-crisis-demands-Scottish-Lib-Dem-leader.html", - "media_type": "news_article", - "sentence": { - "text": "Eight CalMac ferries are out of action, four of them for planned maintenance and the others due to technical issues.", - "media_hash": "7b97e8ef686af4d1c999d3caf72d4a54d93c9dad8decc08c16cf94a7", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", - "publication_date": "2026-03-31T12:00:49", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", - "media_type": "news_article", - "sentence": { - "text": "The Pars were initially allocated just over 9,000 briefs for the April 18 clash with their bitter rivals.", - "media_hash": "2045a018f403506b3a21ff6fc140749c4832536a6604c5bfed208339", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T11:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "More than half (51%) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", - "media_hash": "42187a12b2e136f859c069c2480c0acd14a543a777f1071368b43ada", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "Last week, it was announced that the firm was due to receive orders for more than 100 zero-emission vehicles through a Scottish Government scheme.", - "media_hash": "08517ea8d785e4ec66dfc52e5d242cfacd8dffe291721d11e97b5fbd", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", - "media_hash": "7264fa2229fb76c6edfe61ce3c53c50d7f951a1a336d66894a56a06b", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", - "media_hash": "2ad4946c1e63d014883a6bfebd2a7dbd9231791f4e4a19fce3738292", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "Some \u00a311.2m of those jobs grants from Scottish Enterprise came in 2023, three years after concerns were raised over ADL embarking on major job cuts.", - "media_hash": "979f6b95866e47db8e1c35b57e0e6d97b30d7a8a09106b60293cec25", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.36229999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "media_hash": "2d291f86484d27a598c8b4c205abd18c6fce052672dc0b79d089086a", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", - "media_hash": "1e8519a8b709e127f5e789e0d6e18a5331cb6940421f930568a0d976", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tories", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Lib Dems", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T09:37:57", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "Reform UK would receive 19 per cent of the constituency vote and 18 per cent of the list, projecting a 19-seat return.", - "media_hash": "434253a709118382be5a9733fa665130526475e4de2e61190ad79faa", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Irn-Bru maker AG Barr serves up \u00a3437m in sales and sets out goal to double in size: shares fizz", - "publication_date": "2026-03-31T09:21:31", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/irn-bru-maker-ag-barr-serves-up-ps437m-in-sales-and-sets-out-goal-to-double-in-size-shares-fizz-6529783", - "media_type": "news_article", - "sentence": { - "text": "Irn-Bru maker AG Barr serves up \u00a3437m in sales and sets out goal to double in size: shares fizz", - "media_hash": "a0a87ee7959b14e5448a97aae34ab08fc093428a87b837492995cff2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the LibDems on seven.", - "media_hash": "4794bd8461e561c030a4ea3d39fada12f84a60f1c968e5b93cf8dae9", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Malcolm Offord (-15) and Nigel Farge (-31) fare better than their Labour counterparts, although at the time of polling, most Scots (55%) had no opinion on Lord Offord.", - "media_hash": "6e0843dd33f0f575260e62dfb81fba027b250a3fffe5aa2f0166560d", - "sequence": 18, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farge", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Asked to choose who they would back in a hypothetical 1v1 scenario; 55% of voters said they would prefer Mr Swinney over Mr Sarwar, while 45% said they would support Mr Sarwar over the current First Minister.", - "media_hash": "f37bf5d68f995240c9fd5bb0de21aa5adbf9c7f5d57b2fc9613046a1", - "sequence": 19, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Swinney: SNP plan for NHS 'is working'", - "publication_date": "2026-03-31T06:29:37", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982143.nhs-scotland-plan-is-working-says-first-minister-john-swinney/", - "media_type": "news_article", - "sentence": { - "text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", - "media_hash": "88e90a9893a157c986071cdb0f12da771d99069abee6418f5aef9038", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", - "media_hash": "a7269be0d9118d0566a69aa4523b660b1974f120361f1e611914c5d0", - "sequence": 889, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rhian Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Fife disabled drivers waiting months for blue badge bays amid huge backlog", - "publication_date": "2026-03-31T05:10:25", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461863/disabled-parking-bays-backlog-waits/", - "media_type": "news_article", - "sentence": { - "text": "More than 300 people are waiting for their applications to be processed.", - "media_hash": "2eabee9f3fcbdeab6cfa0d4c330a76be61bdceeb8d4329d56286c62b", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "For every \u00a380 parents pay in, they would get \u00a320 from the UK Government and \u00a310 from the Scottish Government.", - "media_hash": "be6f82582ea392e71a627a5d9ec4252d616d6b4d76a4bbe132c3019e", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "ADL says it has faced an \"uneven playing field\" due to policies that favour foreign competitors, including Chinese electric bus manufacturers, whose market share last year rose from 10% to 35% in the UK market", - "media_hash": "77c30d76bf77f29fad341706c8837a6542bea121392f9397dc5fd2d8", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Bus firm off to England in \u00a390m Scots public funding row may get even more millions", - "media_hash": "a227bd2dc9ea51f7ebb41276b9faad41504addaae0c96cb3f24503e0", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "The 29-year-old has scored 11 times in 45 caps and in each of the games where he has found the back of the net, the Dark Blues have won.", - "media_hash": "253857e8b5c4b4d3c17ab84e4e6c6794b643db35541b84d672eb2952", - "sequence": 82, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "The Dark Blues have lost four of our seven meetings against CAF nations, winning only two in total.", - "media_hash": "57453761bf3726d179898ace82195c52b64d14a9e3ae96bf88dd5572", - "sequence": 157, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Nigel Farage attacked the Welsh language. Could Gaelic be next?", - "publication_date": "2026-03-31T16:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984777.nigel-farage-attacked-welsh-language-gaelic-next/", - "media_type": "news_article", - "sentence": { - "text": "She added: \"We're . Gaelic speakers only 2% of the Scottish population but that means we should have two or three MSPs who speak the language or at least very supportive of it to make sure that that community's voice is heard.\"", - "media_hash": "9a8680af699febc2137b38a836136dba1281087dcd755fd6b900c775", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Eilidh Munro", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", - "publication_date": "2026-03-31T15:43:02", - "publication": "novaramedia", - "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", - "media_type": "news_article", - "sentence": { - "text": "Pollsters predict a 99.7% chance of a pro-independence majority - that is, a majority held by the Scottish National party and Scottish Greens, both of which support Scottish independence.", - "media_hash": "07657fa6ce5a5cee9ce24a3edc368a5a2a216662c3488223eea89df2", - "sequence": 20, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Scottish National party", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The United Kingdom Is Breaking up Right Under Labour\u2019s Nose", - "publication_date": "2026-03-31T15:43:02", - "publication": "novaramedia", - "url": "https://novaramedia.com/2026/03/31/the-united-kingdom-is-breaking-up-right-under-labours-nose/", - "media_type": "news_article", - "sentence": { - "text": "Of the 10 opinion polls on Scottish independence so far this year, \"yes\" has been ahead in seven.", - "media_hash": "f82ef117277f227ee683bfe77f3d6b2fbdabffdac517f4a5ac774a39", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Financial education in Scottish schools does not add up", - "publication_date": "2026-03-31T14:21:59", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", - "media_type": "news_article", - "sentence": { - "text": "The study by financial education charity Money Ready revealed that 78 per cent of Scottish adults think schools are not providing enough financial education.", - "media_hash": "684f23e7cc17782d1120adbe075662118b0867a90f6cf04c5efae409", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Money Ready", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T13:39:45", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "Labour followed closely behind in the survey, with 19% of respondents backing the party in constituencies and 17% in regional votes, equalling 18 Holyrood seats.", - "media_hash": "3f22bc5b0a5c7e490dcfdba106b28da3a85b1203e74c51b28f991587", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Angry Wales boss Bellamy shows his new old self", - "publication_date": "2026-03-31T22:35:53", - "publication": "bbc", - "url": "https://www.bbc.com/sport/football/articles/cy51en767wgo", - "media_type": "news_article", - "sentence": { - "text": "Northern Ireland's travelling contingent did their best to generate a lively atmosphere, but there is only so much 300 people can do.", - "media_hash": "1d3de76bf15165536e0cbad3815c9488de597c71c903c83264182d85", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", - "media_hash": "d7f56059f6910a84610a932e2c60808109c3dae3f100b683e61eed12", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "SNP ministers have blown a 'jaw-dropping' \u00a3340million on design consultants and planners to dual just 11 miles of key Highland routes.", - "media_hash": "959e31d1206212bcd851aa851bfdac9b9e2107eab58b759916657a80", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "This is below the SNP's pledged 95% target which has not been met since 2012.", - "media_hash": "e19762e5395ca1b4762fb77efb21a55e534ca24cb86ec19212a1f619", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T12:50:25", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "The SNP could win 62 seats in May's Scottish Parliament election, with Reform UK narrowly in second place over Labour, a new poll has suggested.", - "media_hash": "6996edeb84e06826e885561ea571dbe9ba22e77272a5d9d6a8a4b35a", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "That means it costs \u00a3100.52 to fill a 55-litre family car, breaching the \u00a3100 mark for the first time since December 2022.", - "media_hash": "2323ba2ce63ec9785bc63ec45053e371db418c0d54996451f2c94abe", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", - "publication_date": "2026-03-31T12:05:09", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", - "media_type": "news_article", - "sentence": { - "text": "\"The company retains the option to evidence a claim for up to \u00a34.1 million of Scottish Government funding to support its staff furlough scheme, subject to conditions being met. No claim has yet been received.\"", - "media_hash": "e2ff56d46f8692b62f3063f5fca33b6702df188407b0a62014f258e1", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dunfermline handed extra Scottish Cup semi-final tickets as sales pass HUGE milestone", - "publication_date": "2026-03-31T12:00:49", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/sport/football/5462396/dunfermline-tickets-scottish-cup-semi/", - "media_type": "news_article", - "sentence": { - "text": "Dunfermline have been handed an extra 2,000 tickets for their Scottish Cup semi-final against Falkirk.", - "media_hash": "4f0722c15deacca150b4595eb93ee6b9c4cce0e45e0f8d314f9046de", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", - "publication_date": "2026-03-31T11:50:27", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", - "media_type": "news_article", - "sentence": { - "text": "Last year, 400 jobs were at risk.", - "media_hash": "eb77b1aa5c2364f9346780e940089767ad48fd856b0470eb02558cce", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", - "publication_date": "2026-03-31T11:07:30", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", - "media_type": "news_article", - "sentence": { - "text": "The school is expected to reopen later this year after the extensive works which saw 60% of the original building torn down because of RAAC crumbling concrete roof panels.", - "media_hash": "c3937e599842766ed093f1077dcbd3dc9d35d2afd651eaf8c4f19ec1", - "sequence": 6, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", - "media_hash": "b55a04b734e8aa027139021f331c325b82d94fd97facc2b0f8406bab", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "The company said in June that it still needed to find orders for at least 300 buses a year to safeguard production in Falkirk over the long term.", - "media_hash": "e469fe09ea8cc6c287d15b0d98ffa10857cbd117819b2129d81679dd", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", - "media_hash": "b88937da3f7c34d664af1226923e0e85dfeb35a32b6fa28fef4b11ae", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T09:37:57", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35 per cent of the Holyrood constituency vote and 32 per cent of the regional list, leaving the party just three seats short of the majority.", - "media_hash": "62a30a41fdf831289614de54866b5907f3ecfb8ef417364be3579e8c", - "sequence": 10, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "THE SNP could win 62 seats in the Holyrood election with Reform UK narrowly in second place, a new poll has suggested.", - "media_hash": "5f6f2d2ff577d602b8811c9d32504df51c4aeb455816f6e5955dbc46", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "The survey of 1068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority needed to trigger a mandate for a second independence referendum.", - "media_hash": "8425b45f13b6128dce6be1a8a30c9f24420d097a5e3cb7e3e17c62cf", - "sequence": 2, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "The SNP comes first on both the constituency and list ballots, with thirty-five percent and 32% of the vote.", - "media_hash": "2a8f19d56fb56e611f0c21371cdf253ca9a4d7acf332657a2046db0e", - "sequence": 5, - "claim_type": [ - "quantity", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, 58% of Scots would choose Mr Sarwar over Lord Offord, while 42% prefer the former Tory donor.", - "media_hash": "136ecf5c006ae849b0abf5335fb39735692eb9ac21ac78de18941aaf", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "We'll also know from data from Ofcom that here in Wales, more than half of us use social media as a news source, Facebook alone in 2022 was the second most news source in Wales after BBC One.", - "media_hash": "61e0689768f78c31242c4f5db5e9b37f5f0bc5b6a0645b0828817673", - "sequence": 406, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The Welsh government estimates that between 20 and 25,000 households will get the 200 pound payment and says other people in severe hardship can apply to their local councils' discretionary assistance fund, where the maximum award for heating oil has been increased from 500 pounds to 700.", - "media_hash": "5f953996100affc7b3ce5c81392803523cc084d43b604a34611fd5ef", - "sequence": 606, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Holyrood election: Labour pledges extra summer childcare provision to working families after SNP 'failures'", - "publication_date": "2026-03-31T05:01:49", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/holyrood-election-scottish-labour-childcare-anas-sarwar-6528889", - "media_type": "news_article", - "sentence": { - "text": "During the school holidays, only 57 per cent of households say all childcare is free or funded.", - "media_hash": "c54a4a44c6a27318f1c8c2d1b3d8f3bfec0a4dd763ad19f804734272", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "They expect the introduction of the Isle of Ila will bring some relief, however five out of Calmac's eleven major vessels are still out of action as well as a chartered catamaran and two smaller ferries.", - "media_hash": "d2208e604efae545efc1f1bc33404c458cedfc40a3c9146c7ea8503d", - "sequence": 828, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "CalMac", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "Under the existing UK-wide scheme, for every \u00a38 parents pay for their childcare, the Labour Government adds another \u00a32.", - "media_hash": "042e5e37b587be14f969b60292a4bf213eab7911a26c809b8f5331a2", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "The maximum top up you can get for each child is \u00a3500 every three months and up to \u00a32,000 a year.", - "media_hash": "5b7ec51854bb6d4f15e938e767d03dde15cbee72af78cae53dd8dae7", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "A Sarwar Government would add an extra \u00a31 for every \u00a38 parents pay, boosting the discount from 25% to 37.5%.", - "media_hash": "efd61e85cbb849b9767be8d6cc768dab4bbaddc307252cdd1f0387a1", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "100,000 Scots families to receive tax free childcare boost under Scottish Labour plan", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/100000-scots-families-receive-tax-36943881", - "media_type": "news_article", - "sentence": { - "text": "Labour said the annual cap will increase from \u00a32,000 to \u00a33,000 per child and from \u00a34,000 to \u00a36,000 for disabled children.", - "media_hash": "4d59dd0b26adf0398c139da4eacc49cd2d9dec92f1f1c0fb0688fe9e", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "\"In just one quarter, we have seen a significant jump in the number of firms telling us that rates are a major pressure.", - "media_hash": "620d70322dafb99e2d0cd43fb06c4c458a0a4b9ac53e67eaaa7d4f3f", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "The AA said the gap between supermarket and non-supermarket retailers has widened from 5.4p per litre for petrol before the war to 7.6p a litre and diesel as much as 8.8p a litre.", - "media_hash": "d2285b51ae7c4ca621b1bf7799c723889152a73d60e502641a7fc9a6", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "general": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", - "media_hash": "a9911af16022cf11c16997958d7a6bc524fed8156ccdd07259c05e4d", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Conservatives unearthed the figures showing A9 expert fees alone have soared to \u00a3261.3million, meaning the cost of each mile is close to \u00a324million with another 72 miles of the route yet to be finished.", - "media_hash": "ea813249732b7acbd222f58027ed069f979a5e70838c91ef53a8bff5", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nicolas Pepe\u00b4s goal for Ivory Coast inflicts another...", - "publication_date": "2026-03-31T20:29:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696105/Nicolas-Pepe-s-goal-Ivory-Coast-inflicts-defeat-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "Only captain Andy Robertson - winning his 92nd cap to put him only 10 behind the all-time appearance leader Dalglish - and Scott McTominay kept their places.", - "media_hash": "7745248d4fce845c7cf3a081a10209ec40a3da91479b83e7f64f20e3", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", - "media_hash": "1866d6ad2e12f563725133a04e3b3250b7d5c421998c5df8d121b843", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:16:33+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/PJFerguson18/status/2039044192035369255", - "media_type": "social_post", - "sentence": { - "text": "Inexplicable, when an order for another 33 double deckers for Falkirk for nearly \u00a320,000 less subsidy lost to a comparative bid from First Bus buying from China.", - "media_hash": "076a2eda2e220825f1fa4889bc441902e368cbb1c488641fad0853ba", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Euan4Falkirk", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "First Bus", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "After Alexander Dennis (ADL) proposed to move its operations to England last year some \u00a34.1m was allocated in publicly funded support for a furlough scheme.", - "media_hash": "7a55a20080a7fba672cdcd0e29f65054900a80b24759e2394650ae15", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "ADL employs around 1,850 people in the UK, with a significant proportion based in Falkirk and Larbert.", - "media_hash": "13a7407d82d79b865534d12b1f3b72a11c521fc91a960fc4350a8b91", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "Last week it emerged that ADL was to receive orders for more than 100 zero-emission vehicles through a Government scheme.", - "media_hash": "2b5f631f619bcbc676d05973a08dd837b54354ca684ffd6cec932089", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 2.5459449999999997 - }, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "\"We've committed \u00a315.6 billion through the Spending Review to help local leaders improve transport and support the transition to greener buses.", - "media_hash": "dd58b177d5faac44e13dff43ad366c0c7c51e53b60a4fcb3ca225c55", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Scotland's Christians face attacks on free speech and attempts to drive them out of politics", - "publication_date": "2026-03-31T15:00:53", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/how-scotlands-christians-face-attacks-on-free-speech-and-attempts-to-drive-them-out-of-politics-6529803", - "media_type": "news_article", - "sentence": { - "text": "The negative view amongst the party leadership did not seem to be, in the end, broadly reflected amongst the SNP's membership, 48 per cent of whom voted for Forbes to be leader, meaning she missed out on becoming First Minister by a whisker.", - "media_hash": "9bd00e796135ee314b02389eb6c15b243effc512f96ce788ac6eb456", - "sequence": 20, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "race__ethinicy__religion": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", - "media_hash": "76f780ecf7fa964d3d1e413f03310dc2ce5fb44c0976a1d204f6d672", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Financial education in Scottish schools does not add up", - "publication_date": "2026-03-31T14:21:59", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/financial-education-in-scottish-schools-does-not-add-up-6530506", - "media_type": "news_article", - "sentence": { - "text": "The Money Ready research identified the key areas of reform Scots would like to see, including: government intervention to ensure people receive financial education (79 per cent); financial education being provided across higher education and workplaces (75 per cent), and teachers being better trained to teach financial education (70 per cent).", - "media_hash": "91c48fb136bd86d7eabc2d81320c5cdaa78535a3d1cd4f1b708494e7", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Money Ready", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dumbarton Health Centre labelled \"not fit for purpose\" after funding snub", - "publication_date": "2026-03-31T13:20:29", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/local-news/dumbarton-health-centre-labelled-not-36949594", - "media_type": "news_article", - "sentence": { - "text": "It comes after the Scottish Government spending review, announced in January, highlighted an investment of \u00a34.1 billion health capital over four years which did not include a new health centre.", - "media_hash": "5527cd15b58ad50ae72f8b5e42470d173bdb68f5da0ad8933f74a710", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T12:50:25", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "The survey put the Tories on 13 seats, with 11 per cent of the constituency vote and 13 per cent of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", - "media_hash": "515d87ac26fe68cdfaa0ed60855e47de686d100c5e941e2e9fdbc887", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tories", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Lib Dems", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", - "publication_date": "2026-03-31T12:53:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", - "media_type": "news_article", - "sentence": { - "text": "The new vessel has capacity for up to 450 passengers and 100 cars, or 14 commercial vehicles.", - "media_hash": "568c2e9a950d9b26a8a7fbf7f981e47100b8667d602aaeb0f0d92cdd", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's newest ferry carries passengers for first time easing CalMac pressure", - "publication_date": "2026-03-31T12:53:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984170.newest-calmac-ferry-mv-isle-islay-carries-passengers-first-time/", - "media_type": "news_article", - "sentence": { - "text": "This boosts vehicle and freight capacity on the route by 40%, improving the overall resilience of the wider fleet.", - "media_hash": "b9c51df0ea3ddad2b1e4f55cb9b5f98e5e39cdaa42027fce8067491c", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sarwar rules out deal with Reform as he accuses Swinney...", - "publication_date": "2026-03-31T11:54:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694557/Sarwar-rules-deal-Reform-accuses-Swinney-desperate.html", - "media_type": "news_article", - "sentence": { - "text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to \u00a33,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost of living crisis.\"", - "media_hash": "0e4fb781a9293b4acfe0c0045473d365675d8cbcc6cbd867031b24b5", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site with 115 jobs at risk", - "publication_date": "2026-03-31T11:50:27", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/scotland/alexander-dennis-to-shut-falkirk-site-with-115-jobs-at-risk", - "media_type": "news_article", - "sentence": { - "text": "Alexander Dennis, which previously proposed shutting down both Scottish bases, claimed it would save around 350 jobs under the new scheme.", - "media_hash": "755d780e3e0fdb76c736446ca4889d2532a88ba360087833167d6824", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "More than 100 jobs at risk at Alexander Dennis's Scottish site", - "publication_date": "2026-03-31T11:13:09", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983562.alexander-dennis-announces-115-jobs-risk-scottish-site/", - "media_type": "news_article", - "sentence": { - "text": "First Minister John Swinney pledged approximately \u00a34 million in funding towards the furlough scheme until work could recommence at the Falkirk site back in September.", - "media_hash": "34071a231a94acf6b4ba592df08e184e8292177518ea448a44fde60b", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", - "publication_date": "2026-03-31T11:07:30", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", - "media_type": "news_article", - "sentence": { - "text": "Without it the council faces a 20-year repayment on borrowed fundswhich would cost it \u00a330m.", - "media_hash": "32e859d16e904596e39740562686ea4c13905c17b0c0ba52d340fe53", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "West Lothian Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus manufacturer Alexander Dennis to slash Scots jobs and close factory in Falkirk", - "publication_date": "2026-03-31T11:00:00", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/politics/bus-manufacturer-alexander-dennis-slash-36947245", - "media_type": "news_article", - "sentence": { - "text": "ADL said the proposals would secure jobs for 200 skilled manufacturing staff, with a further 115 roles now at risk of redundancy.", - "media_hash": "de2b15113c316fd5501ae4dbd20843603f1cf90571c90c3c9db7bbc1", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis Limited", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "The Sunday Times report used data submitted by schools in each of the four categories to come up with a mark out of a maximum of 400.", - "media_hash": "012d98dcc9679805b1c61593eb55804e4d3276afd24e5e3926fc95a1", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Sunday Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Top Fife Primary Schools 2026: Here are the 10 best performing primaries in Fife according to a new report", - "publication_date": "2026-03-31T10:33:43", - "publication": "scotsman", - "url": "https://www.scotsman.com/education/top-fife-primary-schools-2026-here-are-the-10-best-performing-primaries-in-fife-according-to-a-new-report-6529951", - "media_type": "news_article", - "sentence": { - "text": "Less than 10 per cent of its pupils come from a background classed as 'very disadvantaged'.", - "media_hash": "caaacac29352dac9d29bfdc112f2ff3b954ba875f31efe1a563e3f24", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "And some \u00a330m of jobs grants for research and development over 10 years has come from the Scottish Government's economic development agency Scottish Enterprise.", - "media_hash": "208afab2b3953a76224e129ced24afd214535c55ce2174a9bc7a95ff", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.47540000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", - "publication_date": "2026-03-31T09:23:58", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", - "media_type": "news_article", - "sentence": { - "text": "Rangers moved into second place with a 4-1 romp of Aberdeen before the international break, three points behind leaders Hearts and two clear of Celtic.", - "media_hash": "3e0a7c67ed1e9422fe0dbf7baeae6db3ce85ea5d11bb339882e05350", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rangers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hearts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "When were Rangers last top of the league? Summit in sight for Danny Rohl's men after mammoth wait", - "publication_date": "2026-03-31T09:23:58", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/were-rangers-last-top-league-36947388", - "media_type": "news_article", - "sentence": { - "text": "That gap to their Old Firm rivals remained intact when the champions went down 2-0 to Dundee United at Tannadice 24 hours later.", - "media_hash": "35edb5e886ee9148f0935cb6790e194bdb6fea0d1b47288ef8ab4d5d", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", - "media_hash": "cec6d1613d5899a9f545b48bcb87f5fd919cf169849c0aa0ed7f6bf1", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "The Conservatives will lose almost 20 seats, returning 13 MSPs, followed by the Scottish Greens with 10 MSPs and the Liberal Democrats with seven.", - "media_hash": "77a9eee42b89508453e5a49059f9cd6dec24098a55ed4281c40b54d7", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mark Diffley", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Reform and Labour are tied for second place with 19% each on the constituency ballot.", - "media_hash": "e62b8cb7e5f628573df03ab929772d3d9b1add6aa4ff0de4bbe15682", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Conservatives are projected to earn 11% and 13% of the vote on the constituency and list ballots, while the Scottish Greens are expected to pick up 8% and 11%.", - "media_hash": "d3857bfc50fc676ac357b014c38d903e37380eaedb131cff4a2524a9", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "By contrast, Prime Minister Keir Starmer has a net favourability rating of -47 among Scots, and the leader of the Scottish party, Anas Sarwar, has a net favourability rating of -25.", - "media_hash": "221a84bb8e2a3bc964d863cff5ad7175bb1d947d5df34baf28d838c4", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Findlay promises permanent tax cuts for business and Scottish \u2018Canary Wharf\u2019", - "publication_date": "2026-03-31T06:04:06", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/findlay-promises-permanent-tax-cuts-for-business-and-scottish-canary-wharf", - "media_type": "news_article", - "sentence": { - "text": "\"By contrast, I used those budget negotiations as leverage to squeeze the SNP for every penny I could and, as a result, secured \u00a3178 million in rates relief for pubs, clubs, restaurants, hotels and self-caterers.", - "media_hash": "3f370bd73b7b615035703f5fabefe2287bd668f8f2e95533f7112d52", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Jamie Greene MSP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Liberal Democrat finance and economy spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "The researchers also highlight that while there has been a recent uptick in the number of local government jobs, this is almost entirely driven by the expansion of funded childcare for three and four-year-olds to 1,140 hours.", - "media_hash": "5a1bdb57dbc06ea005979a1bb693abae56a474d9f16c4efabdb9ec92", - "sequence": 24, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "With adult social services and teachers at levels close to 2010, the IPPR calculates that this \"leaves the rest of local government around 12,500 FTE members of staff below 2010 levels.\"", - "media_hash": "1c671b52dd9f90f4112dcddb6217d6f2242cf75488e2ac0212d7abbf", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "The SRC said Scots firms were paying \u00a354 million a year more than those down south, or \u00a3162 million over the three-year rates period.", - "media_hash": "4a3c1b436117e8cf277d3eb1571f738bc9d727daddff4299dd41c191", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Retail Consortium", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Islanders elsewhere have also been hit hard with the price of diesel setting motorists back \u00a32.17 a litre at one forecourt on Arran and \u00a32.11 a litre at another in Portree, Skye.", - "media_hash": "b8b8389083e2c29fbf4009d09192e7cf2ec6a34eea6c608425b573f1", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "general": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "This includes \u00a3409million for diesel and \u00a3135million for petrol, with figures based on average daily pump price rises and last year's fuel consumption rate.", - "media_hash": "44858aa1668af5455e93c3d6a097fa8c2b437a822efc87645050a487", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": { - "general": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "media_hash": "9cb748f8b3677b1b3010af20e34293eafcec8065f72b1be39c67a7f2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and convert...", - "publication_date": "2026-03-31T15:49:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694521/Alexander-Dennis-shut-Falkirk-site-convert-115-jobs-risk.html", - "media_type": "news_article", - "sentence": { - "text": "A UK Government spokesman said: \"The UK is a global leader in bus manufacturing, with around 60% of buses funded through our zero-emission bus programme built by UK-based companies, supporting skilled jobs and a cleaner transport network.", - "media_hash": "ba6876aeed9262aefbfe8583fc7634998baaa142285b334da9be796f", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", - "media_hash": "b3bb98b7a1995903de750a6e20560045eea78ab3729c226969b7fe89", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T12:50:25", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "Labour followed closely behind in the survey, with 19 per cent of respondents backing the party in constituencies and 17 per cent in regional votes, equalling 18 Holyrood seats.", - "media_hash": "79e93c01fde78116056b81cd7c50f6b4cae2ccb8cc13d69224720460", - "sequence": 12, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", - "media_hash": "9cef34f6bfc4e4b0fe9d04700870d76316ef410ee522304c6ccb16e3", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dumfries and Galloway Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 4.834525, - "politics_of_food": 4.834525, - "nutrition_": 4.834525 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament.", - "media_hash": "df02e6d07c897e3ce37e044f75a45309c2239a417c7d0f53ed3566e3", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", - "publication_date": "2026-03-31T12:05:09", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", - "media_type": "news_article", - "sentence": { - "text": "More than half (51 per cent) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", - "media_hash": "7853530d17e37b06da52989cf948ea6b61cb34b99eecb3ce02162432", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian Council snubbed by Holyrood for \u00a315m it needs for rebuild of St Kentigern\u2019s Academy", - "publication_date": "2026-03-31T11:07:30", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-council-snubbed-holyrood-36948580", - "media_type": "news_article", - "sentence": { - "text": "The council has used \u00a320m of its own resources and has made repeated calls to the Scottish Government to cover the last \u00a315m needed.", - "media_hash": "33e78cd707d16d01ecb129e8b378ecce7a6a884623ff703fe09d7031", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", - "publication_date": "2026-03-31T09:37:57", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/poll-suggest-snp-could-win-62-holyrood-seats-with-reform-in-second-6529819", - "media_type": "news_article", - "sentence": { - "text": "Nationalists would be just three seats short of majority, with Labour third and Tories fourth", - "media_hash": "b4d781ddf0d6d0bc75be5448ca64e323ff54113dc77e71e1e2df12c6", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP in 'touching distance' of Holyrood majority and Reform in second, new poll says", - "publication_date": "2026-03-31T09:17:59", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25982761.poll-puts-snp-62-seats-reform-uk-second-holyrood-election/", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Keir Starmer has a popularity rating of minus 47% for and minus 25% for Scottish Labour leader Anas Sarwar.", - "media_hash": "c6059e10c10bdab1a66080dac53de07cc7a301b579d6a55dc518846a", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Figures obtained by the Diffley Partnership predict that voters will elect 62 nationalist MSPs, two seats fewer than in 2021.", - "media_hash": "beb7e99876f1efc725b63986c1c8bceaf442d3f59480fcbb7fe13dc4", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Using polling conducted by Survation between March 16 and 23, elections guru Mark Diffley contends that the Reform will form the official opposition to the SNP, securing 19 seats, while Scottish Labour will come third with 18 seats.", - "media_hash": "61018314a69aeefebc21edffa26100e53358fe8a951a0e396f3eee42", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour pledge two weeks of funded summer childcare in...", - "publication_date": "2026-03-31T05:49:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693019/Labour-pledge-two-weeks-funded-summer-childcare-Scotland.html", - "media_type": "news_article", - "sentence": { - "text": "\"We are offering 52 weeks support, Labour are offering two.", - "media_hash": "2ada192e74163eb890bc2be81eb591c02cc56c31ed3c8c716f4e9324", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish SPCA staff tell of 'horror' at looming cuts to animal welfare charity", - "publication_date": "2026-03-31T05:30:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25979483.scottish-spca-staff-horrified-cuts-animal-welfare/", - "media_type": "news_article", - "sentence": { - "text": "As first reported by The Herald, a major restructuring to try and cut costs was revealed to staff and members earlier this month as the organisation looks to cut costs by 20%.", - "media_hash": "e32642b9d5ce0280d63c29dfde7f23ed4ebf1b165bb37818d2cfa1d0", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New ferry to enter service but CalMac vessel shortage still critical", - "publication_date": "2026-03-31T05:18:08", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cn8dv2ld42qo", - "media_type": "news_article", - "sentence": { - "text": "Isle of Islay, left, is smaller and uses a more conventional propulsion system than Glen Sannox, right", - "media_hash": "a838e63c4c930187e2fdeed25e0bf62e62fa57e79490ed4a69f23769", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", - "media_hash": "f5e55bce795c0f0df9a6882b9a033678d5a3e4edab983fc4d2fbab35", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.51499, - "politics_of_food": 2.51499 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scotland 'sleepwalking into austerity' with bid to axe 20,000 public sector jobs", - "publication_date": "2026-03-31T04:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25981666.scotland-job-cuts-plan-risks-austerity-ippr-scotland-warns/", - "media_type": "news_article", - "sentence": { - "text": "It adds: \"This is a significant number: Outside local government, the NHS and the civil service, there are only around 65,000 public sector workers and it seems implausible that all 18,000 job losses (representing nearly a quarter of these workers) could be absorbed here.", - "media_hash": "7993aba0a704ab26b6c12cf995817108faca90b7f3f79190b3945b03", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "IPPR Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stephen Boyd", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dave Hawkey", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Casey Smith", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "However, according to former SNP minister Michael Matheson with 523 vehicles ordered, only 162 - less than a third - were built by Scottish manufacturers like Alexander Dennis.", - "media_hash": "54f25435f8168f31fcc57e8dfb00286001ea9d2e443e75e2286207cf", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Michael Matheson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Before the Scottish Government-backed furlough scheme, the company had received some \u00a390m of taxpayer cash over the past ten years and tens of millions since a 2020 plan to axe a third of its Scottish workforce in advance of June's plan to exit to England.", - "media_hash": "236e608d8c3b20d4ab9e6f956d0e0078d4e6ca1e2ad62b2b743b9782", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "Ex Rangers winger and current Manchester United star Diallo bagged an assist in that game, meaning he has been involved in seven of his country's goals in his last nine caps.", - "media_hash": "db183b116dca9b19514a43c1f7b754287c8befdd7958a6195ddee8df", - "sequence": 95, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ivory Coast vs Scotland LIVE score team news and updates from World Cup warm up clash in Liverpool", - "publication_date": "2026-03-31T16:29:50", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-vs-ivory-coast-live-36950578", - "media_type": "news_article", - "sentence": { - "text": "We're happy with the result and the fact we scored 4 goals.", - "media_hash": "78b7ef105c1faefd21de25e3ad27d256e39d8c9faff8155e47586358", - "sequence": 139, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Emerse Fae", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Saving all Scottish jobs proves a bridge too far at Alexander Dennis", - "publication_date": "2026-03-31T16:00:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984329.saving-jobs-alexander-dennis-proves-bridge-far/", - "media_type": "news_article", - "sentence": { - "text": "The 26-week scheme ended on March 22 of this year with the Scottish Government picking up an estimated tab of \u00a34 million to cover 80% of workers' wages while Alexander Dennis secured the additional work needed to resume operations.", - "media_hash": "d256ffb4d97ab05e0ed62ce4b16eff1a8de53fd75d3f4d8ee04f6c3d", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", - "media_hash": "912309722bf504fb5e56c4073548e8c832ca5d39ff7af8fda21872bb", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Sarwar rules out deal with Reform as he accuses Swinney...", - "publication_date": "2026-03-31T13:34:30", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694557/Sarwar-rules-deal-Reform-accuses-Swinney-desperate.html", - "media_type": "news_article", - "sentence": { - "text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to \u00a33,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost-of-living crisis.\"", - "media_hash": "57cefb00b0ebd203929d3393fafd15e435a49418d0281be2fba027ba", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "Industry leaders have warned that some individual valuations have soared by as much as 500%.", - "media_hash": "5769febde36db24791e308113294e3ec69fc4d44c2f0b7233ca021a1", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "It comes as prices on the comparison website listed a top price of \u00a32.10 a litre for petrol and \u00a32.20 a litre for diesel at the Skerries Co-Operative Society pumps on the Shetland isle of Bruray - though to be the most expensive in the UK.", - "media_hash": "baa310bf714c65d0e911fe86508a37c0922e677d76da2f35913503d9", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "general": 2.556405, - "energy": 2.556405 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", - "publication_date": "2026-03-31T11:32:07", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", - "media_type": "news_article", - "sentence": { - "text": "Stac has now supported more than 120 start-ups, facilitated in excess of \u00a350m in investment into its portfolio, and helped create some 400 jobs.", - "media_hash": "05139a128bd6d6bbf73ba512b0de63176f379eb1a25dc8593a859b47", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Stac", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Queues at Glasgow petrol station as full tank of diesel breaks \u00a3100 mark", - "publication_date": "2026-03-31T13:18:27", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984324.glasgow-petrol-station-queues-full-tank-diesel-breaks-100-mark/", - "media_type": "news_article", - "sentence": { - "text": "The cost of filling a typical family car with diesel has exceeded \u00a3100 for the first time in more than three years, new figures show.", - "media_hash": "09397d534f05ffb226b52cabf5d37fae5588670380790c3215e998dc", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "This would put it ahead of Labour (18 seats), the Tories (13 seats), the Scottish Greens (10 seats) and the Liberal Democrats (7 seats), the research found.", - "media_hash": "b78d7d5b260f3b5149dd565922d39c4360d0260df0bd94ee3ba6628e", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "Reform would receive 19 per cent of the constituency vote and 18 per cent of the list, with Labour following closely behind with 19 per cent backing the party in constituencies and 17 oer cent in regional votes, according to the poll.", - "media_hash": "8ba3d526ae622596dffacc5af602a05a27c88e636e53c3503c1ffed7", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Survation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diffley Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", - "publication_date": "2026-03-31T13:01:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694161/Reform-UK-set-Scotlands-second-largest-party-ahead-Tories-Labour-Holyrood-elections-poll-shows-SNP-fall-short-majority.html", - "media_type": "news_article", - "sentence": { - "text": "At the previous Scottish Parliament elections, held in 2021, the SNP won 64 seats, while the Tories won 31 seats and Labour won 22 seats.", - "media_hash": "0ce8364d53d627ff6920e33168f8c6dc77cb010eb838d829d9b92789", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "polls": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", - "media_hash": "3f7e8ca7052fb5e5bd2e3372b22cbf08f12db9849e32bf9e38158611", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans face \u00a360 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", - "publication_date": "2026-03-31T11:28:24", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/sport/football/football-news/scotland-fans-face-60-fare-36948415", - "media_type": "news_article", - "sentence": { - "text": "While ticket prices are normally $20 (\u00a315.14) for the return fare, it was reported the local transport authority will now charge $80 (\u00a360.55) for all games at the World Cup.", - "media_hash": "696aefb82f9e0b879d117f3506c3c23688e64a1698d431172be00104", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bus giant plans to axe quarter of its staff despite Scots public cash bailout", - "publication_date": "2026-03-31T09:56:51", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983011.alexander-dennis-cuts-115-jobs-millions-public-cash/", - "media_type": "news_article", - "sentence": { - "text": "The company had previously set out plans to close its facilities in Falkirk and Larbert, with the loss of 400 jobs, and move production to Yorkshire.", - "media_hash": "73b3ebeb9c03f1f115c3e717ac464f8adf4088c0d3d5587a3f87afde", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poll suggests SNP could win 62 Holyrood seats with...", - "publication_date": "2026-03-31T09:44:46", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694067/Poll-suggests-SNP-win-62-Holyrood-seats-Reform-second.html", - "media_type": "news_article", - "sentence": { - "text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority.", - "media_hash": "6469240f430ab28af5cc7e14a68b52bbae853bd942deb0cdeb95f597", - "sequence": 3, - "claim_type": [ - "quantity", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP projected to fall short of Holyrood majority as Reform make massive gains", - "publication_date": "2026-03-31T09:12:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982586.snp-fall-short-majority-holyrood-election-polling-suggests/", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, on the regional list, Reform's support (18%) outstrips that of Labour (17%).", - "media_hash": "e1f105241be9c981e8b7fa1fbb5f1e1892c4f0e778a325022c743753", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reform", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "CalMac ferry crisis: Lib Dems demand Holyrood be recalled over vessels shortage", - "publication_date": "2026-03-31T08:58:16", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25982645.lib-dems-call-holyrood-recalled-calmac-crisis/", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile the troubled MV Glen Sannox, which only entered service last year between Troon and Brodick on the island of Arran, is facing \u00a33.2m of further costs.", - "media_hash": "e2d88475f0459fb04c1f2d381a4d3797e3718812e73d750990f0e9e9", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Here in Wales, the Welsh government has offered a one-off payment of 200 pounds for low income households who rely on heating oil, as prices have in some cases more than doubled.", - "media_hash": "6969d4bc01e94bda02dca8d4631eb77c1fa0436edf08be6e8d03abb4", - "sequence": 601, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", - "media_hash": "e8dc3bfc8a9d48d61488b1cbe8cb37d9a58a8b1627948729f1a80f57", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Line of Duty's Vicky McClure uses her TV detective training to try and solve Bible John mystery", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/line-dutys-vicky-mcclure-uses-36946122", - "media_type": "news_article", - "sentence": { - "text": "Over 7000 people were interviewed and over 4000 statements were taken but no arrests were made.", - "media_hash": "4044da8dcbf79ead303cf230b248c12eab6561bcf023b0a23cf18081", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "ADL had already secured tens of millions in public money after first proposing to cut around one-third of its Scottish workforce, including facilities in Falkirk and Larbert in 2020 and then admitting it is looking to move to England last year.", - "media_hash": "8a397d4238c16d6a4f4ffaaa3f66e1d5a856cbb2587f9546d50a9994", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland fans 'like the accent' as they share love for Scousers ahead of match", - "publication_date": "2026-03-31T16:40:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/scotland-fans-like-accent-share-36950921", - "media_type": "news_article", - "sentence": { - "text": "Niall said he had forked out around \u00a320,000 to go to the World Cup this summer, which included 10 nights in New York and six nights in Miami.", - "media_hash": "13eb9f6c336f3bc6d4bb8d9f19f060984ffd20238c7a744703a81308", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ministers told to scrap subsidies as bus giant plans to axe Scots jobs after bailout", - "publication_date": "2026-03-31T16:26:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985424.ministers-told-scrap-subsidies-alexander-dennis-job-cuts-plan/", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Government had stepped in with what it described as an unprecedented \u00a34.1 million furlough scheme to support workers while new orders were secured.", - "media_hash": "1d9b7a99956f8fc8d3f92fe9a3056746304048170d0b53842af9be2e", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.4738 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 2.5459449999999997 - }, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Unions blame SNP Government for handing bus contracts to China for closure of Scots factory", - "publication_date": "2026-03-31T16:00:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/politics/unions-blame-snp-government-handing-36949593", - "media_type": "news_article", - "sentence": { - "text": "It comes one week after the \u00a345 million Scottish Zero Emission Bus Challenge Fund (ScotZEB3) confirmed that 334 zero emission vehicles are to be built - with 123 buses awarded to ADL and 166 awarded to Chinese company Yutong.", - "media_hash": "4ae17aab4d26ab74cb386a2b4c149a374c4dd9f87fd288b32f76367b", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", - "media_hash": "2f8f5edd62264970131328b073ad68cb5ba6c8a3f145c6eec92bf37b", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Scottish firms warn politicians of job losses as new non-domestic rates take effect", - "publication_date": "2026-03-31T23:01:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985773.alarm-bells-ringing-rates-hikes-take-effect/", - "media_type": "news_article", - "sentence": { - "text": "According to a survey by the Chamber, 48% of businesses say rates are their primary concern.", - "media_hash": "f8326c050414d336437863760e77b16876377df913599cd1b395291f", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish businesses", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Chamber of Commerce", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", - "media_hash": "e2c1b487d20fbe6a88086b41c4816070fead6e309bb89bbfba701e47", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Government shelled out \u00a3260million of taxpayers' cash on the fees for the A9 dualling programme and a further \u00a380million on the A96.", - "media_hash": "20bf1c90283f85e82458d28383babd24d798c157db013493e9e6597a", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ministers spend \u00a324m a mile on consultants to dual just 11 miles of A9!", - "publication_date": "2026-03-31T20:39:48", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695807/Ministers-spend-24m-mile-consultants-11-miles-A9.html", - "media_type": "news_article", - "sentence": { - "text": "'\u00a3261.3m has been spent on consultancy fees on the A9 out of an estimated total scheme cost of \u00a33.97billion.", - "media_hash": "294e533fc90c469996d94e2447e0a27219ae962aeeafdaf50436bae8", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Fiona Hyslop", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "media_hash": "97cc8a55fb457d4cfeddb4d222aab5e42fad94c3cb1521e1abcf7748", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Motorists travelling on the NC500 route are also seeing 'astronomical' prices with the cost of petrol listed just 4.1p off \u00a32 at Lairg, and diesel sitting at \u00a32.17 a litre at one forecourt in Thurso, Caithness.", - "media_hash": "dd7652551b8a99a24d4ce9fbdc34ad4fd821e4ff319815936d5ed08f", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "general": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "Steve Gooding, director of the RAC Foundation, however, said the price paid at the pumps by drivers is 'currently rising by \u00a337million a day'.", - "media_hash": "a1277acf5db04cd482be26e9f34cb79051d369a6e5767d016bd67cef", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "general": 2.970815, - "energy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", - "publication_date": "2026-03-31T11:32:07", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", - "media_type": "news_article", - "sentence": { - "text": "The announcement comes as the accelerator centre begins fundraising for its first dedicated deep tech fund, targeting between \u00a315 million and \u00a330m to significantly scale its capacity to back Scottish founders.", - "media_hash": "1bf2b109bf4d82884a2216adb673a20300a374650dc1c4718dfb0a2b", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Stac", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why there is a public funds row over Alexander Dennis axing Scots jobs", - "publication_date": "2026-03-31T16:42:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983896.public-funds-row-alexander-dennis-axing-scots-jobs/", - "media_type": "news_article", - "sentence": { - "text": "Additionally, UK policies under the Subsidy Control Act 2022 limit the ability to favour domestic suppliers in public funding, while Scottish rules require UK-based firms to meet Fair Work First standards, which it is claimed put ADL at a competitive disadvantage compared to international rivals who are not bound by these conditions.", - "media_hash": "43f8f4a92f91a85fcd0e58ad9d4376076fe79886e577559d9f3212f1", - "sequence": 12, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Alexander Dennis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5438549999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "The crime lord is the head of the Lyons clan, which originated in Cumbernauld, North Lanarkshire, and has been involved in a bloody battle with rival Glasgow-based group Daniel for more than 20 years.", - "media_hash": "eeb496c68cb7d7d607eaab8afb31b4024bf744487f9595fd26ba1ba9", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Candidate slams Ayr diving pool closure after backing new centre that axed it", - "publication_date": "2026-03-31T11:06:15", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/ayrshire/candidate-slams-ayr-diving-pool-36947229", - "media_type": "news_article", - "sentence": { - "text": "\"For twenty years, councils have been forced into annual cuts. This cannot continue,\" he said.", - "media_hash": "37dce9fcc8107c4abefd4db3a5f6cac3220bece9923d7fd81cd4979a", - "sequence": 19, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Brian McGinley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.502525 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From Riverside to Glasgow Green: The Story of the men\u2019s and women\u2019s 10K", - "publication_date": "2026-03-31T12:31:33", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984052.riverside-glasgow-green-story-mens-womens-10k/", - "media_type": "news_article", - "sentence": { - "text": "Every year, thousands of participants choose to support causes close to their hearts, turning each step of the journey into something meaningful beyond the finish line.", - "media_hash": "59dfeea9fc0dc31b3f359231f145a2205cafd77cb69405cb4f26edc1", - "sequence": 85, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", - "media_hash": "7091754801d02e06217bae835c2937684a0d8cbd9cd4265a9c31ddbb", - "sequence": 2, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "general": 3.09725, - "economy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran remains a stubborn foe after absorbing massive...", - "publication_date": "2026-03-31T15:46:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695393/Iran-remains-stubborn-foe-absorbing-massive-US-Israeli-attacks.html", - "media_type": "news_article", - "sentence": { - "text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", - "media_hash": "b899ad4209da633a9fb0ec9b0227641187fc44e0f3084bd923a36af5", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "general": 2.652965, - "defence": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", - "media_hash": "c0e57f6d3f0edf30285444e2d7eb86b9ea3eb60054f782c57940f058", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Treasury", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "general": 2.57747, - "economy": 2.57747 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", - "media_hash": "5ec8157db89f6e06e2366aeb7bb49ceaa107dc15d471337a942aaaf3", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "general": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", - "media_hash": "30f3953eea29da37d47932ff3265b04d1136d624c32c14560e4612b8", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "general": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "Research by the Institute of Directors recorded business confidence dropping to a net figure of -76 in March, compared to -63 in February.", - "media_hash": "df87d2cf54be76b152e33b6bbfe13be8b40dfa102ad70f53d40db782", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Institute of Directors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "general": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "Business confidence has dropped to a record low.", - "media_hash": "f782457dcf74ca300b28466274e8bb097510ac07035408489318a2b4", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "general": 2.511005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Heart disease remains one of the biggest killers in the UK, responsible for more than 460 deaths a day - roughly one every three minutes.", - "media_hash": "4aa7a3da9f3f0d6d2d0e6e0617b64e5335fb09cf8371b0d85284199a", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.6796 - }, - "demo": { - "nutrition_": 3.6795999999999998 - }, - "pa-media": { - "health": 3.6795999999999998 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show that tamoxifen patients are nearly three times more likely to develop deadly blood clots and endometrial cancer.", - "media_hash": "2ecab9e81a349e1ce0c3089493750e28704dd9b95f8876e735d9b41c", - "sequence": 38, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.3647299999999998 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "The UK lags behind other countries in cancer outcomes and faces a major shortage of staff and diagnostic scanners compared to countries like Germany, Sweden and Italy.", - "media_hash": "af398e782b1ff1b9f004da781fc439b606434d0498acad6c283082ff", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.6691399999999996 - }, - "aapfactcheck": { - "health": 4.66914 - }, - "pa-media": {}, - "maldita": { - "health": 2.6691399999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", - "media_hash": "004ba823dc56bccdfcc3be4892702fa69fbff9ce9b98ded6bb6c42be", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Genevieve Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.66914, - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.6691400000000005 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "\"The earlier bowel cancer is found, the more treatable it's likely to be, with more than nine-in-10 people surviving the disease when diagnosed at the earliest stage.", - "media_hash": "93ddc68874326d00e7a2950a5b55575f50563c2b5fad807ad159aa78", - "sequence": 65, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Over the course of the study the researchers found that more people who are susceptible to diabetes are now developing the disease than in the past.", - "media_hash": "ca70425cd24e0194aab25ae7bc17c2fc55e83b9c1d50046f3dbae967", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 5.123595, - "nutrition_": 5.123595 - }, - "pa-media": { - "health": 3.6691399999999996 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Latest data suggests Long Covid still occurs in about 3 in 100 cases.", - "media_hash": "f8f87b22ce0f0cf624bef3125706e0702c83554812d569e3223a363b", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "Studies have also shown that getting enough vitamin E - around 4mg a day for men and 3mg for women, roughly the equivalent of a tablespoon of sunflower seeds - may help reduce the risk of heart disease.", - "media_hash": "0334f6de6e95a1a9446f134a05189aff65b7725383636f9c1d1b335f", - "sequence": 33, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.6691399999999996, - "popular_media": 3.6691399999999996 - }, - "pa-media": { - "health": 3.6691399999999996 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Latest data suggests Long Covid still occurs in about three in 100 cases.", - "media_hash": "2982b20e8571147d3e5e818a13f6ff66061373268fc4962765534f97", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.66914, - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Crucially, research also shows that tamoxifen can slash the risk of breast cancer developing by as much as 50 per cent.", - "media_hash": "80c84a394068b4771d45f72bb99d6eed1c55868b89e16031e71b67f3", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 3.6691399999999996 - }, - "aapfactcheck": { - "health": 5.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "With nearly six million people in the UK thought to be living with diabetes, the need for realistic and effective interventions has never been greater.", - "media_hash": "7926a27f92ef7090377833e0661c736a327b1e5709c51adc10345ff3", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.66914 - }, - "demo": { - "health": 5.66914, - "nutrition_": 5.66914 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Radiotherapy on its own, meanwhile, eradicates around 40 per cent of cancers and also brings side-effects, such as skin irritation around the treatment area.", - "media_hash": "18b397a949ae770aa0bd6e209c7596a34d89f132cd6689c7dbfc0339", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Children and young people living in the most deprived communities were more than three times more likely to have a tooth extracted due to decay than those in more affluent areas, data also showed.", - "media_hash": "1efb659b9b59449365b8553749f078c6d0666417d2ef024d3ed6422b", - "sequence": 42, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Children and young people", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": { - "health": 3.548465 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "'If you give women who are at an increased risk of developing breast cancer a drug like tamoxifen, then you can significantly reduce their risk of developing the disease by up to 50 per cent.", - "media_hash": "89bd0fb5dadf7c0237ba05dd9bdf477b7cbd592df40e8875a7099e66", - "sequence": 19, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "health": 3.38007 - }, - "aapfactcheck": { - "health": 5.53285 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "At 12 trusts, more than half of cancer patients waited too long to start treatment after being referred by their GP or other doctor.", - "media_hash": "6759221a055320d925adb638ba2318b82f6fd538b35abfadb3c6c592", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "health": 3.3647299999999998 - }, - "aapfactcheck": { - "health": 5.395685 - }, - "pa-media": {}, - "maldita": { - "health": 3.3956850000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", - "media_hash": "04b6c31bcbf782e92cd7694f251c5e5f8bf0063fac1543da8a706c6d", - "sequence": 189, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465, - "senedd_election": 5.548465 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "It could explain the relatively low uptake among women for cancer screening - tests and checks that save thousands of lives each year.", - "media_hash": "b32e2e46d35f91af17896393a994c50ebe443ebfdde7ee7c7bfbd4fd", - "sequence": 46, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "Higher olive oil intake, specifically extra virgin olive oil which contains more health-promoting polyphenols (as not all olive oils are created equal), has been associated with lower rates of heart disease and early death.", - "media_hash": "66dceb41869de8b43500de8311461e32930caf4f3ed058fccfa9a075", - "sequence": 41, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.548465 - }, - "demo": { - "nutrition_": 5.66914, - "health": 5.66914 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.66914 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "It has long been suggested that sufferers may need to overhaul their lifestyle to keep the disease at bay, with approximately 90 per cent of cases being type 2 diabetes - which has been linked with obesity, lack of exercise and chronic stress.", - "media_hash": "2b06558e909d777ecddab929fb72dd60569ef02960e9fb4e5e5495eb", - "sequence": 12, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.53285 - }, - "demo": { - "health": 5.53285, - "nutrition_": 5.53285 - }, - "pa-media": { - "health": 3.53285 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.53285 - } - } - } -}, -{ - "title": "One Cuban family navigates daily life under a US oil...", - "publication_date": "2026-03-31T17:56:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695741/One-Cuban-family-navigates-daily-life-US-oil-embargo-deepening-economic-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Nearly 5 million people with chronic illnesses lack access to essential medications, while life-saving treatments like radiation treatments for cancer and dialysis for kidney disease have been interrupted for 16,000 and 2,800 patients, respectively.", - "media_hash": "0dfd1afa1a59e9618968898bd4f74e4be1a66dda2dc77f2af5c03479", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.517510000000001 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.5175099999999997 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "While in recent years revolutionary new drug treatments have increased the number of patients who beat breast cancer, it still kills more than 11,000 every year in the UK.", - "media_hash": "142f14dec2f1b4e9a00c9b52c649a03919653152219e84c55eb4eba6", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.51636 - }, - "demo": { - "health": 3.5163599999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "One person is diagnosed with cancer in the UK every 75 seconds following a surge in cases over the past decade.", - "media_hash": "a8afd07a0cb4d9783457cab8f22ac5a547981169cd3263d3cc7dd0bb", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.51636 - }, - "demo": { - "health": 3.3647299999999998 - }, - "pa-media": {}, - "maldita": { - "health": 2.5163599999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "More than a million people with heart disease are to be prescribed the weight loss jab Wegovy to prevent them from having heart attacks or strokes.", - "media_hash": "d4debc8b3ca3ef57f7e8513f9ebd4030aba52cc35e1f4cc238c6d0a6", - "sequence": 2, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.51636 - }, - "demo": { - "health": 5.51636, - "nutrition_": 5.51636 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.5163599999999997 - } - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "Long Covid is when the symptoms of Covid-19 last longer than 12 weeks, according to the NHS website.", - "media_hash": "4cd5b111518e6f6b0d66b8af078e3691b75838503837f9a2edde59be", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS website", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.47096 - }, - "demo": { - "health": 3.04609 - }, - "pa-media": {}, - "maldita": { - "health": 3.47096 - }, - "fullfact-policy": { - "climate_change": 3.47096 - } - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Research from the charity shows awareness of the five gynaecological cancers remains low in the UK, with stigma and embarrassment continuing to delay seeking medical advice, which results in thousands of women dying.", - "media_hash": "08752205cec9b360403770ba4548d9f75909e5a8ebcd73229e712d7c", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Lady Garden Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.47096 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", - "media_hash": "b66f8e066a2d657921e8cfd051521135d4c6db0be212be923b09ab4a", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "scottish_elections": 5.395685 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "However, only a small number of women - those considered to be at high-risk of developing breast cancer - are offered tamoxifen for this purpose on the NHS.", - "media_hash": "37c60f9c14ce8cddcdd7f73b937a6936cce354f31716065f2b900a5a", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "health": 2.970815 - }, - "aapfactcheck": { - "health": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "media_hash": "072291ede3a06f4feb70de0ec85762b5e6e0806b1067e5eef40ec03e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3647299999999998 - }, - "aapfactcheck": { - "health": 5.36473 - }, - "pa-media": {}, - "maldita": { - "health": 3.3956850000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The charity Bowel Cancer UK found that around a third of people who were eligible here, don't complete the test.", - "media_hash": "485f2b60b3ff0276238fd840caecde41f2133827461aea1696fb2000", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", - "media_hash": "0f9e88f058cac2940fbf6498ba2d157d67033836dc35e3a614ea5e55", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", - "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 5.36473 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.395685 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And also, you know, even those who have suspected disorders, they face incredibly long waiting lists of sometimes years, which is unthinkable for a say, six-year-old child with severe ADHD.", - "media_hash": "899a5d1dfeda3f78708c8bee2ba8b58acc4898f5c88d283d9f0742d8", - "sequence": 520, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.395685, - "clinical_health": 5.395685 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", - "media_hash": "ec50e4f7c10fe0e85b14de778170d48390915708b0f26a73cf29626d", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "scottish_elections": 5.395685 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "His various studies suggest that as few as one to four minutes of incidental vilpa each day may reduce your risk of heart attack, stroke and even certain cancers.", - "media_hash": "a406f5ebe41e92502500f3d3f2beacfbc7969e19263c8f8a3db6a9b2", - "sequence": 68, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Professor Emmanuel Stamatakis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "University of Sydney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "nutrition_": 3.5175099999999997, - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", - "media_hash": "6d42615c7f0605e2173116517852450ce41e72015a7ce881267c0745", - "sequence": 188, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685, - "senedd_election": 5.395685 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Those that had received CBA3656 excreted significantly higher levels of plastics in their feces than the control group, providing direct evidence that the bacterium could bind nanoplastics in a live intestine and help flush them out of the body.", - "media_hash": "b0a41fe0368fb6d8c854765f90b8b7f384ff93b4ef1fc0842f59346d", - "sequence": 30, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "politics_of_food": 2.970815, - "environment": 2.970815, - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", - "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "When tested in simulated intestinal fluid, a laboratory proxy for the human gut complete with bile salts, Leuconostoc mesenteroides CBA3656 adsorbed an impressive 57 percent of nanoplastics, far outpacing the others.", - "media_hash": "4e4b59942d28a68b4f15fa6f9c1ac904025328b9cfa781ee6c96cd52", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "politics_of_food": 2.970815, - "environment": 2.970815, - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "Crucially, the drug also reduced by 30 per cent the rate of major events such as heart attacks, strokes or death due to heart disease.", - "media_hash": "b62da406e63009f006a60ecc9d2156321c4b514d3fae890dc2e13489", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.395685 - }, - "demo": { - "nutrition_": 3.3647299999999998, - "health": 3.3647299999999998 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Last year, scientists found aspartame, which is found in products like Muller Light yoghurts, contributed to a worrying rise in diabetes risk - with those who consumed a cocktail of additives at a more than 10 per cent increased risk than those who steered clear of the artificial ingredients.", - "media_hash": "9e5f033376ec1514c2eeecfba3007b2c505b3382d15d1ff6acfc6ea4", - "sequence": 25, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.36473 - }, - "demo": { - "health": 5.36473, - "nutrition_": 5.36473 - }, - "pa-media": { - "health": 3.3647299999999998 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3647299999999998 - } - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "The UK's miserly rate of statutory sick pay - one of the lowest in the developed world - thus became a factor in the spread of Covid-19.", - "media_hash": "d0948645bf9777a18afb00c006293874a7a73eafeafb20f285bcc492", - "sequence": 7, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.36473 - }, - "demo": { - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", - "media_hash": "26d2d3297861afc92462f405ae7576948ffeeb57d1ac9ccc1296963e", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.36473, - "clinical_health": 5.36473 - }, - "demo": { - "health": 5.395685 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Also, it's the fourth most common cancer, but why are more than a third of people not taking up the offer of bowel cancer screening?", - "media_hash": "23bcb0f92549015f8434f032467311aa5bd3d828632f441bc14daf14", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.36473 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show women who develop breast cancer are significantly more likely to see it return later in life - at which point it is often harder to treat.", - "media_hash": "1100642d3524fc9236e5453fb29b300c24f68ee1499ee8abfc6c185c", - "sequence": 52, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.35651 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", - "media_hash": "b29551ca7be24314f5f1d43a494dde5f196f1c6ba4f5da9695917038", - "sequence": 10, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 5.35651, - "clinical_health": 5.35651 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Addressing the six pillars of lifestyle medicine including eating a plant-based diet, exercising regularly, and prioritising sleep could help reverse type 2 diabetes, experts said today.", - "media_hash": "682b1563b56b6a46f6aec160dbeb382f3b908fb0beb2c9017ac81d3a", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.350285 - }, - "demo": { - "health": 5.18304, - "nutrition_": 5.18304 - }, - "pa-media": { - "health": 3.3502850000000004 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3502850000000004 - } - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "More than a million people with heart disease will be prescribed a weight loss jab to prevent them from having heart attacks or strokes.", - "media_hash": "0179cff9cc754e91275519a74dabca009592dda570dee692a8cbf842", - "sequence": 1, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.34754 - }, - "demo": { - "nutrition_": 5.1947600000000005 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3475400000000004 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "The plastics seemed to give cancer cells a survival boost, making them more likely to spread and migrate to new sites.", - "media_hash": "7c9e6464e40b8e0e722ef844925a65d13a2454b76980d44ffa6453fb", - "sequence": 53, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.235835 - }, - "demo": { - "politics_of_food": 3.20488, - "environment": 3.20488, - "nutrition_": 3.20488, - "health": 3.20488 - }, - "pa-media": { - "health": 3.235835 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "However, it can also result in more serious issues, including asthma attacks and problems for those with respiratory or cardiovascular diseases, with the risk of respiratory infections also raised.", - "media_hash": "d582e8db63114ed540f91212a686436a45689e5301f925695a8f3c12", - "sequence": 12, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.235835 - }, - "demo": { - "environment": 3.235835, - "health": 3.235835 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "One 2024 study found that getting less than six hours of sleep a night could increase the risk of type 2 diabetes by 16 per cent - with the odds remaining high even when people ate well, suggesting a healthy diet cannot compensate for sleep deprivation.", - "media_hash": "5865327515dd262091a97b35791a61944c05ccdbfcd1838aa9598ff5", - "sequence": 21, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.226865 - }, - "demo": { - "health": 5.19591, - "nutrition_": 5.19591 - }, - "pa-media": { - "health": 3.226865 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.226865 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Cancer charities warn such delays slash survival chances, can make some treatments less effective and increase anxiety.", - "media_hash": "6e1a899f763ee4be2db6b34adf1d846bb2c07084a204b07776feb62f", - "sequence": 3, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.20488 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "maldita": { - "health": 3.20488 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "It turns out that my estrogen levels were really, really low and that I've probably been in perimenopause for a lot longer than I thought.", - "media_hash": "50efea43bb6049add081ec5fd9123790ca299dfc7058e1606d69881a", - "sequence": 133, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.197505 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.197505 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, a major study, soon to be published, found that a breast cancer diagnosis can cost women up to \u00a312,000 a year, in large part due to lost wages, childcare and travel costs.", - "media_hash": "777172461a91bbaac91070a1ec6d209fddf381713291ed984d71ce5e", - "sequence": 54, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "research", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.16655 - }, - "demo": { - "health": 3.16655 - }, - "aapfactcheck": { - "health": 5.16655 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "READ MORE: Walking for just 30 minutes could help ward off breast cancer", - "media_hash": "b61f266ec188de4673a039963c740d5bea460be85be5d41e752dd02b", - "sequence": 63, - "checkworthiness": { - "fullfact": { - "clinical_health": 5.158329999999999 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", - "media_hash": "a1c18b06030ee4071712635e52daa53d0bccbd26571f2da7fabfc184", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.123595, - "scottish_elections": 5.123595 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.123595 - } - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "Dr Conall Watson, consultant epidemiologist at UKHSA, said: \"RSV lung infection is less well known than Covid or flu but for older adults it puts thousands in hospital each year with a risk to life.", - "media_hash": "378133c0485fefce5e7d206ad72699a380316bc7810c0826e24341fe", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Health Minister Stephen Kinnock", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.0636849999999995, - "clinical_health": 5.0636849999999995 - }, - "demo": { - "health": 3.03273 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.063685 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Some people are at a greater genetic risk than others, with experts now suggesting that more of these 'at-risk' people are developing diabetes than before due to modern lifestyles.", - "media_hash": "f366384bfc38d6a4792d6875cea4293f53d91c88903d8fc401fd0cf2", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.0636849999999995 - }, - "demo": { - "health": 5.03273, - "nutrition_": 5.03273 - }, - "pa-media": { - "health": 3.063685 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.063685 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Now then, it's the fourth most common cancer and the second biggest killer, but a charity is warning too many people aren't taking a potentially life-saving screening for bowel cancer.", - "media_hash": "bdff98ee7d4572df98802d54006eeceb45c858882c0c9451e013069b", - "sequence": 670, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.0636849999999995 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Scientists have said Cicada can spread faster than other variants, and one of the UK's top microbiologists has revealed emerging evidence that it could spread most in children with no COVID immunity, increasing the risk of a new wave.", - "media_hash": "ab87547eb570b7f594413e035e07c2a4a70aba171e55a72e9511f3d5", - "sequence": 5, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "leading microbiologist", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.0521, - "clinical_health": 5.0521 - }, - "demo": { - "health": 3.0625600000000004 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.0521000000000003 - } - } - } -}, -{ - "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", - "publication_date": "2026-03-31T11:56:49", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", - "media_type": "news_article", - "sentence": { - "text": "When you have cancer the first time around you are on a curative pathway so the idea is that they're treating you to a point where you are cured.", - "media_hash": "37b5564c5477d5ebbe0e70273d5614dd83f348b8140543148613badb", - "sequence": 22, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.037655 - } - } - } -}, -{ - "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", - "publication_date": "2026-03-31T19:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", - "media_type": "news_article", - "sentence": { - "text": "It can make babies larger, and can also cause a premature birth and lead to Type 2 diabetes developing in the mother.", - "media_hash": "f5fcc50da4b38016372c4954772b2f82e843008278af14e8a34a2646", - "sequence": 24, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.037655, - "clinical_health": 5.037655 - }, - "demo": { - "health": 5.037655 - }, - "pa-media": { - "health": 3.037655 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.037655 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And everybody does it, you know, in the end of the day, so, you know, if we don't, if we don't check it, then, unfortunately, you risk yourself of maybe having bowel cancer and not getting treated early enough.", - "media_hash": "d25f7dcba9db0cb6f8680c93d095e7dd55e1536b6cd96e3fcba9c26e", - "sequence": 697, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "John Woodland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.037655 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "But but take ADHD. You know, if a child is acting up in class, unable to concentrate, um, you know, struggling to sort of sit still, then the support that that child needs would depend on whether or not they have ADHD. Is that not true, Dennis, of any condition? I mean, you know, if you want to get treated for your, let's take an obvious, if you want insulin for example, then you're probably going to have to get diagnosed with diabetes first. If you need chemotherapy, you're probably going to have to have a cancer diagnosis first. So it's not so much about incentives, that's just how the medical system works, isn't it? To get treatment or get support, you have to have a diagnosis.", - "media_hash": "c9c327f310f0369e2a8b1ca4701617ec7d3f164a38e9c4fe78a4eb4d", - "sequence": 489, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 5.037655, - "clinical_health": 5.037655 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Certain warning signs could mean you have early diabetes or liver disease (stock image) (Image: Getty)", - "media_hash": "1247ac39d99b2584752379e06da0255c18dd02d307ee2cb0b94ec3b5", - "sequence": 1, - "checkworthiness": { - "fullfact": { - "clinical_health": 5.037655 - }, - "demo": { - "health": 5.0067, - "nutrition_": 5.0067 - }, - "pa-media": { - "health": 3.15833 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "This is crucial because many types of breast cancer feed off oestrogen.", - "media_hash": "c0b17d02c4ecbb3f5cf38eb665e872098599185f5a90d5f544d8f0db", - "sequence": 30, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.037655 - }, - "demo": { - "health": 3.0067 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "Health experts are urging caution as the Cicada Covid variant spreads, with sore throat the most common symptom and advice to consult doctors about booster jabs", - "media_hash": "358bbf8e4618e1b0f3e83e590f88d79f9382d4c8aa3ee36fa879ecf2", - "sequence": 1, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Health experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.0220400000000005 - }, - "demo": { - "health": 5.0220400000000005 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.86926 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "A vaccine that is injected directly into tumours could boost survival rates from hard-to-treat cancers.", - "media_hash": "a12ac5d9bec5bb81f9728e69b43b34dd09a37dbed76d73bcd3009639", - "sequence": 1, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 5.0067 - }, - "demo": { - "health": 3.0067 - }, - "aapfactcheck": { - "health": 5.0067 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "Long Covid is when the symptoms of Covid-19 - extreme fatigue, shortness of breath, joint pain, aching muscles and brain fog - last longer than 12 weeks", - "media_hash": "d81274f34765adda6f0ab82bc7996e63bcfd76a1410a026014a93352", - "sequence": 1, - "checkworthiness": { - "fullfact": { - "clinical_health": 5.0067 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "maldita": { - "health": 3.15833 - }, - "fullfact-policy": { - "climate_change": 3.0067 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", - "media_hash": "e33546ce5c49873822230392e567021631711e43eb996092b3a8aea1", - "sequence": 195, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.981275, - "senedd_election": 4.981275 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "A record 106,810 cancer patients waited more than 62 days to start urgent treatment on the NHS last year, damning new analysis reveals.", - "media_hash": "b14c49240fdaed07e55e15743f0d4677e5183e80afa1ff0fc373985d", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.970815 - }, - "demo": { - "health": 3.3647299999999998 - }, - "pa-media": {}, - "maldita": { - "health": 2.981275 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And really, we, you know, the prevalence of psychiatric disorders in that population, for example, ADHD is significantly lower than what you would expect in England.", - "media_hash": "5e1918152e501199d31a501d96c67a39e90ade507ef656448fcb0bed", - "sequence": 504, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "clinical_health": 4.970815 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "And just 63.6 per cent of women invited for mammograms to screen for breast cancer in England attended last year (2024/25).", - "media_hash": "98a46dc967898d216c2d206a9249d845325be23d07437b2d88a03ea8", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in several European countries between Nov 2025 and Jan 2026 (Image: Getty)", - "media_hash": "567d76b63c20526019ec094883ce709ac24dcecc24eb1e99f7546680", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "clinical_health": 4.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", - "media_hash": "2611e759b67cbaf02fd2d0c95a28ddda0856ae9c65e556156ec4657b", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.970815, - "scottish_elections": 4.970815 - }, - "demo": { - "health": 5.16655 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.970815 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "She argues that, on this low tamoxifen dose, patients typically only suffer one hot flush a day, while also seeing their risk of cancer drastically cut.", - "media_hash": "f22f08b9a6751e9a0893e328994cc2113746f794d3d238c2448fb8db", - "sequence": 42, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.910905 - }, - "demo": { - "health": 2.910905 - }, - "aapfactcheck": { - "health": 4.910905 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "A study from February 2026 found that prolonged, low-level exposure to tiny plastic particles - just 20 nanometers wide - made colorectal cancer cells behave more aggressively.", - "media_hash": "eef3c4d431ac6132c4bcc529e60fab54165ddd3c43faf44c0c746c2c", - "sequence": 52, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.910905 - }, - "demo": { - "politics_of_food": 2.87995, - "environment": 2.87995, - "nutrition_": 2.87995, - "health": 2.87995 - }, - "pa-media": { - "health": 2.910905 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.910905 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Matt Sample, senior health policy manager at Cancer Research UK, said: 'Far too many people with cancer are still waiting longer than they should to begin treatment in England.", - "media_hash": "4980d08477226b5e038ff1ffa3397c92964ac52a0c29d379f4be5d63", - "sequence": 23, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Matt Sample", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.910905 - }, - "demo": { - "health": 4.865505 - }, - "aapfactcheck": { - "health": 4.638815 - }, - "pa-media": {}, - "maldita": { - "health": 2.910905 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", - "media_hash": "89ebe066db59c305dd3ec3faa21d71656b9184a78a9f6e2ba4cf78bf", - "sequence": 207, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.901365, - "senedd_election": 4.901365 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", - "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", - "sequence": 37, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.89529, - "scottish_elections": 4.89529, - "clinical_health": 4.89529 - }, - "demo": { - "health": 4.89644 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.89529 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", - "media_hash": "cc00c0f2de04f4d6ef1c659b298827e66ce518bce8e886676530ea52", - "sequence": 222, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.884875, - "senedd_election": 4.884875 - } - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "Health officials observed that the symptoms linked with Cicada are consistent with earlier versions of COVID-19.", - "media_hash": "aca1c8e357bde9b9654deaa61f46a988ffc64ca17d89a7a4eee39ae3", - "sequence": 10, - "claim_type": [ - "correlation", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.884875 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.037655 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "A new COVID strain sweeping the UK could disproportionately affect children (Image: Getty)", - "media_hash": "c6a672c98f998ba8debed05b9382e91acfb30997d64403282c9a4254", - "sequence": 1, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.88213, - "clinical_health": 4.88213 - }, - "demo": { - "health": 2.5323200000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.7305 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert, sparking controversy among doctors.", - "media_hash": "f4110f99ee45f1b0579df085466bf9666f9ebe60fbb9a092930fd96e", - "sequence": 3, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.87995 - }, - "demo": { - "health": 2.87995 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert - sparking controversy among doctors.", - "media_hash": "c32f7df8656efa146657a397099a871354ff706c5ed8d307763c3853", - "sequence": 3, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "leading expert", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.87995 - }, - "demo": { - "health": 2.74366 - }, - "aapfactcheck": { - "health": 4.87995 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", - "publication_date": "2026-03-31T11:56:49", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", - "media_type": "news_article", - "sentence": { - "text": "An ultrasound scan in July 2024 led to the 'earth-shattering' diagnosis of stage three breast cancer.", - "media_hash": "10b3539ff66131ebce96156ff2dfd82d53f499e411b39e1f9982477f", - "sequence": 7, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.8539200000000005 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "media_hash": "e13472feac79ae1fa233c9f453056b0b898415adcd989b25844f716c", - "sequence": 0, - "checkworthiness": { - "fullfact": { - "clinical_health": 4.8539200000000005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "The party said it would deliver this through 200 extra staffed radiotherapy machines, new radiotherapy centres to end 'radiotherapy deserts', and over 3,000 more cancer nurses to ensure everyone has a specialist supporting them.", - "media_hash": "b49ee62910766279e71f5c3fed464e32c71f8e4fa9d4334aa0a39629", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.834525 - }, - "demo": { - "health": 2.834525 - }, - "pa-media": {}, - "maldita": { - "health": 2.834525 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "In a bid to combat the increasing prevalence of type 2 diabetes, the NHS launched its soup and shake diet - which incorporates pillars of lifestyle medicine - which has now been shown to help thousands put their type 2 diabetes into remission.", - "media_hash": "abb79379298f05c9d1b704dc65ed1103974efb721ce73f32077ce1f5", - "sequence": 28, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.8334 - }, - "demo": { - "health": 4.98618, - "nutrition_": 4.98618 - }, - "pa-media": { - "health": 2.8334 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.8334 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "media_hash": "2a25a1faab38036d5d9763298dd6fdfa27319a06d678bc177ccb21b4", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.772635, - "scottish_elections": 4.772635 - }, - "demo": { - "health": 3.47096 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of new Covid strain symptoms including unusual signs", - "publication_date": "2026-03-31T14:58:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", - "media_type": "news_article", - "sentence": { - "text": "A new strain of Covid-19 has been detected in the UK amongst a further 22 countries across the world.", - "media_hash": "22fb21259f885a25737603d2ada7f32197bd06db6dcb4289410a522a", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.772635 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "You may be offered a COVID-19 vaccine in spring if you are aged 75 or over, are aged six months to 74 years and have a weakened immune system because of a health condition or treatment, or live in a care home for older adults.", - "media_hash": "dc85b5374a6904f50db9d1e27bf5f5711f59bfe0d5db0e7a67222cd2", - "sequence": 34, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.770545, - "clinical_health": 4.770545 - }, - "demo": { - "health": 4.345675 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.770545 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", - "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", - "sequence": 29, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.761455, - "scottish_elections": 4.761455, - "clinical_health": 4.761455 - }, - "demo": { - "health": 4.914235 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.914235 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "But it works less well in cancer that has spread - and, as it targets both healthy and cancerous cells, it causes side-effects from nausea to hair loss and heart palpitations.", - "media_hash": "dca331482923f76408fb0eb1fe167e5120dbe6a11f6bc1b3dc484afe", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.751055 - }, - "demo": { - "health": 4.87173 - }, - "aapfactcheck": { - "health": 4.751055 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "She says the major intervention is needed to combat the rising number of young women developing breast cancer.", - "media_hash": "8d1a2dd3edd0cafc9cfff084ada74e33bc6a72dfef1b3fa7384de176", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.751055 - }, - "demo": { - "health": 2.751055 - }, - "aapfactcheck": { - "health": 4.598275 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "I'm still active, you know, um, fit and, um, you know, nothing to worry about, if you like, none of the symptoms which, um, you look out for, if you like, but, um, you know, it just goes to prove, you know, because, you know, when you read up on bowel cancer, it does state, you know, some articles I've read where you can take up to 10 years to get symptoms and by then, it could be further, further down the track in terms of the stages.", - "media_hash": "924cee8af5bac1e7801bcf7411ca03e4ff869f21ae59aade8adf8aba", - "sequence": 702, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "John Woodland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.743765 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "It has long been recommended that women at moderate to high risk of breast cancer should be offered preventive treatments such as tamoxifen", - "media_hash": "eb69a007aafb5ee090f5dfada9ccfda4fb26a7e6b82f7c3ef854dbe2", - "sequence": 23, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "They said: \"Sunburn increases your risk of skin cancer. Sunburn does not just happen on holiday. You can burn in the UK, even when it's cloudy.\"", - "media_hash": "deab67d48d2129ec7588d740e81f592bc3a1b561a29afcbc4dc40206", - "sequence": 30, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "spokesperson for the health service", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.73546 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Type 2 diabetes occurs when the body doesn't make enough of the hormone insulin, or the insulin it makes doesn't work properly.", - "media_hash": "135231fed5b21aadc89b7e61ba054072ef1ce1d77dfdad5f0857270f", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - }, - "demo": { - "health": 4.67355, - "nutrition_": 4.67355 - }, - "pa-media": { - "health": 2.704505 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.73546 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "This is because tamoxifen has a number of side-effects, including hot flushes and night sweats, mood changes and fatigue.", - "media_hash": "df0a1e94a8c8ca6c39b54b6846b19f3a3847411aa9f414a4be3addaa", - "sequence": 34, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - }, - "demo": { - "health": 2.5528750000000002 - }, - "aapfactcheck": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of new Covid strain symptoms including unusual signs", - "publication_date": "2026-03-31T14:58:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", - "media_type": "news_article", - "sentence": { - "text": "Common symptoms are similar to most Covid-19 cases with some being resolved with rest, hydration, and over-the-counter medications.", - "media_hash": "9a3fe6bb051f115dfc888d5f257f38e5a5c2d36e3812053b471b2700", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - } - } - } -}, -{ - "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", - "publication_date": "2026-03-31T09:30:46", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", - "media_type": "news_article", - "sentence": { - "text": "\"Springtime can bring a range of seasonal health concerns, including hay fever, allergies and asthma flare-ups due to increased pollen levels.", - "media_hash": "e9a8bc273c50418a6bbc4ec8413bc3173e22c09da3e72e6228fe2d09", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Graeme Bryson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.73546 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "In tests on mice with bowel cancer, the vaccine was 100 per cent effective at completely eradicating tumours.", - "media_hash": "6ae0a72202f3fff38135c4aef5738b8dd49253b6cce20aa973f8068c", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.730845 - }, - "demo": { - "health": 2.5326649999999997 - }, - "aapfactcheck": { - "health": 4.532665 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", - "media_hash": "f10812f879772d722a90c5753954ada30817cb9cb276769d88c40ae6", - "sequence": 209, - "claim_type": [ - "personal", - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.722555, - "senedd_election": 4.722555 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "So that's that's the conclusion of this review, that too many children and young adults are being incentivized to get diagnosed with conditions like ADHD and autism and that there is an ongoing, this is the phrase, medicalization of distress. And I slight different points there. They're slightly kind of different conversations. But I think we're going to try and do both together because I want your thoughts fundamentally on whether you think that's right. And you might want to comment specifically on the idea that people are being overly incentivized to get diagnosed as neurodivergent. You might want to comment on the suggestion that there is a medicalization of distress that we tell too many people they're mentally ill when actually they're just sad or a bit stressed. Or you might want to comment on both. Either way, would love to hear your thoughts. Are those conclusions right? Are too many people being overly incentivized to get diagnosed with ADHD and autism? And is it true to say that there is a medicalization of normal day-to-day distress? That's been the argument for politicians for quite some time. This review has to some extent, at least, endorsed that view. Do you agree with it? Do you think it's right? 03456060973 is the number for your thoughts. You can text me on 8450, or send a comment to LBC. Before I come to your calls, let's talk about it with Dennis O'Grady, a professor of child psychiatry at Queen Mary University in London. Professor, good to have you with us. Um, let's start, shall we, with the the incentive suggestion that children and young adults are being incentivized to get diagnosed with ADHD and autism. What would be the incentive to get a diagnosis?", - "media_hash": "fbfcba0e7d2b56683fa3d63ba627c3691293ad75beb542df42f3fef8", - "sequence": 487, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.7201, - "clinical_health": 4.7201 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "It will target people with conditions such as chronic obstructive pulmonary disease (COPD), asthma, and cardiovascular disease, which can be worsened by cold and damp living conditions.", - "media_hash": "e439826e75fb38f879ab154e3abee8b56dd9707d4f1b649cd88265ff", - "sequence": 13, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.716055 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "The study, involving patients with type 1 and type 2 diabetes, found almost all of the participants found to have heart failure had preserved ejection fraction, which can be difficult to detect without dedicated testing.", - "media_hash": "a9919bc621202fdddd61b5b5cdaf1307db3e6c4f0babb2a5ebdd32f0", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.712725 - } - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "It was further noted that this advice applies particularly to the six most vulnerable groups: minors, elderly people, those with chronic respiratory or cardiac conditions, like asthma or bronchitis, pregnant women, outdoor workers, and finally, smokers.", - "media_hash": "539437489ba1afdafc43dfcd346218246e03f54f5a35bedc53b76f44", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.712725 - }, - "demo": { - "environment": 2.712725, - "health": 2.712725 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Surveys have shown that only 2 per cent of women who receive regular breast cancer screening - meaning they are scanned for the disease every few years - have heard of tamoxifen.", - "media_hash": "ece5ded9a21795b7477bab021a8a84fefe09f639d89fc312ddd6f8e0", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.698725 - }, - "demo": { - "health": 4.970815 - }, - "aapfactcheck": { - "health": 4.698725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "Despite this spread, it has not led to a notable rise in overall Covid infection rates compared with previous years.", - "media_hash": "ead349f1d19c2f819064e8662357196abdf2a66e11d0fe6b41367eb8", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.698725 - }, - "demo": { - "health": 2.6987249999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "That's because the colon believes its primary job is absorbing water - and it does so astonishingly well, absorbing up to five litres of fluid per day, meaning there's only so much that drinking extra water can counteract this action.", - "media_hash": "3dff21c989d16d20adf70372d86fec8385771ccd384210d2c56faaaf", - "sequence": 41, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.698725 - }, - "demo": { - "nutrition_": 2.72968, - "health": 2.72968 - }, - "pa-media": { - "health": 2.72968 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anyone who washes clothes at 60C urged to think again this spring", - "publication_date": "2026-03-31T02:47:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", - "media_type": "news_article", - "sentence": { - "text": "One of the key concerns is norovirus, which can survive on clothing and fabrics for up to a month in almost any condition.", - "media_hash": "6c7ae66ec47eb6c33251ac3f56581c8e2039554b6790eca22b81ad4a", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Hotpoint", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show that, via this mechanism, drugs like tamoxifen can stop breast cancer from spreading and - in combination with other treatments like chemo and surgery - can cure patients.", - "media_hash": "8a9c13121fe159778c3e2cc70d52e6079999e406ef225092ca1f7e0f", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "aapfactcheck": { - "health": 4.67355 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits 'unacceptable \u0301, says Cancer Research", - "media_hash": "6eaf1f179ea47b820cd1bbeca3dba64b37b0aafee71d084b09644b65", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.67355, - "clinical_health": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", - "media_hash": "87120b7a50ec002539fc16fd9a68fc8443e41c2b9e9999fa88488f1c", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.67355, - "clinical_health": 4.67355 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Complications during breast cancer treatment are also common.", - "media_hash": "4cc940191296ea71ca367eae2eaaf649bdc4b5c228f0e439f33d8606", - "sequence": 53, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "Although the acute phase of the pandemic has passed, COVID-19 continues to pose a considerable health burden.", - "media_hash": "00209ed8c236f2f2bb2fb3e60de55ca46fa581c41d0fc891a9fdb28f", - "sequence": 36, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 4.67355 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "The elderly and immunosuppressed are particularly vulnerable to Covid(Image: Getty Images)", - "media_hash": "02a1bcaac7c64f49fc7ad0920e88f14daa8e29d0cb2c81b6fb6f287c", - "sequence": 32, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits 'unacceptable \u0301 says Cancer Research", - "media_hash": "b2a5a16576d84cce39883c1c04ce9838a53c4668a0e31b61278a3f20", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355, - "scottish_elections": 4.67355 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Other concerning research has suggested that artificial sweeteners added to supposedly 'healthier' fizzy drinks like Diet Coke could trigger type 2 diabetes.", - "media_hash": "a8cba25d0c37b148c02791d8edfc1432c4d69c1343256b53fd97a72f", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 4.52192, - "nutrition_": 4.52192 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "While the pandemic's most severe phase has ended, COVID-19 remains a significant health concern.", - "media_hash": "faf8f03b0283b0d49512dd4b3af893cc01157564e2faa5145498f2a6", - "sequence": 36, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 4.67355 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Others argue that lifestyle changes - like losing excess weight, exercising regularly, and limiting smoking - are effective at lowering the risk of breast cancer, without any of the potential complications of medicines like tamoxifen.", - "media_hash": "d1516345f76738ed908bb528509d8f589685f67955f99656da13a71e", - "sequence": 50, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "lifestyle changes", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.67355 - }, - "demo": { - "health": 4.67355 - }, - "aapfactcheck": { - "health": 4.67355 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Rebekah Law, a breast cancer surgeon at the prestigious Royal Marsden hospital, believes the 45p pill, tamoxifen, should be offered 'in the same way as statins' - the safe and highly effective daily tablets taken by millions to cut their risk of deadly heart disease.", - "media_hash": "a02fd3ad9c421112bceb781befbc7a4dae47dde45f3842fcc25a86e7", - "sequence": 4, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.638815 - }, - "demo": { - "health": 2.502525 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place, including the fact that those who develop it are more likely to see it return later in life, by which point it often harder to treat.", - "media_hash": "a481dc594417db07d9d919981e91eb87a9a1eb08df8ff12b099e8580", - "sequence": 51, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.636725 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.059075 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Significantly, Dr Law argues that any women - regardless of family history or genetics - who is concerned about developing breast cancer should be allowed to request a tamoxifen prescription.", - "media_hash": "f33f9bd039811e418150cbbec1f995d85816f24dc081fdff04ec29ed", - "sequence": 8, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.634255 - }, - "demo": { - "health": 2.6033 - }, - "aapfactcheck": { - "health": 4.209385 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "But in the past ten to 15 years, treatment of some cancers has been transformed by immunotherapy drugs.", - "media_hash": "d1d316e01b1e07b7e5b908de201c061e77dc16f50c93e0da27510a29", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.62122 - }, - "demo": { - "health": 2.8933099999999996 - }, - "aapfactcheck": { - "health": 4.62122 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Cicada's mutations to the spike protein mean that our antibodies take longer to recognise it as the invading Covid-19 virus.", - "media_hash": "525884ad168f1935905d33cdaa088d757afc880829c27ef7538fca8a", - "sequence": 28, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.612785 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6127849999999997 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And there is no shortage of questionnaires and no shortage of influences who will tell you that you have ADHD and you should be proud of it.", - "media_hash": "905062176cab572544256126d5ae872f2d3d89ad9ef2d530be46bc7b", - "sequence": 535, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.612785, - "clinical_health": 4.612785 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", - "media_hash": "7dae7b1b15ddc96c46f5b1aa697bb9261b8fe6a6822e45ecd9017144", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.5769, - "clinical_health": 4.5769 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Experts also point out that, today, a breast cancer diagnosis is not a death sentence.", - "media_hash": "23d2637e97d6c060fc06033e5dc7c914c8f055044348490953030e0a", - "sequence": 47, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.55922 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "This new generation of medicines - including pembrolizumab (used to treat advanced skin, lung, bladder, breast and bowel cancers) and nivolumab (for tumours of the kidneys, head and neck) - work by taking the brakes off the immune system, so it can attack and destroy rogue, cancerous cells.", - "media_hash": "482a4f59d171d90bb558e143ab1065ab491f2b72cb6a70c5c90e00f1", - "sequence": 11, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "It needs to be tight to produce clear images, which are vital to detecting cancer, particularly early-stage cancers.", - "media_hash": "3cb4b06af4b68244d5093639749a4253f8187c94c418ecb695f2aeff", - "sequence": 76, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "This can include conditions like sunburn or long-lasting issues like wrinkles, fine lines, leathery skin and pre-cancerous patches.", - "media_hash": "7adf92d596c4d961ad2b8d2c43da2f7427ac75693cc2f6bf2ffd1fa9", - "sequence": 19, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "Dr Edward Piper, medical director at AstraZeneca UK, said: \"Delayed diagnosis and treatment of heart failure in people with type 2 diabetes contributes to poor long-term outcomes.", - "media_hash": "e27677f9cd397b52222bb5eef789d284026fe93d38a97065dbea5b7a", - "sequence": 20, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "AstraZeneca UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Edward Piper", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Currently, tamoxifen is mainly used on the NHS to treat women who already have breast cancer - or to prevent the disease from returning.", - "media_hash": "211b998194d090768c609cfdd3e4224c34abf59ae2f8658825269962", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.52077 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Influencers are telling their audiences that injectable peptides are the \"glow up potion\" they need for everything from clearing up hormonal acne, thickening hair, relieving back pain and even treating chronic UTIs.", - "media_hash": "1364fb666fb6512c9273c04215cb2441997b9f855d181307a578b791", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Influencers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.799985 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Terry's nails can also indicate other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", - "media_hash": "a88cff4011e787812f74a6214f7d4d4322cc482b8077bd4f8f505c02", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875, - "nutrition_": 4.552875 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Terry's nails can also signal other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", - "media_hash": "928b9def10837496cbde7d7419967b3444fdb4c6d88f156d34e89efe", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "\"There's a tendency to instantly think of expensive IV drips and elite supplements when longevity is mentioned, but fibre is actually proven to balance blood sugar, help manage cholesterol, support healthy weight and even reduce the risk of diseases like type 2 diabetes, heart disease and certain cancers,\" says nutritionist and author Emma Bardwell, who just published a bible on the topic, The Fibre Effect.", - "media_hash": "6d7e8cf167f76f8c92c40c72f92815de00880e2d5548edae1f9d777f", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Emma Bardwell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "nutrition_": 4.52192, - "health": 4.52192 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.552875 - } - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "This can result in ailments such as sunburn, as well as enduring problems like wrinkles, fine lines, weathered skin, and precancerous spots.", - "media_hash": "1e84d9543f253fe4af154eb63127b69c62f9c4422cbeeef7dc3eb584", - "sequence": 20, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", - "media_hash": "76ec4a223ed0db2829b87cfa360ee8c0111f354c2ac98afde052399a", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.552875, - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.400095 - } - } - } -}, -{ - "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", - "publication_date": "2026-03-31T19:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", - "media_type": "news_article", - "sentence": { - "text": "gestational diabetes is a temporary form of high blood sugar that can develop during pregnancy when the hormones block insulin function.", - "media_hash": "00df4fa13c1c9e7e95bf7aa77617a0e02bcbb4a2e8aa4f88064cafdb", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.552875, - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Research has linked nanoplastics to cancer, though the International Agency for Research on Cancer (IARC) has not yet classified them as carcinogens.", - "media_hash": "2e296da0f96f6256dd7018c42a689d3949e89edfe667bb7678876c05", - "sequence": 51, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "politics_of_food": 2.5528750000000002, - "environment": 2.5528750000000002, - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "These peptides, intended for research purposes (as some influencers do point out) and not approved for human use, are being increasingly sold through unregulated online channels.", - "media_hash": "64bcd50713d9ca2f6c0360e4535b85c40b9423613eb9917b51914d67", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Whilst further research is needed to understand the link between a lack of sleep and diabetes, the researchers highlighted other studies that have linked sleep deprivation to high blood pressure, heart disease and stroke.", - "media_hash": "c8ac1d5279f679900f8ec8681992c2ea5448663f4dcf8252d05cc3b9", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.52192, - "nutrition_": 4.52192 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The treatment has had a major impact in cancers such as malignant melanoma, an often lethal form of skin cancer, for which there used to be little treatment.", - "media_hash": "1e9c33929269b7ca9e579abadb9a1dd2c4922fd6a965104e92664862", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The major change coming to food in California grocery stores under new law", - "publication_date": "2026-03-31T15:06:39", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694623/major-change-california-certified-ultra-processed.html", - "media_type": "news_article", - "sentence": { - "text": "A growing body of research has linked them to chronic diseases, including obesity, cancer, heart disease, type 2 diabetes and metabolic problems.", - "media_hash": "b89fa23ee22223940bb86dcf42bd3ac3ca73b89e70f4d133b9e9ed58", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.52192 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Padmaja Pater, president of the ALCM, said: 'Too often, chronic disease like type 2 diabetes is managed as a condition that patients must live with indefinitely.", - "media_hash": "6fd750a73bc8ca2193d19e311626397aad736adaf77842b9f89de853", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "ALCM", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.128005, - "nutrition_": 4.128005 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Children get infections all the time but this might be something to do with the fact that they have never been exposed to Covid vaccines.", - "media_hash": "c666efd2f3bad745c21161845a35768f2a0baf8708c07ec5a44a8ce7", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Brits urged to change the way they wash clothes as 60C may not be safe", - "publication_date": "2026-03-31T02:47:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", - "media_type": "news_article", - "sentence": { - "text": "One of the main concerns is norovirus, which can remain on clothing and fabrics for up to a month in virtually any conditions.", - "media_hash": "204ec55aaee96bb825a57f329baea3e4ba3be1598cf4c3bc0bbe84ca", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iconic San Diego beaches that sit close to Tijuana closed over dangerous levels of SEWAGE in its waters", - "publication_date": "2026-03-31T14:27:44", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694455/san-diego-beach-tijuana-coronado-sewage.html", - "media_type": "news_article", - "sentence": { - "text": "Hydrogen sulfide can exacerbate existing conditions, including asthma and chronic pulmonary disease.", - "media_hash": "9f0c0612b173022bd7914befcef2089b88b5afa04f80f0758356c098", - "sequence": 27, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "environment": 2.6735499999999996 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Bonning says injectable tanning peptides, which have also been spruiked online, carry \"... a risk of it causing skin cancers, and there are also reports of significant kidney dysfunction and swelling of the brain after taking that kind of injectable\".", - "media_hash": "d214bcf259c0fd0940249dc63b8466532ad676c8533c61072b8a5de4", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Although cancer cells do already produce antigens, they often give off a weak signal, helping the tumour to escape the full force of the immune system.", - "media_hash": "aaeb6194f6a8ce75abf8baacb820bc145a32383f876003ce693b034c", - "sequence": 28, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5528750000000002 - }, - "aapfactcheck": { - "health": 4.128005 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "He said young children could have early anorexia or avoidant/restrictive food intake disorder (Arfid), characterised by limiting food type or quantity.", - "media_hash": "e316564c520f4935915e53e0998f7d90d4ba2ac7f6924ccd609a87a4", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Lee Hudson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875, - "leo_s_topic": 4.552875 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "But Ms Yau said: 'Heart disease is characterized by high blood pressure, a weak or irregular heartbeat, and red streaks of haemorrhage.", - "media_hash": "785b97c103eddfc83ae5dd517819d797c9d8473ea7b6575f9f271ca2", - "sequence": 98, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Marion Yau", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Heart disease", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104414, - "score": 0.19310000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.552875 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", - "media_hash": "579099884d4c68a64ea4805872cc92ae909f47d701aec1d53178d5d5", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 45085, - "score": 0.06908734046502547 - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.552875, - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (\u03bcg/g), which England and Wales have since adopted.", - "media_hash": "c41dda165efcd05ca3f64ffc2790f54ac233f79e2d2f7d3931313602", - "sequence": 45, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "\"Analysis has shown those aged 75 to 79 already getting the vaccine are much less likely to be hospitalised.", - "media_hash": "e4184d47d8c64e4e8b497467496a97399cafad48f48424c97b0f9cd9", - "sequence": 19, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Health Minister Stephen Kinnock", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 3.5163600000000006 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.5163599999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations, according to research.", - "media_hash": "89aad31070f38e288b3bb8fd141248d2065e7fcb04084033f885ef8a", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", - "media_hash": "75bd15cfe91e0e65733c558e2de5758cf08ff58f3094468f3aee3276", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945, - "scottish_elections": 4.545945 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "However, crucially, they have not yet detected an overall increase in COVID cases there compared to previous years.", - "media_hash": "da21979541b94ef81f0c40955f0b584cecabba9d123ab928f7cabd40", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centres for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", - "media_hash": "495b0535e398cdee5acd61ae8d7aef1ec7fd9463a572e5f7e7cb441b", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", - "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", - "media_hash": "5e14b797cb604f60f17ac178f6ca87ee0363656ecceb406b0e31e197", - "sequence": 203, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Scientists reported in the journal Bioresource Technology that CBA3656 absorbed 57 percent of nanoplastics in intestinal fluid to mimic the human gut, outperforming other tested strains by as much as 19-fold.", - "media_hash": "8b40ae139202ea49d125e45005a0e84c224e347d10d9072b7306a8e7", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Se Hee Lee", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "World Institute of Kimchi", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945 - }, - "demo": { - "politics_of_food": 2.5459449999999997, - "environment": 2.5459449999999997, - "nutrition_": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "However, crucially, they have not yet detected an overall increase in Covid cases there compared to previous years.", - "media_hash": "3d9871f8923409fe7c7b2d2b2c4a09d41684065998c74beafbe98ee1", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "Analysis published last March by UK Health Security Agency (UKHSA) showed there were 30% fewer hospital admissions among 75 to 79-year-olds as a result of the RSV vaccine.", - "media_hash": "99f417d1af982d9de7fb1c4ec13149e33860633d97bdf6b217d3c56e", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.545945 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The 65.5% uptake figure for Wales highlights that there's still an opportunity for more people to take part in bowel cancer screening.", - "media_hash": "7f9c19de4275ae3b7583b1420aa2834c87752f5c458a3f45b03466b2", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "The study, which began more than three years ago, involved more than 700 people with diabetes from the two health board areas who had at least one other risk factor for heart failure.", - "media_hash": "03ba4c34a3dbff9ecf1dbfaa760a4ae72b65833511357757aa413636", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545945 - } - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Their role is to amplify the garden's message of confronting the silence that costs the lives of 21 women a day and spark conversations with visitors about women's gynaecological health to reduce the stigma and silence about the deadly cancers.", - "media_hash": "4f0058f773625a777f2cc42c98e45cf6cfdb2e564ab1f3a87425812e", - "sequence": 4, - "claim_type": [ - "correlation", - "opinion", - "support" - ], - "claimer": [ - { - "name": "Lady Garden Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.545585 - } - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "Experts from Cancer Research UK and the British Association of Dermatologists recommend adopting sun safety measures between March and October.", - "media_hash": "0405d41b251fbece1d139dbbb22c83a9e1d0f8e957648e1c14a8731d", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Dermatologists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.53726 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.53726 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "media_hash": "640c75d18782c257ba6a671d212455cbf8605fad8538f5d9a16c2def", - "sequence": 0, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.53232, - "clinical_health": 4.53232 - }, - "demo": { - "health": 2.5323200000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5323200000000003 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", - "media_hash": "7321467dbae8b34f32354179b19b9f5b50f626fb02543aabc4e3c615", - "sequence": 213, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52192, - "senedd_election": 4.52192 - } - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Health officials are monitoring symptoms linked to Covid-19 as a new 'cicada' variant spreads amid warnings it could disproportionately affect kids", - "media_hash": "45c7a8e69fb38c680bec2dd6f9d4a218f74e3616299b1bd18e54c78d", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52192 - }, - "demo": { - "health": 4.52192 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.52192 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Dr says new Covid Cicada variant 'detected in UK' could 'avoid immune system' - symptoms", - "media_hash": "0c68a972eac5d4672e84495f6aec98508923dc1fc1c4dc6b063a3101", - "sequence": 9, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52077 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5207699999999997 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "The National Health Service (NHS) identifies the following as potential symptoms of COVID-19:", - "media_hash": "96ffaca44d7623e88e5bc9324531872ca2f1835b99cd1fa7dd295a55", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52077 - }, - "demo": { - "health": 4.0959 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Health officials have warned of red flag symptoms of a new Covid-19 variant set to sweep Britain.", - "media_hash": "5f61a8c422f17a16d05434849300498cd23cbe22b53fcbe0c254a79f", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Health officials", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.52077 - }, - "demo": { - "health": 4.52077 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.52077 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Law concedes that, since, historically, tamoxifen studies have only involved patients over the age of 30, there is currently no data on how effective it is at preventing cancer in younger people.", - "media_hash": "3c4dc7cec29481f7b493f745c1c9da684c2302122cf83a4407c6e5fc", - "sequence": 43, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.498455 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "It was the second time Woods has been arrested for a DUI not as a result of the influence of alcohol.", - "media_hash": "e12f73d9b24b0ae2aac27c996084c6343d929e46a8424edf85a00ed9", - "sequence": 35, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.486035 - }, - "demo": { - "health": 2.712725 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "Ireland is \"no better prepared\" for a pandemic than it was six years ago, a panel looking at the country's response to Covid-19 has heard.", - "media_hash": "12ebbadc3fdf0f4a43591a224749ce372cfe95bbfcc874df9916edcc", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Ireland's Covid-19 Evaluation Panel", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "NHS sonographers who carry out scans at 12 and 20 weeks of pregnancy and help diagnose cancers, warn that one in four job posts are currently vacant across England at a time when the NHS is already under acute stress.", - "media_hash": "c1001be9a578e8e38bf1b73d01aa90c90992e27035a9c99b3b729682", - "sequence": 343, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Society of Radiographers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.486035 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Unlike statins, which have to be taken for life, Dr Law argues that patients only need to be on tamoxifen for five years in order to lower their risk of breast cancer for the following 20 years.", - "media_hash": "c057689de2e86f933ea1622ca2a428bb3f5a0be4db8a9b31fcce6b73", - "sequence": 9, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.483945 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", - "media_hash": "038f920dcca94e97602d994e708b20f84cf4eb9d35cd41338d62ce52", - "sequence": 8, - "checkworthiness": { - "fullfact": { - "clinical_health": 4.460005, - "scottish_elections": 4.460005 - }, - "demo": { - "health": 3.02204 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How one family's bipolar disorder experience led to...", - "publication_date": "2026-03-31T04:06:51", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", - "media_type": "news_article", - "sentence": { - "text": "\"It \u0301s much more like a wartime economy.\"", - "media_hash": "724c7c97ac63519c78526d15fc06ed6ecb2c35720b73abc91d178382", - "sequence": 45, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.45262 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And yet, it seems that that vast numbers of young people are doing exactly that with conditions like autism and others.", - "media_hash": "0edbb53487d30b058dfa3c2894d884ac7c02394a0c79f07d2df0bb43", - "sequence": 532, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.440635, - "clinical_health": 4.440635 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", - "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", - "sequence": 42, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.429455, - "scottish_elections": 4.429455, - "clinical_health": 4.429455 - }, - "demo": { - "health": 4.094984999999999 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.429455 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "'Tamoxifen should be offered in the same way as statins to all women at risk of breast cancer ,' she says.", - "media_hash": "1d0af0ed83134bedf033a22367fa2775a192a9dab7a216f48add742f", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.4165849999999995 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.4165849999999995 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", - "media_hash": "06b97deea0fcf270783faff33af386a35a7393efaf7c471d5f1b7536", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.409655, - "leo_s_topic": 4.409655, - "health": 4.409655 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "This five-minute procedure is used to detect human papillomavirus, or HPV, which can cause cell changes in the cervix that may develop into cancer - it's offered to women aged 25 to 64 in the UK.", - "media_hash": "df3630248fdd50b4787bcaa77f077ffd62cf6450b48dfe85105f5237", - "sequence": 108, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.40644 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "The soap star, who played Liz McDonald on the ITV programme on and off for 30 years, revealed earlier this year that she had been diagnosed with the early stages of breast cancer and underwent her first bout of surgery shortly afterwards.", - "media_hash": "0b7fe64897d7507fd6dfe29013a5e4e00a97be6ca930ca883c09fa58", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "In many cases, Terry's nails suggest a chronic condition, such as liver failure or diabetes.", - "media_hash": "abda2723953674ca5198332da5223520b96fe47e18af9b947c132812", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 4.400095, - "nutrition_": 4.400095 - }, - "pa-media": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'I caught meningitis on Tenerife holiday - I would've died if I got on flight'", - "publication_date": "2026-03-31T07:24:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/i-caught-meningitis-tenerife-holiday-36946555", - "media_type": "news_article", - "sentence": { - "text": "Jade also plans on making a donation to Tommy's Journey, a fundraiser for a five-year-old boy from Sale suffering from an aggressive form of cancer.", - "media_hash": "e16417bf0e6aae78e332d4252e8c6382e415cf8df234af7e3e60b647", - "sequence": 27, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "measles": 0.0 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "In many cases, Terry's nails indicate a chronic condition, such as liver failure or diabetes.", - "media_hash": "b49d356d6bda79f98e228eb1923ec76efcbbda24452269a62259920c", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 4.400095 - }, - "pa-media": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:59:00+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/Daily_Record/status/2038903878490452388", - "media_type": "social_post", - "sentence": { - "text": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "media_hash": "4cf6de275f959c74563473fbdfb59f24c945580dbadc697442e8d8d6", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "health experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "The government published its National Cancer Plan in February this year, promising to embrace a robotic revolution to boost survival rates.", - "media_hash": "6ee28ed7e82a76a8c93be2bcfca523e33789c49ffd82b4ecdf63d849", - "sequence": 19, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.400095 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "This patient would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", - "media_hash": "177ad0d1b2af1026dde4d8f0089bd929a5e21c3502de97db55c0f6f3", - "sequence": 40, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.400095 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "This 'patient zero' would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", - "media_hash": "ee6a9aaff681cadbe524257c766e41c05ae113a913cdf5f53ac8b35d", - "sequence": 14, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.400095, - "clinical_health": 4.400095 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "\"And the evidence is clear that the RSV vaccine offered to pregnant women is providing excellent protection to babies. When you are offered the vaccine, don't hesitate.\"", - "media_hash": "28032e6d2ceeee653de8640c51252ab7c499acdb35ebb611629821c3", - "sequence": 20, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Health Minister Stephen Kinnock", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 39499, - "score": 0.5116 - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.38448, - "clinical_health": 4.38448 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "More than a million people with heart disease are set to be offered weight-loss injections on the NHS in a major shift in how the condition is treated.", - "media_hash": "02dabaf61f79bd217821d190381fc1f460e80836e7d2910f2dcd696b", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.377125 - }, - "demo": { - "nutrition_": 3.19476 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer.", - "media_hash": "872e531b2708231aa70d6b59ed5855be5a66537c2f03e3d87e297813", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.36914 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "publication_date": "2026-03-31T10:31:24", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", - "media_type": "news_article", - "sentence": { - "text": "Kimberley said: \"So just to make this clear, had you not been offered that trial that day, you potentially would not have found out that you had breast cancer for maybe another 10 years. Which is terrifying, but also amazing. Like, this is what this is all about.\"", - "media_hash": "3e3ba83149d3379d109b15f750c1cf9a67a77e755ca313df25ed8ca3", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kimberley Walsh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.36914 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Finnian Garbutt, 28, shares heartbreaking message as he enters 'last stages of life'", - "publication_date": "2026-03-31T17:10:48", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/finnian-garbutt-28-shares-heartbreaking-36950963", - "media_type": "news_article", - "sentence": { - "text": "The actor, 28, who is best known for playing Ryan Power on the BBC drama series, is currently battling Stage 3 skin cancer.", - "media_hash": "ca22978bd841b51471e0f1b41be340c3cce19f90702d4a5101b9f8b6", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.36914 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "The Covid cicada variant is sweeping the UK as a leading microbiologist who is analysing the BA.3.2 strain here tells the Mirror it could disproportionately affect children", - "media_hash": "082a7c8a6d5b9706f465adf87e5aca8d4a2d26d24d534c28f2e2d523", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.36914 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "They say this is leading to pregnant women and cancer patients facing delays for vital ultrasound scans, which could be really dangerous for the patient.", - "media_hash": "16c7d8c509fba7f3343a1875927b38adb2aadf8852f58125db5c2deb", - "sequence": 342, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.36914 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "Now, though, a large trial has shown benefit in 3,655 people who hadn't previously had a heart attack but did have type 2 diabetes.", - "media_hash": "625fca8a9a532f3d42d44d3d0eff6c124a3c704cf86342f9aab8700c", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.347765 - }, - "demo": { - "nutrition_": 4.772635, - "health": 4.772635 - }, - "pa-media": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "\"Bowel cancer is Scotland's third most common cancer, but screening is one of the best ways to spot the disease early or remove polyps that might develop into cancer.", - "media_hash": "9bc4f232db2b6808817b36168af7f2e83c6d012ab0bb14ae4680597a", - "sequence": 62, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.33462 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "The need for better ways to prevent breast cancer is clear.", - "media_hash": "85fd1d2bdee2b581bddadcc3adbeedf87599c9fc9c1b75782516d9d2", - "sequence": 25, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.3342600000000004 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.3342600000000004 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Writing in The Lancet's Diabetes and Endocrinology journal, the researchers said: 'We believe it is possible to view this as closely linked to societal changes that may be more conducive to developing diabetes.", - "media_hash": "2a140629962e95eed77885c23fc76893fa285dd857b8b208824b5193", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.326185 - }, - "demo": { - "health": 4.326185, - "nutrition_": 4.326185 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "And it's also partly on the edges at least to do with weight loss drugs that companies that supply packaged goods like Unilever believe that their market is likely to be damaged as the widespread use of weight loss drugs means that consumers are likely to buy less of their products.", - "media_hash": "c8296cacb46351cad17a779170e511cac00e7ddc1258a4d69c215ad6", - "sequence": 2897, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.326185, - "leo_s_topic": 4.326185 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", - "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.326185, - "scottish_elections": 4.326185, - "clinical_health": 4.326185 - }, - "demo": { - "health": 4.326185 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.326185 - } - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "The consultant paediatrician Dr Lee Hudson said eating disorders had become more common but pointed out that the term covered a wide spectrum of conditions, not just anorexia.", - "media_hash": "920c7aee1e917cb033ba29f58b8c3d2cd1eb86c2bce6c6c86b750511", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Lee Hudson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.326185, - "leo_s_topic": 4.326185 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T00:11:17+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038771073668321334", - "media_type": "social_post", - "sentence": { - "text": "Urgent flu warning issued to Aussies after worst year on record killed 1,738 people https://t.co/EE6Qr45J65", - "media_hash": "e603ebea196d5a68f91faaaabd9f459bfdda00a866b072f385a691ab", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Aussies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.31818 - } - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Prof Gupta was leading part of the research group which reported the first evidence for immune escape for Covid-19 during the pandemic.", - "media_hash": "21e6502496ca69e88f9a5f0d8f725a8d3b6f3c8eece8796ccff24f83", - "sequence": 34, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Health officials", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Professor Ravi Gupta, of Cambridge University, who advised the Government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", - "media_hash": "94a49698e085cda227aea8b3757edbb86d53e43198bd83577293ae86", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "leading microbiologist", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "New and Emerging Respiratory Virus Threats Advisory Group (NERVTAG)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.287855, - "clinical_health": 4.287855 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", - "publication_date": "2026-03-31T11:59:42", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", - "media_type": "news_article", - "sentence": { - "text": "New 'Cicada' Covid strain spreads to 23 countries as UK health chiefs on high alert", - "media_hash": "43264da16d5c230f7d1d985bbf03326aca7942866160dff6c77bb775", - "sequence": 7, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "UK health authorities are monitoring the BA.3.2 COVID variant, dubbed the 'cicada' strain, which has been detected in at least 23 countries and is likely already circulating at low levels domestically", - "media_hash": "8c13dfce6a648ad0fe86f3eb16775662192af65226796866111d2a47", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "UK health authorities", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855 - }, - "demo": { - "health": 4.287855 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.287855 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Ed Davey, leader of the Liberal Democrats, which analysed the NHS England data, said: 'Like millions of people, my life was turned upside down by cancer, which took both my parents when I was young.", - "media_hash": "c9950544a67566d548ba316173dc533829ee47f9c49d9069fdd39290", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.287855 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", - "media_hash": "2095563abb1714ac6f688e6064acef4015abf0f35a5e22fdcc7055a6", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855, - "scottish_elections": 4.287855 - }, - "demo": { - "health": 4.712725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", - "media_hash": "78f07ccb46438e4c9836e219a4283f95a83723e85f0fcc360797dede", - "sequence": 28, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855, - "scottish_elections": 4.287855 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", - "publication_date": "2026-03-31T20:19:52", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", - "media_type": "news_article", - "sentence": { - "text": "The influencer, 43, has amassed a legion of followers on social media over the years, and documented her husband's battle with cancer online.", - "media_hash": "e1e1f7e915a2f825ba198c043571fe92de8ef95f462657d587bb1a20", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.287855 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "In some cases, it is offered to women with a strong family history of the disease or cancer-causing genetic mutations, to prevent the disease from occurring.", - "media_hash": "640fa051e40b7d458e2219c252fa62f76528a399bd26978009f90c90", - "sequence": 6, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.285765 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.860895 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "So because somebody's declared that they're autistic, or have autism, it doesn't mean that they necessarily should qualify for support.", - "media_hash": "a1631baf184f32fd5d36dce066b7ae27d1235c6013ef6c7d9bca0f7d", - "sequence": 540, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.273495, - "clinical_health": 4.273495 - } - } - } -}, -{ - "title": "'Sending the King to the White House is a risk the UK does not need to take'", - "publication_date": "2026-03-31T18:01:28", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", - "media_type": "news_article", - "sentence": { - "text": "'Covid may not dominate daily life - bit it still demands respect'", - "media_hash": "28464c538e9d099eaf1014c15ad4b92c713da3a29675f36f47c105e3", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.24868 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "However, speaking exclusively to the Daily Mail at the European Breast Cancer Conference in Barcelona, Dr Law argued that women with an increased risk of the disease - such as those with a close family history of breast cancer, for example in a mother or sister - should be offered the chance to take tamoxifen.", - "media_hash": "f11c54eaae8e41242560eef7cff9663e195027ae4d49454c047d5338", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.23285 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.263805 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", - "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", - "sequence": 43, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.224345, - "scottish_elections": 4.224345, - "clinical_health": 4.224345 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "Specialists from Cancer Research UK and the British Association of Dermatologists suggest that people should take sun safety precautions between March and October.", - "media_hash": "f87a5f5924f1826a804aa2583f262abe8068bbee325fd62b46d03370", - "sequence": 22, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Dermatologists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.21566 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Where Street in the Health Secretary was one of those who came out, you might remember, fairly recently, end of last year, and said he thought that was going on. He thought that was part of the problem. He launched a new a review, um, to investigate why there was such an increase in demand for mental health services and conditions, um, like ADHD and autism. And that review has concluded today that the people are being overly incentivized. That's the word that it uses to go and get diagnoses with ADHD and autism. And that there has been, what the review called, a medicalization of distress. Which is a sort of scientific academic way of saying that too many people who are just going through the normal ups and downs of life are being told there's something clinically medically wrong with them. So maybe they're very anxious because they live in poverty and they've got an unstable job and they worry about how they're going to pay the rent at the end of the month. In which case, I would say almost, it would be strange if they weren't feeling anxious all the time. And yet in the modern world, perhaps they go to the doctor and they get told you have anxiety, you need pills. Or perhaps they go through a very difficult time, a divorce or bereavement and rather than just being told, look, yes, you feel very sad, but that's, it's difficult, but it's normal. They get told you have depression or you have this condition. Here is some tablets.", - "media_hash": "0552de818c15b72fa0a0b7dcfcbbc0f875d9f7f0bc3f84c1e74da46f", - "sequence": 486, - "claim_type": [ - "correlation", - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.213585, - "clinical_health": 4.213585 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "A new COVID strain, which has been named after an insect, is set to become dominant in the UK and could disproportionately affect children, a leading microbiologist has warned.", - "media_hash": "b645795cef0c58193379d15b79a38de76d6db77d3f753299693ef628", - "sequence": 2, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "leading microbiologist", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.1991700000000005, - "clinical_health": 4.1991700000000005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Well, I mean, that is true about insulin and diabetes, that is true. Um, but you know, if a child is unable to read, then you don't need a diagnosis to understand that that particular child needs support.", - "media_hash": "dc612f7e8cc01c7427c3560cd1ca089345597c01122a18df6a0562ac", - "sequence": 490, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.187915, - "clinical_health": 4.187915 - } - } - } -}, -{ - "title": "'Sending the King to the White House is a risk the UK does not need to take'", - "publication_date": "2026-03-31T18:01:28", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", - "media_type": "news_article", - "sentence": { - "text": "The emergence of the Cicada Covid variant is a stark reminder that this virus has not gone away.", - "media_hash": "d30cf2d53f1aea04f5cedda622df9f7838961472d95df3478e7f9e89", - "sequence": 18, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.187915 - }, - "demo": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Scientists say cicada spreads faster than other variants and one of the country's top microbiologists has told of emerging evidence that it could spread most in children who have no Covid immunity - which could drive a new wave.", - "media_hash": "30575290b1a45b3fa75cd9e1cfc55fe1bc84546e08a8d1f26ac9565c", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.173405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "When researchers tested the same particles in zebrafish, they watched the cancer spread faster in real time.", - "media_hash": "b0f4dc13bc6f7e4a7965723a2fe2a4f1dbfe8144098ebadb02e83d94", - "sequence": 54, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.173405 - }, - "demo": { - "politics_of_food": 2.598275, - "environment": 2.598275, - "nutrition_": 2.598275, - "health": 2.598275 - }, - "pa-media": { - "health": 2.598275 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", - "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", - "sequence": 35, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.173405, - "scottish_elections": 4.173405, - "clinical_health": 4.173405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "US scientists have recently raised concerns that the current Covid vaccines may be less effective against this new variant.", - "media_hash": "e6d2c12b741e4d8f3c448e4bd9cd7bcbea1fb9aea68301cd8192e3a3", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "US scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.173405 - }, - "demo": { - "health": 2.71895 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", - "media_hash": "4054ce172dbafe0019c7cc7c4854f178d6e0e230f1f21e07050f54ab", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.173405, - "scottish_elections": 4.173405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "Something interesting about MS is how much the symptoms fluctuate.", - "media_hash": "ff17cfb60194960da02fc5d89d2e5288ff71e0f4f466cf38066e0444", - "sequence": 19, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.15696 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "'That's why the Liberal Democrats will make improving cancer care a top priority, and fight every day for better care for you and your loved ones.", - "media_hash": "df42cf3b0cb46d6b3a30cd14a6005b0a885e6bce1b976ce501237fee", - "sequence": 12, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Ed Davey", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.154895 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "US citizens have been urged to stay vigilant after a new COVID-19 variant has been detected in over 24 states.", - "media_hash": "022d42cb1b8f4375da83e95ab30b6efa00cb8252db4867e4ad0a8485", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.151565 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "But at the same time, it chemically reprogrammes cancer cells so they proactively attract the attention of killer T-cells.", - "media_hash": "4142719a15f6ca47917c999a3009330649cda4fa6f00e1ef8420d725", - "sequence": 26, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", - "publication_date": "2026-03-31T11:59:42", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", - "media_type": "news_article", - "sentence": { - "text": "UK health bosses are keeping a close eye on a new Covid variant dubbed the \"cicada\" strain that's spreading like wildfire across the globe.", - "media_hash": "f8be413834492238ed23b7db05edcbae923016c347b0ae2aa5e299a8", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "UK health bosses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Children get infections all the time, but this might be something to do with the fact that they have never been exposed to COVID vaccines.", - "media_hash": "f8d18104b7f19469a84bd1750ca6dc8645b4c0862f4ed088dc0ab961", - "sequence": 20, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.128005, - "clinical_health": 4.128005 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Plastic surgeon Richard Wain, an expert in skin cancer, said: 'It can happen in any nail - on your hands or feet - and unlike other forms of melanoma, it's not related to UV exposure.", - "media_hash": "0f33fb1e4f1cb77296624351fc56e4c6ce8f33545f7206a5f697ae28", - "sequence": 52, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Richard Wain", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Similar to earlier versions, it contains alterations to the virus's spike protein - the component which allows entry into human cells - potentially influencing both its transmissibility and its ability to bypass existing immunity.", - "media_hash": "58425ecf33ddaac9e4853ba640cb81fc8f26629da94968216e82d81c", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "They can differ from person to person and may improve with rest, fluids, and over-the-counter medicines.", - "media_hash": "81fa15761df1f6bd44dfbeaad261b2655b7d340962c27e0ce74c4ad5", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "'We believe remission for type 2 diabetes and many other chronic conditions should be the North Star outcome guiding care.", - "media_hash": "1296cf36181aa5e81180d9533c37850ec7c07df6874dc596baf1ecd5", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Padmaja Pater", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 4.4165849999999995, - "nutrition_": 4.4165849999999995 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Many will be familiar with the effect of the very well researched glucagon-like peptide 1 (GLP-1): \"it's what's made Ozempic and Wegovy and Mounjaro so fundamentally different to other weight loss drugs,\" says Bonning, who is the chair of public health for the association.", - "media_hash": "f29935e42661247708872b99d0863819c11f370ca7e97aacf6041d25", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.128005 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Children are being incentivised to get diagnoses for conditions like ADHD and autism", - "media_hash": "32ec66e96c42dc43fe937b309bc2c0766b38980549ebdd518ccbc0a5", - "sequence": 41, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.128005, - "clinical_health": 4.128005 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "But in rare instances, cancer is discovered.", - "media_hash": "dbdd189cb60a6626d42817d83f53c1e8549aeadeebc17384459cdc95", - "sequence": 55, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Richard Wain", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 4.128005 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "'Phytoestrogens mimic oestrogen in the body and dock onto oestrogen receptors to help modulate oestrogen dominance, which has been linked to breast cancer,' Johnston explained.", - "media_hash": "8aace69b4cc76edbc226372c833aad2be691319a35a98fa00fed1ee3", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.128005 - }, - "demo": { - "health": 2.5528750000000002, - "popular_media": 2.5528750000000002 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Vernon Kay said \"As a man with many important women in my life, it's vital that I understand the language, symptoms and warning signs around gynaecological cancers so we can have open conversations and encourage early detection. These cancers affect half the population directly, and the other half through the women we love and care about. It's time to bring these often-overlooked cancers into the national spotlight and give them the same awareness and attention we've seen with some men's cancer charities.\"", - "media_hash": "563047c3621a2351189f4e614de94240abea07854056b657b043bf8f", - "sequence": 11, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Vernon Kay", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.1233249999999995 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "The Liberal Democrats are campaigning for a guarantee that every patient starts treatment for cancer within 62 days from urgent referral, with this right written into law.", - "media_hash": "0344a9e0784c2e74311cefb95bf3a0f80cf04e49a683a4e9f178362c", - "sequence": 16, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.118985 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.982695 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", - "media_hash": "96ff9b18d0a2a9f85a3c3762c302b68f4b91c8c0af413bb7086b0ccb", - "sequence": 986, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.10166, - "senedd_election": 4.10166, - "scottish_elections": 4.10166 - } - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "Woods, who has been involved in other crashes over the years, is charged with driving under the influence, property damage and refusal to submit to a lawful test.", - "media_hash": "890e00e0c450f1e37930f8929c8144ab5a63f4fb9a1bf267d340bb1e", - "sequence": 19, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.10166 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", - "publication_date": "2026-03-31T04:47:11", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", - "media_type": "news_article", - "sentence": { - "text": "She said after going public with her complaint, other individuals contacted her to report similar experiences of trolling and harassment involving the same doctor during Covid.", - "media_hash": "2862da807c32aa60b1e45ae4d59f26b6b09b60caa20da6869db8667f", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", - "media_hash": "1197ec5dba4741ad33a06fc85c2329dda8148771307400261972f525", - "sequence": 721, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.061165, - "senedd_election": 4.061165, - "leo_s_topic": 4.061165 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", - "media_hash": "7380b00349ad3920fad3371d5226a200ec016b157901cee9997c229e", - "sequence": 32, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "clinical_health": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", - "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", - "sequence": 41, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.061165, - "scottish_elections": 4.061165, - "clinical_health": 4.061165 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", - "media_hash": "d6dea1a7a319f23285c793b94df609d492d2446fc48dc2636e92b533", - "sequence": 2, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.27569999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.059075, - "scottish_elections": 4.059075 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "A new Covid strain named after a tropical insect is set to become dominant in the UK and could disproportionately affect children, a top expert says.", - "media_hash": "c4867c08b7644fc33e793fc2cf9d8df9d4651c6853e8c648e4fd7de3", - "sequence": 2, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.04754 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place.", - "media_hash": "f4ec42a50a3a62b0d41da0d719155b9a546c7a4c933338900ed5f798", - "sequence": 51, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.013675 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "A cheap fermented vegetable and staple of Korean cuisine may help in combating a build-up of harmful microplastics linked to heart disease, cancer, inflammation and brain damage.", - "media_hash": "55c06f7fcdd0c9d41ab2e31fc799803cc30d0755ef7b9776d7c5c20a", - "sequence": 1, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.0067 - }, - "demo": { - "politics_of_food": 3.0067, - "environment": 3.0067, - "nutrition_": 3.0067, - "health": 3.0067 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "So when you hear words like ADHD and autism and it's like the cost it's the benefits bill.", - "media_hash": "e92237f644bd18d85cabaf8b2544c1009c047eb5c6a77f53bf3129c9", - "sequence": 659, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.006385, - "clinical_health": 4.006385 - } - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "In How Not to Take Supplements, the dietitian reveals how many products are missold to consumers, with some containing far less of their key ingredient than advertised.", - "media_hash": "af0d1feac95a4f3d00159f1ee819fcb67fae6dc08e56175237309fb6", - "sequence": 4, - "claim_type": [ - "correlation", - "support", - "other" - ], - "claimer": [ - { - "name": "Josie Porter", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dietician", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.986895 - }, - "demo": { - "health": 4.53244 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Death hunted him since he was a kid\u2019: how Lamar Odom survived to become a villain in his own tale", - "publication_date": "2026-03-31T12:11:01", - "publication": "guardian", - "url": "https://www.theguardian.com/sport/2026/mar/31/lamar-odom-documentary-nba-basketball", - "media_type": "news_article", - "sentence": { - "text": "His father, a heroin addict, has largely been a background character in Odom's life, and his mother died of colon cancer when he was 10.", - "media_hash": "a3b81599202a4fae0d5800c5f46d8498728209d3d6b0ab0992ad8435", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", - "media_hash": "0376c712fb7da35ef601cb6ab92ed7b92da964c028b8a5902942962d", - "sequence": 46, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Genevieve Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Separate laboratory tests on human breast cancer cells produced similar results, with the vaccine resulting in their complete destruction.", - "media_hash": "2ca1956de63dd7cd303cff76b72e210dfbd4eee1461cca8fe9188202", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "She can tell that she lost performing and then she got ill and cancelled the rest of that tour, there was covid and then she cancelled it and there's sort of people being, she had a couple of, um, appearances since then, that the Paris Olympics and she was at the Grammys presenting Taylor Swift with the album of the year for Midnights that year.", - "media_hash": "1061cfe823a55308a9370b32bd13ff7e710b0754d1f23e29ce834f07", - "sequence": 1079, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Lisa Verico", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "It involves a speculum being used to hold open the vagina, then a hysteroscope (a telescope-like device, with a camera and light) being inserted through the cervix (the neck of the womb - a narrow space, which can sometimes be very rigid), before fluid is pumped inside to distend the womb to make it easier to see what's going on.", - "media_hash": "b724c7d3326cf6bc48b1361a12bd7de3246d0da5f63b825766e16ece", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, in heartland regions such as Anglesey (Ynys M\u00f4n) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", - "media_hash": "8ec504c78c4850ebad34b6394d97b1703c8b1447ea2580eb0eb21304", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Cancer was later ruled out, although doctors were struggling to test Ronnie's bone marrow as it was so sparse.", - "media_hash": "2ff0801a62639b97a765394a80f596bf94e98748936ea3ad966daa73", - "sequence": 14, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Ed Davey, leader of the Liberal Democrats, said it is 'heartbreaking' to see how many people are forced to wait too long to start cancer treatment.", - "media_hash": "5e3ec6cc188d925774b147c7d126d7e492214aa1f4cd9dfc8264f98b", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "The businessman, who was 21 years Lorna's senior, battled stage four adrenal cancer after being diagnosed in April 2023.", - "media_hash": "e0165bbb013a1bcab05a2c8df2523fc21d0112c8079a839026a020f9", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "media_hash": "c01672bdb46257639cc06d39ee6abb723180920bf27b6777e3555636", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", - "media_hash": "3c6d02636919a130275f51d1f229b8abd9eb72701e3f61f9fe2ea444", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Michelle Mitchell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "There is maybe a small segment of the population, typically very affluent families, who can afford private healthcare, who do seek these diagnoses specifically.", - "media_hash": "1268d7388cbd4956bf068bdf53e43a0fb7285a31caee58f6a2e66b44", - "sequence": 548, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.975225, - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", - "publication_date": "2026-03-31T11:59:42", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", - "media_type": "news_article", - "sentence": { - "text": "READ THE FULL STORY: New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "media_hash": "144f7a9c8cd5f15438d7926ea3c5179735d89a203aca7eaaa96fa731", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "'We don't want to impact an otherwise healthy woman's quality of life and sexual wellness just because there is a slight risk she might develop the disease further down the line,' says Dr Pascal Pujol, a cancer expert at the University Hospital of Montpellier in France.", - "media_hash": "2288dfd86c7577d58fc5c969c75810022f0c4e9031c59ebbd6db95f5", - "sequence": 46, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "University Hospital of Montpellier", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Pascal Pujol", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "Your music is also partly informed by your own experience with your own health, overcoming breast cancer, the bodily changes as well.", - "media_hash": "6e043a2f1916783d75a9035388f1b84b5fecaa66404ba94ca3d250a0", - "sequence": 298, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "Cases of the COVID-19 'cicada' strain linked to international travel have included detections among individuals returning to the United States from several countries, including the UK", - "media_hash": "3d8cda2ea1dbf9b7a2ad169e667353a97d013afb99b25f5838f607ab", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", - "publication_date": "2026-03-31T06:00:33", - "publication": "guardian", - "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", - "media_type": "news_article", - "sentence": { - "text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", - "media_hash": "fdadcd84453316bce89ca177b924febe4f145fd9f129d6b9eda560ac", - "sequence": 33, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "health": 3.975225, - "leo_s_topic": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", - "media_type": "news_article", - "sentence": { - "text": "Bev found out she had cancer on the set of Irish soap Fair City , which she joined earlier this year as Lily Patterson.", - "media_hash": "3b84245076b7b9ba4fdd367f9eb28d283d629bb855b1760f3e2e0220", - "sequence": 37, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", - "publication_date": "2026-03-31T20:19:52", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", - "media_type": "news_article", - "sentence": { - "text": "Influencer and Instagram star has announced a major life update is on the way - just weeks after her husband John Andrews passed away following a long battle with cancer", - "media_hash": "01b0f9d3b0b1f9ebfd04fe241f3c3693ee755a8d4460eb194ca7f455", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "He told the Mirror : This is different from the (Covid-19) viruses we have been dealing with for the last two years.", - "media_hash": "9f2f571e6aa4db0601fd4b0211e957253592b44899a89e8432026f37", - "sequence": 36, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Health officials", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "A brave Airdrie mum battling stage three bowel cancer says she can see a \"light at the end of the tunnel\".", - "media_hash": "1e79d356de8083d7ae6980a6a49a0c816546aec84f35553ab6e525fb", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nicola Rankin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Nicola has spoken about her ongoing fight as part of Bowel Cancer Awareness Month (BCAM).", - "media_hash": "d721b7788f10e53c9b46c59a9692e64eaf74b2673c96b42294564842", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", - "media_hash": "85ddf4132aa1fae9eab9fb21c9aca9df83d71954df4c20578a6b8018", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.975225 - } - } - } -}, -{ - "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", - "publication_date": "2026-03-31T14:37:03", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", - "media_type": "news_article", - "sentence": { - "text": "At the time, he said: \"I'm really looking forward to working closely with Neuroblastoma UK to raise awareness of this cruel cancer and hopefully raise lots of money to help save more young lives.\"", - "media_hash": "8a4abaa5729558ce296f775f2675b07913551e3920fada8a672bf003", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scott Mills", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Which cancers the drug will be tested on first and what side-effects it may cause are as yet unclear.", - "media_hash": "27048a5e1af5c751b0fb8ba24d3c39be7d311e29e3112b35e9207337", - "sequence": 31, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.400095 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "publication_date": "2026-03-31T10:31:24", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", - "media_type": "news_article", - "sentence": { - "text": "Despite thinking she was low risk, she was diagnosed with cancer but has now been given the all-clear, reports the Mirror.", - "media_hash": "ffe08b3553a359a09dd067b719bf100bc47b5ce46625be2c8c886acd", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "'In practice, I've seen this approach help many women with symptoms linked to hormonal imbalance, including PMS, irregular periods and the mood and energy fluctuations that often accompany perimenopause,' Johnston said.", - "media_hash": "5970c46f495fdd8c82f59370acc8f2d06998fafefd2305e615161b98", - "sequence": 67, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 3.975225, - "popular_media": 3.975225 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Dawn had been referred to hospital after a routine blood test showed raised CA125 levels - a possible indicator of ovarian cancer - and after scans revealed a polyp, her consultant wanted to examine the area with a camera.", - "media_hash": "82d7dbfe00e1d2dcdc9bd2c523cc4ea3558453d6c63a1efba5799dd2", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", - "media_hash": "26c73ba770ac8722398228649759b670308fd58b60b4b21859b1bc73", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", - "media_hash": "940d043e5e1428f9b31d6d6ea7d4efe650814d22041cd67beeb1dc09", - "sequence": 33, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", - "media_hash": "ed723601e675a3fea5ca775d8ba9c4ff7bdb173cc541fba1ff1ebf49", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", - "publication_date": "2026-03-31T14:44:01", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", - "media_type": "news_article", - "sentence": { - "text": "They lost their mother, Carroll, in 2020 to cancer", - "media_hash": "43374fe47235bc2e5a85da84cb64de1759ce18d63ab3fa8e7ed97af3", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", - "media_hash": "a66223f695f36f48b9f06602809d961cf15ed180ebeead16c1ab64c3", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "World Health Organisation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "The National Health Service (NHS) lists the following as possible symptoms of COVID-19:", - "media_hash": "cfb025ffacb77cd54b595378befc7a48a746e8710f465e5196325d9c", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 4.0959 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.52077 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Let's speak now to John Woodland from Blackwood in Cardiff, who was diagnosed at 52 years old with stage two bowel cancer back in November 2023.", - "media_hash": "65e16540127198ddff565aaf3cf6487733aa1d20d007ab518aca0557", - "sequence": 682, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "A Covid strain that is a spin-off of Omicron has swept the US and already arrived in the UK, health chiefs have confirmed.", - "media_hash": "1be413639b7c5bc9c93d65101b0045a21869a3b416f6b6b2e7901144", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": { - "health": 4.0959 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.975225 - } - } - } -}, -{ - "title": "Finnian Garbutt, 28, shares heartbreaking message as he enters 'last stages of life'", - "publication_date": "2026-03-31T17:10:48", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/finnian-garbutt-28-shares-heartbreaking-36950963", - "media_type": "news_article", - "sentence": { - "text": "Finnian, who has 18-month-old daughter Saoirse, recently said he was diagnosed with Stage 3 skin cancer, which has sadly spread to his neck.", - "media_hash": "2338996b16523e7454033dabe739c0c919d968048cff3d1db79d8bbd", - "sequence": 15, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Prof Gupta was a key member of the research group that reported the first evidence of immune escape in COVID-19 during the pandemic.", - "media_hash": "61844211e294db2c60bb69dbaa4d52671c442f2278deccee5c6b1803", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.975225, - "clinical_health": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", - "media_hash": "7aebb7140b04b0299ebc18a9dfa1913093b38f4c1a3738b098ec72f8", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 4.36914 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", - "media_hash": "1e7402fd3cb8849eba07f7450f23961099de357ce2ccceda9235081c", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", - "media_hash": "388007679c4a042a020b6d511ae4f98591d3fcbf5b0cd46d3756ca95", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", - "publication_date": "2026-03-31T14:37:03", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", - "media_type": "news_article", - "sentence": { - "text": "The former BBC radio host first supported Neuroblastoma UK after a friend's daughter was diagnosed with this aggressive cancer.", - "media_hash": "3cccc6d5288d2350413f52b5238a5db4fcd45aec2b88d7e909ce4947", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Stonehaven mum jailed for pouring petrol through letterbox of woman\u2019s home with four children inside", - "publication_date": "2026-03-31T14:30:25", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6986541/stonehaven-mum-jailed-for-pouring-petrol-through-letterbox/", - "media_type": "news_article", - "sentence": { - "text": "Accused suffers from ADHD and was initially helping kids", - "media_hash": "837c11091987e847fa7d2d8f5b7480f1d66f929420cb717cb2c1490e", - "sequence": 40, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.975225, - "clinical_health": 3.975225 - } - } - } -}, -{ - "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", - "publication_date": "2026-03-31T23:05:50", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", - "media_type": "news_article", - "sentence": { - "text": "In a new interview with Prima, Hermione responded to speculation the show would return after six years off air as well as discussing her struggle with long Covid and her children flying the nest.", - "media_hash": "c87614fba901d58b201caf79c3b4a7f8f040693e329d3fcf838db819", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Prima", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "The Centers for Disease Control and Prevention (CDC) reported that from November 2025 to January 2026, weekly detections of BA.3.2 increased to make up around 30% of Covid-19 sequences reported in Denmark, Germany, and the Netherlands.", - "media_hash": "1846dfc1bac93c17a35b1cb785cc9d0b20b2482c50b9f415849dabf8", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104474, - "score": 0.22909999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "The CDC reported that between November 2025 and January 2026, weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in Denmark, Germany and the Netherlands.", - "media_hash": "7c35dfbf10f61c015115a132df22239d3a9334088689d07b65f88549", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centres for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.970815, - "clinical_health": 3.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", - "media_type": "news_article", - "sentence": { - "text": "The actress recently updated fans saying, \"I haven't got the all clear... In three to four weeks I'll find out if it's gone into my lymph nodes. If I am cancer free and if they managed to get it all on the left side then I begin radiotherapy so it's quite a long way to go. I am not insurmountable. I have some good days and I do have some really bad days especially if I'm over tired. But more often than not I'm doing well.\"", - "media_hash": "c40c4ae8161e3525369e45d86a94d726ee4241fb9a4472d01ff5e2ea", - "sequence": 36, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.970545 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "media_hash": "c732ef4b374936d6c9ec84b45221b50cd7cb15bdb9198bbf3293c41a", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.94427 - } - } - } -}, -{ - "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", - "publication_date": "2026-03-31T02:14:20", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", - "media_type": "news_article", - "sentence": { - "text": "If you are eligible and wish to do so, you can receive the MenB vaccine, which offers protection against the infection.", - "media_hash": "bff362abb8972c101f402ca353dd3bddbd9d8721e94acde1ba5c167c", - "sequence": 18, - "claim_type": [ - "correlation", - "rules" - ], - "claimer": [ - { - "name": "Club Chemistry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.9372949999999998, - "leo_s_topic": 3.9372949999999998 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "When tested in mice, those given the bacterium excreted significantly more plastic in their feces than untreated mice, which was evidence that it latched onto the particles and helped flush them out.", - "media_hash": "7533f964547f6530e8d3a8e86f5a5c67de86c9bd776b406e9066f574", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.9334350000000002 - }, - "demo": { - "politics_of_food": 0.0, - "environment": 0.0, - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Trinny Woodall added: \"I'm looking forward to being a Lady Garden Foundation Host Ambassador at RHS Chelsea and speaking to as many visitors as possible at the 'Silent No More' Garden. It's a platform to raise awareness, break taboos and encourage more open conversations about gynaecological cancers amongst its visitors. I've supported the Lady Garden Foundation since it was founded in 2014 and I'm proud to be part of a bold charity that is helping to revolutionise women's health. By educating and empowering people to recognise symptoms and talk more openly about gynaecological health, we can help drive earlier diagnoses and ultimately save more women's lives.\"", - "media_hash": "274e1756202d4cc878d43e8399f4b900feede162cf15a6247efb0655", - "sequence": 12, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Trinny Woodall", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.925145 - } - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "This includes placing restrictions on platform access for customers where necessary and an ongoing partnership with Drinkaware to implement further alcohol safety measures, including clear signposting to support resources.", - "media_hash": "68d4b1674389b6e2d0769b98b661543163c6b618427a6de19845a3d2", - "sequence": 28, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Uber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.920805 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Experts have said that while current vaccines may be less effective against Cicada, vaccination still offers significant protection against severe disease.", - "media_hash": "a44aa45315cd85226672c209b024f42260fa5e2fb5c72360bfb1f1a1", - "sequence": 32, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.901315, - "clinical_health": 3.901315 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "Experts said the findings demonstrate the extent of unrecognised heart failure in people with diabetes, and how the condition can be easily detected using a widely available blood test (NT-proBNP) that measures how much strain the heart is under.", - "media_hash": "508ba3b4f8f141dcd9744e6b9694683d2725de2f35159b4f7e04a117", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.901315 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Symptoms associated with BA.3.2 seem largely comparable to other strains of COVID-19.", - "media_hash": "d9b1f1da624198cfaf18eb26e174ad80a3996716bedae9d930d2d854", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.901315 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "\"With Clubcard Challenges on fresh, frozen and tinned fruit, veg and pulses, we're committed to helping customers get more of the healthy food they need for less.", - "media_hash": "6513fd8842e8b03f3ff03149eded374eb6cb82bbf4a399c391dd2481", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Oonagh Turnbull", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.901315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.901315 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "two minutes after 11 is the time this Tuesday night you are listening to late nights with Ben Kentish here on LBC. Very pleased that you are. Great to have you with us. Very, very good evening indeed if you are just joining me on the program this evening. We've been talking about Donald Trump. Suspect we'll talk lots more about his relationship with Kier Starmer and this state visit in the days and weeks ahead. But lots more. Um, topics for us to get our teeth into. After 12, we're going to be talking a lot more about divorce. Amid more warnings today that it's on the increase, specifically divorce linked to financial difficulties. Look at that after 12 o'clock. Um, for now though, want to get your thoughts on a topic that we've we've discussed fairly frequently together over the months. Um, but it's one that is very, very significant right now because it touches the lives of so many people. Um, in this country at the moment and that is the issue of neurodivergent and particularly the massive increase in the number of people being diagnosed with conditions like ADHD and autism.", - "media_hash": "bed436efbc6e2eff37d6182005facfe28992e5c695379ddfba45780d", - "sequence": 484, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.894025, - "clinical_health": 3.894025 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "And I think because a lot of things are very time critical in obstetrics, that is where the workforce tends to, to gravitate to and it is the general ultrasound that tends to suffer more and then we're trying to do patients that are on cancer pathways.", - "media_hash": "52443a598cd4897492a765a9f44df3aadf4e474430a2622ac56a6840", - "sequence": 374, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.894025 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "For you, you can't just say I have autism without somebody who is an expert having told you that you have autism.", - "media_hash": "60e6951325fc6964d07e59f73c9ce660503154c8a7c48d4ea04ec1a2", - "sequence": 531, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.89304, - "clinical_health": 3.89304 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "\"But I won't lie, having cancer is hard.", - "media_hash": "0f5bf9a50d19bf8cd586a09c865c925fb96a0e6ef5b3b3e18d9b899e", - "sequence": 43, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.89304 - } - } - } -}, -{ - "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", - "publication_date": "2026-03-31T09:30:46", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", - "media_type": "news_article", - "sentence": { - "text": "\"Additionally, colds and respiratory infections remain common as temperatures fluctuate.", - "media_hash": "5802da0053168d420fde594f034d0a9fb94f1189b3ec9571e2112258", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Graeme Bryson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.88572 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lanarkshire residents urged to plan ahead for Easter healthcare", - "publication_date": "2026-03-31T09:30:46", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25982844.nhs-lanarkshire-easter-opening-hours-pharmacies-2026/", - "media_type": "news_article", - "sentence": { - "text": "\"Pharmacists can also support those with long-term conditions, such as diabetes or heart disease, ensuring they have the medications and advice needed to stay well over the holiday period.", - "media_hash": "70fb2123fd71a2cf5041ad0c8a8a63ed80f86c1c8ed0d0078c5350b2", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Graeme Bryson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.88572 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Poo normally should be a chocolate brown: bile - a digestive fluid produced by the liver - is a yellowish brown to dark green, and when mixed with our gut bacteria, it turns dark brown.", - "media_hash": "c484072115d445aead63a76aeefaeaa984cb791784dd69738bd391cb", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.88572 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of new Covid strain symptoms including unusual signs", - "publication_date": "2026-03-31T14:58:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", - "media_type": "news_article", - "sentence": { - "text": "Covid-19 Cicada was first identified in in South Africa on November 22, 2024 with between 70-75 mutations with some having the potential to reduce protection from a previous infection or vaccination, according to the Centers for Disease Control and Prevention (CDC).", - "media_hash": "fcf642145c94b75908496410bc1b8f9d87dddab111ff287549c0808b", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.87995 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", - "media_hash": "3810f68df12e1160540ad95d2cf921bf86b1220ea66bf38307ee0bce", - "sequence": 211, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.866315, - "senedd_election": 3.866315 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Prof Ravi Gupta, of Cambridge University, who advised the UK government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", - "media_hash": "8450a98dbbdc1cb16d03c4bec76811c63e004a69634e313e05b11621", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "publication_date": "2026-03-31T10:31:24", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", - "media_type": "news_article", - "sentence": { - "text": "Annette Illing, a 39-year-old mother of three, is the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal.", - "media_hash": "2610b08ce7c3a1c98aa3bffb548aec2c72da9019e363f6216f5259e8", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "The Christie Charity Sarah Harding Breast Cancer Appeal", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.862985 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "The TARTAN-HF trial found one in four of patients with diabetes who had at least one other risk factor for heart failure had undiagnosed heart failure that was detected through screening using a new blood test and ultrasound scanning of the heart.", - "media_hash": "2293b2e0da8af56c94d7278b923fcab46a67b62cfcaa967974b43c3d", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.862985 - } - } - } -}, -{ - "title": "At gas stations, Americans say they're 'paying the...", - "publication_date": "2026-03-31T20:33:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15696113/At-gas-stations-Americans-say-theyre-paying-price-Iran-war.html", - "media_type": "news_article", - "sentence": { - "text": "Williams, a retired civil servant who is undergoing cancer treatment, considers her pension to be \"fairly decent,\" but as the US cost of living has risen, she has had to dip into her savings.", - "media_hash": "90ff46aa064245e31dff28e9039139ef823c7c79dd160228a73fa4be", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Jeanne Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "The vaccine was initially made available in September 2024 to older adults as they turned 75, with a catch-up programme for those aged 75 to 80, plus women from 28 weeks of pregnancy.", - "media_hash": "e74a621b89a5ff84e93063626c267a3deed049b3b5b71dcb719ed1f3", - "sequence": 7, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.862985, - "clinical_health": 3.862985 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "AD FEATURE: Healthy eating can be easy \u2013 here\u2019s how", - "publication_date": "2026-03-31T16:40:02", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/healthy-eating-can-be-easy-36876677", - "media_type": "news_article", - "sentence": { - "text": "As well as the brilliant 5-a-day-hub on the Tesco Real Food website, you'll find hundreds of healthy, easy-to-make recipes, plus heart and diabetes-friendly meal suggestions, created in conjunction with the British Heart Foundation and Diabetes UK.", - "media_hash": "0432976ee1ea01ad242e71ba79b6121b7cf3b2cdbce66470818f6ff5", - "sequence": 32, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "British Heart Foundation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Diabetes UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.862985 - }, - "demo": { - "popular_media": 4.865505, - "politics_of_food": 4.865505, - "health": 4.865505, - "nutrition_": 4.865505 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.862985 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "Having had breast cancer, I, the relationship I had to my body was very different because, you know, you, you have a baby, you, your body goes through all of those physical changes, external, internal, then you can nurture that baby if you choose to nurse your child and then you go through these other physical changes when you get to a certain age, we go through menopause, we, it's such an extraordinary, um, machine that we have here.", - "media_hash": "5d97d9455daed786ecf66a6fa9777e619d0ad82eb362a1b0c46a41b0", - "sequence": 302, - "claim_type": [ - "personal", - "correlation" - ], - "claimer": [ - { - "name": "Rita Wilson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.832275 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "I know how difficult it's been for me, um throughout my life and when I was in school that there was nobody to say, um you might be ADHD so we might need to make adjustments.", - "media_hash": "7536c703881967828a18a96a84aec0420ea1ec4781ff37ce334fd36f", - "sequence": 660, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.832275, - "clinical_health": 3.832275 - } - } - } -}, -{ - "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", - "publication_date": "2026-03-31T08:45:14", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", - "media_type": "news_article", - "sentence": { - "text": "Mother-of-three Annette Illing, 39, is the first person to be successfully treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal, which was established after the singer died in 2021 at 39 after battling the illness.", - "media_hash": "3e3836e0fdd213897c9a6fded4873eb8c21486c130d1e5793fa876c0", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Sarah Harding Breast Cancer Appeal", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.8320299999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "For decades, cancer treatment revolved around long-established techniques such as chemotherapy - where powerful drugs are given to stop malignant cells from reproducing - and radiotherapy, when high-energy radiation is fired at tumours to destroy their DNA, halting their spread.", - "media_hash": "b9e10af45e505e04cfbb1382dde775cfd1b169e643def292c4151267", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.82381 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", - "publication_date": "2026-03-31T11:59:42", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", - "media_type": "news_article", - "sentence": { - "text": "Symptoms are similar to other Covid strains - the usual suspects like fever, cough, and fatigue that can be treated with rest and over-the-counter meds.", - "media_hash": "fc15d458ce451fa98bf99660345795790f5505cc2c6ce50e7036a771", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.82381 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Covid symptoms are no longer hallmarked by the loss of taste and smell as they were in the first couple years of the pandemic, although that can still happen.", - "media_hash": "df22a15763aa59269a0d682c8f4fd81d49b41b00de3eba26e7f5650d", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.82381 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "\"If I'm cancer-free, then, a few weeks after that, I will begin radiotherapy. If I'm not cancer-free, then we'll cross that bridge when we get to it. But I have a feeling I will be. I don't why I have that feeling but I just have.\"", - "media_hash": "7a35ec9103a51a761efb8a7e0e0958b200c898c557d2e942ae24f72d", - "sequence": 22, - "claim_type": [ - "personal", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.799255 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "Despite the fact that he was also diagnosed with prostate cancer which was subsequently treated and is waiting for another skin cancer operation, the PCI procedure has given him a new lease of life.", - "media_hash": "10ee7fa0fcf952b4f93aa2feab14915ca9dc525e2c539e6ae853317d", - "sequence": 70, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.795165 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits `unacceptable\u00b4...", - "publication_date": "2026-03-31T15:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", - "media_hash": "71cc32dd894a229697cb2a9191e54582bb4eebf8c0e51598540cac7c", - "sequence": 30, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7800599999999998, - "scottish_elections": 3.7800599999999998 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "My world had fallen apart; I was too young to have cancer.", - "media_hash": "7b5127026589792df01f30b81a932db1478a9dd615454fe92e6be579", - "sequence": 12, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Katie Houston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7723649999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", - "publication_date": "2026-03-31T11:56:49", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", - "media_type": "news_article", - "sentence": { - "text": "\"When I received the cancer diagnosis it was earth-shattering news, we weren't ready. You never think it is going to happen to you. It was really, really surprising but not in a good way.\"", - "media_hash": "d408122d2bfc00740ddd66b8ba8076147be5fadbc46c1a2bc2f65fdf", - "sequence": 18, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Helen Christopher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7723649999999997 - } - } - } -}, -{ - "title": "Mum says she has best-behaved children in UK thanks to diet and strict rule", - "publication_date": "2026-03-31T07:51:27", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/uk-news/mum-says-best-behaved-children-36946864", - "media_type": "news_article", - "sentence": { - "text": "Pam claims her kids' plant-based diet has stopped them from needing the doctor for childhood illnesses like the flu.", - "media_hash": "d474c004271eb86331e706b001c4aca05de66bcb99f818d3ff095398", - "sequence": 27, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Pam Johal", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7723649999999997, - "leo_s_topic": 3.7723649999999997 - }, - "demo": { - "health": 3.7723649999999997, - "nutrition_": 3.7723649999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", - "publication_date": "2026-03-31T20:19:52", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", - "media_type": "news_article", - "sentence": { - "text": "John had battled stage four adrenal cancer after the disease returned in 2024, having initially been diagnosed in April 2023.", - "media_hash": "90b6d3b4ecdfa3ccee56509e0117630e6dc3d18f7a8b94f698f24fa5", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.76621 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", - "media_hash": "bf681fa48af1dac84fa9d67da5fcba709747143516845b317c615d3e", - "sequence": 971, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Aled Morgan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.758995, - "senedd_election": 3.758995, - "scottish_elections": 3.758995 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", - "media_hash": "cb12d6b08127cb91842ef1759b8e950904991a5efc9c268e837b5a79", - "sequence": 41, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "clinical_health": 3.748535 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Experts say that while current vaccines may be less effective against cicada, vaccination still offers significant protection against severe Covid disease.", - "media_hash": "09b42d8122d72f7369450b005b6b0f56889b3bc2724a689565e77f68", - "sequence": 33, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Health officials", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535 - }, - "demo": { - "health": 2.8717300000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", - "media_hash": "30cd1723bfc823d3c1325faef9a519bf15b63ecc2df1f2db562bd254", - "sequence": 206, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", - "media_hash": "a416afed82bcdeff7e456cd28a3bee06154fee07e467bb256a9704b1", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "scottish_elections": 3.748535 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", - "media_hash": "ff60758d4c9ebd7c702029dfa88ddcb9a05353f4ddb2641dc6de91bd", - "sequence": 204, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", - "publication_date": "2026-03-31T14:37:03", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", - "media_type": "news_article", - "sentence": { - "text": "Mills is no longer a patron for the charity, which aims to fund research into more effective treatments for children diagnosed with the cancer.", - "media_hash": "0d0b92b73b4e19eaaaa110c65ffdb99ec832f28d88e82d103b794a15", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", - "publication_date": "2026-03-31T08:45:14", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", - "media_type": "news_article", - "sentence": { - "text": "She thought she was low risk but ended up being diagnosed with cancer.", - "media_hash": "426ba472a861bc4bcb43018a2c4e83543fd25a1f09f7ea6dc8f941cb", - "sequence": 6, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.74141 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "\"Sometimes I worry that my cancer has become the talk of the town and it's all people see in me.", - "media_hash": "5ae897d30eef22dff5bd7f61e0662003a48a4c8e5f21aee4daac679f", - "sequence": 48, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Nicola Rankin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.74141 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "But within two years, the keen flute player from Bracknell, Berkshire, was forced to have part of her middle finger amputated due to the discovery of a life-threatening cancer.", - "media_hash": "5a862a985babdcb1b27c53111e2e718ee81c278ef9199ade7984f9ea", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "Katie Houston was diagnosed with stage 2 bowel cancer in August 2022, at the age of just 43.", - "media_hash": "c4dff44349bd14c33f4f51380e884f97b72aa6c70e75262dc9b8f216", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", - "publication_date": "2026-03-31T11:56:49", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", - "media_type": "news_article", - "sentence": { - "text": "Three months later, Helen suffered from a chest rash and scans sadly revealed her cancer had returned to her lymph nodes and neck as secondary stage three breast cancer.", - "media_hash": "cf2228d254bc9ca8fa9b842a3b5305b124de8d7589bd648f995f3839", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - } - } - } -}, -{ - "title": "Woman 'time-travelled into parallel universe and spent five years in the future'", - "publication_date": "2026-03-31T10:20:15", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/woman-time-travelled-parallel-universe-36947729", - "media_type": "news_article", - "sentence": { - "text": "At the hospital, it was found she had suffered a bilateral pulmonary thromboembolism, where blood clots obstruct arteries in both lungs.", - "media_hash": "225d22145aaae7333277003e2cd441e085abfc6e82ab78f82399cd82", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", - "media_type": "news_article", - "sentence": { - "text": "Amid Cain's health battle, after being diagnosed with aggressive prostate cancer, there's an accident next week that leaves his life on the line.", - "media_hash": "f62aa7f3831cd735a114fb5eb64b37691705b70a9c27942e75a09488", - "sequence": 3, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "That led doctors to give Elizabeth the devastating news that she should have part of her finger removed in July 2022 because the cancer had already occurred twice.", - "media_hash": "6ec6cef2287890e4afc1c5f5f54f2716e1455f58a776466965f8c37a", - "sequence": 39, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.735255 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anyone who washes clothes at 60C urged to think again this spring", - "publication_date": "2026-03-31T02:47:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", - "media_type": "news_article", - "sentence": { - "text": "While most respiratory viruses spread mainly through airborne particles, norovirus is different.", - "media_hash": "09f263b96075d11eece26f8d6f6c092749dbc933fc02e91c49a67f1a", - "sequence": 14, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.73409 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "Customers can also earn extra Clubcard points through Clubcard Challenges by buying frozen and tinned fruit and veg, beans and pulses.", - "media_hash": "96fc6702c0fbe24df4487f2492f3d3554ad308a808089922c6a532d2", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.73409 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Brits urged to change the way they wash clothes as 60C may not be safe", - "publication_date": "2026-03-31T02:47:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", - "media_type": "news_article", - "sentence": { - "text": "While most respiratory viruses transmit mainly through airborne particles, norovirus is different.", - "media_hash": "7f349bf76a73ca8b12eaf7b482361a91c7a3bc87f8eacad031489d84", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.73409 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "These low-dose X-rays detect early signs of breast cancer and are routinely offered to women aged 50 to 70 in the UK in a national screening programme.", - "media_hash": "65a98e748e90722ac266a3ed7b904b3848eae19dfbd2eab9ec47c75d", - "sequence": 73, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.73294 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "People who smoked daily during more waves of young adulthood were significantly more likely to still be smoking later in life.", - "media_hash": "4ab67062d7f403d8f46447613f20c538bda7d81c4dfe54c454e4fab2", - "sequence": 51, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.7310499999999998 - }, - "demo": { - "health": 3.6691399999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "I also meet with my cancer nurse every six months.", - "media_hash": "20332fa5ae6c664d14cbdf067328a16ea0d7a42c396e1a0bf4ee23a3", - "sequence": 27, - "claim_type": [ - "personal", - "quantity" - ], - "claimer": [ - { - "name": "Katie Houston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.720035 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Immunotherapy drugs stop that protein from binding to immune cells - allowing them to identify cancer cells as foreign and launch an all-out attack on them.", - "media_hash": "0d005b163662aee59ca54b6442fc84e62eb74fa71936b9514f39a522", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "Symptoms linked to BA.3.2 appear broadly similar to other forms of COVID-19.", - "media_hash": "48ee8fa65ad8d22be69d195a11acb2fe6a2afb5e37ea3841828dad60", - "sequence": 15, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The antigen serves as a red flag to the immune system, almost inviting it to dispatch soldier cells to attack and destroy the cancer.", - "media_hash": "845292ce91fc163716dec8c24c332e55c59cfa7d78eb06bf2277d960", - "sequence": 27, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.703135 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Former Esslemont School near Ellon goes on the market for \u00a395,000", - "publication_date": "2026-03-31T10:45:40", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/lifestyle/home-gardens/property/6983843/former-esslemont-school-on-the-market-for-95000/", - "media_type": "news_article", - "sentence": { - "text": "Holidays reflected the needs of the farming calendar, while Esslemont School's old log books recorded closures for epidemics of measles and whooping cough in the days before vaccinations.", - "media_hash": "59293edcbf9bcc2642ba18e0c2953c86a6cd0465d715530b36f938d3", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The drugs were developed because some cancer cells 'hide' from the body's defences by releasing a protein, called PD-L1, which binds to the surface of immune cells, instructing them not to attack.", - "media_hash": "a1fd0cf01be8ca8f88add1e9d44c67a50c334ea39a95e498488ad998", - "sequence": 12, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "It tends to be the first investigation for a lot of patients both in obstetrics and obviously for cancer as well.", - "media_hash": "10d09e9f46fa5381c79b07d8efe9c127dd20f0985953dce02bf02e4e", - "sequence": 357, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Until now, medicines such as Wegovy and Ozempic have been used mainly for obesity and diabetes.", - "media_hash": "1a5a1a30c0bf953d07b5473c9487239b897fcce5fbcb90f0aa8fb729", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "nutrition_": 3.854765 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And so, really, you know, and and there are very effective treatments as well, specifically for ADHD.", - "media_hash": "b3ba2a3f54af1a41c1bb6cb1596ce547dfc2aae7ab7c9e663b093ebe", - "sequence": 522, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.703135, - "clinical_health": 3.703135 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Unlike many forms of skin cancer, subungual melanoma is not linked to sun exposure.", - "media_hash": "d81fa756ef6c60bba1df0f232dd06932df9e85fd7cf117d8413e474e", - "sequence": 68, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Diabetes was confirmed by self-report questionnaires and blood glucose readings.", - "media_hash": "6780c424c7cce172ace6a3c586c5f556854912f87e83d0edd5a82cf9", - "sequence": 15, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 3.58131, - "nutrition_": 3.58131 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing T-cells to kill off the tumour", - "media_hash": "6f9924afe75bea2d100c19cc00bc9b5556fa8dd84780a285fb2eb64e", - "sequence": 13, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Inside Health", - "publication_date": "2026-03-31T09:00:00", - "publication": "bbc-health", - "url": "https://www.bbc.co.uk/sounds/play/m002tbkd", - "media_type": "news_article", - "sentence": { - "text": "A new non-hormonal drug has been approved to treat menopausal hot flushes.", - "media_hash": "1b5e48294e3c491ef4f18093bab79ed0eb50bf27e47aa87a976f6a7a", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "UK health officials are keeping a watchful eye on the emergence of a fresh COVID-19 variant, BA.3.2 - dubbed the \"cicada\" strain - as it makes its way across numerous nations worldwide.", - "media_hash": "e616a19847831154bdee8dffff27489b290a01cb89bcaa6fba51c2f8", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "UK health authorities", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.703135 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "They can vary between individuals and may ease with rest, plenty of fluids, and medicines available without prescription.", - "media_hash": "396ece03bfe53cf20d16c57597ced7c762af98ae399467f5ae835a0d", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", - "media_hash": "5080801fa8dc55ff7852ae397478b79271eaaa10250c31393fcec110", - "sequence": 205, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135, - "senedd_election": 3.703135 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "This is standard practice when melanoma is suspected, as the cancer develops in the nail bed - the skin beneath the nail - rather than the nail itself.", - "media_hash": "df7f31c57367b9a7cc23585f44829d81111c2c64371ed3f89b82a187", - "sequence": 22, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.703135 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "By midlife, about one in 10 reported that their memory was 'fair' or 'poor.'", - "media_hash": "00dbe1f4ee47759a86841aa986132a1b4c2e5f4f173f8bc5fd7133d4", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.700095 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Wave of US-Israeli strikes hit key Iran sites", - "publication_date": "2026-03-31T14:23:13", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694051/Massive-US-Israeli-strikes-hit-Iran-Trump-threat.html", - "media_type": "news_article", - "sentence": { - "text": "Iranian media reported Tuesday that a wave of US-Israeli strikes hit military bases, a religious site and a cancer drug plant in the more than month-old war rocking the Middle East and roiling the world economy.", - "media_hash": "78f86fc16fa41e47bfb339c2ae233d6abd65c32176b300eeb32a3cbd", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Iranian media", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6937550000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Law also argues that it is better to prevent breast cancer from occurring than to treat it.", - "media_hash": "0199986e22a479345e6c979838c5cdee30de2a788583d3d9c2c568c3", - "sequence": 13, - "claim_type": [ - "rules", - "support", - "other" - ], - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.674385 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.674385 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Covid-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", - "media_hash": "7619ee4d5c416c6de27559c491081f96a4e7d7bb8782a3d96a9e4181", - "sequence": 45, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.67103 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "COVID-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", - "media_hash": "ec2a9ee7c8ee54d1b29a176d9f9f4ddfb3061dc601373946dceb4e8c", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.67103, - "clinical_health": 3.67103 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "A large analysis of nearly 80,000 participants found just 15 minutes of fast walking can cut your risk of early death by 20 per cent.", - "media_hash": "2f8662b932450a770579d50ddefc1b4e1a12c8fb944b94de8bc12228", - "sequence": 61, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691399999999996 - }, - "demo": { - "nutrition_": 3.5163599999999997, - "health": 3.5163599999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "One analysis found that just 30 to 60 minutes of muscle strengthening activity every week is associated with a 10 to 20 per cent lower risk of death from all causes.", - "media_hash": "6ad8793a382563f1cc2e2fb121a9af6bc596fe9163f6636f4a46df45", - "sequence": 80, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691399999999996 - }, - "demo": { - "nutrition_": 3.5175099999999997, - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.5175099999999997 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Each year, more than 200,000 people suffer a heart attack or stroke.", - "media_hash": "b159f2d0aa23d50f8b6e64358366132dbc443ad1234dd41e2c14c139", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691399999999996 - }, - "demo": { - "nutrition_": 3.6691399999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", - "publication_date": "2026-03-31T10:45:43", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", - "media_type": "news_article", - "sentence": { - "text": "Data from Healthwatch has shown that millions are struggling to access NHS dental care, with some forced to travel hundreds of miles or face waits of months.", - "media_hash": "e9d5650e8c433e159667b5bfb02dfb7ae58c33dd53f52322af20f81b", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Healthwatch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691399999999996 - }, - "demo": { - "health": 5.66914 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "But while fruit and veg ought to make up a third of what we eat, government figures show that fewer than one in five adults and under one in 10 children are getting their 5-a-day.", - "media_hash": "8ade66e8dc8b7129d971d659b0300e1b726fe9ca93d3b08cbbaac0c6", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691399999999996 - }, - "demo": { - "health": 3.275225, - "nutrition_": 3.275225 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Roughly 28 million Americans have alcohol use disorder, nearly 19 million have cannabis use disorder and approximately 29 million smoke cigarettes, making each condition a major public health threat.", - "media_hash": "e048c5c17bdc7a31414bc5f16f54746a79ff230e20781bf14a5a3116", - "sequence": 62, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.6691400000000005 - }, - "demo": { - "health": 5.517510000000001 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.6691400000000005 - } - } - } -}, -{ - "title": "Stephen Lewis, former Canadian politician and lifelong...", - "publication_date": "2026-03-31T20:11:10", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", - "media_type": "news_article", - "sentence": { - "text": "\"Stephen spent the last eight years of his life battling cancer with the same indomitable energy he brought to his lifelong work: the unending struggle for justice and dignity for every human life,\" his family said in a statement released shortly after his death.", - "media_hash": "f33dec48c1b9c51fbfc727b9fafd983eb87fae7948c25565fe9ea7b6", - "sequence": 10, - "claim_type": [ - "personal", - "quantity", - "other" - ], - "claimer": [ - { - "name": "Stephen Lewis Foundation", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "family", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.660125 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "The new Covid variant is set to become dominant in the UK(Image: Getty Images/iStockphoto)", - "media_hash": "1a046224242e7991e7aaf9d31fe3fc68435b3b33906ff725eb32a40f", - "sequence": 6, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "She said: \"So, the next stage, is, in about four weeks, we will find out if she managed to get all the cancer out and we'll also get the results of whether it was in the lymph nodes or not.", - "media_hash": "adc4be00fcc21ef941219f6125859cd9d6d3d117eb4151ac2acfd033", - "sequence": 20, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "But the new vaccine - called iVAC (intratumoural vaccination chimera) - could boost the chances of defeating cancer, according to results published in February in the journal Nature.", - "media_hash": "72254f0a0328c1255b348dc0144ac8f5640bdf4d0ec3c8303612b451", - "sequence": 23, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "University of Oxford", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.653625 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", - "media_hash": "4a5857123438eb8fa4dc702c657c297d6b7c8635f8108ed18a7aeee4", - "sequence": 42, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625, - "scottish_elections": 3.653625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "The Department of Health and Social Care also claimed the NHS will meet all of its existing cancer targets by March 2029.", - "media_hash": "1c76c29fd85ad01e8c59a05640ad41caaae1726599f04f7c39a73167", - "sequence": 19, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Department of Health and Social Care", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.653625 - }, - "demo": { - "health": 3.653625 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "\"Through my long-term ambassador work with the Lady Garden Foundation, I think it's incredibly important that we start having open conversations with friends and family about the five gynaecological cancers and what the symptoms can feel like. Knowing my mum had ovarian cancer has also made me take proactive steps with my own health. I've undergone genetic testing for the BRCA gene, as well as other genes that can increase the risk of ovarian cancer. Being aware of your body and taking preventative action can make a huge difference to an earlier diagnosis\"", - "media_hash": "db127044f79db5651584666d2e5e4073512de1b3754bf9829cf1fd8f", - "sequence": 8, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Davina McCall", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.636075 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", - "media_hash": "34ccc96534a02304efc672d48c95705df7e434783b79da696a512117", - "sequence": 202, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.636075, - "senedd_election": 3.636075 - } - } - } -}, -{ - "title": "Kate Garraway recalls loved one \u2018felt like they were dying\u2019 after sepsis battle", - "publication_date": "2026-03-31T08:26:05", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/kate-garraway-recalls-loved-one-36947019", - "media_type": "news_article", - "sentence": { - "text": "The former lobbyist had contracted Covid-19 in March 2020, and in the months and years that followed, he had one of the worst cases of the virus.", - "media_hash": "01837365e47d6f2c1f71ec6c6930486fb52c3b5402d43ba6a4db0d7c", - "sequence": 10, - "claim_type": [ - "correlation", - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.635935 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Britain star shares horror over loved one's sepsis symptoms", - "publication_date": "2026-03-31T09:03:11", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/good-morning-britain-star-shares-36947383", - "media_type": "news_article", - "sentence": { - "text": "\"I think about all the people during Covid that didn't have that, and I think about all the circumstances when people don't have that.", - "media_hash": "19a45ef5fd8eedfbb9e56e8e9a6b4c460b3f1c7f4ab271b5fd66b834", - "sequence": 24, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Kate Garraway", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.62671 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", - "media_hash": "80bfd913544d43bad3c59d32bcdae3e643d9bd9a9365f1f7e642b1ff", - "sequence": 34, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "clinical_health": 3.612245 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", - "publication_date": "2026-03-31T23:05:50", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", - "media_type": "news_article", - "sentence": { - "text": "I'm so much better after the long Covid, but I feel different, physiologically.", - "media_hash": "0c291a9196c59a178e43ec98607dfaaa477003d4be697e954509395d", - "sequence": 38, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "Hermione Norris", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.605585 - }, - "demo": {}, - "aapfactcheck": { - "health": 3.605585 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "I wanted to play the flute but I want to live more.", - "media_hash": "0c65f3402b91ff4da2ce8ef34d913b65706ab452ec52673de3461792", - "sequence": 46, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.605585 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire urging people to prepare in advance for any healthcare needs to help reduce out-of-hours services demand", - "publication_date": "2026-03-31T12:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-urging-people-prepare-36948783", - "media_type": "news_article", - "sentence": { - "text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", - "media_hash": "2cce2c2834e7311d8cd62a21687a936e75b312ae0fa35347c6086ac7", - "sequence": 24, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", - "media_hash": "6e249f27707f33ccc1a4bd3b7ac6c95408161b9f01357b8f1454521d", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Medicines Consortium", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "The fluid, which contains lung cells and bacteria, is sent to the lab for testing.", - "media_hash": "13bd24b882edc378f7548539e92e462ea7005ee2fe847a4e0f54282d", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "This manifesto is titled A new chapter for Wales.", - "media_hash": "c9d68dfb7dfef1d1799ff8a8323d5d59549fcbf815a5c0b02c645770", - "sequence": 981, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "senedd_election": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", - "media_hash": "943254d39c6b70c5bfd841cf0e666a83f183640984702dbb505f71a3", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.58131, - "scottish_elections": 3.58131 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Some 10 per cent of bacterial cases are fatal.", - "media_hash": "46855ca4a68a7bc0a0ab2b5a263911096e6bbf1ddd69b3668d5dc7aa", - "sequence": 65, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 40069, - "score": 0.42279999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.57942 - }, - "demo": { - "health": 3.53287 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.57942 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "Dr Kieran Docherty, clinical senior lecturer at the University of Glasgow's School of Cardiovascular & Metabolic Health, said: \"Our results from the landmark TARTAN-HF trial identified heart failure in a large proportion of people living with diabetes, emphasising the need for a heart failure screening strategy in this group of patients.", - "media_hash": "8960585e308bd82c8e54be42f823c6e50d72a5825afa634182f7f1d4", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "University of Glasgow", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Kieran Docherty", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.566845 - } - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "The main reason for economic inactivity in the UK is long-term sickness - accounting for about a third of cases, which is a record high.", - "media_hash": "2f3e7941c7484a0608c5a56ed6a7c9a3e52bc4cb7e5eeebbf55b978a", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5589250000000003 - }, - "demo": { - "health": 3.134055 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mitch Hedberg Eerily Predicted Exactly How He Would Die (& That\u2019s Not Even The Weirdest Thing About His Death)", - "publication_date": "2026-03-31T12:14:24", - "publication": "91f91b7b-4e5b-426d-afdc-d8c5c96d93e5", - "url": "https://www.vice.com/en/article/mitch-hedberg-eerily-predicted-how-he-would-die/", - "media_type": "news_article", - "sentence": { - "text": "Among the subjects the two discussed were Hedberg's dream date (Martha Stewart), among other things.", - "media_hash": "2b57176a799cff900be023c726be064e93720de1dd7894f25667b1e3", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "A brave West Lothian cancer survivor has shared her own story ahead of Bowel Cancer Awareness Month.", - "media_hash": "e78de901ea72198f004fc06cd1b9cbf4c347c02992516b8fa962be22", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", - "media_hash": "cc910ff7bf1539d885997a759d22140e10964188ed277bbbec0d1e80", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", - "media_type": "news_article", - "sentence": { - "text": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "media_hash": "9df7cdb92338ebac5802b5584a225ebcdab6264cdaa3c98f722ddf79", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "NHS Lanarkshire have collaborated with a number of partners to provide new research into diabetes.", - "media_hash": "5a58e9ed34727366d3dc6ded29d3f638dfe1cd07f44635e3152b759f", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", - "media_hash": "f420d8586b09e7fef11fc850fa9a6fbb016985a27218e68e9a599de2", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Genevieve Edwards, chief executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", - "media_hash": "2409b0dfbe4a2d1b8b23db11c616e10b042222c93b68d928d76e785e", - "sequence": 60, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Genevieve Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", - "publication_date": "2026-03-31T14:37:03", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", - "media_type": "news_article", - "sentence": { - "text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK.", - "media_hash": "1e02663ca1b3bc4222c4d79eb9ea7f26261275ac50ea906f0e8e3616", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "publication_date": "2026-03-31T10:31:24", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", - "media_type": "news_article", - "sentence": { - "text": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "media_hash": "d377de32d725271d38994bdf54fb49872fe80919225a3ab06b339118", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "media_hash": "552a263c4478a80efe5905ae9b479e4a616f0d0c09cca57903c1c7f2", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month", - "media_hash": "3a22ff14c5b3c000fa969a168eff4b0aeca158b1ad85db2570b646e0", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Lorna Luxe", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity", - "media_hash": "86795dbaf3b5936dc260197a059fcedd6a986143fee2a9ed4aef448a", - "sequence": 29, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "\"At the same time as I was waiting to hear back, Bowel Cancer Awareness Month had just started.", - "media_hash": "44753fc8f1b258b2bbb55a6a14b3734b5748cee5a617c5efe6ccc45b", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nicola Rankin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Tim Elliott, a professor of immuno-oncology at the University of Oxford, said this kind of approach - using drugs that both stop immune evasion and make cancer cells attract killer T-cells - is hugely promising.", - "media_hash": "7e32a1e59a6d51c156d1704e0923b164ecc81397045d1fcfb269ab04", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Tim Elliott", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.5503549999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Celebrity supporters of the gynaecological charity Lady Garden Foundation have pledged their support to the charity's 'Silent No More' Garden at the RHS Chelsea Flower Show, which has been designed to break the silence and stigma surrounding the five gynaecological cancers - vulval, ovarian, cervical, womb and vaginal.", - "media_hash": "2e567e9f816f4ee67a9cc0c42bb7da5dbf77f7b39cf042621b03ea75", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Lady Garden Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "Davina McCall whose mother had ovarian cancer, is a long-term supporter of the Lady Garden Foundation.", - "media_hash": "f90b6ef74791a7be8e9e4fc29776e56a353725b2228e44ea8224bc1b", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", - "media_hash": "468850ba63dba7734051a57781c59cab68bc4fbad4d5c5664ee2ed6c", - "sequence": 42, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Bowel Cancer UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", - "media_type": "news_article", - "sentence": { - "text": "EXCLUSIVE: Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", - "media_hash": "cbf157715be2f1568e002740c473314056be6c72736a2acf70d38997", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity.", - "media_hash": "8b6fc505f809bd309e25ec3978682acd90befbbd043a469369f09417", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "President Donald Trump, whose former daughter-in-law Vanessa is dating Woods, was asked about the golfer when he landed in Miami on Friday afternoon for an investment summit.", - "media_hash": "2963a4da3f88f8a747a7f5d5fe1bef7cf28ebfafbfb79e01845d62c0", - "sequence": 38, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "trending": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "To see if the strain could hold up in the human gut, the team tested it in simulated intestinal fluid containing bile salts, a notoriously harsh environment that can disrupt bacterial cell walls and render them ineffective at binding plastics.", - "media_hash": "b14c7d95cf0fa0714d2fb20a1ae013556eb091df75a1014bc8a12c47", - "sequence": 22, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "politics_of_food": 0.0, - "environment": 0.0, - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Scott Mills dropped by Neuroblastoma UK charity as patron after Radio 2 sacking", - "publication_date": "2026-03-31T14:37:03", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/breaking-scott-mills-dropped-neuroblastoma-36950227", - "media_type": "news_article", - "sentence": { - "text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK following his axing from BBC Radio 2, which was announced on 30 March", - "media_hash": "043eb702932d628fe0526047a8f6d9a7facc52cebdea2cdab8cc55aa", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", - "publication_date": "2026-03-31T08:45:14", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", - "media_type": "news_article", - "sentence": { - "text": "Kimberley Walsh met with a mum who was treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal", - "media_hash": "c3cd34eb0a31d6f7efd200b772e1f0cffc7977facdf4378536606cf9", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "media_hash": "741851f07fc1b9054ab069c6970c4d065358d1108935c207c753317d", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "publication_date": "2026-03-31T01:46:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", - "media_type": "news_article", - "sentence": { - "text": "Club Chemistry has since set up a COVID-like 'track and trace' system which will allow it to contact club-goers if further cases emerge.", - "media_hash": "bdd88e6fce9aa1f812d104ba3da4dc449d6e37b6b5acea9453c1f81b", - "sequence": 30, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.5503549999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T15:16:21+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/antoniabance/status/2038998843774120216", - "media_type": "social_post", - "sentence": { - "text": "Labour MP Antonia Bance says she is 'gutted' at the British Medical Association for refusing their pay increase offer to resident doctors.", - "media_hash": "9788a9294fb2ac74458fdc741d73b5f7491ccf54dac448f6a72a8fc8", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Antonia Bance", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", - "publication_date": "2026-03-31T14:44:01", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", - "media_type": "news_article", - "sentence": { - "text": "His wife, Carroll Taylor Wiseman, a nurse in a newborn intensive care unit, died at the age of 46 in 2020 following a battle with cancer.", - "media_hash": "3f30e5ea83964c8f5b675b702a89a8df4002d7a05c729ff691a9a988", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Karl Peggs, a professor of cancer immunotherapy at University College London Hospitals NHS Foundation Trust, agrees.", - "media_hash": "c839aa9205211143df9219f1e8f7d50dc545a5d3d621b41ce69348eb", - "sequence": 38, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 3.5503549999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "\"At Anthony Nolan we give hope to families affected by blood cancers and disorders, but we can't do it without the lifesavers that sign up to our register.", - "media_hash": "bd26cfc7ea63782680440892a60eb09e2f9a46047a63a4f77177df96", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anthony Nolan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Rowena Bentley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Alongside the meal plan, patients are provided with one-to-one support and guidance to help them sustain a healthy lifestyle for longer and reintroduce healthy foods and maintain weight loss, while medications for type 2 diabetes and blood pressure are stopped.", - "media_hash": "a6391784ce2ba31e0a7078049793783ddcef89ff4d50181b882cc3cd", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 4.552875, - "nutrition_": 4.552875 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.5503549999999997 - } - } - } -}, -{ - "title": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", - "publication_date": "2026-03-31T10:31:24", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/kimberley-walsh-breaks-down-after-36947371", - "media_type": "news_article", - "sentence": { - "text": "Kimberley Walsh met the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal", - "media_hash": "d30ab9706acf2eb0382c21664c1a683e0533d5e1c077803f18ba923b", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "media_hash": "51cbdd9164ea04872d68e24f56ca55de23132bf56856a2aad161e746", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", - "media_hash": "cdc5d4b113b1ff12de7012cdc5cc4b93bd952837d929a868a0aa5345", - "sequence": 987, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "senedd_election": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", - "media_hash": "8e8fa0be58a7449a317b4c331f6070ab4869fa6b9d93504f4deadf1a", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", - "media_hash": "57434479d14b7e0cf6a48505f39003f800b3bd2b52e9efe71617c202", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Biogen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Full list of new Covid strain symptoms including unusual signs", - "publication_date": "2026-03-31T14:58:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", - "media_type": "news_article", - "sentence": { - "text": "New cases of the Covid-19 Cicada strain have been detected in the UK", - "media_hash": "f724b4e265ac04531414a1c6ae93d059046612c1cc4a2596d4c21e36", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - } - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity, it is also available under the different brand name Ozempic for the treatment of type 2 diabetes.", - "media_hash": "1c1a5d3ff8b91df209ee148f2b8d2eb2d3414574d374f564641915af", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 4.128005, - "nutrition_": 4.128005 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", - "publication_date": "2026-03-31T19:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", - "media_type": "news_article", - "sentence": { - "text": "A second fan felt the diabetes idea made sense, especially as executive producer Ben Wadey promised a series \"red herrings\" leading up to the New Year's Day special, in which Penny's child will feature.", - "media_hash": "05936833684338259aabb33aa526d3cc61dc6e5725a8fc1f6a4402bd", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Ben Wadey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "clinical_health": 3.5503549999999997 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity and, under the name Ozempic, for the treatment of type 2 diabetes.", - "media_hash": "a0f6effb26094d80d6c0fa582bd30cad4e8a30d7ce2d964e886211be", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997 - }, - "demo": { - "nutrition_": 4.128005 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "One major study which followed more than 90,000 people over a period of 28 years, found those who ate the most olive oil (more than half a tablespoon a day) had a 19 per cent lower risk of death from any cause, compared to people who never or rarely used olive oil.", - "media_hash": "d3b9d50f9688ff46047dccc4ea4f10b43bc4500b22eba26027f90e03", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 3.3647299999999998, - "health": 3.3647299999999998 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "During the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", - "media_hash": "7f0e74d03b66d26ba54eff12de54f8633379482a546f6469509def55", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.3647299999999998 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "A study published in the Lancet last year reported a 65% increase in annual hospital admissions between 2012-3 and 2021-2 for children and young people aged five to 18 with mental health concerns.", - "media_hash": "8626ca53f6c05fead7dfe4a87a9022f24192c3000401bd9bc14f3a4c", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465, - "leo_s_topic": 3.548465 - }, - "demo": { - "nutrition_": 5.36473, - "health": 5.36473 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T20:00:57+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/M_Star_Online/status/2039070465520501096", - "media_type": "social_post", - "sentence": { - "text": "Nearly half of primary teachers report pupil eating disorders, according to survey", - "media_hash": "ef9a573c62865dc9ce1cf565e2f165e79177090d16add6772418108e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "primary teachers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - } - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "More than a million to be prescribed weight loss drug to prevent heart attacks and strokes", - "media_hash": "b84ecd9ed07ea306c0562cb8b12c5a9e4305dd2358b9ee7e0acb2b4f", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 5.66914 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "The Cicada variant - technical name BA.3.2 - is better at evading the body's immune defences as it has around 75 genetic changes in its spike protein, the part of the virus that helps it get into cells.", - "media_hash": "2a99552cba67e0ad8895d7e21db51240c95eea973c7299a77d35416e", - "sequence": 3, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Of those who survive, one in three suffer complications, including brain damage and hearing loss.", - "media_hash": "ac9fe4e929d6b8670652f900fefdd0ee5052382b5b3c72591d2798f4", - "sequence": 66, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", - "publication_date": "2026-03-31T08:46:35", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", - "media_type": "news_article", - "sentence": { - "text": "According to the NHS, Rett syndrome affects around one in 10,000 girls, which results in severe mental and physical disability and there's currently no cure.", - "media_hash": "a44374cfb494f0c673058225ebb4e0c2e027d19f2578f24d025f70a6", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Throughout the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", - "media_hash": "289a32d6a75e44b138fcd9d6121b13a8b7de9b4942784298cc5051ce", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Yet one in three women experience severe pain during a hysteroscopy, rating it at least seven out of ten, according to the Royal College of Obstetricians and Gynaecologists.", - "media_hash": "4bf925d6f10bf8203a17ee705c943f5c28749c70974f233166565d7e", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of Obstetricians and Gynaecologists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", - "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.51751 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Aplastic anaemia can affect anyone at any age, but is more common in people aged between 10 and 20, and those over 60.", - "media_hash": "13b9d67e7a5d7292a25ad2e3db18c7fe95ae216ad641f4ecfa750869", - "sequence": 20, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.700095 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show every four-week delay reduces patient survival by an average of 10 per cent.", - "media_hash": "946d5b0e8aa7cfbd0f06829ecafc51cfa6a384335019633ba32d3ef9", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.5175099999999997 - }, - "aapfactcheck": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": { - "health": 3.548465 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "'When all five physical measures were combined, mortality prediction improved even further in groups with preexisting health conditions.", - "media_hash": "2212fe44d7200c46e0eec92390bfec86d32dd8275b62bdb9598ef03f", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Professor Tom Yates", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "University of Leicester", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 5.350285, - "health": 5.350285 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "In young adulthood, participants averaged two waves of binge drinking, defined as having five or more drinks in a row in the past two weeks.", - "media_hash": "27f7e5a4ae6741b4a504702aa085d9bc85baa621ca6806fb9bc064b6", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.197505 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Each wave of heavy drinking raised the odds by 13 percent, and that risk persisted 30 to 40 years later, when they reached their 50s and 60s.", - "media_hash": "4178a2bdbb980a6e9471b9f4bd3f64a6da58aed8bd028f39ac7008a3", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids in a study", - "media_hash": "03297ff6b86138b18eed5d4282f519eab36bad0dcd1cac2a17c551c0", - "sequence": 46, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 3.3956850000000003, - "health": 3.3956850000000003 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "They averaged just over one wave of daily smoking and less than one wave of heavy alcohol use - drinking 20 or more days a month - or frequent cannabis use, which involves using 20 or more days a month.", - "media_hash": "53fcc6e9983e3b7bf477225065a1c9c7940da9595f200c2547e2fe54", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Even after accounting for midlife smoking, each additional wave of daily smoking in young adulthood raised the odds of poor memory decades later by about five percent.", - "media_hash": "2c04b6f3c730a0ef7133881d81abd5108ae2471e3cc080559b51113a", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Known as the soups and shakes diet, the intervention aims to help followers lose between 22lb and 33lb(10kg to 15kg), which is enough for most people to reverse the condition, experts say.", - "media_hash": "962cc69bd75e812af033cc6284bb0c5b2a12cad4bd5a195febeca09b", - "sequence": 30, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.548465, - "nutrition_": 5.548465 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "Estimates suggest around 175,000 people aged over 65 visit their GP with RSV every year, and the virus causes around 8,000 deaths among older people annually.", - "media_hash": "3813d6cfd5f411de899c678c45de2ff0ec22a06d48a46c50552792a1", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "But using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids.", - "media_hash": "a4556b9681c5800be42e4353e9341d8b141f4bad850c72f83947b41e", - "sequence": 49, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 3.548465, - "health": 3.548465 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "A 2021 trial found that patients with constipation who ate two green kiwis a day, 100g prunes a day, or 12g of psyllium per day for four weeks all equally increased poo frequency and decreased straining during a bowel movement.", - "media_hash": "91f5d6ea3f32369d335f265a7dca8812d878f98e4ab94d7eac757043", - "sequence": 121, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 3.3956850000000003, - "health": 3.3956850000000003 - }, - "pa-media": { - "health": 3.548465 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", - "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", - "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.548465 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "By age 35, more than a quarter of participants showed signs of alcohol use disorder, six percent had cannabis use disorder - meaning their use of marijuana had caused significant life problems or loss of control - and nine percent smoked a pack of cigarettes or more a day.", - "media_hash": "d02ae427312abfb9f97020e22a5fba544302ade280d246942d464e71", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.2500299999999998 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "Doses of medicinal cannabis products can be especially potent, containing up to 27% tetrahydrocannabinol (THC), the psychoactive compound in cannabis.", - "media_hash": "1b99e50f1b184669204f52afd140b3423c1bc5a062db3328b403bb84", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.05185 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3502850000000004 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "Street cannabis is thought to contain between 15% and 20% THC.", - "media_hash": "d6a737f022d823cb1656bf3b15d7ec3de378d20a8d5e54b1c9c264f0", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "It demonstrates a heightened ability to bypass existing immune defences due to approximately 75 mutations within its spike protein - the specific component the virus uses to enter human cells.", - "media_hash": "d4336d3db354037feb52152efc143a6ddf67caefb4977c72770695a5", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.2500299999999998 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "People with alcohol use disorder at 35 were 32 percent more likely to report poor memory in late midlife compared to those who drank without disorder.", - "media_hash": "683b57d649e9c4fef9b9b32d6a512281761c3de585ff8578fb4ad717", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Disease might be prevented in around seven in 10 cases, experts estimate, based on best evidence.", - "media_hash": "a993bdf2629c0c90b4bf328a3d3ae5b800c5fead300253f4665939dc", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.548465 - }, - "demo": { - "nutrition_": 3.548465 - }, - "dev": { - "blah": 3.123595 - }, - "pa-media": { - "health": 3.548465 - }, - "fullfact-policy": { - "climate_change": 3.548465 - }, - "mediacorp": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Between November 2025 and January 2026, BA.3.2 represented approximately 30% of sequenced COVID-19 cases in nations including Denmark, Germany and the Netherlands.", - "media_hash": "aabe9c49962a8ee7c5b2bce5c5a14dcf56c187fd4dbf6d50b16f4f23", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "Between November 2025 and January 2026, BA.3.2 accounted for roughly 30% of sequenced COVID-19 cases in countries such as Denmark, Germany and the Netherlands.", - "media_hash": "4af0dfed5515e5074928fc7fafb57d3f207929d6da2bb3652ab40cd1", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK in 'turning point' \u2013 what we know", - "publication_date": "2026-03-31T11:59:42", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36948990", - "media_type": "news_article", - "sentence": { - "text": "By late 2025, it was accounting for about 30% of Covid cases in countries like Denmark and Germany.", - "media_hash": "8b84b93a74080d74c2227698923ca12cade8a5adbc3ca6fe3223833d", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", - "publication_date": "2026-03-31T19:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", - "media_type": "news_article", - "sentence": { - "text": "\"Still hoping the baby will be Vinny's and Penny has gestational diabetes, which would explain the baby being larger,\" said a fan.", - "media_hash": "ab57d9322dbb83817ce3a6119dc1511922e4dcae44dc66a6d566373b", - "sequence": 22, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Fans", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.545675, - "clinical_health": 3.545675 - }, - "demo": { - "health": 3.545675 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Thousands of people suffer from viral meningitis every year in the UK.", - "media_hash": "55b611e66b3a75cd6a90b7039922e35103a646da0cc4b8e0e25c172c", - "sequence": 71, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.53287 - }, - "demo": { - "health": 3.077045 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.53287 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "The one-off jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing disease-fighting T-cells to kill off the tumour.", - "media_hash": "9339504d99cf017cd25dc746421350dd17d2623f5b1e7b194a4cb3b5", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5194 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": { - "health": 4.128005 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NADINE DORRIES: Jackie vs Carolyn - both were Kennedy women of style, but only one had substance", - "publication_date": "2026-03-31T02:50:23", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/columnists/article-15692683/NADINE-DORRIES-Jackie-vs-Carolyn-Kennedy-women-style-one-substance.html", - "media_type": "news_article", - "sentence": { - "text": "A survey published in the European Heart Journal informs us that short bursts of activity, such as running upstairs, can slash your risk of dementia by 63 per cent.", - "media_hash": "b87b606cd60322f999e2ea17120b30044d5d9af6f64d1b79ee1bc81f", - "sequence": 59, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "European Heart Journal", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5175099999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "An NHS survey of 2,000 women last year found that a fifth of women said they preferred not to have a mammogram as they've heard it's painful.", - "media_hash": "cc2a2d45d8cabbb6aef76921514c3d32d00658d278f6909850b85505", - "sequence": 51, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "More than 10,000 under-50s are diagnosed with the disease every year in the UK now - 10 per cent more than in 2010.", - "media_hash": "aa26f7e42291adce151e66db5ff1336d224db4e7c302391aaad95911", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "health": 3.123595 - }, - "aapfactcheck": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "Once considered largely eradicated in the UK, tuberculosis (TB) is rising again, with cases up by more than 13 per cent and London among the most affected areas.", - "media_hash": "7a88e7c9a4b13d466735ec6a9fb08e5d2f8071a38bf3417ffd7831f9", - "sequence": 38, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.5163599999999997 - } - } - } -}, -{ - "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", - "publication_date": "2026-03-31T10:45:43", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", - "media_type": "news_article", - "sentence": { - "text": "Recent figures from the British Dental Association show that around nine in 10 NHS practices are not accepting new adult patients.", - "media_hash": "04a11b26e578146567d6cb25471ff80fdb514b884b54199abb714e9c", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Dental Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "health": 3.077045 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Up to two million people in Britain are currently thought to be using weight-loss jabs, the vast majority paying for them privately.", - "media_hash": "530cf67f596660c83326df4b67ccc08710f7c3b262c55915f8977f72", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "nutrition_": 2.970815 - }, - "pa-media": { - "health": 3.09149 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "\"Through the programme, we've donated more than 10 million portions of fresh fruit and veg to schools across the UK to date, increasing access to healthy food and helping children to discover a love for fresh produce.\"", - "media_hash": "0a79794137e6241def0d7ef6360e1b0fd3cfa12555f171d5999b6b2b", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.545945 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Many melanoma patients are still alive ten years after their diagnosis; in the 1990s, average survival time was just six months.", - "media_hash": "9b26ac8addf8556d15dc21304c8cccf5c5e4cb1e82725fe0cab1d38a", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "health": 2.66662 - }, - "aapfactcheck": { - "health": 2.66662 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "media_hash": "370a158570997232faf9ad63ede4b286ddcfca51e9ab7d49ec6d4695", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5163599999999997 - }, - "demo": { - "environment": 3.5163599999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.51636 - } - } - } -}, -{ - "title": "'Sending the King to the White House is a risk the UK does not need to take'", - "publication_date": "2026-03-31T18:01:28", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", - "media_type": "news_article", - "sentence": { - "text": "Covid may no longer dominate daily life, but it still demands respect.", - "media_hash": "b820d6393e216d0268bebb9b4434e2bee62357394b5a901a463fe775", - "sequence": 28, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.50221 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "An estimated seven million Americans, meanwhile, live with Alzheimer's Disease.", - "media_hash": "c26885df75ffbe91ffa03792e2c621ecaa7e9e153d2bd62c63b6249c", - "sequence": 63, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5019150000000003 - }, - "demo": { - "health": 2.925415 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "There's so much we don't know about women's health and the connections between everything but I do believe there's a really strong link between ADHD and autoimmune diseases.", - "media_hash": "0b347928c4b8b8a17b0d8ab50ca9b18bd8b413034557e2814e5eae0d", - "sequence": 134, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5002750000000002 - }, - "demo": { - "health": 3.5002750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.5002750000000002 - } - } - } -}, -{ - "title": "The Delusions by Jenni Fagan review: 'always interesting'", - "publication_date": "2026-03-31T10:03:38", - "publication": "scotsman", - "url": "https://www.scotsman.com/arts-and-culture/books/the-delusions-by-jenni-fagan-review-always-interesting-6529664", - "media_type": "news_article", - "sentence": { - "text": "Edi, a single mother has died young, from cancer.", - "media_hash": "0e785b04b8fbb37a8fe59978ab1e09e3c6106a1a0ef1d283b83fb349", - "sequence": 21, - "claim_type": [ - "personal", - "quantity", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 17927, - "score": 0.40559999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.4201550000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "When we get to a certain age, night-time trips to urinate become more likely - especially for men who may have enlarged prostate glands (which can prevent the bladder emptying fully).", - "media_hash": "d5c2c1e439d121200ac7e9cf659ccbbee6391e8626a94a53d6c924ff", - "sequence": 60, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.4184200000000002 - }, - "demo": { - "nutrition_": 3.4184200000000002, - "health": 3.4184200000000002 - }, - "pa-media": { - "health": 2.5686799999999996 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", - "media_hash": "86d362a210c7cecf9869a88f456e410bb08f46380093f35448d292e5", - "sequence": 13, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.4184200000000002, - "clinical_health": 3.4184200000000002 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.4184200000000002 - } - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "He added: \"I would encourage everyone who becomes eligible for the RSV vaccine from April to come forward and get vaccinated as soon as they have been invited to do so by their GP.\"", - "media_hash": "98567f83abf7aacbbdaedeb0f33c5bec7783269d0dbce1d88e52ca99", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Health Minister Stephen Kinnock", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.414065, - "clinical_health": 3.414065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", - "media_hash": "98d1471372b8b9cc449bbaa4203bae3e53faf553285c4a4c8a226b98", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peter Hastie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.414065, - "scottish_elections": 3.414065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "Now 40, I have made a full physical recovery from my cholangiopathy and still attend NA meetings, but now I am one of the people who reassure newcomers that there is hope.", - "media_hash": "8e710449a1c9b78facd51dd9a6c07db5461201006c1ab19d0c7469d4", - "sequence": 128, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.407405 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "Um, and at the same time, even when I was going through breast cancer, I felt, wow, my body's extraordinary, it's still helping me heal, it's still helping me get to the next phase.", - "media_hash": "e2ab393635727a1f3aae53a36eac375b1f2f09489712b6481e6fcaa7", - "sequence": 303, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "Rita Wilson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.407405 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "I'd love to hear from you if you've got a diagnosis or you're currently trying to get a diagnosis for a condition like ADHD or autism.", - "media_hash": "02334656da9a49c33f4a9c512396c70082abc35114aa3cf7d8551fc1", - "sequence": 610, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.407405, - "clinical_health": 3.407405 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Um so I'm 51, um and I was diagnosed with ADHD just two weeks ago.", - "media_hash": "6defb7d77cd4cee737eb5634b1b607c41117dcee66163c14835056ac", - "sequence": 654, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.407405, - "clinical_health": 3.407405 - } - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "with long Covid , my focus is on being well and healthy.", - "media_hash": "1fb105c4de226600ec9f3703d9aa62d1f7160b7e4a3f0260cb05f31e", - "sequence": 12, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.407405 - }, - "demo": { - "health": 4.22619 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.2571449999999995 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Um so I've been reading up on ADHD for the last four or five years trying to um understand it because a few people that know me have sent to me you know I think you might be ADHD have you ever thought about it.", - "media_hash": "e88a135532842c64079bf44a8f22a038d1ce1ef838d62e6191967c9c", - "sequence": 655, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.407405, - "clinical_health": 3.407405 - } - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "Cut to 2020 and Covid, and I was working really hard.", - "media_hash": "2df8fe148d10e90d73643d98f116dc0eb9d0075f3b08e30ee3d94486", - "sequence": 12, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.407405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "We'd love to hear from you if you've been diagnosed with ADHD or autism.", - "media_hash": "618308d2dabc1fa3872e783fae888c23ff19ae0c756350f32815922f", - "sequence": 558, - "claim_type": [ - "personal" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.407405, - "clinical_health": 3.407405 - } - } - } -}, -{ - "title": "Good Morning Britain star shares horror over loved one's sepsis symptoms", - "publication_date": "2026-03-31T09:03:11", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/tv/good-morning-britain-star-shares-36947383", - "media_type": "news_article", - "sentence": { - "text": "The former lobbyist had caught Covid-19 in March 2020, and in the months and years that followed, he endured one of the most severe cases of the virus.", - "media_hash": "f5cec2b0f990b29b924bac517cef7be611ffca6ea058f412ecfd3a74", - "sequence": 14, - "claim_type": [ - "correlation", - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3959650000000003 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "As the weeks passed, though, that couple of glasses in the evening became three, then four, then the whole bottle.", - "media_hash": "193c4344f927625b1d734ef7651f2c276c3c0d0eea30dcb101ce0669", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "The UK Health Security Agency has issued a warning after 13 travel-associated cholera cases were reported in 2025, a 56% increase from the previous year", - "media_hash": "391b363b4ccdf66a88a26dab8466f5056ec71493843f07a1cd87791c", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "environment": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.395685 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "The data reveals 13 travel-related Cholera cases plus one additional case in a person who drank water from an endemic country were recorded in 2025 - representing a 56 per cent rise.", - "media_hash": "e543d4f839a334b0a3febdae7b271a7570b67c8824ef82092360962c", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "environment": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", - "publication_date": "2026-03-31T03:18:54", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", - "media_type": "news_article", - "sentence": { - "text": "Treasury officials said suspicious activity reports related to health care rose 20 percent in 2025 compared with 2024, but warned that the reports likely represent only a small share of the fraud occurring nationwide.", - "media_hash": "3c17a1088f1e28ec7cb872271587783d75f134b1d5c76c01c08aab0d", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Life expectancy for about half of those with the condition is between just two and give years from the onset of symptoms.", - "media_hash": "d9feeac5326a2109d68c069813a8374d3fc3c3500997daa1522db2ec", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.5175099999999997 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "She said the mortality rate for over-70s who \"cocooned\" at home was no different to the general population, but mortality rates for people of the same age in residential facilities was 21 times higher.", - "media_hash": "e9b5cf19486a74a032ea33b705775c3feba4dfdb148de807582769cb", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Professor Mary Codd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.395685 - } - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "It happens when the bone marrow cannot make enough new blood cells for the body to work normally, with around 100 to 150 new cases in the UK every year.", - "media_hash": "d4eb3189c15e8108554d6c96f2a5b357949af20206dd93d05311ddf7", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "The family was told his levels were at 5% with very few cells, when a baby his age should have 100%.", - "media_hash": "9f939559ec0d8a2cfb068b41a07993159deed244124d5d6472435a20", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "There was a 20% reduced risk of a major heart event among the 17,604 people who took part in the study.", - "media_hash": "94280911332669037a7900916a06ff5928796e7a1d3bdcb3a260ecce", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3647299999999998, - "nutrition_": 3.3647299999999998 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "Indeed, figures from the Office for National Statistics show that ketamine use among women is on the rise; in 2023, female deaths from ketamine were three times higher than pre-2020.", - "media_hash": "1992088ea2b88425883c95af51cd6b72d65f8c6cb1039d914a8e34c0", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "My team's findings, published in the journal JAMA Network Open, concluded that having an old gastrointestinal injury, such as a stomach ulcer, was associated with a 76 per cent increased risk of later developing Parkinson's.", - "media_hash": "75d56db458c020811775e1351cdebed06fa46190ffa427654388b77e", - "sequence": 20, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "nutrition_": 3.3647299999999998, - "health": 3.3647299999999998 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show the five-year survival rate in melanoma patients on the drugs has improved by around 50 per cent since they were introduced", - "media_hash": "71c6fe2e6bb5aaa57d5dd99d4f1405dac636b369ee644a884b90709d", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "aapfactcheck": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "Among the 17,604 people who took part in the study, there was a 20% reduced risk of a major heart event.", - "media_hash": "097e62e068a0990aff3183fd9418553840d84d18da651031dea7766e", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "nutrition_": 3.3956850000000003 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "She also bled for several weeks (normally, if there is bleeding it lasts no more than a couple of days).", - "media_hash": "db480edb9eadb68fe4a4a45a616b6f54602c58c51f6482f11c514589", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "More than five million women in England are not up to date with their routine cervical screenings, for instance, according to 2024 data.", - "media_hash": "a08d0d6e01a7117ab36b4c0d5a3156fc91db539ffe741320171f3506", - "sequence": 47, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 4.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Around eight million people in the UK are living with cardiovascular disease, with an estimated 1.2 million thought to have a body mass index (BMI) above 27 and therefore meeting the new eligibility criteria.", - "media_hash": "9325cc2f9bd8a47956ebc6d63387b3b53bc6103d0b4c7d2ddbb83e71", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "nutrition_": 3.3956850000000003 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "A person who engaged in heavy alcohol use in their 20s was not just at slightly higher risk of memory problems in their 30s.", - "media_hash": "79069e5998a16c57bc6c49e67e7b101a96e2cce23b098d9416add315", - "sequence": 34, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show the five-year survival rate in melanoma patients on the drugs (given via weekly or fortnightly infusions into a vein in one arm) has improved by around 50 per cent since they were introduced.", - "media_hash": "0b6fbb0633616a9562710ecafe635d663bf7b80f44c97b268323d9e5", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "And a recent study of more than 5,000 people in the US, Canada and the UK found 34 per cent of those aged 18 to 34 experienced at least one bowel disorder (e.g. chronic constipation or diarrhoea) - in contrast to 22 per cent of those over 65.", - "media_hash": "33152b4aae8c12a288356058f7b3b639a98e1a55aed07e15eafcaf2c", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "nutrition_": 3.3956850000000003, - "health": 3.3956850000000003 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "He had lost his job and taken out a payday loan to fund his prescription, which was now costing up to \u00a31,000 a month.", - "media_hash": "eba837c90f82f13e161c878ce0bbd413ed60b9e71c9ca2a1e6bfac41", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "The figures show 13 travel-associated Cholera cases and an additional case in an individual who consumed water from an endemic country were reported in 2025 - a 56 per cent increase.", - "media_hash": "fd32ad33349d40fd83de9262bd14aea2154e845e882ac2c6509ea2e6", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "One 2021 clinical trial found that people with high blood pressure who ate around four tablespoons of flax seeds a day experienced significant reductions in body mass index (BMI), total cholesterol levels and blood pressure.", - "media_hash": "55be0aa6f03e67eb488beea57c5ca66c982036c347112107332ffc2d", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003, - "nutrition_": 3.3956850000000003, - "popular_media": 3.3956850000000003 - }, - "pa-media": { - "health": 3.3956850000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "For each additional wave of daily smoking in their 20s, they were nearly twice as likely to be smoking a pack or more a day at 35.", - "media_hash": "4dd6cf97e36f79cd8eabd56682f31f4cc31c34f47a147843f5e6b666", - "sequence": 54, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3956850000000003 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "Participants with at least one of 131 common illnesses were considered 'unhealthy.", - "media_hash": "6975a7e4f420461209f13a61ea11c8da37ca198968a6b50a362cdecc", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.38124 - }, - "demo": { - "nutrition_": 5.38124, - "health": 5.38124 - }, - "pa-media": { - "health": 3.38124 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.38124 - } - } - } -}, -{ - "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", - "media_type": "news_article", - "sentence": { - "text": "\"I was immersed into a tank with the worst things you've ever seen and that was terrifying,\" says Bev.", - "media_hash": "31ea5e0b04a37a4b2855017db644df3014634da1c334fc873a6a313e", - "sequence": 18, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.357955 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "As days get hotter and the sun becomes more intense, people risk skin damage from sun exposure.", - "media_hash": "84c53fe62c9670906b65c6760077d05de3606ad34fb29ed334f40df2", - "sequence": 4, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.35651 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.35651 - } - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "Collagen is not going to give you the same benefits as certain skincare treatments, using sunscreen, drinking more water and reducing alcohol or smoking.", - "media_hash": "413be523f8d4328eb2f6a02acb29cc89ddccb566b83eb4156d4f1a09", - "sequence": 18, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Josie Porter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.35651 - }, - "demo": { - "health": 5.35651 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brits urged to change the way they wash clothes as 60C may not be safe", - "publication_date": "2026-03-31T02:47:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/lifestyle/brits-urged-change-way-wash-36943190", - "media_type": "news_article", - "sentence": { - "text": "This stomach bug can remain on fabric for up to a month, making contaminated clothing a more significant transmission risk.", - "media_hash": "ab8e59296879a5cce0fcc9ed66e0745d61812db2c19b98dcbdaac734", - "sequence": 14, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.35651 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anyone who washes clothes at 60C urged to think again this spring", - "publication_date": "2026-03-31T02:47:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/property/2188158/laundry-tip-washing-clothes-60", - "media_type": "news_article", - "sentence": { - "text": "This stomach bug can survive on fabric for up to a month, making contaminated clothing a greater transmission risk.", - "media_hash": "f091569c1a11a98360e4cf89290d4424883c05820116d37d6b67e4a0", - "sequence": 15, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.35651 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Patients with conditions such as peripheral arterial disease, or those who have already experienced a heart attack or stroke, face a significantly higher risk of another potentially fatal event.", - "media_hash": "5ff8a25eaa8b589a1539aacc5868755753eb723d7637b2847f0db2c8", - "sequence": 18, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.35651 - }, - "demo": { - "nutrition_": 3.35651 - }, - "pa-media": { - "health": 3.235835 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "New guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 or over in addition to other medicines, such as statins, and alongside a reduced calorie diet and increased exercise to prevent heart attacks and strokes.", - "media_hash": "a7cdc230cfc9b45768024f184c615c9583aafd8f1417361bd669fb63", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3502850000000004 - }, - "demo": { - "health": 5.31933, - "nutrition_": 5.31933 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Anyone can be affected but at-risk people include those aged under five, 15-to-24 and over 45.", - "media_hash": "5ea23e15128bdc37b9e41d0e4a85b43f4fc4ab7ac92809751daf3ac1", - "sequence": 51, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3502850000000004 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3502850000000004 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "'It's positive to see the UK Government commit to meeting cancer wait time targets by 2029.", - "media_hash": "e9119ad9071632a987ca75672fad430bfe158f4edcd8046a5c140ba6", - "sequence": 24, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Cancer Research UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Matt Sample", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.34943 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "Millions more will be eligible for the potentially life-saving jab (Image: Getty)", - "media_hash": "2afe9f8c94740a71c3849cb245a5826dde0ad78cbeb54ee607b04829", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.3475400000000004, - "clinical_health": 3.3475400000000004 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.3475400000000004 - } - } - } -}, -{ - "title": "'I blamed my pain on breastfeeding my three-year-old - now I'm fighting for my life'", - "publication_date": "2026-03-31T11:56:49", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/i-blamed-pain-breastfeeding-three-33689386", - "media_type": "news_article", - "sentence": { - "text": "\"When it comes back at that point it is no longer curative, you are then on a palliative pathway. It is no longer about can we get you better, no cancer, it's about how many years can we keep you alive and comfortable. That's incredibly hard news to deal with when you've got two young children and you want to be there to bring them up.\"", - "media_hash": "c732e5d69a959f4f635def8f1de703b035daeb338a21d9dd32b1cf6b", - "sequence": 23, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Christopher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - } - } - } -}, -{ - "title": "Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/emmerdales-moira-fears-cains-death-36915867", - "media_type": "news_article", - "sentence": { - "text": "She said how this latest incident leaves Moira \"worried\" amid her fears she will lose Cain as he battles cancer.", - "media_hash": "ff32eb69573e6189e5712cd004ba278481a55cfe2ab395ad5364a438", - "sequence": 7, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Natalie J Robb", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Moira Dingle", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "She also has ADHD.", - "media_hash": "c6fda1fd91a1cd4dcf1717bb4e5ffed44a05d84ad477ab0ceeb6b439", - "sequence": 3, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Ronnie, from Merseyside, was diagnosed with the rare blood disorder aplastic anaemia just before his first birthday.", - "media_hash": "15a19fceb6c1f96ededefb4bf24a9825f24c3375cb953bb2c9483c01", - "sequence": 5, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Laura", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EastEnders' Nicola issues ultimatum to Penny as real reason for paternity drama 'revealed'", - "publication_date": "2026-03-31T19:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/eastenders-nicola-issues-ultimatum-penny-36948357", - "media_type": "news_article", - "sentence": { - "text": "\"I really hope so and that this is all a red herring by Wadey to throw us off,\" the fan said before adding: \"The diabetes thing would make sense too.\"", - "media_hash": "003623ccac9faafe70195935fcb90eec6210d8f868e2acb552a127df", - "sequence": 26, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Fans", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.347495, - "clinical_health": 3.347495 - }, - "demo": { - "health": 3.347495 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trinny Woodall, Vernon Kay\u00a0and\u00a0Davina McCall to champion cancer garden", - "publication_date": "2026-03-31T12:48:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/lady-garden-cancer-garden-tendendo-33691445", - "media_type": "news_article", - "sentence": { - "text": "She said: \"My mother had ovarian cancer, and in those days no one talked about women's gynaecological cancers, their symptoms, or how they affected women's bodies - it's like there was a real sense of shame and embarrassment.", - "media_hash": "cbf4c468c7adde13ad73a7f624a40ce6ed052e9625a022b0c934f9dd", - "sequence": 7, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Davina McCall", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - } - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "Hermione Norris has revealed she has suffered from long Covid, which left her concerned about her ability to take on physical challenges.", - "media_hash": "f846d477c6178655bcd4f6ce8aef77e378ff65ed514394cbe3f826c5", - "sequence": 2, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Hermione Norris", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "\"I also use an infrared sauna for my autoimmune condition. I get really stiff joints. I'm so much better after the long Covid, but I feel different, physiologically. It gave me a shock, as I've always been quite fit and strong.\"", - "media_hash": "22f49f5c2f0e729e1357da80c354ead584efeea29d9bcba1263623f3", - "sequence": 15, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Hermione Norris", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Describing how her battle with bowel cancer began, Nicola said: \"It was so frustrating knowing that something wasn't right, but also feeling like the people who were meant to be helping me, just weren't listening.", - "media_hash": "03fe5ed3478b99596951308fa80e5b3b471d5f86d6d8b04c8af62788", - "sequence": 9, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Nicola Rankin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - } - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "That's been particularly tough as my mother died of lung cancer at a relatively young age, but she did smoke and I never have.", - "media_hash": "6d44303ba88f9df2387074305e1b998f1a1a191df0db113280015dba", - "sequence": 64, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "Beverley Callard, who played Liz McDonald on Coronation Street, has tearfully explained that she is \"in denial\" amid her cancer battle as she waits for results to come back following an operation", - "media_hash": "c560bc1911fb3b56bee1d215fedf75a86dc5bc96f9ed472cd67562da", - "sequence": 1, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "Coronation Street legend Beverley Callard was on the verge of tears as she admitted she is \"in denial\" amid her cancer battle.", - "media_hash": "ec898a821454a960f93f32ddfcdcef75b0803ed02fde56c1e5905b11", - "sequence": 2, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And nothing to panic about, whether it be blood or whether it be, and nothing I'd found in the diary or anything of that, any of the symptoms, so as I say, you know, for me, it was definitely a shock without a doubt because, you know, we all believe, um, you can say cancer free if you stay fit and healthy and all those things, but it just goes to prove that isn't the case.", - "media_hash": "6d4d76660c7463a0c502b369abbfd3e70e15ad74783b391dcdbb0a9b", - "sequence": 718, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "John Woodland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.347495, - "leo_s_topic": 3.347495 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Thousands of people living with motor neurone disease could be given the chance to live longer, thanks to a new drug which has been shown to slow the progression of the most common form of the degenerative illness.", - "media_hash": "8d45a445d0eeec3ea7a33ae3048b711116e9100264c1010c4059c262", - "sequence": 2, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.31933 - }, - "demo": { - "health": 3.47096 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when NICE approved Wegovy for weight loss on the NHS.", - "media_hash": "17046c8fcc233b84b131676420dab7f75f440773366e573d0ccd4064", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.31818 - }, - "demo": { - "nutrition_": 5.16655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when the National Institute for Health and Care Excellence (Nice) approved Wegovy for weight loss on the NHS", - "media_hash": "60f7b2f2025fab5d4c2ae37f5c68131dfe3a76d7f14272d94bc68e32", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.31818 - }, - "demo": { - "nutrition_": 4.9398599999999995 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", - "publication_date": "2026-03-31T06:00:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-star-bev-callard-put-36935121", - "media_type": "news_article", - "sentence": { - "text": "Since the cameras stopped rolling, Bev has been diagnosed with breast cancer and is currently undergoing treatment.", - "media_hash": "eb1f0f0bbab564759825122c5cbc3c70a275b941957cbf79f38b0b92", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.310385 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month.", - "media_hash": "d7586006485d4842b24d32258850733f4bf5f05bd5db2f2324b65c7f", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.310385 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Heartbreaking final conversation NASA astronaut had with daughters before high-risk Artemis II moon mission", - "publication_date": "2026-03-31T14:44:01", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694639/reid-wiseman-artemis-moon-daughters.html", - "media_type": "news_article", - "sentence": { - "text": "Weisman lost his wife Carroll (left) to cancer in 2020", - "media_hash": "624b0015f1ff825f43d94e03ed6d3e15a862471e2156e76efe1cedca", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.310385 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "It is recommended for those with a Body Mass Index (BMI) classed as overweight or obese - higher or equal to 27.", - "media_hash": "ed6e5ecf6c2bf1b52bc3b6bf93d372746be123e47a0339f48ef67fdd", - "sequence": 22, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.3040900000000004 - }, - "demo": { - "nutrition_": 2.985215 - }, - "dev": { - "blah": 3.3040900000000004 - }, - "pa-media": { - "health": 3.121505 - }, - "fullfact-policy": { - "climate_change": 3.3040900000000004 - }, - "mediacorp": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Never hold in a poo - the longer it sits in your colon, the more water will be drawn out of it, making it harder to go.", - "media_hash": "a480d1a21730f82fdfbb7c7a1de954cd3c04e6b951c20e8ec84c3b31", - "sequence": 40, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2821300000000004 - }, - "demo": { - "nutrition_": 3.2821300000000004, - "health": 3.2821300000000004 - }, - "pa-media": { - "health": 3.2821300000000004 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "In 2022, the World Health Organization recorded a worldwide surge in cholera notifications, with more cases emerging from a growing number of nations.", - "media_hash": "cb83368ba004a71a1f1421e5cb28d617e9fa486e96e28b74d937ea8b", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2500299999999998 - }, - "demo": { - "environment": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.25003 - } - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "Almost 424,000 people now receive the devastating news each year, with the frequency up from once every 90 seconds just ten years ago.", - "media_hash": "09e51437c2cd5b0250dd433c033af1c68e265b05905a0be2a83c3195", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2500299999999998 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": { - "health": 3.548465 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show only around 40 per cent fully respond to them.", - "media_hash": "54b2137c342a0148c0d0b21ddc5ad9db0f0dde4b36a26ca9eaa707a6", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2500299999999998 - }, - "demo": { - "health": 3.123595 - }, - "aapfactcheck": { - "health": 3.2500299999999998 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "Its popularity as a recreational drug has surged in recent years - particularly among young people - largely because it is cheap compared to other drugs.", - "media_hash": "4581f945cb0d47b8c065a88d5eb3d1a04f7697fce35487c28813199c", - "sequence": 35, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "'The earlier we can diagnose and treat ALS, the greater the potential to preserve function and maintain quality of life for longer, which are key to making ALS livable until we can cure it.", - "media_hash": "60d3839eff38526160a5cb4046ba040742eab1e4ef477ea20bae4861", - "sequence": 15, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Kuldip Dave", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "ALS Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "health": 3.20488 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "When looking at walking speed, the team found slow walkers were more likely to have higher resting heart rates than brisk walkers, which signals increased stress on the heart.", - "media_hash": "52017b787e269b2fec006cfef6e1ab4da8a93a5014ef4d43dbd181cd", - "sequence": 28, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "nutrition_": 3.235835, - "health": 3.235835 - }, - "pa-media": { - "health": 3.235835 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "Preliminary analysis indicates the cicada variant may be more capable of evading antibodies generated through prior infection or vaccination, raising concerns about reduced immune protection.", - "media_hash": "6445f53b920d7c88db8b6b5cd764fbdbe171a8e066e1e2ac3f73b8d8", - "sequence": 32, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Health authorities in the UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "health": 3.235835 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "These metrics can show how much stress essential organs like the heart are under on a day-to-day basis, but improving them can take months or years of dieting, exercise and medication.", - "media_hash": "8e8b3b53a78ec1fb46e8cd8108ac1b2d58448392a3db4290bd3b2f4a", - "sequence": 3, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "nutrition_": 5.235835, - "health": 5.235835 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "PM", - "publication_date": "2026-03-31T16:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404361", - "media_type": "transcript", - "sentence": { - "text": "And similarly, when we think about some of the physical health outcomes, cardio metabolically, so for our hearts and for lots of different bio markers, from activities like dance, and actually direct trials have compared dance to non-dance exercise, are often showing greater benefits physically from the dance compared to the non-artistic equivalent.", - "media_hash": "330ef86a4c5966f0e4ce973007e103164f561da7847cbf2b6dbf8566", - "sequence": 238, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Daisy Fancourt", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Moreover, tamoxifen patients are warned not to get pregnant while on the drug as it significantly raises the risk of birth defects, including physical deformities and genetic diseases.", - "media_hash": "8db9549a40b3a0a3f6fe493876ae4fb8b340e0ec3719b14cb7ce168d", - "sequence": 39, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "health": 3.235835 - }, - "aapfactcheck": { - "health": 3.235835 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Early research suggests the cicada variant may possess a greater ability to sidestep antibodies produced by previous infection or vaccination, sparking worries about diminished immune defence.", - "media_hash": "516436357512642cefa26e6b4e8214113bba6f4832ea647d988b0d0f", - "sequence": 32, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "health": 3.20488 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "This is particularly important for older people or those with weakened immunity, with studies showing it can reduce the number of infections.", - "media_hash": "fd635a58a5169e3893ec0a796aa588998fb0abfe4ca9397415f25331", - "sequence": 39, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.235835 - }, - "demo": { - "health": 3.20373, - "popular_media": 3.20373 - }, - "pa-media": { - "health": 3.235835 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.235835 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show that half of women who have breast surgery will experience persistent pain after the procedure.", - "media_hash": "083d0ceb7d4064518b6d6beb00abdf2332d65a447fcb607cc3f797a6", - "sequence": 54, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.226865 - }, - "demo": { - "health": 3.226865 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "'In practice this could cut around three to five major cardiovascular events per 100 patients every few years.", - "media_hash": "bfccf60321cc19333e9f7cd45af8233a6d359eece94ee43f6d5ad24e", - "sequence": 34, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Oliver Guttmann", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.226865 - }, - "demo": { - "nutrition_": 3.226865 - }, - "pa-media": { - "health": 3.226865 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "People who used cannabis frequently in young adulthood were more likely to report poor memory decades later - an eight percent increase in risk for each wave of heavy use.", - "media_hash": "49c17fbddf1e4cd5a475e8e0b4bce931e17059dc91d4316e97368f93", - "sequence": 42, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.226865 - }, - "demo": { - "health": 3.04313 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Eating an excess of sweets and chocolate is directly linked to poor dental health in children, due to the foods' high sugar content.", - "media_hash": "4080c39785ab2938efdb7834e50f0e6d3a774a104da943dbc3e1bc71", - "sequence": 33, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2202399999999995 - }, - "demo": { - "nutrition_": 5.2202399999999995, - "health": 5.2202399999999995 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "These months are when the UV Index can reach three or higher, which is when people should take measures to protect themselves from the harmful effects before they happen.", - "media_hash": "788007ef5f415735a4b2b2c05e2b0326a1f0c9ff033edb099d039b82", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2139949999999997 - }, - "demo": { - "health": 3.39658 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.2139949999999997 - } - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "These months mark when the UV Index can climb to three or above, which is when people should take steps to shield themselves from the damaging effects before they occur.", - "media_hash": "bf5774322be6fb60e94cd17c5cf39c012a98aa33c36c06d89011c969", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.2139949999999997 - }, - "demo": { - "health": 3.39658 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.2139949999999997 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", - "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.211065, - "scottish_elections": 3.211065, - "clinical_health": 3.211065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.", - "media_hash": "218d7e042f8efed1e8d5bd237012a703b602857c1554f6f9868de31e", - "sequence": 19, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Helen Knight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.20373 - }, - "demo": { - "nutrition_": 3.0521000000000003 - }, - "dev": { - "blah": 0.0 - }, - "pa-media": { - "health": 0.0 - }, - "fullfact-policy": { - "climate_change": 0.0 - }, - "mediacorp": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "An alert has been issued following 13 cases of a potentially deadly disease that can prove \"fatal within hours\" being identified in individuals returning to the UK from four destinations.", - "media_hash": "70b3ebf3c06929aa23577f0502fe2043f7789012c78ec447916b9e1d", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.197505 - }, - "demo": { - "environment": 3.16655 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.197505 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Heavy marijuana use in one's 20s raised the odds of developing cannabis use disorder by age 35.", - "media_hash": "219c6cfa16a9529cdd91766fcdc32ff3e6acb74739bfce5ba2704f85", - "sequence": 46, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.197505 - }, - "demo": { - "health": 3.3502850000000004 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'I died for 10 minutes and time-travelled into the future - death is a door'", - "publication_date": "2026-03-31T06:35:07", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/i-died-10-minutes-time-36946547", - "media_type": "news_article", - "sentence": { - "text": "Her oxygen levels quickly plummeted to 65% - which is lethal.", - "media_hash": "c9490e6a80f327f5e189cb2ec316eb78614827b7620f843298e35f40", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.197505 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "To date, it has gathered 8,000 testimonies of women with shocking stories that echo Dawn's - many report not being informed that a hysteroscopy can be painful or being given information about pain relief options.", - "media_hash": "2d589110115afbe0619a2c8be078d06c5d32780697fa1d507dc2c707", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Campaign Against Painful Hysteroscopy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.197505 - }, - "demo": { - "health": 3.16655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Weight-loss jab Wegovy will be offered for free on the NHS to more than a million people in England at risk of heart attacks and strokes.", - "media_hash": "c231b293e533cb4429abed302733a00e2d2079459cf7eae357e1b5c2", - "sequence": 8, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.19476 - }, - "demo": { - "nutrition_": 3.19476 - }, - "dev": { - "blah": 3.19476 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.19476 - }, - "mediacorp": {} - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another,\" she said.", - "media_hash": "c5785cdd7e33b8f62796ccf015e2c5dd085fcd3bc250602a68d423a7", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS England", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Helen Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.18436 - }, - "demo": { - "nutrition_": 3.18436 - }, - "pa-media": { - "health": 3.18436 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.18436 - } - } - } -}, -{ - "title": "Mum with rare MND fights for access to life-extending drug", - "publication_date": "2026-03-31T05:35:26", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/mum-with-rare-mnd-fights-for-access-to-life-extending-drug", - "media_type": "news_article", - "sentence": { - "text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", - "media_hash": "5d4250299936dc3bf7a2ad4fca723fe889fb12f24f02b6114c12dbfb", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.16655, - "scottish_elections": 3.16655 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "A warning has been issued after 13 cases of potentially lethal disease which is 'fatal within hours' were detected in people returning to the UK from four destinations.", - "media_hash": "36e179d861368c553bdffe1425e1f52bcff0863e607586dd545ecfde", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.16655 - }, - "demo": { - "health": 3.16655 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.16655 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "It's thought that artificial sweeteners can significantly alter the make-up of bacteria in the gut.", - "media_hash": "4d9265732760bea253484d50cfbb17fb5c9ea602c4a9d64691c4966e", - "sequence": 26, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "health": 3.15833, - "nutrition_": 3.15833 - }, - "pa-media": { - "health": 2.6127849999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6127849999999997 - } - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "Expired sunscreen can lose its effectiveness, failing to protect your skin from the sun damage you think you're covered from.", - "media_hash": "745b5373acdb92fc493a7c97cf93e6d436e09ae1d2cccc3b1dbcef3e", - "sequence": 18, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.15833 - } - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:00:46", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Tooth decay remains the most common reason for hospital admissions in children aged five to nine.", - "media_hash": "a771bee496873b4e1aef95c048848af66fd96d7ab1ea73467a6cdf4d", - "sequence": 41, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "NHS hospitals", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "maldita": { - "health": 3.15833 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "Eating pumpkin seeds can also help support hair health, the nutritionist adds, with one of the most notable symptoms of a zinc deficiency being hair loss.", - "media_hash": "d2ca5765f53c7d781f6446e793976e577ff47228ad4d62a2b8d33a0c", - "sequence": 40, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "nutritionist", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "health": 5.158329999999999, - "popular_media": 5.158329999999999 - }, - "pa-media": { - "health": 3.15833 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.158329999999999 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And if they're feeling stressed and anxious and a bit sad about that that's not a medical condition.", - "media_hash": "eeccb907a91cf8b27ef2c62c7ecd95a5499b3f7a7379c83d3e4b5ea3", - "sequence": 622, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.15833, - "clinical_health": 3.15833 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Ultra-processed foods (UPFs) have changed how we poo - and not for the better.", - "media_hash": "36bcf37f8fb487c741b789b2dc29bd9e55452d1f930c7316764b1938", - "sequence": 78, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 101972, - "score": 0.21309999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "nutrition_": 3.037655, - "health": 3.037655 - }, - "pa-media": { - "health": 3.15833 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "Low sick pay is making Britain sicker", - "media_hash": "78b1f61c2937d9e62891f0bfbccb76c3f4b09e68941726903bb07d19", - "sequence": 0, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "As temperatures rise and sunlight becomes stronger in the coming months, people may face an increased risk of skin damage from UV exposure.", - "media_hash": "5a942b8c33e666cab0cbcf7717c417ba1a299dae88b1b3f3e976fccb", - "sequence": 4, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.15833 - } - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "Even on overcast days during early spring and autumn, UV levels can still be strong enough to cause harm, specialists warn.", - "media_hash": "ee75e21eec50e7963fcb219c559bcbf32301ad8cd53d4363938385ec", - "sequence": 23, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.15833 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.15833 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Specialists warn that shortfalls in worldwide genomic monitoring mean BA.3.2's actual distribution may be greater than currently understood.", - "media_hash": "67c7f0c100eef67756f24f6a4f2251874358bd251572a6e0565ac144", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Specialists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.123595 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "Furthermore, the fact that, since 2014-2016, women have lost almost four years of healthy life expectancy and men have lost three years demonstrates just how systemic the problem has become.", - "media_hash": "18185f36720f6ddaab241b52f1cf0aef6c26e65d763bc2ba9a3e3a01", - "sequence": 14, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 5.548465 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.123595 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "The disease affects around 58,000 women every year.", - "media_hash": "98aa03a6d998366a1069de6c93a16f9a52dcceb49aa596462a754238", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.47096 - }, - "aapfactcheck": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "The analysis also finds that the majority of workers (58 per cent) reported working when they didn't feel well enough, and a third of these cited sick pay as one of the financial reasons for working through illness.", - "media_hash": "c21388d0bb5551939c8c0fd205a6575c934451f8acada9dd9fd132ef", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centre for Progressive Change", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "The National Education Union (NEU) poll also revealed that two-thirds (68%) of secondary school teachers who responded regularly encountered absenteeism linked to students' mental ill-health.", - "media_hash": "a4f12fe28749ed65c10c44dc59ae626bd28949ce87cb5df098e75549", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Education Union", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595, - "leo_s_topic": 3.123595 - }, - "demo": { - "nutrition_": 5.123595, - "health": 5.123595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "Almost half of teachers (48%) who responded said they regularly witnessed chronic anxiety among pupils, while almost a third (31%) saw students living with social isolation.", - "media_hash": "8d2538f8e13ce66dd05a289420cfdde82c495acfe56ad1b910dcd74c", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Education Union", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595, - "leo_s_topic": 3.123595 - }, - "demo": { - "nutrition_": 4.970815, - "health": 4.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "With around 17,600 new cases of melanoma in Britain every year, and between one and three per cent are subungual melanoma.", - "media_hash": "2212ac25e17e4c10194ba9beda5c3f5c6abff8d58d067fcb7278263a", - "sequence": 51, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "According to analysis of that data shared exclusively with the New Statesman by the Centre for Progressive Change think tank, 10 per cent of the workforce - 3.7 million people - have worked through illness in the past year because they couldn't live on statutory sick pay alone.", - "media_hash": "6d958711e0946653e3d31465e397ef93106e657c8c531d6135dd578e", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Centre for Progressive Change", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Each year in the UK, there are around 100,000 hospital admissions due to heart attacks, another 100,000 people experience a stroke and around 350,000 people live with peripheral arterial disease.", - "media_hash": "2d629b39bd070b7929c198975c956dbdc5d28a1003c42f3621a76e6f", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "nutrition_": 3.6691399999999996 - }, - "dev": { - "blah": 3.123595 - }, - "pa-media": { - "health": 3.6691399999999996 - }, - "fullfact-policy": { - "climate_change": 3.6691399999999996 - }, - "mediacorp": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "And those who developed the disorder were 36 percent more likely to report poor memory later in life compared to those who used cannabis without developing a disorder.", - "media_hash": "2be56f3b9ff0d6aec21220139b1b6a953bad786c7da56ff325dfe67d", - "sequence": 47, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "That figure is slated to double by 2060, driven by the rapid aging of the baby boomer population as well as an overall rise in the number of Americans living into old age - the leading risk factor of the disease.", - "media_hash": "9a72e3fcf11fc5f45b9fcd88caf7c42d9daa026832f5131d4c9609b8", - "sequence": 64, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.123595 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "I mean, this report finds that one in ten young adults self-identify as autistic.", - "media_hash": "c5e1ede9c5390e2776f066bfdda4a2771fee9c9d516329d58c3d2b26", - "sequence": 529, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.123595, - "clinical_health": 3.123595 - } - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Ronnie, from Merseyside, had just started crawling when his mother Laura noticed he was bruising more.", - "media_hash": "f45cad1cf9c3183596549d9028823244c10bac51b5481b4267185f23", - "sequence": 3, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.120805 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Ronnie was rushed to hospital where medics initially suspected he had leukaemia, a type of blood cancer.", - "media_hash": "69556cd84e3bad21d06954aab2f98e60219db3c01623171a762d7c1b", - "sequence": 10, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.107525 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "Nicola added: \"On April 4, 2019, I was called into the hospital and told I had stage 3 bowel cancer.", - "media_hash": "41a2977650c49e300a3c44442e8de3ffa9bfcb5c3c5cc377f7e3de3b", - "sequence": 28, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Nicola Rankin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.107525 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Speaking after her second melanoma was removed - leaving her cancer free - she added: 'The whole way along I never felt I was going to die because the surgeon was very reassuring that it was cancer but it was very treatable as it was diagnosed early.", - "media_hash": "7a99a510e7ed649e07c31c2ce8e3156d714b33b639bb1ffce8d544b5", - "sequence": 48, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.107525 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "But for one woman, it turned out to be the only signs of a rare, deadly kind of cancer that ultimately cost her part of her finger.", - "media_hash": "cba7078e5cf6b88e53a6ed4d9f2a6d68b948a66dbccbefe694716a8c", - "sequence": 4, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.107525 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Wave of US-Israeli strikes hit key Iran sites", - "publication_date": "2026-03-31T14:23:13", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694051/Massive-US-Israeli-strikes-hit-Iran-Trump-threat.html", - "media_type": "news_article", - "sentence": { - "text": "The Iranian government also said airstrikes had hit a plant making cancer drugs and anaesthetics, claims AFP could not independently verify.", - "media_hash": "de4a08f48ef83a4a2339900ea0c0c11671c40cb36b696d885f98df89", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Iranian media", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "In 2025, cases were reported in 33 countries across 5 WHO regions, with the highest number of cases in the Eastern Mediterranean, followed by Africa, South-East Asia, the Americas and the Western Pacific .", - "media_hash": "2d189017950705ecd7276a9a71d4495717e4d6a5bbbf9b7d8541cf87", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.09725 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "The team reported 33,318 deaths.", - "media_hash": "9b1d339702cdc2a097847267a71e3a8b683f27f21960b250188fa81d", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.09725 - }, - "demo": { - "nutrition_": 2.89907, - "health": 2.89907 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 5.09725 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", - "media_hash": "009d0f925b83954eeba3eeb74adcdf138530faf6921ddc8adb236fcc", - "sequence": 25, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.092465, - "clinical_health": 3.092465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "But, other experts say even the smaller dose could put women at needless risk of side-effects and complications.", - "media_hash": "9806f1fe933a0ada4ee0f17c4fdd46735a5c2c9077044ec635c49aca", - "sequence": 45, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.083055 - }, - "demo": { - "health": 3.083055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health", - "media_hash": "a5e809d370306442dce539a29aa54674aa0f3680cfc73c467a606be4", - "sequence": 6, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "NHS England", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.04313 - }, - "demo": { - "health": 5.19591, - "nutrition_": 5.19591 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.04313 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "If the majority of your nail beds appear pale and washed out, with a thin reddish-brown strip near the tip, this could be a sign of 'Terry's nails'.", - "media_hash": "bfa11409831f2db87831514069fdcf75591c92bda9693c652854f371", - "sequence": 9, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 2.884875 - }, - "pa-media": { - "health": 3.037655 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Limb amputation is a potential side effect if septicaemia (blood poisoning) occurs.", - "media_hash": "ba3906eee483057403b7d7a92d8dc81ab97130c56a50136cacee9bdf", - "sequence": 67, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.037655 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "This hormone is needed to bring down high blood sugar levels - which left unchecked can increase the risk of heart attack and stroke as well as problems with the eyes, kidneys and feet.", - "media_hash": "28b17554e4255ecaa76bd5c8f8bddbc1e18712f967f818a03f4bcb98", - "sequence": 11, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655, - "nutrition_": 3.037655 - }, - "pa-media": { - "health": 3.037655 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.037655 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "This, experts say, changed the way the body absorbs and regulates blood sugar, which over time increases the risk of developing the disease.", - "media_hash": "326a42d6450d6f141c65e80c8fb04ed40996d61f7d4f394919639bc0", - "sequence": 27, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 5.235835, - "nutrition_": 5.235835 - }, - "pa-media": { - "health": 3.037655 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.037655 - } - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Kids could be particularly susceptible to catching cicada(Image: Getty Images)", - "media_hash": "073a1753c25fd4e4ebd4b0e7eaaac47417bc6434e90dd109fd18941f", - "sequence": 12, - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.037655 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Quitting by age 35 did not erase the risk.", - "media_hash": "4c9897535b649fc3304e5f65492127ff5ab3e33816ae3dfbf1c21272", - "sequence": 58, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "\"High LDLs over a lifetime increase your risk.\"", - "media_hash": "27ce428fa3d90b8e0326e72cd75f4f84964b8db7c6e70d427561bd93", - "sequence": 27, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "nutrition_": 3.15833, - "health": 3.15833 - }, - "pa-media": { - "health": 3.037655 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "Evidence suggests that low sick pay means workers battle on regardless of their symptoms, or return to work too soon - spreading disease and making themselves sicker.", - "media_hash": "23461eddeecc1efd13cea6489fdc6068efed6639030ea33aa5409a4d", - "sequence": 33, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Changes in colour, width, or pigment spreading onto the surrounding skin should also raise concern.", - "media_hash": "582660cacc8d1bdfe16f935b1f5e5f6b8f358c34bf9c4abdecce4906", - "sequence": 72, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Specialists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "statins and tamoxifen and yet because we haven't normalised it in society, women aren't aware of its potentially life-saving effects.", - "media_hash": "3b44cfd86a9e4d7124fb09862f5e4f44699208e778b0b9baa6633657", - "sequence": 61, - "claimer": [ - { - "name": "Dr Rebekah Law", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 2.6127849999999997 - }, - "aapfactcheck": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "As MND gets worse, a sufferer may experience problems breathing, swallowing and speaking.", - "media_hash": "5e39709cccdf082b695b3f278557981d6c4b1e87ecef58b862d63b4c", - "sequence": 26, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.189285 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "A daily smoking habit in young adulthood predicted worse self-reported memory by age 50, regardless of whether the person had quit by age 35.", - "media_hash": "43cfecd5ec9049d53fae47f503f00adfe5203d9e714fb0cc159b49b4", - "sequence": 4, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Alcohol use disorder, meanwhile, is defined as meeting two or more diagnostic criteria for problem drinking over the past five years, including loss of control, cravings or continued use despite harm to oneself.", - "media_hash": "daaedbfd2d7ccfc1e4fa281e3a874cbad9a9b4beb2082d85d2c55b61", - "sequence": 30, - "checkworthiness": { - "fullfact": { - "clinical_health": 3.037655 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Looking at your smartphone on the loo is a modern-day habit - but a study my team ran, published in the journal PLoS One last year, proved this is something you should never do, as it is associated with a significantly heightened risk of haemorrhoids.", - "media_hash": "20379e9d976af3940c59873e48f444f90a4bb9e4848ac299bec5519c", - "sequence": 44, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.0067 - }, - "demo": { - "nutrition_": 3.06859, - "health": 3.06859 - }, - "pa-media": { - "health": 3.0067 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "For this reason, experts liken the side-effects of tamoxifen to an early menopause - though most women find that their periods return if they stop taking the tablets.", - "media_hash": "decd9b77a241e3be7de7e3f7dcb507fc2be6fbfbc44d8422902be09a", - "sequence": 36, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.00555 - }, - "demo": { - "health": 3.00555 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "The actress, who is still awaiting her results which will indicate whether she is cancer-free or not, has relocated to Ireland to star in the soap opera Fair City so had to go through the rigmarole of changing the GP she was registered with, but the process made her realise that she has not been letting herself really think about the situation at all.", - "media_hash": "75d513ec1fed45332527aa2e06d6e80e850b3a01bd7fac49ce7f0450", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Beverley Callard", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "It has also called for a new 'Cancer Fellowship' scheme to welcome scientists from the US whose cancer research has been defunded by the Trump administration.", - "media_hash": "17fac4a7e583d608779610de4c8b95b0cef97fd9fb97bdb5bf03eb94", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Liberal Democrats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.975225 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "I was an expert witness who reviewed the medical evidence that put Lucy Letby behind bars - this is what defenders of the killer nurse get so wrong about the case", - "publication_date": "2026-03-31T10:20:16", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/crime-desk/article-15692267/sandie-bohin-expert-witness-lucy-letby-medical-evidence-defenders-wrong.html", - "media_type": "news_article", - "sentence": { - "text": "One of the key pieces of medical evidence cited during the trial was a 1989 academic paper by Canadian neonatologist Dr Shoo Lee, which examined how air embolisms present in babies.", - "media_hash": "c8af49a435382718fdf2eafcc0b29cd7690057b162e884baafb91838", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.975225, - "leo_s_topic": 2.975225 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "The UKHSA revealed that across England, Wales and Northern Ireland, 14 confirmed cholera cases were recorded in 2025, marking a 56% rise compared to 2024 when 9 cases were documented.", - "media_hash": "13d5d56ee332c84851f071093980d982aeac5f6140a40d16be7b3432", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "environment": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Around 5,000 adults in the UK have the condition and there is a one in 300 risk of developing it over the course of a lifetime.", - "media_hash": "51e45315bcfab001ef2eb16cec40571a1505c37640e2ba2c1150ca95", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:00:46", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "NHS hospitals performed 56,143 extractions on children and teenagers in the financial year ending 2025 - up 14 per cent on the previous year's total of 49,112.", - "media_hash": "38d5fe6038db78c19472ef4645466f31e71b3838476161b68f8b38b2", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS hospitals", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "In the UK between one and three times a day is normal - while in eastern India, the average is 14 stools per day (partly down to local diet, which is heavier in fibre and spice).", - "media_hash": "928eec907131a8cdb2861c7a8b116e083e8b3cc0242e29117023047f", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 4.545945, - "health": 4.545945 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "At 500 million bacteria per milliliter, the strain trapped 87 percent of the plastics, its peak performance under ideal conditions.", - "media_hash": "b51e75047b38d1cce5cdf3897db768d33933f024e84420334ae71f22", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "politics_of_food": 2.970815, - "environment": 2.970815, - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 2.970815 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "Freedom of information data from NHS Business Services Authority showed there were 659,293 unlicensed cannabis products privately prescribed in 2024, more than double the 282,920 issued in 2023.", - "media_hash": "ca09cd4a4f4873871a613faecd6198d0bae8606543ab200b179bdd9e", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "In fact, one small study found a 10-minute walk immediately after eating had a greater benefit than a 30-minute walk 30 minutes after eating.", - "media_hash": "79fc0c1ce180db20eb0389d14a1c7412a8453ba6706fd21aa9e79919", - "sequence": 58, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Exclusive \u2013 RX Border Defense\u2019s Patsy Writesman on CCP\u2019s Stranglehold on Skinny: FDA\u2019s \u2018Green List\u2019 Surrendered GLP-1 Supply Chain to China", - "publication_date": "2026-03-31T04:07:25", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/30/exclusive-rx-border-defense-green-list-surrendered-glp-1-supply-chain-china/", - "media_type": "news_article", - "sentence": { - "text": "Boyle pointed out more than 1,500 adverse incidents from GLP-1's reported by the FDA, which Writesman contended could be even higher.", - "media_hash": "a518413dd08883439588923c3e43c25ae5b27983c26c0f44361431c9", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Patsy Writesman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 3.3956850000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "media_hash": "c47433b07fe931eb48ace60c2d7b1b1f9f77e496f542c01da3501452", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 2.772635 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "And the injections may only be given if someone's LDL is higher than 3.5 mm/L, while taking the maximum doses of statins and ezetimibe.", - "media_hash": "29243c2c35675f6bdb3a0752a7ba52386bfae867f9ab6ef952a4c8be", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "Hospital visits increase during these events, \"even up to five days after the episode ends\".", - "media_hash": "43452a5c0a88bdf24e1a6226de5e29723f82cfb9ac198406de884967", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Canary Islands Health Department", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "General Directorate of Public Health of the Canary Islands Health Service", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "environment": 2.970815, - "health": 2.970815 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "The UKHSA said that in England, Wales and Northern Ireland there were 14 confirmed cholera cases reported in 2025, which represents a 56% increase to 2024 where 9 cases were reported.", - "media_hash": "d3e92160b30ca8266bb3b043050314904f3ba8ec4450b17039ba1e49", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "There were 336,023 people in the healthy group and 71,546 in the unhealthy group.", - "media_hash": "2b900cc463a72e3b99ac3537249ef9ad5fae51746a90a65fe61aa770", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 4.5769, - "health": 4.5769 - }, - "pa-media": { - "health": 2.970815 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.5769 - } - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "Treatment typically involves a combination of potent antibiotics over a long period (over 18 months in my case and the infection is still there).", - "media_hash": "ac202316c6bd63c951fa60af9257d62015b68c980eea883795f5bd7a", - "sequence": 61, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "Throughout 2021, these bouts of pain became more frequent and intense, and on 14 occasions I went to A&E.", - "media_hash": "38a1a4c8249218145db2199aa009345faa13552993ee00974c7d2ad6", - "sequence": 77, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "The UK Health Security Agency has released data showinga 56 per cent increase as symptoms explained", - "media_hash": "60bfb2dbdea185998a00c107cf15cb471f54fdc45ee4c641ad509ed4", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 4.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.970815 - } - } - } -}, -{ - "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", - "publication_date": "2026-03-31T09:45:26", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", - "media_type": "news_article", - "sentence": { - "text": "However, figures released by the British Association of Aesthetic Plastic Surgeons revealed that in 2023 there were 4,641 procedures carried out in both the NHS and private sectors.", - "media_hash": "ecdd7b7592c62cc0f8ec2749df33fa634dfc0f79213e723be55b545f", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "Around one in four (24.9%) of those screened were found to have the condition within six months, in contrast to only 1% in the group continuing their usual care.", - "media_hash": "ae4cfc93a100b06b486ed9d0861c31f93c6e7e4b7dcd801c139e5d93", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "Scope, a charity that supports people with disabilities, puts the average at \u00a31,095 a month.I do all these things, like physio and personal training, to help my mobility so that I don't rely on the NHS.", - "media_hash": "b2dbd3e524fdcc2d5d563b2f85ca9e93807b60cd5475b7f25ab22048", - "sequence": 153, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scope", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "When replacing cholesterol and blood pressure, NRI improved 11 percent for women and 14 percent for men.", - "media_hash": "48a1217ed33fa8183609a21c51ca035ec3e6a6a2fe1d165ad198511d", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.970815 - }, - "demo": { - "nutrition_": 3.3956850000000003, - "health": 3.3956850000000003 - }, - "pa-media": { - "health": 2.970815 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "The numbers might look small at first glance, but what makes them significant is that these risks did not fade after a few years.", - "media_hash": "df282df8c2734f6b5c874fef8c80db1b7eef30304d5a509071074d05", - "sequence": 32, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.9374000000000002 - }, - "demo": { - "health": 2.73922 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "People exposed to passive smoking or with suppressed immune systems, such as patients undergoing chemotherapy, are also more at risk.", - "media_hash": "fefc0eea319e1c10e54c98f4587515fa16983d16e4449bd79ed12253", - "sequence": 52, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.93364 - }, - "demo": { - "health": 2.598275 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.93364 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Taking paracetamol and ibuprofen about an hour before the procedure can help with cramping.", - "media_hash": "34306a45fa56c2e7a4f55d56cf79aaa42958b6be17a8a6a113b9e8a2", - "sequence": 101, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.93117 - }, - "demo": { - "health": 4.748585 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "Researchers discovered that the mutant strain 'Circada' surged globally in September 2025.", - "media_hash": "ff05e8cdbf44e745d73fd9f8bc22dfb47623d1831799ea02c52072b5", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.925415 - }, - "demo": { - "health": 2.89907 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.925415 - } - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "I'd obviously signed up to some kind of trial at the time, and they were checking up on people post-Covid.", - "media_hash": "75271806f0bf58f4b873053163cdfc585068452ebfbc9b3bd31bce94", - "sequence": 32, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Hermione Norris addresses if a Cold Feet reunion is on the cards after show's six-year hiatus: 'There have been rumours'", - "publication_date": "2026-03-31T23:05:50", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15696117/Hermione-Norris-addresses-Cold-Feet-reunion-cards-shows-six-year-hiatus-rumours.html", - "media_type": "news_article", - "sentence": { - "text": "I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack.", - "media_hash": "c7732305fc281da0aa4ffaafd183172501e112450e14d278f4430ff7", - "sequence": 27, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Hermione Norris", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": {}, - "aapfactcheck": { - "health": 3.347495 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/cold-feet-star-hermione-norris-36951822", - "media_type": "news_article", - "sentence": { - "text": "She told Prima magazine : \"I'm not great at extreme discomfort. I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack. But we did a couple of massive walks and I was fine. I was pleasantly surprised.\"", - "media_hash": "c4fd19cfef0a9d24e42510991c9e69c33298cbf9007f9c06f8d3dea0", - "sequence": 10, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Hermione Norris", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "I also organised a \"let's talk\" session with a disabled influencer who has endometriosis.", - "media_hash": "18fa8e804c93b67cba248ca2ed6f970731dc2a423a7846484f33da70", - "sequence": 22, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "It's really good with my ADHD brain because it ties into my competitiveness and also gives me a focus, so that I'm not thinking about how well I'm standing and therefore I'm often more stable when I'm doing the exercise.", - "media_hash": "67d6eb1a5965868a7ebc9e3e12cf04cea8d92921a15f1f00c492825c", - "sequence": 63, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T16:52:41", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "'I don't think that is an unusual concern but that is outside of my influence to change even were I to make a prevention of future deaths report.", - "media_hash": "d214b6687eecd94d4fd9f5edddd4b83ed029be407a93fb02265768f8", - "sequence": 33, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Christopher Wilkinson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.922625 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 0.0 - }, - "fullfact-policy": { - "social_media_misinformation_": 2.922625, - "climate_change": 2.922625 - } - } - } -}, -{ - "title": "Inside Health", - "publication_date": "2026-03-31T09:00:00", - "publication": "bbc-health", - "url": "https://www.bbc.co.uk/sounds/play/m002tbkd", - "media_type": "news_article", - "sentence": { - "text": "Before delving into the evidence with resident GP Dr Margaret McCartney, James finds out what it feels like to have a hot flush.", - "media_hash": "3977ab7ce83caa6370e87538d7d9435d5f0eb8602f4dc39b36784f4e", - "sequence": 4, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.922625, - "clinical_health": 2.922625 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Instead, she is calling for patients to be offered a smaller daily dose - a quarter of the current amount - in order to avoid these side-effects.", - "media_hash": "b78b8bc12943c01d394ab07f4bb4d035719e7e8d4011f6f35551b945", - "sequence": 41, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.9201050000000004 - }, - "demo": { - "health": 2.9201050000000004 - }, - "aapfactcheck": { - "health": 4.920105 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Stephen Lewis, former Canadian politician and lifelong...", - "publication_date": "2026-03-31T20:11:10", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", - "media_type": "news_article", - "sentence": { - "text": "He had been diagnosed with stomach cancer eight years ago.", - "media_hash": "f6bfaaa38688af3f39ea36a6b3bd5cc287ab4e6ac675ab60c1ad49f3", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Stephen Lewis Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.91647 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "It was launched yesterday ahead of the Senedd election in May.", - "media_hash": "b5bba451895c05dd142fd6d247dd4df0fe40e85744820bcb1d1e1354", - "sequence": 970, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.91647, - "senedd_election": 2.91647, - "scottish_elections": 2.91647 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Pressing on your nailbeds may temporarily make the discolouration disappear, though this is not a cure for Terry's nails.", - "media_hash": "07d5b35f290c81899e6536172daf433bc388e41f1a0e5e6d33e0c782", - "sequence": 17, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.9158299999999997 - }, - "demo": { - "health": 2.884875, - "nutrition_": 2.884875 - }, - "pa-media": { - "health": 2.9158299999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "It's also possible to use a local anaesthetic gel and, if the cervix needs to be held steady, a small anaesthetic injection can numb the area.", - "media_hash": "570217e69545ec5d838a75f85fd084bbde55e988439e6750860773f6", - "sequence": 102, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.9158299999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "Millions are being urged to act after a huge change in guidance.", - "media_hash": "0518b0404ff5efe15091e8a72d4d5a6e6ebd9f33fe228fa05dd018b0", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.91556, - "clinical_health": 2.91556 - }, - "demo": { - "health": 2.91556 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.91556 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "They are also more likely to suffer financially as a result of their illness and to develop long-term complications such as chronic pain.", - "media_hash": "76e7d5935627c0f9cea0fbe456a628c5329e607d9dbb4e8501528108", - "sequence": 15, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.9142349999999997 - }, - "demo": { - "health": 2.9142349999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Doctors should also prescribe lifestyle changes that include eating healthily and getting enough exercise to help people keep the weight off.", - "media_hash": "9250b04f2ba3d05711dea705367da0e80a93c419d566982e6c800ef0", - "sequence": 27, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.90771 - }, - "demo": { - "nutrition_": 2.90771 - }, - "dev": { - "blah": 2.90771 - }, - "pa-media": { - "health": 2.96962 - }, - "fullfact-policy": { - "climate_change": 4.90771 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", - "media_hash": "0ae215e5eea20faf31960bed36ef9636499978ffcae105c20cf24ae2", - "sequence": 6, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Dr Michael J Ryan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.901365, - "health": 2.901365 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "So, one 'hit' a night became two - and then one during the day, too.", - "media_hash": "53b38eca2c4138e8dab23e382c286a28b2bc32f9253b8507f8fd6bd6", - "sequence": 62, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girls Aloud star in tears as she meets woman who beat cancer thanks to Sarah Harding", - "publication_date": "2026-03-31T08:45:14", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/girls-aloud-star-tears-meets-36947001", - "media_type": "news_article", - "sentence": { - "text": "Annette had received a letter inviting her to take part in a trial funded by The Sarah Harding Breast Cancer Appeal.", - "media_hash": "b50d11925f1c09db5acd06dabbb2371a4262fc6469158ed41602c29b", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.885515 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", - "publication_date": "2026-03-31T20:14:03", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/corrie-legend-beverley-callard-tearfully-36951567", - "media_type": "news_article", - "sentence": { - "text": "Beverley Callard breaks down in tears as she issues update after breast cancer surgery", - "media_hash": "8de455a6dd132ad1723125d22c92c886e179b08ec1ae18b6c1e8570e", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.885515 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Elizabeth was a keen flute player before having her finger amputated", - "media_hash": "4ceb090760361ba09c72410a5b0cb5ea2a7d2c3887f20dc46868f2e0", - "sequence": 38, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.885515 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", - "publication_date": "2026-03-31T08:46:35", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", - "media_type": "news_article", - "sentence": { - "text": "She may develop scoliosis.", - "media_hash": "f2b5e14b3cb9248862847d1e192f1c865289918230c53d0ba4429755", - "sequence": 26, - "claimer": [ - { - "name": "Cesar Garcia Torres", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.884875 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Once the coil is in place, the uterus may briefly contract - a feeling like period pain.", - "media_hash": "c19b13295e669ddf66dd113b7210f39393b90232b0e57ef1254e959c", - "sequence": 98, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.884875 - }, - "demo": { - "health": 2.9158299999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "For example, a drop in the hormone oestrogen after the menopause means vaginal tissue can be thinner and drier, making the insertion of a speculum more painful.", - "media_hash": "cbef57724de710e49c141d683d54a67d86d5b20c6fab26885f5a29fc", - "sequence": 53, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.884875 - }, - "demo": { - "health": 3.037655 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "However, for those whose heavy drinking, whether frequent or episodic, continued into their 30s and led to alcohol use disorder by age 35, the effect was significant.", - "media_hash": "e4bbf3ca050e8bc5abfc2e5987862b11a463b295ab6b189845aab602", - "sequence": 38, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.884875 - }, - "demo": { - "health": 2.884875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "A three-tablespoon serving contains over a third of an adult's daily magnesium, which helps calm the nervous system and regulate circadian rhythms - playing a crucial role in sleep-wake cycles.", - "media_hash": "0a12e99a3741a872e9456c9fac48dfc9512284d221a03888f0a7a8d6", - "sequence": 47, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.88131 - }, - "demo": { - "health": 4.8194, - "popular_media": 4.8194 - }, - "pa-media": { - "health": 2.88131 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.88131 - } - } - } -}, -{ - "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", - "publication_date": "2026-03-31T09:45:26", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", - "media_type": "news_article", - "sentence": { - "text": "A mother who 'hates' the way she looks with her 'heavy and saggy' size 40K-cup breasts is desperately fundraising for surgery after claiming the NHS turned her down at least 20 times.", - "media_hash": "276fcd8fdc6a18e4d3694819b5b8275253b2bd18c16b23f88bfc7b39", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.87995 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "\"Today's guidance will no doubt help save lives as cardiovascular disease is still one of the country's biggest killers.\"", - "media_hash": "1bdcbcd2188798819bb1195c6be69f5684918b1e3641bd2a7067b77c", - "sequence": 26, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "British Heart Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.875965 - }, - "demo": { - "health": 2.6922300000000003, - "nutrition_": 2.6922300000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.875965 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "These changes include more sedentary lifestyles, unhealthy ultra-processed foods which make it harder to maintain a healthy weight, and more high-pressure working environments which drive stress levels and impact sleep.", - "media_hash": "b90d29ad69058549507492b324e126aed699e5fcc5df7bf6382fb148", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "health": 4.87173, - "nutrition_": 4.87173 - }, - "pa-media": { - "health": 2.8717300000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.87173 - } - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another.", - "media_hash": "a1d4df02e28f135f2a80284652f0b0f99940956b746676a2c4801e1a", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS England", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "health": 2.8717300000000003, - "nutrition_": 2.8717300000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.8717300000000003 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "Besides being good for the gut, regularly eating flaxseeds - especially in their milled form - has been shown to reduce total and so-called bad cholesterol levels, decrease blood pressure and improve blood sugar control.", - "media_hash": "15756b0d953600f6c7ebedf385fa7ebd80cc073a8488bfa3ef9dcb22", - "sequence": 14, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "health": 4.87173, - "nutrition_": 4.87173, - "popular_media": 4.87173 - }, - "pa-media": { - "health": 2.8717300000000003 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.8717300000000003 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "Cholesterol-lowering drugs that are alternatives to statins may become more widely used after a major trial has shown they can stop heart attacks and strokes even in people not thought to be at the highest risk.", - "media_hash": "261714c9d7a4804f9047a5263923cb8c8b63610b1497cc81e429bdb5", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "nutrition_": 2.8717300000000003, - "health": 2.8717300000000003 - }, - "pa-media": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "So many people seem to believe that lurking in your colon are 'toxins', and the longer your poo stays in your intestines, the more dangerous these are.", - "media_hash": "bec4bf4dfe99590752bef334c51acf1fec2bdc863e03f9d46f97d5d4", - "sequence": 69, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "nutrition_": 2.8717300000000003, - "health": 2.8717300000000003 - }, - "pa-media": { - "health": 2.8717300000000003 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Drug trials suggest Wegovy can help slash the risk of future heart and circulation problems.", - "media_hash": "f906c24e28b8f9e56eadd34ae02da4e76b7a33632021ca3afcc91b29", - "sequence": 11, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8717300000000003 - }, - "demo": { - "nutrition_": 2.5219199999999997 - }, - "dev": { - "blah": 2.8717300000000003 - }, - "pa-media": { - "health": 2.8717300000000003 - }, - "fullfact-policy": { - "climate_change": 2.8717300000000003 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "The Swedish researchers, who tracked nearly 250,000 Britons, said their findings should serve as a 'reminder that sleep plays an important role in health.", - "media_hash": "99ec22de92648075e7d91ce18efd820690dd8ee9e409577256b4b319", - "sequence": 22, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Swedish researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8655049999999997 - }, - "demo": { - "health": 4.440635, - "nutrition_": 4.440635 - }, - "pa-media": { - "health": 2.8655049999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.865505 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "walking pace was the strongest individual predictor of mortality, particularly in those with a prevalent health condition,' the researchers wrote.", - "media_hash": "c007c046ead88297374f86f6e5e4529eddc0b27ccebe5770184376aa", - "sequence": 31, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8655049999999997 - }, - "demo": { - "nutrition_": 4.865505, - "health": 4.865505 - }, - "pa-media": { - "health": 2.8655049999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.865505 - } - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "'There are lots of people out there who have got complex coronary disease which they've been told can't be treated or they have not been offered a treatment,' says Dr Hanratty.", - "media_hash": "77c9df951c238ac7b9063915cf4988fc5d328f28861cd27e8874a0b8", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Colm Hanratty", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8655049999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "Guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 and above in addition to other medicines, such as statins, and alongside a reduced-calorie diet and increased exercise.", - "media_hash": "dce60c7eb33352225dde5a74ab490e122fd28814ebd1a59b3e7b6a00", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8655049999999997 - }, - "demo": { - "nutrition_": 0.0 - }, - "pa-media": { - "health": 2.712725 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "Today, the NHS typically prescribes only a small number of licensed CBMPs - those approved by the medicines regulator - for conditions such as severe epilepsy, multiple sclerosis and chemotherapy-related pain.", - "media_hash": "600ea17718e91686d1163a1ea8619a3de5da36b873b1344729b09adc", - "sequence": 12, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.856485 - }, - "demo": { - "health": 4.856485 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.856485 - } - } - } -}, -{ - "title": "'I caught meningitis on Tenerife holiday - I would've died if I got on flight'", - "publication_date": "2026-03-31T07:24:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/i-caught-meningitis-tenerife-holiday-36946555", - "media_type": "news_article", - "sentence": { - "text": "Meningitis patients 'may have been left disabled' because of hospital delay", - "media_hash": "998785c3ac3dd6c9c033cd5b712ff468dca089417ba9d671b43aff52", - "sequence": 8, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.85392 - }, - "demo": { - "health": 2.85392 - }, - "pa-media": {}, - "fullfact-policy": { - "measles": 2.85392 - } - } - } -}, -{ - "publication_date": "2026-03-31T20:00:00+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMirror/status/2039070225958887548", - "media_type": "social_post", - "sentence": { - "text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR6bMj https://t.co/YQoQMBYDJE", - "media_hash": "35dd9d3ed9ba7422eece4978545c9a93c13594de7a60781c36db9706", - "sequence": 0, - "claimer": [ - { - "name": "My son's mother", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.85392 - } - } - } -}, -{ - "publication_date": "2026-03-31T14:01:35+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMirror/status/2038980026989744148", - "media_type": "social_post", - "sentence": { - "text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR5DWL https://t.co/Ge4yc8pRu5", - "media_hash": "33be078a90b62df909bc537a30841ecbcaf30f82afbf2e26ce056ecf", - "sequence": 0, - "claimer": [ - { - "name": "My son's mother", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.85392 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "In fact, research shows that nine in ten women are alive five years after diagnosis.", - "media_hash": "b65ad45896d98d839b1ca3ac1bb09c26280123674277b1a9089360ad", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "research", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.850355 - }, - "demo": { - "health": 3.5019150000000003 - }, - "aapfactcheck": { - "health": 2.6521749999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T13:33:00+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/dailystar/status/2038972832965616016", - "media_type": "social_post", - "sentence": { - "text": "An alert has been issued after a potentially deadly disease was identified in individuals returning to the UK from four destinations", - "media_hash": "96fec8735cc0fc9c512b7f77997b816670187d030aacd221cc2cc1cc", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8334 - } - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "According to the National Institute on Drug Abuse, opioids are 'addictive'.", - "media_hash": "48b8b34b1d24f949d9db71a3b48adbadd3b47e64924451ec53e5d2bd", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.83094 - }, - "demo": { - "health": 2.799985 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "Experts can't seem to agree on the magic number of steps per day for optimal health - is it 5,000, 7,000 or 10,000?", - "media_hash": "f6ce20a852684251c62e52c589b15e5e4d597a4bca1c0dc38a94990f", - "sequence": 52, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.8194 - }, - "demo": { - "nutrition_": 4.66662, - "health": 4.66662 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.8194 - } - } - } -}, -{ - "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", - "publication_date": "2026-03-31T04:47:11", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", - "media_type": "news_article", - "sentence": { - "text": "'No one should have to endure racial harassment from a registered medical practitioner.", - "media_hash": "04744ecd315c6e7e3edb3e71f3c37003a31b21bd415342828b91e6a4", - "sequence": 18, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Sharon Stoliar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.81209 - }, - "demo": { - "race__ethinicy__religion": 2.55922 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "However, having fewer people in the workforce - whether for health or any other reasons - almost inevitably means a smaller economy.", - "media_hash": "b8989abef9d7b9ec07c06cde1e08cc833feaa38521d111d98c81e799", - "sequence": 12, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.810965 - }, - "demo": { - "health": 4.962595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.8109649999999995 - } - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "However if more people become infected, then a similar proportion of those who experience severe disease becomes a bigger total number.", - "media_hash": "3f21955597079ce0644e72d9c6adb015abbb980199b1e4d8fd3db591", - "sequence": 30, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.810965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.810965 - } - } - } -}, -{ - "title": "PM", - "publication_date": "2026-03-31T16:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404361", - "media_type": "transcript", - "sentence": { - "text": "So for example, for depression outcomes, we see greater reductions in depression when people are engaged in arts-based social groups compared to non-arts social groups.", - "media_hash": "631a26e80e3cbd53124e664ae393374cbe8cc12f68bc22c9e1602390", - "sequence": 237, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.810965 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Studies show that women who get the disease are significantly more likely to see it return later in life.", - "media_hash": "709b85602ae95c91e8bc1c1517d7e4a4123e750289b4128cbe1b0935", - "sequence": 14, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.810965 - }, - "demo": { - "health": 2.810965 - }, - "aapfactcheck": { - "health": 2.810965 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Some people may live for up to 10 years, and, in rarer circumstances, even longer.", - "media_hash": "c395e6a3fe3c47ba238b66736f243019116c0d711b4a2855d58f4dad", - "sequence": 30, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.801995 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", - "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.799985, - "scottish_elections": 2.799985, - "clinical_health": 2.799985 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.53726 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just, if they've got that test sitting in the loo waiting to be done, just do it today.", - "media_hash": "80dfe8fd2c11c5c839404961e4f876ac913d501421e51bf9fa6b13e6", - "sequence": 680, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.7863350000000002 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "The narrative that seems to be being pushed out there saying are we need to spend more money on defense and we can't be spending money on benefits.", - "media_hash": "cbb3f7acbb3b1ef7a0209f6ffb0dd5a2d4c5025abd873ce1a47c17e9", - "sequence": 658, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.7846200000000003, - "clinical_health": 2.7846200000000003 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "The condition can also affect toenails, where it is even more likely to go unnoticed.", - "media_hash": "6c6e43c6a167ee29a181cecb209af9cf220d1e2e45df697d1a4a0a04", - "sequence": 70, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.7820099999999996 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Fatty foods, for example, produce yellower poos as you produce more bile (which is yellow-ish green) to digest them: anyone on a keto diet - which is high in fat, low in carbohydrates - should watch out for this side-effect.", - "media_hash": "01ba0747c2fabf08ee56ba1f0c68797564612dc1a56f1efa506eeae3", - "sequence": 108, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.7808599999999997 - }, - "demo": { - "nutrition_": 4.7189499999999995, - "health": 4.7189499999999995 - }, - "pa-media": { - "health": 2.7808599999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Army veteran who stopped in car park for medical episode fined \u00a3120", - "publication_date": "2026-03-31T09:22:26", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/health/army-veteran-who-stopped-car-36947549", - "media_type": "news_article", - "sentence": { - "text": "An army veteran has been given a \u00a3120 fine after he pulled over to have an anxiety attack in a car park.", - "media_hash": "2537a805fd9c045da2fc5a67c66bd2564679ad955a2e0c75b2b647a2", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.772635 - } - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "Former firefighter Glenn Perkins would spend up to \u00a360 a day on Uber Eats getting cider and other drinks.", - "media_hash": "1da5abaf79ebe0eb4eddd998df306278145661445fbd54543a375a73", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Yesterday, the manufacturers of the drug, Prilemia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", - "media_hash": "a691028e695291d4bddc0f2c4d83b136b54a12fcf2b66f7c308aa5ad", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prilemia Therapeutics", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ferrer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "In a new study, 400,000 adults were divided into four groups based on their lifestyle habits, body mass index (BMI), cholesterol, blood pressure, age and death status.", - "media_hash": "863bbda37cf3ce4c57e43d5e0aab58479fb48427828cf0d51f2d537d", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.772635 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "In a 2022 study, researchers assigned participants to eating the same diet for 11 days; the only difference was that one group's meals contained carbomethylcellulose, a common synthetic emulsifier in many UPFs.", - "media_hash": "158509e0844a8ede0dff2289e823fad35d75d41531accde452b50cb9", - "sequence": 79, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": { - "nutrition_": 4.772635, - "health": 4.772635 - }, - "pa-media": { - "health": 2.772635 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Yesterday, the manufacturers of the drug, Prilenia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", - "media_hash": "6ebb9d78da57c987dd898d3110d22b7eb8ca4ea3c70cdf5487d104e8", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prilenia Therapeutics", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ferrer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": { - "health": 2.772635 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "Currently, treatment with Wegovy is limited to two years on the NHS through specialist services and its long-term risks are still being studied.", - "media_hash": "58151e706f71d2bbf380ba71e7fe08d24fa9d026d39c94672ad5f661", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.772635 - }, - "demo": { - "nutrition_": 2.772635 - }, - "dev": { - "blah": 2.772635 - }, - "pa-media": { - "health": 2.772635 - }, - "fullfact-policy": { - "climate_change": 2.772635 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "You know, three years of wait is could be a life sentence for that child.", - "media_hash": "1e15c97bff1977a8f5f7d80be8e3537a9cfde4ee73053de7a301b3c8", - "sequence": 521, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.7705450000000003, - "clinical_health": 2.7705450000000003 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, in the early stages, cirrhosis usually doesn't show many symptoms, or sometimes none at all.", - "media_hash": "ee14775dc1351c59d636f3a323d0dd047252183841df62eff8fe1737", - "sequence": 20, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.704505 - }, - "pa-media": { - "health": 2.751055 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "But many other experts oppose the move, arguing that tamoxifen can have serious side-effects including debilitating symptoms - often likened to an early menopause - as well as significantly raising the risk of birth defects.", - "media_hash": "f484107808deef9775a109efe659d493dfca0fffe15bc7fae3b7660f", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "The disease causes muscle weakness that gets worse over a few months or years,", - "media_hash": "39040f0e2d5e587986e3b7d142b66f043ac0ff0f7a23354df776f0a8", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Symptoms typically first include stiff or weak hands, weak less and feet which may cause someone to trip over a lot, and twitches spasms or muscle cramps.", - "media_hash": "e99ceb5de3faeb344d16b9fc43d9cf6c607d9774ee863041446fef4e", - "sequence": 25, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "During this window of heightened neuroplasticity, the brain is highly sensitive to rewards and more easily rewired by substances like alcohol, cannabis, and nicotine.", - "media_hash": "007b09bccb429e204d583c4bd177170f9119f66e4378f6e2701b2e1a", - "sequence": 60, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs will be offered on NHS for people at risk of further heart attacks", - "publication_date": "2026-03-31T23:01:43", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cz90595pgzlo", - "media_type": "news_article", - "sentence": { - "text": "People who have already had one of these health issues are at higher risk of experiencing more problems and stand to benefit from medicines that can cut that risk.", - "media_hash": "4f147fddfd58171fcaa144ef71dd79d7e5e2aa55e39d5b43e6594db0", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "nutrition_": 2.751055 - }, - "dev": { - "blah": 2.751055 - }, - "pa-media": { - "health": 2.751055 - }, - "fullfact-policy": { - "climate_change": 4.751055 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "'Breasts are also more sensitive before a woman's period, while a cold examination room and sudden exposure to cold surfaces can increase sensitivity.", - "media_hash": "5fde54aabaad00ae090c3196bdb71fe1aeb667dde531f3c4e6bf6666", - "sequence": 78, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Small breasts can sometimes be more painful as there is less tissue to spread between the plates.", - "media_hash": "04673a3f77042de7444cbf92bc4e71db155cd943977cf538c7e01908", - "sequence": 79, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Another 2022 study found that people assigned to a diet containing common added sweeteners (e.g. aspartame, sucralose and saccharin) experienced new diarrhoea, constipation and pain after eating - symptoms that were all reduced for those assigned to diets with minimal sweeteners.", - "media_hash": "d5a1b1aaa260a28642a67a6658be2b2bf407cd4875a582b6bd4adb29", - "sequence": 81, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "nutrition_": 4.598275, - "health": 4.598275 - }, - "pa-media": { - "health": 2.751055 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "A dark line running from the base to the tip can be a sign of subungual melanoma - especially if it does not grow out or is getting wider.", - "media_hash": "658555f544fe4122ef2804225f1e22093500608f6c8bf0371ac980b7", - "sequence": 79, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.7201 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "Creatine is a performance enhancing compound which, when taken regularly, draws more water into the muscles increasing their fullness and potentially, their size and strength over time.", - "media_hash": "70d43111e4c0fe3be67bf7dceb747de7743e76bb5fef339c7a8de00b", - "sequence": 22, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 4.02199 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Sending the King to the White House is a risk the UK does not need to take'", - "publication_date": "2026-03-31T18:01:28", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/opinion/sending-king-white-house-risk-36951165", - "media_type": "news_article", - "sentence": { - "text": "With signs, it spreads faster and may hit children harder; vigilance matters more than ever.", - "media_hash": "5cc0079fd2470740cb8573f5653b0d47795ed464a2cd5e25ccd307b8", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104459, - "score": 0.051000000000000045 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.6147650000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Claims of benefit are \"seriously and significantly\" overblown and can't be supported by any evidence, because most of these peptides have not been clinically trialled, Bonning says.", - "media_hash": "a785f26de9e7effc2757246296ace9203f717bc6e5f3b54d4a057462", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.751055 - }, - "mediacorp": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "\"We've also committed, where possible, to ensuring that a healthier version of a product won't cost more than the standard version.\"", - "media_hash": "9081729b1bd730dd3b877c1065462016e862a16556ba9b11a5600726", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Oonagh Turnbull", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.751055 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Bonning says topical products that contain peptides such as skin creams and lip treatments for skin hydration generally differ from injectables which involve changes to cell signalling, that can cause harm.", - "media_hash": "09a5e87b22dc6cbb9e459bd6c379d93ab48bb7398d2a1655769be4a0", - "sequence": 29, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - }, - "demo": { - "health": 2.751055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "PM", - "publication_date": "2026-03-31T16:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404361", - "media_type": "transcript", - "sentence": { - "text": "But actually, we've had randomized control trials that have directly compared arts engagement to non-creative social interaction, for example, and actually showing that the arts engagement is more effective for lots of these mental and physical health outcomes.", - "media_hash": "e6ac6a016b43d5d210d4704a5d229e1429631d035c741109280c680e", - "sequence": 236, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.751055 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T11:25:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "It can also lead to irregular periods or stop them altogether.", - "media_hash": "a53d2fe5abb68878908b15251c31be19bc5261254b6a54ce919c5870", - "sequence": 35, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.74701 - }, - "demo": { - "health": 4.716055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "Symptoms may begin within hours to 5 days following exposure.", - "media_hash": "8ba45c656cd73b9cde3dc055d878e152ec92c86e975b9798c73c44fc", - "sequence": 10, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.74701 - }, - "demo": { - "environment": 2.716055 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.74701 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "'I was worried about the long-term consequences like handwriting and playing the flute.", - "media_hash": "72b8e8159939aad5f125e1043358bc077d2de08e7a6f5854787cb46c", - "sequence": 45, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.742565 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tributes to `beautiful\u00b4 autistic girl, seven, who...", - "publication_date": "2026-03-31T15:34:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695357/Tributes-beautiful-autistic-girl-seven-drowned-golf-course-pond.html", - "media_type": "news_article", - "sentence": { - "text": "Tributes to 'beautiful \u0301 autistic girl, seven, who drowned in golf course pond", - "media_hash": "4e763599e2996951bc19f213276dce5d6229cd7d09e681c9d1adf3b7", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.7416799999999997, - "clinical_health": 2.7416799999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Under new guidance, patients who have had a heart attack or stroke will be eligible for a weekly Wegovy jab to cut their chances of another life-threatening event.", - "media_hash": "67e2a6fc2c5a0d3d45c288d72d9a83c76b671794f00f3c74e118318f", - "sequence": 3, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.7395899999999997 - }, - "demo": { - "nutrition_": 2.7395899999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Certain medications can also cause nail problems.", - "media_hash": "623c6d49609adbc467f89901f419504449fda4f4adf2de7eabfad8a4", - "sequence": 48, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 2.704505, - "nutrition_": 2.704505 - }, - "pa-media": { - "health": 2.73546 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Certain medications can also trigger nail problems.", - "media_hash": "224bad1872b2069fff9739d5e0c9cf7d00bc6c0c787ace3f4169af18", - "sequence": 43, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 2.704505 - }, - "pa-media": { - "health": 2.73546 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "LDL in the blood can stick to arteries, slowly building up plaques that block off the blood supply to the heart or trigger blood clots.", - "media_hash": "994ee38a1d0392ea37c162b79ee4944fa4b5edcfa45a39dbea2b15c2", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "nutrition_": 2.6735499999999996, - "health": 2.6735499999999996 - }, - "pa-media": { - "health": 2.73546 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Bacterial meningitis requires urgent treatment at hospital with antibiotics.", - "media_hash": "bb940fe1ab8a13d97cf21117f272f7a963b8bce40d2f7ce38c6bbbd2", - "sequence": 64, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.73546 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Thin loo paper is rougher on the skin, which can lead to damage to the anal area.", - "media_hash": "de60739f12c4c674decd9e8782fd05b3bfd892b5760c661b68513dd7", - "sequence": 132, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.73546 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "TB is highly infectious to others, but NTM infections are not.", - "media_hash": "3008fc56ad569f3813cf88f577bcb1264f105d4562a8e9baf1c44f31", - "sequence": 40, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Headache is one of the main symptoms", - "media_hash": "02b4feea49b02501f21ac363a45f912097d810ea95d5e5411a0df984", - "sequence": 62, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.73546 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "But cigarettes diverged from alcohol and cannabis.", - "media_hash": "112d5a8afc990c07286f2d8d9d8914a02e0ca733bf12c11e02f92eee", - "sequence": 55, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Yellow, thickened or brittle nails are most commonly caused by fungal infections.", - "media_hash": "36c5af911cd020c4b245bcae324610c40b82987c817db852f62c5b8f", - "sequence": 87, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.73546 - }, - "demo": { - "health": 2.704505 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "This rose to 80 per cent for children up to four years old and 86.5 per cent for those aged five to nine.", - "media_hash": "de9c06d11a1e24b202ba105646f195f681b865b80432ee168b9d32ba", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.72968 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "The average age was 58, and participants were followed for about 16 years.", - "media_hash": "aba2aa01418f4f96915a8295c8a973806877853a6ec4a62e4e6add7b", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.72968 - }, - "demo": { - "nutrition_": 2.5769, - "health": 2.5769 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.72968 - } - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "In the UK, most PAO symbols range from six months to two years.", - "media_hash": "af1fed3608579b374fbb2d273cc3a76714be30b41ce8b1931bcf0507", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "Tesco has donated more than 10 million portions of fresh fruit and veg to schools across the UK", - "media_hash": "6195d3a6b4e0fe85196e78459317d5a885356bed2d28d2c7fd4dbec4", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.72853 - }, - "demo": { - "health": 2.5459449999999997, - "nutrition_": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "They suggest a heart failure screening programme for diabetics could improve diagnosis rates, lead to earlier treatment and potentially reduce the risk of hospitalisation and death.", - "media_hash": "2e18262303a75b29d8009ab488e82977347788c3ee3f017df6593a9a", - "sequence": 5, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.716055 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "'If a woman is anxious, she'll be tense in the pelvic floor .", - "media_hash": "7b0d7470b6aca48c4dcf29ebfab8a74e58dad698956c01905f804c3b", - "sequence": 61, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.716055 - }, - "demo": { - "health": 2.716055 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "Suspended dust is expected to negatively impact the air quality, weather forecasts indicate.", - "media_hash": "75f9a44e70baeea4600d4ed56d1e8501a0dbb142f62841d4eee371c5", - "sequence": 8, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Canary Islands Health Department", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "General Directorate of Public Health of the Canary Islands Health Service", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.716055 - }, - "demo": { - "environment": 2.83673, - "health": 2.83673 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.716055 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", - "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", - "sequence": 40, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Liberal Democrat", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.712725, - "scottish_elections": 2.712725, - "clinical_health": 2.712725 - }, - "demo": { - "health": 4.41429 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "title": "Exclusive \u2013 RX Border Defense\u2019s Patsy Writesman on CCP\u2019s Stranglehold on Skinny: FDA\u2019s \u2018Green List\u2019 Surrendered GLP-1 Supply Chain to China", - "publication_date": "2026-03-31T04:07:25", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/30/exclusive-rx-border-defense-green-list-surrendered-glp-1-supply-chain-china/", - "media_type": "news_article", - "sentence": { - "text": "\"We have one example of someone, a lady in Kentucky, she had only been on the drug for one month and had kidney failure. Now, let's just take that example and say that there was a bad batch and a thousand people got that drug and had to have kidney transplants. The finger is going to be pointed back at the FDA on that, and we don't have a thousand . kidneys],\" she said.", - "media_hash": "35f7e1fdc27ed28be01c7e98a0c448e9da0fd25ae1c3ba748085f632", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Patsy Writesman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725 - }, - "demo": { - "nutrition_": 2.712725 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", - "publication_date": "2026-03-31T02:14:20", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", - "media_type": "news_article", - "sentence": { - "text": "But two young people, including sixth-form pupil Juliette Kenny, died of meningitis during the outbreak.", - "media_hash": "1f33e6abd08df744445d3b03f9e1765702190809fd217699bf6550cd", - "sequence": 24, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725, - "leo_s_topic": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Sebnem Avsar Tuna, general manager of Wegovy manufacturer Novo Nordisk UK, said it means clinicians now have access to the first GLP-1 receptor agonist proven to reduce the risk of heart attack, stroke or cardiovascular death in this high-risk group.", - "media_hash": "ded904a715729df7524ff09525fef3bfbc7e9de2fdb1b1b0f55e7299", - "sequence": 46, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Novo Nordisk UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725 - }, - "demo": { - "nutrition_": 2.68177 - }, - "pa-media": { - "health": 2.68177 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", - "publication_date": "2026-03-31T09:45:26", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Brice says she has requested a breast reduction through the NHS at least 20 times since 2000, citing both physical pain and mental health struggles.", - "media_hash": "5e51c2e94ee09c734d3645b10e276d21ad4932ffbe4b72cc45324ef5", - "sequence": 22, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725 - }, - "demo": { - "health": 4.486035 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Death hunted him since he was a kid\u2019: how Lamar Odom survived to become a villain in his own tale", - "publication_date": "2026-03-31T12:11:01", - "publication": "guardian", - "url": "https://www.theguardian.com/sport/2026/mar/31/lamar-odom-documentary-nba-basketball", - "media_type": "news_article", - "sentence": { - "text": "Reportedly on a cocaine binge in the days before the brothel incident, Odom suffered kidney failure, multiple heart attacks and 12 strokes.", - "media_hash": "fb79ae7bb5b2e0c9ede67b0e50d606210e63795d55952e16d8834007", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "This was the fourth time Woods has been involved in a car crash, most recently in February 2021 when his SUV ran off a coastal road in Los Angeles at a high rate of speed, leading to multiple leg and ankle injuries.", - "media_hash": "3fdebb85169319a76d2727638a9eae8e0ccf38721f29448cdf350da0", - "sequence": 32, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.712725 - }, - "demo": { - "health": 2.68177 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T10:51:08", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "Chemotherapy can be very effective.", - "media_hash": "376a67c4abd0a60df1682fe1d6d1fc4940be362f9b80806fb4834df3", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.704505 - }, - "demo": { - "health": 2.6735499999999996 - }, - "aapfactcheck": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "publication_date": "2026-03-31T01:46:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", - "media_type": "news_article", - "sentence": { - "text": "Be mindful of those around you, what may feel like a minor illness to one person could pose a serious risk to someone else.", - "media_hash": "25da1e7093fe13b613de9ebdfd841b57a5e246be26951c79c3204e70", - "sequence": 19, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Club Chemistry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.7004400000000004 - }, - "demo": { - "health": 2.7004400000000004 - }, - "aapfactcheck": { - "health": 2.7004400000000004 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How one family's bipolar disorder experience led to...", - "publication_date": "2026-03-31T04:06:51", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", - "media_type": "news_article", - "sentence": { - "text": "The federal government provided more than $2 billion annually for mental health between 2019-2024.", - "media_hash": "930499326ce546f3236eca4933237b7c4e4cefe927490e16cc7f41a7", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "It is currently \u00a3118.75 a week, still one of the lowest among advanced economies.", - "media_hash": "0976e6bef00e9dad7e4df368bba53d1824e6cab3681d664d81b7a7d3", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.6987249999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "A promise to keep prices low on thousands of products from more than 1,000 of the nation's most-loved brands, including Heinz Baked Beans and Weetabix.", - "media_hash": "5fd9110db052952b8ea9528372ef6b654c2da499a376401a26c2efb6", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.5459449999999997, - "nutrition_": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Some people with MCI stay stable; a small percentage even improve (stock)", - "media_hash": "1bcf69bc98c8c77a1272d65c918f9f9cd62a42c04108c83198572b22", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.500545 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Now after a period of going dormant cicada has spread to 23 countries and is spreading across the US, being detected in the wastewater systems of 29 states.", - "media_hash": "164401b6572c600a6af843c62dd13a7aa5f5244897845d400d84aa04", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Some 40 per cent of smartphone users spent more than five minutes on the loo to poo, compared with only 7 per cent of non-users.", - "media_hash": "1455b2de1aaa35e104fb90d510f222e9de5531df3970536ac709bf38", - "sequence": 52, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:59:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "More than four in five trusts (83 per cent) missed the key target of treating 85 per cent of patients within this time frame.", - "media_hash": "2e90bcff2c19c4984a26646191e2c98007bbc20143e8a84c029599b0", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "Next, the society of radiographers has said that the demand for ultrasounds has increased, but that there aren't enough people being trained to do the work.", - "media_hash": "a90b19ebe4a511c2700d99db3d1364ab7db200efad35c7ec59d70837", - "sequence": 341, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - } - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "The number of extractions because of tooth decay made up 60.5 per cent of all tooth extractions for those aged up to 19.", - "media_hash": "ab7149758d2bc2d0982a6835b4ce37b18c56fca51967743fa3dda606", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 3.548465 - }, - "pa-media": {}, - "maldita": { - "health": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", - "publication_date": "2026-03-31T21:30:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694589/Record-106-810-cancer-patients-waited-62-days-start-urgent-treatment-year.html", - "media_type": "news_article", - "sentence": { - "text": "And nationally, the longstanding target of treating 85 per cent of patients within 62 days has not been met since 2014.", - "media_hash": "a2938e515a594c91297b781ce15d406c3e6ebc618e44e727c86fde5e", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.970815 - }, - "aapfactcheck": { - "health": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "health": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Almost half of primary teachers in England see pupils with eating disorders, survey finds", - "publication_date": "2026-03-31T17:17:40", - "publication": "guardian-society", - "url": "https://www.theguardian.com/education/2026/mar/31/almost-half-of-primary-teachers-in-england-see-pupils-with-eating-disorders-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "Three-quarters (76%) regularly saw their students experiencing social difficulties, while the number of teachers complaining that their school did not have a counsellor rose from 29% to 40% in three years.", - "media_hash": "d702e4b399d41eae428bb8c6f607ca685d5bff776bd763ddcf849ed5", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Education Union", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996, - "leo_s_topic": 2.6987249999999996 - }, - "demo": { - "nutrition_": 4.970815, - "health": 4.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "The latest global data is from February, so the strain may have spread more widely since then.", - "media_hash": "d6613ca9e970013a1c4a7ce3442146eb8a02b1581741faf630860b9f", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6987249999999996, - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Eight out of ten are alive a decade later.", - "media_hash": "2ee72329e22b581fc628ba46762792d3d42e540582a6867f63c919e9", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "research", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 2.6987249999999996 - }, - "aapfactcheck": { - "health": 2.6987249999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "In 2025, cases were confirmed in 33 countries spanning 5 WHO regions, with the Eastern Mediterranean recording the highest numbers, followed by Africa, South-East Asia, the Americas and the Western Pacific, reports the Mirror.", - "media_hash": "21f44a5fc4aa6a25c58c5fdd02de56cfe46354ff13e9effbbc8e6c7a", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "environment": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.2500299999999998 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "The highest amount of PIP you can get each month is about \u00a3750 or \u00a3800, yet costs can be way higher.", - "media_hash": "358325a8d367a13e598602004fb74e2919234a598377db6450309a65", - "sequence": 152, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 3.6691399999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", - "media_hash": "2ffc0a8a2bb10e3c7850d0abf7091ace3114ced9424b2acaf5c49ea4", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "He said from early on \"there was no one on it with serious epidemiological experience\" and that by the end of the pandemic it had up to 50 members, adding \"you can't run a committee with 50 people\".", - "media_hash": "042a0c28f3588f3ef6e7d6d0b39846958c6313b7638168fcc6462256", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Professor Anthony Staines", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "But of course, you know, 10% of the population is not autistic.", - "media_hash": "7d38dd4291322fd852eceb16e5bc5e332ffbb8aa152873cf5d58185b", - "sequence": 543, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6987249999999996, - "clinical_health": 2.6987249999999996 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "In 2022, the World Health Organization reported a global increase of cholera notifications, with more cases reported from an increasing number of countries.", - "media_hash": "1e89b733392356659e38a2edf260c7a91c43d945fdfbc1926a6396c8", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "World Health Organization", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "health": 5.09725 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.698725 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "They lower LDL levels by 60 to 70 per cent, compared with 30 to 50 per cent for statins.", - "media_hash": "38d124003d24246cd96af05f79e72a10fd28fba61b9fc78752b37a0f", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "pa-media": { - "health": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Decades of study have concluded that anywhere from three times per day to once every three days is within the healthy range.", - "media_hash": "a8dd1d81f8fbb11f76a349ec3620b524f9c0193cbc35fd9bc7885c12", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "nutrition_": 5.66914, - "health": 5.66914 - }, - "pa-media": { - "health": 2.6987249999999996 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "In lab experiments, the bacterium trapped up to 87 percent of nanoplastics and 57 percent of them in gut-like conditions.", - "media_hash": "37e75f94ce4d27660d2493441c9c178289535b67f001dff196522a11", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6987249999999996 - }, - "demo": { - "politics_of_food": 2.970815, - "environment": 2.970815, - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 2.970815 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6987249999999996 - } - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "Known as 'Cicada', the new variant is set to affect the vulnerable members of society the most, with the elderly, chronically ill and children told to stay indoors.", - "media_hash": "26c1cb6ea45ac1b2f40f5194debbbea30139d719c06e1d2fe22eb427", - "sequence": 3, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.698365 - }, - "demo": { - "health": 2.698365 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.698365 - } - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "You can naturally get enough omega 3 by eating two portions of oily fish throughout the week.", - "media_hash": "e70847c4f6edd6912210d3570b3e823af5329f050a3fdd37b209f902", - "sequence": 51, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6831300000000002 - }, - "demo": { - "health": 2.54684 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "Paddy had his operation and his life improved until he had a resurgence of a skin cancer that had been on his head.", - "media_hash": "a5b3f80d4680272c4cd06cfe4fea7a423123da97d4b600e6e633aee0", - "sequence": 9, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.682655 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe holds charity auction in honour of her late husband John after they were forced to cancel it over his ill health - and says it was 'the perfect way to celebrate him'", - "publication_date": "2026-03-31T20:30:35", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695901/Lorna-Luxe-cancelled-charity-auction-honour-husband-John.html", - "media_type": "news_article", - "sentence": { - "text": "John was originally diagnosed with a rare form of cancer in 2023, but after a period of remission his cancer returned the following year, spreading to his brain.", - "media_hash": "8a56d68fc15faf5cf5e819dea1f0da8f6395cea7987910de30cb0213", - "sequence": 38, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.682655 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lorna Luxe to move out of \u00a32.5 million home after husband John Andrews' death", - "publication_date": "2026-03-31T20:19:52", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/lorna-luxe-move-out-25-36951651", - "media_type": "news_article", - "sentence": { - "text": "John went into remission in November 2023 but sadly, his cancer had returned by May 2024 and had spread to his brain.", - "media_hash": "2b9d8282c009978ffc8b4e542325f2c6625956e4e9eb3de189cc9954", - "sequence": 39, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.682655 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "It can be fatal.", - "media_hash": "eb344e5f229ea15076d6fdbb297ca786ec713aa02ee6b62041d92728", - "sequence": 76, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.67931 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Your nails can reveal a lot about your overall health, often offering crucial hints about parts of your body that might need further examination.", - "media_hash": "83a87b17e7b6252a7bb2e7ab9770d22f12d3ec301352dce8f41236f1", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355, - "nutrition_": 4.67355 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "But there is limited evidence that cannabis is a suitable treatment for depression.", - "media_hash": "f4cd57f7fbc732f7b5c8915bef7f6ece0300321d93040a026b982ab6", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "They also contain healthy fats, essential amino acids our bodies can't make on their own and powerful antioxidants that can ward off the visible signs of aging whilst protecting our hearts.", - "media_hash": "668d516ad7b6ac300831de9c5cf9bbb0120f39e206d0551ee823bd00", - "sequence": 9, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.552875, - "popular_media": 4.552875 - }, - "pa-media": { - "health": 3.703135, - "nutrition": 3.703135 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 3.703135 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "'Poppy seeds are a great source of calcium for people who don't eat a lot of animal products, which isn't only great for bone health but also for nerve signalling,' Johnston said.", - "media_hash": "9ebae06c0467014d948950daa072291d1b157ea8788e33c1dae7b2e2", - "sequence": 45, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355, - "popular_media": 4.67355 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.0839 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", - "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservative", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.799985 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Chemistry nightclub at centre of deadly meningitis outbreak reopens \u2014 but with a warning", - "publication_date": "2026-03-31T02:14:20", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/chemistry-nightclub-centre-deadly-meningitis-36946412", - "media_type": "news_article", - "sentence": { - "text": "The typical symptoms of meningitis include a high temperature, seizures, cold hands and feet, and being very sleepy or difficult to wake.", - "media_hash": "13d789b4c4165527241f08bda10790297d1d61c0bcad1fddc7ae96ca", - "sequence": 30, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996, - "leo_s_topic": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Sonya Babu-Narayan, clinical director at the British Heart Foundation, said: \"So-called 'weight loss drugs' like semaglutide have proven benefits beyond reducing the number on the scales - they are now considered important medicines for preventing deadly heart attacks and strokes.", - "media_hash": "2dd0918a3316354a338da768ff21c190f921232614c375816a492eef", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Heart Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.52192, - "nutrition_": 4.52192 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "'Flax seeds are absolutely incredible for not only your gut but also your heart and overall health,' Johnston explains.", - "media_hash": "87d6b20595922786edce9b8692c739f6ab8b07975da58513e5b055d7", - "sequence": 15, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355, - "nutrition_": 4.67355, - "popular_media": 4.67355 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.552875 - } - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "Dr Khan explained that vaccines and boosters remain a tool for protection even as the virus evolves over time.", - "media_hash": "679075083d8ab833f68c614c14e5015768854f6dd1344b9b02601e4e", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Talal Khan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Other early symptoms of heart failure can include fatigue, shortness of breath, or leg swelling.", - "media_hash": "8d61efcba141b92e633f5dfc9dfe5dab8f6fbd08fa985f603f5621f5", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "So much stigma surrounds mothers who fall into drug abuse, and it keeps women silent and trapped in their addiction.", - "media_hash": "642877d81a88a3ba32520c404ea58177e67f151a2f47b91fce2cc5b3", - "sequence": 129, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Viral is rarely life-threatening but can cause long-lasting effects, such as headaches, fatigue and memory problems.", - "media_hash": "79148ca371b2a6f3da3d6ae8fb8633b3e40c6e2894ed1eb5b3254030", - "sequence": 70, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Although ineffective, antibiotics may be given when patients arrive at hospital just in case they are suffering from the bacterial form of the disease.", - "media_hash": "e17c5609b2a3dcf8ccf817490a6b47255b1efd50cfb5287356263dd9", - "sequence": 73, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "You certainly don't have pounds of poo sitting around for weeks inside your colon that only an intense juice cleanse can fix.", - "media_hash": "6a0839dd102b29f73a8dc7dd21cd55aa7cb23558ba17e03efe8c8765", - "sequence": 75, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "nutrition_": 2.6735499999999996, - "health": 2.6735499999999996 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", - "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", - "sequence": 36, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Poor memory is a common sign of early dementia.", - "media_hash": "798bb2df76871a37da128a4d9e89a57985e78fdfec0e19882690ddcd", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Megan Patrick", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "And most MCI never becomes Alzheimer's - it can be caused by vascular issues, depression, medication or sleep disorders.", - "media_hash": "216ff0cebba3bbc184ace6f30c0b2d1be3ff33387f7967868d0ebf89", - "sequence": 13, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Your nails can tell you a great deal about your overall health, often providing vital clues about areas of your body that may require closer attention.", - "media_hash": "fed3830cd5b8a1798de23e63154879c8ac646f95adf51e5ba7ab525f", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "Out-of-date sun cream can lose potency, leaving your skin vulnerable to sun damage you thought you were shielded from.", - "media_hash": "7b0c755ad914ae9ff858c6a92610cc8363ab35d7040b3fb0f1a08c8d", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "High \"bad cholesterol\", also known as low-density lipoprotein (LDL), is one of the major causes of heart attacks and strokes.", - "media_hash": "76e5072a1e04178c46b2f42f413a2e1ab20f08527063f3c066046019", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "nutrition_": 2.6735499999999996, - "health": 2.6735499999999996 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Vaccines are available against certain strains of bacteria that cause meningitis, such as tuberculosis.", - "media_hash": "1bf4e90a01ee8900767aee02e44517251ec41faed1ac3d36121864a0", - "sequence": 68, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "It might seem fine to use what is left of an old bottle of sunscreen from last year, but there is a symbol that tells you exactly how long it is good for.", - "media_hash": "717004a6669d2dac231f8fbc88108e522fa9a65ff0d9b813f08eb28e", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "Research has shown that eating a healthy diet, exercising regularly and prioritising sleep can help ward off the disease", - "media_hash": "73d9e3a874540adef86ad4d64b3ade32ff7aea0cb40ea194cb1792e4", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355, - "nutrition_": 4.67355 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Nails can reveal a lot about your overall health through changes in colour, shape and texture", - "media_hash": "a8cf841d16113b0c58e7f73dbb3f4f0717d34f68b57b0ef970a93e79", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 4.67355 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "Ketamine is an anaesthetic drug, used on humans and animals, and also used to treat depression", - "media_hash": "117de8a5e18e8a3817ab5ba6e3539b50c7c1503f3431b28e256aef11", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major NHS vaccination change from Wednesday for all pensioners over 80", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188701/NHS-vaccine-change-pensioners-RSV-jab", - "media_type": "news_article", - "sentence": { - "text": "RSV is a common cause of coughs and colds and usually resolves on its own, but it can cause severe illness in babies and older adults.", - "media_hash": "f31aa6ba68dec31ee62354e768499df71268956778ef788734b68dec", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "It's very difficult, then, to have regular, predictable bowel movements and support gut health on an ultra-processed diet.", - "media_hash": "7c1e379f5ed8997332f8d067107c4522c6f0118e40f01c085d9138ce", - "sequence": 82, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 101972, - "score": 0.23109999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "nutrition_": 4.67355, - "health": 4.67355 - }, - "pa-media": { - "health": 4.67355 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "Blood pressure, weight and cholesterol are considered the top measures for predicting a person's overall health and how long they may live.", - "media_hash": "8716c0c0bc08882002f11355c0821b5085ea91dbed277b51edac459b", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "nutrition_": 4.67355, - "health": 4.67355 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.67355 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "The human brain continues developing well into a person's mid-20s, particularly in regions responsible for impulse control, decision-making and long-term planning -the functions needed for someone to recognize when a habit is becoming a problem.", - "media_hash": "7e278420058a4a4cea4f91a24db73a35b5f061021474d5cfe5188d52", - "sequence": 59, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "The firm says if an Uber courier has concerns about the validity of a person's ID or their sobriety, they are instructed not to complete the delivery and return the alcohol delivery to the store.", - "media_hash": "d30e06786950175605123ea7b0251f49f6531c771927f17a07eb1bfb", - "sequence": 32, - "claim_type": [ - "correlation", - "rules" - ], - "claimer": [ - { - "name": "Uber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.66521 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Rather, young adult users were more likely to develop the disorder, and that disorder caused the memory problems.", - "media_hash": "db59dd5a9e483e126391d2b4b9bfb6fb80ae9e125ca740a12e0acca5", - "sequence": 45, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.658185 - }, - "demo": { - "health": 2.658185 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "One of the reasons that people are maybe less inclined to offer some of these patients treatment is that they're concerned about the potential for complications, the potential for risk.", - "media_hash": "a53918730f15efc5bac973b44c46b5637f2e6a6d7c357d1489867813", - "sequence": 60, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Colm Hanratty", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.658185 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "at least that's the conclusion of a government review today into the number of people who have been diagnosed with those conditions and why that has shot up so much in the last few years", - "media_hash": "ae9c7813c05d98a79e143df0e6eecb89823b32c3ab0f1a83c6db2e5f", - "sequence": 42, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.658185, - "clinical_health": 2.658185 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "With multiple pregnancies, uh, some women are having scans every two weeks, or if a problem is identified in the community, they'll be brought in and a scan really needs to be done within 24 to 48 hours.", - "media_hash": "76dab0e79d66b3f3a22f0f51cc191ca65dcf485239b58bc565419366", - "sequence": 367, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.658185 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "It's important to stress because we don't want to alarm women, especially if they're pregnant, that you know, there is necessarily a correlation between a need for more scans in pregnancy and a riskier pregnancy.", - "media_hash": "040317e512de2932b9c5e83facd5b301702983675c1a460d16892d07", - "sequence": 370, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.658185 - } - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "And we see that particularly when people have had arteries that have been blocked for a very long time, and which is regarded as more challenging to treat.", - "media_hash": "29982d80fe204513a06a19b85498a2ca6303aa93b497ffeb5ae96e22", - "sequence": 19, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Colm Hanratty", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.658185 - }, - "demo": { - "health": 2.658185 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T15:40:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "It had been used by another 16-year-old, Adam Raine in California, who in April 2025 took his own life after what his family's lawyers allege in an ongoing lawsuit was 'months of encouragement' by the AI chatbot.", - "media_hash": "087f15fb1033f7b138ce2d11c8d81eba83f0f18fb97f7dd0d770cf95", - "sequence": 35, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "ChatGPT", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.652965, - "climate_change": 2.652965 - } - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T10:00:05", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "DS Garry Knight from the British Transport Police told the inquest that digital forensics teams had found he had been using ChatGPT at around 12.30am asking for advice on suicide.", - "media_hash": "e40ca1d20d115e95688134f16fe11f4cf40eb6e237b563bcb47222e3", - "sequence": 24, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "DS Garry Knight", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Luca Walker", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 0.0 - }, - "fullfact-policy": { - "climate_change": 2.62201, - "social_media_misinformation_": 2.62201 - } - } - } -}, -{ - "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", - "publication_date": "2026-03-31T04:47:11", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", - "media_type": "news_article", - "sentence": { - "text": "'Jewish people could be going to get a procedure done by someone threatening to kill people.", - "media_hash": "200e18655f35dd49ccd9bad6659957ce46456aba63bae50ea9ec8316", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Senator Andrew Bragg", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": { - "race__ethinicy__religion": 2.652965 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T16:52:41", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "It was also discovered that the teen had been using ChatGPT the night before to plan his suicide.", - "media_hash": "0620f2735415de72cf2fb0f41f5dd7d4e0488961034cce595a44d6ef", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 2.652965 - }, - "fullfact-policy": { - "climate_change": 2.652965 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "'When it's treated later, you may have to remove the finger - and it can kill, absolutely it can.", - "media_hash": "963ab64a2881b733b8d090cedb85bc38bfb88af07f83e39912ffeca0", - "sequence": 63, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Richard Wain", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": { - "health": 2.62201 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", - "publication_date": "2026-03-31T06:00:33", - "publication": "guardian", - "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", - "media_type": "news_article", - "sentence": { - "text": "Scraps from earlier in the novel - about voices in the head, suicide attempts, even a seemingly uncrucial factoid about Josef Mengele injecting adrenaline into children's eyes to change their colour - re-emerge as pre-echoes, ancestral kinship.", - "media_hash": "016285353344fb1c6234d5e67da2277fefbf55e36459eccd238ab8a9", - "sequence": 36, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965, - "leo_s_topic": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Iran\u00b4s imprisoned Nobel peace laureate Narges Mohammadi...", - "publication_date": "2026-03-31T19:02:59", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695881/Iran-s-imprisoned-Nobel-peace-laureate-Narges-Mohammadi-heart-attack.html", - "media_type": "news_article", - "sentence": { - "text": "\"We are very worried that the regime is seeking to exhaust (Mohammadi), to wear her down, slowly killing her,\" Ardakani said.", - "media_hash": "9a98bc2eec0bdf4d77f94ece66d95eeaaaa57dd37434836f3514393f", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Chirinne Ardakani", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": { - "health": 2.652965 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Though if it is not caught quickly it can be aggressive and highly dangerous.", - "media_hash": "24ec230e05441bcc615c469a2d8cc806d16f14810672a3aa92e84d76", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.652965 - }, - "demo": { - "health": 2.652965 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Whilst it's currently not approved by any regulatory authority, researchers believe the global study, which will involve more than 500 participants, could pave the way for therapeutic treatments that slow down the progression of the disease.", - "media_hash": "640fad6df58bb31b521841551766ccf5eb802a5e7fdb0f820145a947", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Prilenia Therapeutics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.649215 - }, - "demo": { - "health": 4.649215 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Nanoplastics are tiny plastic particles even smaller than microplastics, measuring just one micrometer (\u03bcm) or less in diameter, making them invisible to the naked eye.", - "media_hash": "e8e83acff009e65a76334344e4a30459bb2029bb52d260b7286a2429", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.638815 - }, - "demo": { - "politics_of_food": 0.0, - "environment": 0.0, - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 2.638815 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.638815 - } - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "It is a stark omission, given the government's focus on the huge rise in people dropping out of the economy because of illness.", - "media_hash": "64165bf0c2a3be7ac2bdda42ef590eb344082b2cb248aa1b26f4512a", - "sequence": 15, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.638815 - }, - "demo": { - "health": 2.638815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Most therapeutic peptides are prescription only, with some on the list of prohibited medications, Bonning says.", - "media_hash": "3f014c065d5d2e3e046356ebf1b9f26b68df19f11e9a95357a789bf6", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.638815 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.638815 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "The report also cites the growing use of weight loss drugs as a key part of the change compared to recent years.", - "media_hash": "186b575627ad9c009f8614687f659795dd2d9521bbdbe7859e9e3d09", - "sequence": 397, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.638815 - } - } - } -}, -{ - "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", - "publication_date": "2026-03-31T13:59:55", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", - "media_type": "news_article", - "sentence": { - "text": "The menB jab was introduced on the NHS for babies in 2015, meaning the majority of young people born before then are not protected against it unless they have had the vaccine privately.", - "media_hash": "969e3522fb10fa4e89e8e8042e7fdadde9f2a0c53cc38f7c34b9f7df", - "sequence": 41, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.638815 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "measles": 2.8655049999999997 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "\"Oliver's law\" calls for a ban on prescriptions for people with serious mental illness, mandatory consultation with NHS mental health teams, face-to-face assessments for complex cases rather than video consultations, tougher CQC oversight (including routine audits and publication of prescribing data), mandatory reporting of serious harms and clearer General Medical Council sanctions for unsafe prescribing.", - "media_hash": "3a71843483cca9ddb2add06f5c9e8d7eaff5fb09b8b203fc89e70f91", - "sequence": 24, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Alexander Robinson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.634255 - }, - "demo": { - "health": 4.634255 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T09:51:02", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "An 'academically gifted' teenager asked ChatGPT for advice about how to kill himself before taking his own life the next day, an inquest heard.", - "media_hash": "9fae2ff697a36c2c9acee1053bcb2b88302a73b69804301e6c221f39", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.62201 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "education": 2.62201 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T15:40:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "Luca Walker, 16, asked the AI chat bot about suicide hours before his death on a train track.", - "media_hash": "9a259e79c0d7829acac6f0b09bd1d5869b3868ef8daeb2cc76d0849d", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "ChatGPT", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.62201 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Aussie doctor is suspended after he is accused of heinous act online: 'No tolerance'", - "publication_date": "2026-03-31T04:47:11", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15689859/Omar-Azzam-suspended-Perth.html", - "media_type": "news_article", - "sentence": { - "text": "A senior Perth doctor has been suspended amid explosive allegations he ran a covert online trolling network that targeted fellow medical professionals with antisemitic and racially abusive attacks.", - "media_hash": "d6ddc687d7a178ff159b999a652f4befe4b4438a833f259de4ea80f5", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.62201 - }, - "demo": { - "race__ethinicy__religion": 2.62201 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "Throughout the UK, most PAO markings indicate a range of six months to two years.", - "media_hash": "5a665b0c05f3326b44231c2a6da0fc0c57ab2217731a06c350a40873", - "sequence": 13, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6153500000000003 - }, - "demo": { - "health": 2.6153500000000003 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "\"We need to make sure everybody gets their cholesterol down as quickly as possible and as low as possible,\" said Dr Joseph Cheriyan, a heart researcher at the University of Cambridge.", - "media_hash": "3750f56593f2cfcb1fbcd398485e369ba9077068564691538d657a11", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Joseph Cheriyan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "University of Cambridge", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6147650000000002 - }, - "demo": { - "nutrition_": 2.6147650000000002, - "health": 2.6147650000000002 - }, - "pa-media": { - "health": 2.6147650000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sales of heart, liver, and kidneys soar as \u2018nose to tail\u2019 eating has a resurgence", - "publication_date": "2026-03-31T09:19:05", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/sales-heart-liver-kidneys-soar-nose-to-tail-eating-a-resurgence-27765736/", - "media_type": "news_article", - "sentence": { - "text": "Sales of heart, liver, and kidneys soar as 'nose to tail' eating has a resurgence", - "media_hash": "fe2d19c4d418b1199e5a60c8435b3ca3035ed02218ccf01cc95d1c35", - "sequence": 0, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6127849999999997 - }, - "demo": {}, - "pa-media": { - "nutrition": 2.6127849999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "And so because of that, and because these patients are maybe limited by symptoms, but they're out in the community, they're just left to kind of trundle along and perhaps their quality of life isn't that good and they aren't able to do much.", - "media_hash": "970588482b91481aa3ef626bfb316fda163a41738a3b519cd26d0146", - "sequence": 21, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Colm Hanratty", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Consultant cardiologists Dr JJ Coughlan and Dr Colm Hanratty", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "In other words, frequent cannabis use in young adulthood only mattered if it continued into midlife and became a disorder.", - "media_hash": "c199675dd5502e625736d826970a3b865209d9be9b26c4c30fe260a5", - "sequence": 48, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 2.884875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "A faint brown line under a fingernail might not seem like a cause for concern.", - "media_hash": "ac666b6fb7c5bdb4ebd3e0bcbfef071211acfebbd3a824ba1c5f14df", - "sequence": 3, - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 3.15833 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", - "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", - "sequence": 33, - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6127849999999997, - "scottish_elections": 2.6127849999999997, - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T16:52:41", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "It was found that he had written 14 messages for his family and friends in his notes apps to say 'farewell' and 'I love you'.", - "media_hash": "e7d14832b67f4491f87e0be869cbd32667e9d6fee0ca5f38deb4edca", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 0.0 - }, - "fullfact-policy": { - "social_media_misinformation_": 2.61247 - } - } - } -}, -{ - "title": "Emmerdale\u2019s Jacob shattered in hospital heart attack drama as he makes huge mistake", - "publication_date": "2026-03-31T21:00:00", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/emmerdales-jacob-shattered-hospital-heart-attack-drama-makes-huge-mistake-27708637/", - "media_type": "news_article", - "sentence": { - "text": "Kerry is stunned to hear how bad things are, and she's made everything 10 times worse.", - "media_hash": "49d1117995a0888ceef79c4ae10c04c6de201722802ea4bb0d493476", - "sequence": 32, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Kerry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Researchers then counted how many of those waves a person engaged in heavy use, such as daily smoking, binge drinking or using cannabis 20 or more times a month.", - "media_hash": "8fed3729c9fd3647bcf32a175103a21188fa1c6402b6e2ceceaccce3", - "sequence": 23, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.61247 - }, - "demo": { - "health": 2.61247 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "The UK is lagging behind the latest recommendations from countries such as the US, where new guidelines say people should start getting their cholesterol levels tested from the age of 30 (Photo: fcafotodigital/E+/Getty)", - "media_hash": "651f01b7bafc5b1bdede0e12ddbd4e1fc386a83e4f0212d96b5095c0", - "sequence": 18, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6046199999999997 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 2.6046199999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dad who couldn't get NHS dentist films himself pulling out tooth with weights", - "publication_date": "2026-03-31T10:45:43", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/health/dad-who-couldnt-nhs-dentist-36948310", - "media_type": "news_article", - "sentence": { - "text": "In some areas, patients have reported waiting over a year for routine treatment - while others cannot register with an NHS dentist at all.", - "media_hash": "a4dff2c2b9380b94b74cb2e1b68604be2380b7fb0a82ff7ae5cbe286", - "sequence": 11, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6046199999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "Disabled people get a lot of abuse online.", - "media_hash": "cc3ce90ad50bdd61a3415cf0a372d8f00baf4e2e1997725edfe35567", - "sequence": 156, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.6042500000000004 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6042500000000004 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "It's worth checking the side effects of any medicine you are currently taking.", - "media_hash": "ac450ba411bbc4ac91ae08fe39597e7ac08d3889cb8427f3fca79054", - "sequence": 44, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.59917 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": { - "health": 2.59917 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "The pain from a hysteroscopy - used to examine the womb for polyps or causes of infertility - usually happens as the camera (typically less than 4mm) enters the womb and saline solution is injected to dilate it and make it easier to see inside.", - "media_hash": "7b0bfc0bb6e679b3b3beceefa7814278e1cfa4c91cdd86d1f7836184", - "sequence": 127, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 2.598275 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:00:46", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Some users were enraged at the amount of chocolate Gemma had bought her children and called it 'greedy' and 'unhealthy'.", - "media_hash": "49ce3bda786369dd6f11ff4dbe242e957279e02fb52545c9a5ed98f8", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 4.598275 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid cicada variant: Symptoms of BA.3.2 lineage 'set to become dominant' in UK", - "publication_date": "2026-03-31T16:13:33", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-cicada-variant-symptoms-ba32-36949810", - "media_type": "news_article", - "sentence": { - "text": "Scientists say the variant called cicada - technical name BA.3.2 - appears to spread faster than other variants and one of the UK's top microbiologists has told of emerging evidence that it could disproportionately affect children.", - "media_hash": "ee44987e0fafc4994a53d705ef69da14961da11997273fd17a2c071d", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Health officials", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK's top microbiologists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 2.56732 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.598275 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "'They said it's melanoma, stage 1A meaning it's invasive but not hugely,' she said.", - "media_hash": "20dd651f205ed4fc63b4830e77b5ab101825b804adb054a11920ac6b", - "sequence": 33, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 2.598275 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "'In people with existing health conditions, replacing blood pressure and cholesterol measurement with self-reported walking pace improved the model's ability to predict mortality, meaning people were reclassified into a more-appropriate risk category.", - "media_hash": "6d1f347b53a2a09ac3e0b1648417ea779128a983ea15ecf26e7bac2a", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Professor Tom Yates", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "University of Leicester", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "nutrition_": 4.400095, - "health": 4.400095 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.598275 - } - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "Nice said that evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", - "media_hash": "882962f297f962b094eeb2af665ecce69d5c143fd1b6fed42a728d64", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "National Institute for Health and Care Excellence", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.598275 - } - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "His wound became infected and he now has permanently limited use of his hand, restricting what jobs he can do and how much he can work.", - "media_hash": "361b83f910e43005e8594a50528cdf42a9d08e874f72cad3ab978c97", - "sequence": 38, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.598275 - }, - "demo": { - "health": 2.598275 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "Helen Williams, national clinical director for cardiovascular disease prevention at NHS England, added: \"For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health.", - "media_hash": "ca233be8fa0add90b59e6e80e8856afef9c46ff87f6019c61ca68169", - "sequence": 20, - "claim_type": [ - "quantity", - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5893050000000004 - }, - "demo": { - "health": 4.589305, - "nutrition_": 4.589305 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.589305 - } - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "All of which can trigger pain.", - "media_hash": "e3820b93accd8db5a3e73a907c7c3d48f4679d08f0ca8b35780c29ba", - "sequence": 10, - "checkworthiness": { - "fullfact": { - "clinical_health": 2.58644 - }, - "demo": { - "health": 2.73922 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "And also partly maybe can explain some difficulties that these families face with their children.", - "media_hash": "b4a2207982c51d84af9556001ecf2225cc96608ad74f02b101420971", - "sequence": 552, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.58644, - "clinical_health": 2.58644 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "You know, there is a percentage of kids who cannot sit still, who cannot concentrate, or impulsive.", - "media_hash": "7982bd406b5dcc05e4d6c887baa9e0965af93c7849542b84ffe7c70d", - "sequence": 513, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.586125, - "clinical_health": 2.586125 - } - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Because the nail-producing cells sit in the nail bed, removing this tissue usually means the nail will not grow back normally.", - "media_hash": "bce242e815921f2b4ffc6c61122b0650d618803ae848390e494d90ab", - "sequence": 25, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.58383 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "Some people also experience gastrointestinal issues like nausea or diarrhoea, according to the CDC.", - "media_hash": "427d41de0a256e0b92d991ed69854148af796609f442a32ddc8305e7", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "US Centers for Disease Control and Prevention (CDC)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.58268 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.73546 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", - "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", - "sequence": 30, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.579765, - "scottish_elections": 2.579765, - "clinical_health": 2.579765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.579765 - } - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "Some of the screenshots show the 55-year-old had ordered 16 items over a five-day period, totalling \u00a380.", - "media_hash": "b95dbb7483dab99a8809c67c561ab53ebc2f803e11c141700c359a30", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Around 45,000 coils are fitted every year in the UK.", - "media_hash": "7b23974d810796e835835b0380030b880d9717c0ef00a71472e0f9ae", - "sequence": 88, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "health": 2.5315000000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Indeed, one study from the 1990s at the University of Bristol on the bowel patterns of nearly 1,900 people found that the most common time of day to poo is between 7am and 9am, with a second peak after about 6pm (when people eat what is typically the largest meal of the day).", - "media_hash": "d91edd7cb288d38af563df0556dc7afa6f9e34cd8db90aa3bd087779", - "sequence": 63, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "University of Bristol", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "nutrition_": 2.5769, - "health": 2.5769 - }, - "pa-media": { - "health": 2.5769 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "The next closest strain managed only about 18 percent", - "media_hash": "386720a7213bdf64090621cdbdf1d87d2da563aaabbc7efadb14f3f3", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "politics_of_food": 3.09725, - "environment": 3.09725, - "nutrition_": 3.09725, - "health": 3.09725 - }, - "pa-media": { - "health": 2.5769 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5769 - } - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "There are the two standard scans at 12 weeks and 20 weeks, but women are obviously all assessed and there are a lot more that are deemed high risk, so they come in and they need growth scans further in the pregnancy.", - "media_hash": "4db62c6d1adc712e1fd5ff41200f66b628f3aef570abee1830a01927", - "sequence": 366, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "In the UK, the target is 2.0 mm/L.", - "media_hash": "6962ab730f1f4c9dc11b5290de0a5ff5f76523e93d2ca4d8ad09689c", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "pa-media": { - "health": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Some 33,976 of these were due to a primary diagnosis of tooth decay, marking an increase of 11 per cent.", - "media_hash": "03ef4ba836668d8c9a790d1b74d0f50c05dcdf818f8ebe33d4d6df9f", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS hospitals", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Swansea Bay and Cumtaf Morgano Health Board have the least number of people taking part in screening at 64%.", - "media_hash": "8e1e6c78c2dcc704fcebf0fffc847e1b189827fe48a932e809a641a6", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - } - } - } -}, -{ - "title": "My 40K bust is ruining my life and has left me with nerve damage... why won't the NHS give me a reduction?", - "publication_date": "2026-03-31T09:45:26", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15693835/40K-bust-ruining-life-nerve-damage-NHS-reduction.html", - "media_type": "news_article", - "sentence": { - "text": "By her first daughter's birth in 1996, she was a 38DD and by her second daughter's birth in 2000, a 40EE", - "media_hash": "910b397d9b8c51d0cac06ae9ca06d1f0bce5db5e23c4a0519de940c4", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "That's the latest, more on the roads just after nine.", - "media_hash": "f848ed7953eec660378653a7b1729a88ea92655e51cb73a21886837b", - "sequence": 912, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5769, - "senedd_election": 2.5769 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Fibre helps maintain healthy habits because it ensures we retain more water in our faeces as it passes through our system, making it easier to pass.", - "media_hash": "9b16d4cc48dbafc46a36c8e44348a49ee91221d778d4b5f3eeaa0bb7", - "sequence": 117, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5686799999999996 - }, - "demo": { - "nutrition_": 4.56868, - "health": 4.56868 - }, - "pa-media": { - "health": 2.5686799999999996 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "That's why Tesco is committed to helping the nation get more of its 5-a-day.", - "media_hash": "4b59a37b68a67f7c32195fbd55e59982c1141c898cee9a1cdfb6db27", - "sequence": 7, - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5686799999999996 - }, - "demo": { - "health": 2.5686799999999996, - "nutrition_": 2.5686799999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5686799999999996 - } - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "\"The evidence from the clinical trial is compelling. It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.\"", - "media_hash": "a2220b197d23b25a80cf405b0af3ba78afba4211fee7c2119d606e07", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Knight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.56732 - }, - "demo": { - "nutrition_": 2.56732 - }, - "pa-media": { - "health": 2.56732 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.56732 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T14:58:56", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "Amyotrophic lateral sclerosis (ALS) is the most common form of motor neurone disease, a muscle wasting condition progressively damages parts of the nervous system and is incurable.", - "media_hash": "696e4af5094c46712d4182412fde6108a7da4c9a5b7927eab8afb1d7", - "sequence": 3, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5633350000000004 - }, - "demo": { - "health": 2.5528750000000002 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Prop Gupta, of the Cambridge Immunology Network, said: \"The immunocompromised and the elderly are at the biggest risk but vaccines should prevent some of the most severe complications in most people.", - "media_hash": "653b00e4e57e7038f3efccb168c4a65a2e2048b1a8460b81b003daf3", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Prof Ravi Gupta", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cambridge University", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5633350000000004 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5633350000000004 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "media_hash": "213dc2258abfab18a5119ac6f3be932d91e01c896e21c493f05efcba", - "sequence": 1, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.563275 - }, - "demo": {}, - "aapfactcheck": { - "health": 4.53232 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\"Wash. Your. A\u2014.\" \u2014\u00a0Medical Professionals Are Begging Patients To Remember These Basic Hygiene Tips, And I'm Actually Aghast", - "publication_date": "2026-03-31T13:31:02", - "publication": "buzzfeed", - "url": "https://www.buzzfeed.com/scarymouse/medical-professionals-begging-patients-hygiene", - "media_type": "news_article", - "sentence": { - "text": "Their privates will smell like rotting fish, I'm not joking.", - "media_hash": "34757d6f2123832107b4dc782ea79f87f2599e1ac8aeb8312119f325", - "sequence": 25, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.563275 - }, - "demo": { - "health": 2.716055 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The charity looked at the latest screening data from 2024 and found that Pales Teaching Health Board and Holza Health Board have the joint highest uptake for screening at 67%.", - "media_hash": "0e63d5c5976e33037a24ac7a615a45c7f024ea4b5bd281ab9ce6a672", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.556405 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", - "media_hash": "4cfcab5b6c35f455f8719d6a8980249ae08660c6d4dd870d364ed749", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.556405, - "clinical_health": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\"Wash. Your. A\u2014.\" \u2014\u00a0Medical Professionals Are Begging Patients To Remember These Basic Hygiene Tips, And I'm Actually Aghast", - "publication_date": "2026-03-31T13:31:02", - "publication": "buzzfeed", - "url": "https://www.buzzfeed.com/scarymouse/medical-professionals-begging-patients-hygiene", - "media_type": "news_article", - "sentence": { - "text": "9. \"Uncircumcised men have to retract their foreskin to wash their penises properly. Not doing so can cause recurrent yeast and bacterial infections in their partner's vagina. Not washing properly is also a cause of UTIs for men.\"", - "media_hash": "4aeb42d84e920fb0a145fe8638d0d60d9b6365bc46c55f99e61263d0", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Medical Professionals", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "BuzzFeed Community", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "media_hash": "f7c81d311de98fd4bfac8ef746a8c860688e8ee8b96320c87bbf88c8", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5219199999999997, - "nutrition_": 2.5219199999999997 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "Cholera is an acute, severe diarrhoeal illness triggered by consuming food or water tainted with the Vibrio cholerae bacterium.", - "media_hash": "74498b21a7ec69a9192830b926892c52471757a1270e218b97b791f3", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "It leads to rapid, serious dehydration and vomiting, which can prove deadly within hours without treatment, although many instances are mild.", - "media_hash": "175f840a380d95c8619fc2f3b5ba47d4bec3846a3386dc74e76770ea", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "The disease flourishes in locations with poor sanitation.", - "media_hash": "aa94dc62e9aa369aa312ae17fab28242e92bf5491217cce256dbef2c", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.6735499999999996 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "They include sudden onset of severe, painless, watery diarrhoea, vomiting, and rapid dehydration.", - "media_hash": "903b91809b0b3f784dde83b6c11687d4644b75cf4162089bb4e59545", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", - "publication_date": "2026-03-31T09:33:13", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692069/vaccine-injected-inside-tumour-cancer-survival.html", - "media_type": "news_article", - "sentence": { - "text": "This is thought to be because T-cells - the 'killer' cells released by the immune system - can become over-stimulated by a tumour's presence, which weakens their ability to attack effectively.", - "media_hash": "6e1e84d69d1fc4637bc5413909b746032a44ca7e69039dabd9c5a8ca", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", - "publication_date": "2026-03-31T03:18:54", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", - "media_type": "news_article", - "sentence": { - "text": "The agency said the schemes often involve \"nonexistent, exploitative, substandard, or unnecessary medical care,\" with fraudsters illicitly obtaining the names and identification numbers of beneficiaries and using \"kickbacks and bribes to complicit medical professionals\" to secure federal payments.", - "media_hash": "bafe0c9bff7d667b29caa59bc5a2e045eb90b83287f5cc10c0148bb9", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "FinCEN", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "These particles have built up in the environment as well as the human body since the plastic boom of the last century, where their continued presence is increasingly linked to adverse health effects.", - "media_hash": "ea8c2556b8a6e2caa6b27a2ec756d20a6605ef07a3648e466d00618d", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "politics_of_food": 4.552875, - "environment": 4.552875, - "nutrition_": 4.552875, - "health": 4.552875 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.552875 - } - } - } -}, -{ - "title": "PM", - "publication_date": "2026-03-31T16:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404361", - "media_type": "transcript", - "sentence": { - "text": "The book is called Art Cure, the Science of How the Arts Transform Our Health.", - "media_hash": "7b2aa814cfcc3829355774e03aa6d577f5e158ccb8ec5ee4031b8145", - "sequence": 218, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - } - } - } -}, -{ - "title": "The cheap tablet that every woman with a family history of breast cancer MUST be taking. I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", - "publication_date": "2026-03-31T15:20:44", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/health/article-15684961/cheap-tablet-breast-cancer-doctors-take.html", - "media_type": "news_article", - "sentence": { - "text": "Experts warn that tamoxifen also raises the risk of life-threatening complications.", - "media_hash": "f1e85237689197a60c0e241f4b1fd9c04cd2bcca710f5ef01da5bff6", - "sequence": 37, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5219199999999997 - }, - "aapfactcheck": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "'We can often treat it locally, but if it's very thick, we have to amputate the whole finger.", - "media_hash": "8f6477d437a304112ef585828ee3d9c946f429d89be64b788079d751", - "sequence": 64, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.598275 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Yau said this is because fungi damage keratin - 'a protein that helps form the cells for your hair, nails and skin' - leaving nails weakened and discoloured.", - "media_hash": "76f6416efe96a986e42600cf6a31d769ae53bbfbcdb092810ebfa7a4", - "sequence": 88, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Marion Yau", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ms Yau", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "The most common NTM infection, MAC, is known as Lady Windermere Syndrome because it's associated with elderly, white, underweight women with suppressed coughs.", - "media_hash": "1121352ad8f668c27ba803f4ae1fa02b13c32c16a21b59ed99e54ad5", - "sequence": 51, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 4.400095 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "Vibrio cholerae bacteria spreads via the faecal-oral pathway, typically through contaminated water sources, ice, or food.", - "media_hash": "d3959db0f1012a6c3bf8d0b7483add8f00af4969f8f11ed19b677d63", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "The agency added: \"Cholera is an acute diarrhoeal disease caused by ingestion of food or water contaminated with toxigenic strains of V. cholerae.", - "media_hash": "ad6e9d6dd7091cc03b7f8f27031e8690e2975ebde6b5504e830b585a", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Doctors issue stay at home warning to one group as new COVID variant surges", - "publication_date": "2026-03-31T09:17:09", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/doctors-issue-stay-home-warning-36947283", - "media_type": "news_article", - "sentence": { - "text": "Dr Khan said: \"The vaccine still is effective, boosters can be effective. At least some of the data suggest the virus is obviously mutating, and that's how it's going to dodge some of the immunity from the vaccines.\"", - "media_hash": "27bd4c5a236d281b1fa62113e95be2623fe67939986b0bde53b192e5", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Talal Khan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Pregnant Sophie Kasaei's boyfriend Jordan Brook says 'my body feels battered and bruised and I'm really fighting a mental battle' as he shares health update amid viral meningitis and encephalitis battle", - "publication_date": "2026-03-31T08:54:16", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15693767/Jordan-Brook-shares-health-update-amid-viral-meningitis-encephalitis-battle.html", - "media_type": "news_article", - "sentence": { - "text": "Meningitis is inflammation of the membranes that surround and protect the brain and spinal cord.", - "media_hash": "a06d74366875ef93b18d9cecd23112b96afd3667d78097e7c09c6cf2", - "sequence": 50, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", - "publication_date": "2026-03-31T08:46:35", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", - "media_type": "news_article", - "sentence": { - "text": "Rett syndrome is a rare genetic disorder that affects brain development, resulting in severe mental and physical disability.", - "media_hash": "755ce9de071fd74c0ba43b6ae67371b78beec6f0e5033dd6be1f35f9", - "sequence": 33, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "This can lead to what's known as a 'visceral' reaction, triggering nausea or labour-like cramps.", - "media_hash": "e647b685f694c941feca1c994d8b93f66fc837556c24c260e3a17cf9", - "sequence": 97, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", - "media_hash": "0ed85b9ec2c3c2264f789df882b9c87e8a9264bb75fb0db8b161b667", - "sequence": 944, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sam Davis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002, - "senedd_election": 2.5528750000000002 - } - } - } -}, -{ - "title": "1m to get `life-changing\u00b4 weight loss drugs to prevent...", - "publication_date": "2026-03-31T23:05:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696467/1m-life-changing-weight-loss-drugs-prevent-heart-attacks-strokes.html", - "media_type": "news_article", - "sentence": { - "text": "\"As stroke survivors live with the worrying threat of further strokes, it's vital they have options to help prevent that from happening, which suit their own circumstances.", - "media_hash": "af8ac30a9f741d4b3749521b6dee44646802c0a3b4138712146927f6", - "sequence": 28, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Stroke Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "'As stroke survivors live with the worrying risk of further strokes, it's vital they have options to help prevent that from happening,' she said.", - "media_hash": "f84f5d39062e434cb6db1d78c114baa184b1b1fa99f6f24c78689bca", - "sequence": 44, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Stroke Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.53726 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "The bacterium, Leuconostoc mesenteroides, relied on a surface binding process that trapped nanoplastics before they infiltrated human tissue.", - "media_hash": "7975dc5b7d12a8cebb2e8a7b340a04cf0816f68613d05c8775a426ef", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "politics_of_food": 0.0, - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Studies have shown these particles can cross the blood-brain barrier, raising concerns about potential long-term neurological harm (stock)", - "media_hash": "0da6a6c50edb33b82a7c67bae8e37f00bcfe4f0fcab7e9537098ce83", - "sequence": 13, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "politics_of_food": 2.5528750000000002, - "environment": 2.5528750000000002, - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "For binge drinking and cannabis, the harm to memory was indirect: heavy use in young adulthood raised the odds of developing a substance use disorder by midlife, and that disorder directly damaged cognitive health.", - "media_hash": "91d2ca0a387cc97660445cec7e2149a8b1dc27f6fbeeb235e40cbbec", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "University of Michigan researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "Bonning stresses these research peptides are not approved for human use, and people could be getting \"something that's very dangerous\" because they carry unknown toxicity profiles.", - "media_hash": "6fb61bf619f0218ad6c64e7fc35001bd37576a84589e96c16edb81a0", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.799985 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Specialists say the key warning sign is a single dark line running from the base of the nail to the tip that does not fade or grow out.", - "media_hash": "e976c5f9becdfd73b3b961e5701404aa531780c8fcd781f31dcf660d", - "sequence": 71, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Specialists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Nails that widen and curve around the fingertip may be a sign of low oxygen levels in the blood.", - "media_hash": "80b4e76a62e6016e1a0374dc84937bb49206c16c66d73c1ed0024836", - "sequence": 94, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nails", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "This can be linked to lung disease or heart problems.", - "media_hash": "3af6e9c8c4d9046bffe09a08ebb3d47ec848fb988f3303691a24b2b0", - "sequence": 95, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "This", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "For 10 years I was told my hot sweats and debilitating fatigue were the menopause. After spending thousands I found it was an (increasingly common) disease - and the life-changing cure", - "publication_date": "2026-03-31T11:56:06", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/fitness-wellbeing/article-15684483/For-10-years-told-hot-sweats-debilitating-fatigue-menopause-spending-thousands-increasingly-common-disease-thought-eradicated.html", - "media_type": "news_article", - "sentence": { - "text": "The organisms are found in soil and water and cause opportunistic infections in people with pre-existing lung conditions or weakened immunity.", - "media_hash": "16b9e62ee6ff5f7ab034a3b05701269cc62529fb28419c4ce2902be1", - "sequence": 55, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "\"Symptoms include acute, profuse watery diarrhoea 'rice water stools' and vomiting, and can lead rapidly to severe dehydration.", - "media_hash": "03eaf55b7669c50a5aebc09fa31062277536a3fefd34419796e9e757", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "Cholera is an acute, severe diarrhoeal infection caused by ingesting food or water contaminated with the bacterium Vibrio cholerae.", - "media_hash": "29b0b1b1d5005abbcec531e71ebe1333c481559bfce00cc89ed3c406", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "It causes rapid, severe dehydration and vomiting, which can be fatal within hours if untreated, though many cases are mild.", - "media_hash": "224716b1bff93ed07c0f77e21eb982a611420eedf0f9ba2d81d4cfb8", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Big rise in 'fatal in hours' infection in travellers coming to UK from 4 destinations", - "publication_date": "2026-03-31T10:07:21", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/travel/big-rise-fatal-hours-infection-36947894", - "media_type": "news_article", - "sentence": { - "text": "Vibrio cholerae bacteria spread through the faecal-oral route, usually via contaminated water supplies, ice, or food.", - "media_hash": "74e3d07ccc5490dd14ae16d2c247995a0ee69f50239d17ec02ce4877", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The astonishing benefits of seeds revealed: The cheap foods that lower cholesterol, boost hair growth and transform your health", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15654383/The-astonishing-benefits-seeds-revealed-cheap-foods-lower-cholesterol-boost-hair-growth-transform-health.html", - "media_type": "news_article", - "sentence": { - "text": "'Chia seeds are also packed full of antioxidants, including compounds such as caffeic acid and kaempferol, which have powerful anti-ageing properties,' she said.", - "media_hash": "d916996b8721eda64206e21aef7cc4158a8506314dd2add535e9751c", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Helen Johnston", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0, - "popular_media": 0.0 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "It gradually stops patients being able to move, talk, swallow and even eat.", - "media_hash": "b1cb509eaae4dc86b5c9449d5f53aba36d9922ae1adb20ed3fb5a478", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", - "publication_date": "2026-03-31T08:46:35", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", - "media_type": "news_article", - "sentence": { - "text": "There's no cure for Rett syndrome, so treatment focuses on managing the symptoms.", - "media_hash": "3079ce0b8d5f89ff9fe1d07c1eea4258893972c169a4d4b8a4749b4d", - "sequence": 36, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "(We noted that stomach ulcers, as well as being aggravated by stress, are prevented by dopamine, the very chemical that is depleted in the brains of people with Parkinson's.)", - "media_hash": "ecb9d373fb80cb7b54bd49566c004bc45ed15b6d7b109188a0758c5d", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "People whose meals included the emulsifier experienced increased abdominal discomfort after eating.", - "media_hash": "7f58c1f23332052d48b088616f00edfd009f9249b50e65258fa5f80c", - "sequence": 80, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "An obvious one is red or black, which can indicate bleeding.", - "media_hash": "539ca511cdcec95f4208096857455616b61ba65fecaa7c3c58da932b", - "sequence": 110, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "Symptoms include tiredness, shortness of breath, headaches, bleeding from the nose or gums, and infections.", - "media_hash": "c2638dd4a154e8b6a094a81c31d196571ccffb1d2e240eb1f2bc835a", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "New research points to the effects someone's risky behavior in their 20s has on their cognitive health in their 50s and beyond.", - "media_hash": "591f404b0f015961caa57ed4d37d39856c3140c7629ca1640dd9f11b", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "In other words, the damage from cigarettes appears to come from cumulative exposure in young adulthood itself, not from whether the habit continued into midlife.", - "media_hash": "f576f19d91dc950dc6ddac811ccabf2cdf80ee49169bb349ebc91c60", - "sequence": 57, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'triple threat' cause of dementia discovered... as scientists say it occurs decades before symptoms", - "publication_date": "2026-03-31T14:12:33", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692141/dementia-cause-alzheimers-disease-substance-use-smoking-cannabis-alcohol.html", - "media_type": "news_article", - "sentence": { - "text": "Occasional experimentation, over repeated exposure, strengthens neural pathways that reinforce compulsive use, making it harder to stop even as consequences mount.", - "media_hash": "490f9078d349728b352dafb25d1da0368eb3a06a1d703fe91e3cf39e", - "sequence": 61, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "The people spruiking peptides are \"often the same people who are telling you to not trust the milk you drink or the bread you buy,\" citing health and safety concerns, he says.", - "media_hash": "5f01434162c957f4d698bbb248d8218235fb0b0c901fb4b77311e1ca", - "sequence": 27, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 4.128005 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.552875 - }, - "mediacorp": {} - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "Evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", - "media_hash": "7ce28833137aa22704141e91c2019f73b893f06b8f060217e5d433eb", - "sequence": 9, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5207699999999997 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "In a 2017 study titled: \"Terry's Nails: A Sign of Systemic Disease\", researchers stated: \"Although the abnormality can occur with normal aging, Terry's nails can also be an indication of an underlying medical condition, most notably, cirrhosis, chronic renal failure, and congestive heart failure.\"", - "media_hash": "0391052e4db358bdb730b7a15fd3ae0428c079b45d2fe50c80073daf", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", - "publication_date": "2026-03-31T11:18:19", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/travel/travel-news/uk-health-alert-lethal-disease-36948599", - "media_type": "news_article", - "sentence": { - "text": "These include sudden onset of severe, painless, watery diarrhoea, vomiting, and swift dehydration.", - "media_hash": "9df5261e2eb24165cc2d537cd4547205f8271d416703d36ced376383", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "environment": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "\"Grip strength is a well-established biomarker of overall health and is strongly associated with lower all-cause mortality,\" says Aaron Deere, health and performance director at Hooke Fitness (where my longevity fitness parameters were assessed).", - "media_hash": "e8edc711374e1d1a30e93f9e92468ce2b1854c2ff331c4ee7f0b30b6", - "sequence": 84, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Aaron Deere", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hooke Fitness", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 4.552875, - "health": 4.552875 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.552875 - } - } - } -}, -{ - "title": "I made eight tweaks to increase my lifespan \u2013 I felt instantly happier and energised", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/eight-tweaks-increase-lifespan-happier-energised-4321213", - "media_type": "news_article", - "sentence": { - "text": "\"Balance training improves neuromuscular co-ordination and proprioception, which are critical for preventing falls - one of the leading causes of morbidity and loss of independence in older adults,\" Deere explains.", - "media_hash": "80f1fc2d38727ae742524eeb3c4c3e6c50769591d0eee6215a382bbc", - "sequence": 95, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Aaron Deere", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5219199999999997, - "health": 2.5219199999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Baby diagnosed with deadly brain disorder after 'teething issues' symptoms", - "publication_date": "2026-03-31T08:46:35", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/baby-diagnosed-deadly-brain-disorder-36946901", - "media_type": "news_article", - "sentence": { - "text": "There's also a risk of epileptic seizures, there's breathing difficulties.", - "media_hash": "81f8be05c33e4660c978bee4ea15edb53c17f058604e599de1375610", - "sequence": 27, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Cesar Garcia Torres", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T08:27:22", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Lucy Hooper says endometriosis can affect how nerve endings sense pain", - "media_hash": "6e9a1ff8618d2d8ec1ba0bd377d68500ec7d93fe5aedc45b8a80fc96", - "sequence": 112, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "It's this idea that has led to wellness detoxes, enemas and colon cleanses.", - "media_hash": "7dbe3e2d5272cb949ed0043c4fc94fb0981ae752504a793691c7e0ac", - "sequence": 70, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.83094, - "health": 2.83094 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "However, there are some colours that are concerning, and demand medical attention.", - "media_hash": "ac17d26219496a0934d1df05b191502c6917e0aecde76fcc470787bf", - "sequence": 109, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5528750000000002, - "health": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "Silver poo - highly rare - is a medical emergency, as it is the result of a blocked bile duct and bleeding from your upper gastrointestinal tract.", - "media_hash": "99779d71642f77f2b8d301276be50863fa3ba009ceeaea177e13ae7e", - "sequence": 113, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5219199999999997, - "health": 2.5219199999999997 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "This is because the anal area is highly sensitive - dense with nerve endings and is not meant to be scrubbed harshly.", - "media_hash": "91cb97e7eb6fa146d090c772a396762e5973dfed1282c934898d85d6", - "sequence": 128, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.73546, - "health": 2.73546 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "\"It is different enough from the JN.1 strains that the vaccine may not do as good a job of priming the immune system against it, allowing it to evade detection.\"", - "media_hash": "9ab430f8364529eccbfde6cc6d69e4b7460f781015e5615305a60bbf", - "sequence": 27, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "US scientists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Professor Kyle Enfield", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 17910, - "score": 0.2338 - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "And among the new measures, walking speed was the 'strongest predictor of death.'", - "media_hash": "09416e116176092af4a5890430ba2be29ee1e43bd1ba1b4ffe9c323e", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "nutrition_": 2.5219199999999997, - "health": 2.5219199999999997 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Symptoms seem to appear similar to other recent variants, and include a sore throat, cough, congestion, fatigue, headache and fever.", - "media_hash": "f5536589562a08301fbf69c574b53366af4298bb77ab934714ca6fed", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5528750000000002, - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Full list of new Covid strain symptoms including unusual signs", - "publication_date": "2026-03-31T14:58:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/health/full-list-new-covid-strain-33689879", - "media_type": "news_article", - "sentence": { - "text": "The SARS-CoV-2 variant BA.3.2, nicknamed Cicada, is a highly mutated strain that could be very contagious and cases are continuing to rise across the world.", - "media_hash": "af82026df4ca2a9050743c072a0fe8def778ac4c945837b71de13280", - "sequence": 3, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "\"Even if someone did have data - you can't be sure what you are getting in your little vial is actually what they say it is, firstly, and secondly, that it's made to a standard that is safe to put in your body.\"", - "media_hash": "6a6c9e9852fce2ca0a0efe2624ca72ca12f1c1e7a4e4be92aa09f909", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - }, - "mediacorp": {} - } - } -}, -{ - "title": "`Register4Ronnie\u00b4: Urgent stem cell plea for baby boy...", - "publication_date": "2026-03-31T23:05:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696469/Register4Ronnie--Urgent-stem-cell-plea-baby-boy-rare-blood-disorder.html", - "media_type": "news_article", - "sentence": { - "text": "This causes a type of white blood cell that is essential for fighting bacterial infections to become abnormally low.", - "media_hash": "797d2fb8bce19cb8b3e3d61c9862a2b07ee2f8f080a424a0383d668c", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Laura", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Typically, subungual melanoma is first detected when someone visits their doctor after noticing what they believe is a bruise under the nail that isn't going away.", - "media_hash": "f526b148075985d54ba23df58a2cfb6a97726b19e06551041c7452f5", - "sequence": 54, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Richard Wain", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Association of Plastic, Reconstructive and Aesthetic Surgeons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "In younger people, they can sometimes signal illness or nutritional deficiencies.", - "media_hash": "2fbd7a3e701945e9f42ac46a915c61d50fbb74600d50ac0601e2bfb5", - "sequence": 92, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Alterations in shape, ridges, bumps and discolouration can all indicate underlying conditions.", - "media_hash": "8b5afe10dcd2cb95690303b015b6383873c23359e45ced0575f7a833", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.6735499999999996, - "nutrition_": 2.6735499999999996 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, in the early stages, cirrhosis usually doesn't present many symptoms, or sometimes none at all.", - "media_hash": "d0a5f8d3e05dbfbabef339f27be0c2b9c9c5a683b84cc700639122a8", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002, - "nutrition_": 2.5528750000000002 - }, - "pa-media": { - "health": 2.5528750000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "People told to check symbol on back of common skincare product before use", - "publication_date": "2026-03-31T09:52:06", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/people-told-check-symbol-back-36947628", - "media_type": "news_article", - "sentence": { - "text": "The NHS backs the idea that people need to exercise particular care between 11am and 3pm.", - "media_hash": "ecd386e4c1c7c2898f96ab73ea05187136d72ee569a7f0087739b7d6", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "However, she underscored how it is not a replacement for good diet and exercise.", - "media_hash": "9259cb4fd2d12bf1e8fa7c1979817149b0b00324f5b168885ecb0dbb", - "sequence": 24, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Josie Porter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 4.67355 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Oh, without a doubt, you know, it can, can't emphasize enough how much tests save your life potentially, that's the purpose of them.", - "media_hash": "ed1f782fdbbf1b45ff499a63f76ff01d2e41f5663e343298bca6f359", - "sequence": 713, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Woodland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002, - "leo_s_topic": 2.5528750000000002 - } - } - } -}, -{ - "title": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", - "publication_date": "2026-03-31T05:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/nhs-lanarkshire-collaborate-partners-provide-36945423", - "media_type": "news_article", - "sentence": { - "text": "\"We know that many of the symptoms and signs of heart failure are non-specific, and may go unrecognised as potentially being due to heart failure for a long time.", - "media_hash": "50a032831693d9b0de01b4a034ba931bc977796abfe79f66abb2d057", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - } - } - } -}, -{ - "title": "Injectable peptides are touted online as a \u2018glow up potion\u2019. Here\u2019s why experts warn against unapproved use | Antiviral", - "publication_date": "2026-03-31T14:00:02", - "publication": "guardian", - "url": "https://www.theguardian.com/commentisfree/2026/apr/01/injectable-peptides-social-media-health-trend-glow-up", - "media_type": "news_article", - "sentence": { - "text": "\"There is no safe dosing or amount that someone can take, because we just don't know what's in there,\" Bonning says.", - "media_hash": "96b3da05a8d7eb5e76476398c1bf8b3c63bec9ecff777da30c14b5e9", - "sequence": 26, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5528750000000002 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - }, - "mediacorp": {} - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "On Tuesday health experts took part in a discussion with Ireland's Covid-19 Evaluation Panel, set up to examine the planning for and handling of the pandemic in Ireland.", - "media_hash": "7b53b043e09f3c302507bf767bed569a27eb6a9302801647e6bddab3", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5503549999999997 - }, - "demo": { - "health": 3.5503549999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.975225 - } - } - } -}, -{ - "title": "Stephen Lewis, former Canadian politician and lifelong...", - "publication_date": "2026-03-31T20:11:10", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696059/Stephen-Lewis-former-Canadian-politician-lifelong-social-activist-dies-88.html", - "media_type": "news_article", - "sentence": { - "text": "Lewis spent a lifetime fighting for causes close to his heart - including human rights, equality for women and the plight of African families decimated by AIDS.", - "media_hash": "491ad038650ea856c424a4f579ccde3845e4645309635a1786d527fa", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My life fell apart and my children were taken away after I ditched alcohol for the 'mummy treat' drug. These are the hidden signs your school-gate social circle are using it: VICTORIA VIGORS", - "publication_date": "2026-03-31T11:40:56", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/family-parenting/article-15489103/My-life-fell-apart-children-taken-away-ditched-alcohol-mummy-treat-drug-hidden-signs-school-gate-social-circle-using-VICTORIA-VIGORS.html", - "media_type": "news_article", - "sentence": { - "text": "To begin with, two bags would last a week, costing \u00a330, so it was significantly cheaper than my old wine habit.", - "media_hash": "b2c15e98e3410c2f44ce6bde713ae95a577086b4939a7ab70263380f", - "sequence": 58, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Victoria Vigors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", - "publication_date": "2026-03-31T11:05:08", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", - "media_type": "news_article", - "sentence": { - "text": "Compared to this time last year, sales for lamb liver have spiked by 33 per cent, lamb kidneys by 25 per cent, lamb hearts by 91 per cent, and beef rump heart steak by 88 per cent.", - "media_hash": "96fb2baab48a3b647162c923303f79c03758873e112dc01fa240ca07", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "ethics": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "It lowered their cholesterol levels by a further 50 per cent, compared with those who got placebo treatment.", - "media_hash": "1c254d5e2fae48301525fa915255db96c0806acd8a65a6d7916c1edf", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.970815, - "health": 2.970815 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "Another showed 15 items ordered over a three-day period and totalling \u00a367.", - "media_hash": "18ba9eaf8ed5bd36a749e57a16e764eb2257a2803086abfca7472bcd", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Loveden's video of the eggs has racked up more than nearly 2,000 comments and 25,000 likes.", - "media_hash": "69130458bc004b59643e2738a4b72fe0df6a0dbdc3ce1226b9defab4", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything you need to know about 'mutant' covid strain that might evade vaccine", - "publication_date": "2026-03-31T04:55:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188532/everything-to-know-circa-strain", - "media_type": "news_article", - "sentence": { - "text": "Weekly figures from the UK Health Security Agency show that, among positive cases analysed in England between February and March, only 2.13% were identified as the BA.3 strain.", - "media_hash": "d315d0b042a1edef616f02e703bf4dd9bbd875f8bdf75453e9bb3fe1", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Health Security Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.545945 - } - } - } -}, -{ - "title": "How one family's bipolar disorder experience led to...", - "publication_date": "2026-03-31T04:06:51", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", - "media_type": "news_article", - "sentence": { - "text": "The Stanley Family Foundation announced another $280 million for the Stanley Center for Psychiatric Research at Broad Institute earlier this month, bringing its total contributions to the Massachusetts-based nonprofit over $1 billion.", - "media_hash": "35bdffa45f6cfeb2c6dbc34f5bef957459bc6b426789920f5ed8d842", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Stanley Family Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "But lesser-spotted in the government's flagship workers' rights reforms is that the rate has not actually gone above inflation.", - "media_hash": "b749130a8eaf7fdf61aa7fc2dbd33d4dbc52bb30b10b546c37bfb091", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sec. Bessent: Treasury Could Reward Healthcare Fraud Whistleblowers Up to 30% as Tips Surpass 700", - "publication_date": "2026-03-31T03:18:54", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/30/bessent-treasury-reward-fraud-whistleblowers-upto-30-percent/", - "media_type": "news_article", - "sentence": { - "text": "He said the government can pay whistleblowers \"up to a 30% reward for the recovered funds.\"", - "media_hash": "5d724d4c6ead974a5e782c55a2daddb56870cbe950dc1b00c3331e68", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Treasury Secretary Scott Bessent", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "publication_date": "2026-03-31T01:46:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", - "media_type": "news_article", - "sentence": { - "text": "A further 18 people were admitted to hospital.", - "media_hash": "780877a4a893c63bb4a4034c1e6fbb9a7960ced0d12c5ed056b0c0ff", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.89907 - }, - "aapfactcheck": { - "health": 2.89907 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "Like around 60,000 women in the UK each year, Dawn underwent a hysteroscopy in May 2023 - a procedure to look inside the womb, which the NHS generally regards as routine and low risk.", - "media_hash": "d7b0cb8a3188694611a6e28cd815335703510320f5e956fafd48344e", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Harrowing pain. Traumatic bleeding. And no drugs to help. How women are being brutalised during routine procedures by dismissive doctors - and the steps that can help", - "publication_date": "2026-03-31T00:17:27", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692353/women-brutalised-routine-procedures-dismissive-doctors-steps-help.html", - "media_type": "news_article", - "sentence": { - "text": "A YouGov survey last year of 3,000 women found 42 per cent found it painful.", - "media_hash": "889d7a33163275c2bee50058fb6168e03b0b484524419773a99f9129", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New Covid strain sweeping UK 'could be most dangerous to kids'", - "publication_date": "2026-03-31T15:41:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/news/uk/2188913/cicada-covid-strain-uk-kids-most-dangerous", - "media_type": "news_article", - "sentence": { - "text": "Now, after a period of dormancy, Cicada has spread to 23 countries and is spreading across the US, with detections in wastewater systems in 29 states.", - "media_hash": "a5f027ce98e77a728adf76d7111c70b8b1328c5354592078da69c6ed", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "This is below the SNP's pledged 95% target which has not been met since 2012.", - "media_hash": "e19762e5395ca1b4762fb77efb21a55e534ca24cb86ec19212a1f619", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "The jabs can cost between \u00a375 and \u00a3100.", - "media_hash": "3ce8c840e4ab59393d8d56a997ee8b84fa10bdfbef87018571f60813", - "sequence": 46, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", - "publication_date": "2026-03-31T11:05:08", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", - "media_type": "news_article", - "sentence": { - "text": "Waitrose has seen a 91 per cent increase in sales of heart, a 33 per cent increase in liver, and a 25 per cent increase in kidneys, compared to this time last year.", - "media_hash": "2fcfb2e2a57669d02c04c44c813ead9a091f7a3f5fe26316ec185696", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Waitrose", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "ethics": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Army veteran who stopped in car park for medical episode fined \u00a3120", - "publication_date": "2026-03-31T09:22:26", - "publication": "mirror-weird", - "url": "https://www.mirror.co.uk/news/health/army-veteran-who-stopped-car-36947549", - "media_type": "news_article", - "sentence": { - "text": "But, a few days later, he received an email with a \u00a3120 fine, but if he paid within 24 hours would be reduced to \u00a370.", - "media_hash": "e21e1cbd58be35ab9a24e43671cb6b8ee39574ad4659818424c35c70", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "A third of people who are eligible for screenings here in Wales don't take their tests.", - "media_hash": "d1147eea29bece101aec09417594a13f3231cc7449de48ec2b8aaaad", - "sequence": 671, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Continued delayed cancer treatment waits...", - "publication_date": "2026-03-31T18:59:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695355/Continued-delayed-cancer-treatment-waits-unacceptable-says-Cancer-Research.html", - "media_type": "news_article", - "sentence": { - "text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", - "media_hash": "1866d6ad2e12f563725133a04e3b3250b7d5c421998c5df8d121b843", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "The new study, published earlier this month in the journal Mayo Clinic Proceedings, looked at 407,569 adults from the database UK Biobank ages 40 to 69.", - "media_hash": "0f3536ce7be6199557f6d76f1a6ee46bfffbe1a0d9e5f1a9298072d2", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", - "media_hash": "76f780ecf7fa964d3d1e413f03310dc2ce5fb44c0976a1d204f6d672", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "More than a million heart disease patients to get weight loss jabs", - "publication_date": "2026-03-31T10:12:00", - "publication": "skynews", - "url": "https://news.sky.com/story/more-than-a-million-to-be-prescribed-weight-loss-drug-to-prevent-heart-attacks-and-strokes-13526420", - "media_type": "news_article", - "sentence": { - "text": "NICE said clinical trials have also indicated the drug works directly on the heart and blood vessels - and it expects that 1.2 million people across England could benefit.", - "media_hash": "8ce1d34c8fd194ba9f73a9f2bb2c83a6f2f07772d7f0a36068f3376a", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Institute for Health and Care Excellence", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.6987249999999996 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "About 80,000 people in the UK are thought to be in receipt of a private prescription.", - "media_hash": "c30ae546a4c5e7b739b35938b15374cf0cd79608cf85bd8c00312884", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5315000000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "So far, clinical studies have demonstrated its safety and efficacy with data from more than 1,600 patients, some of which have received active treatment for seven years.", - "media_hash": "52ef34bb2ba7ac5ddd8696a168f2f9fa23f2309b32c86ad1b04cfdbc", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother-of-six who lost 16 STONE branded 'shameful' for buying her children seven Easter eggs each: 'I'll spend my money as I want!'", - "publication_date": "2026-03-31T06:04:18", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691309/Mother-six-lost-16-STONE-branded-shameful-buying-children-seven-Easter-eggs-Ill-spend-money-want.html", - "media_type": "news_article", - "sentence": { - "text": "'At the moment they have seven each but it may go up to about nine plus each.", - "media_hash": "5ff38c81bd6963d7801e3954cf11da39f97a421db5176597f130fa92", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "We found 66 per cent of the participants used their smartphones while pooing.", - "media_hash": "06ba33c03a2c1ddb4917030ca2ad469eeb2981890c1db14c33ea48d6", - "sequence": 47, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 0.0, - "health": 0.0 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low sick pay is making Britain sicker", - "publication_date": "2026-03-31T03:45:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/society/2026/03/low-sick-pay-making-britain-sicker", - "media_type": "news_article", - "sentence": { - "text": "No, he admitted to a Question Time audience, he could not live on statutory sick pay, which was \u00a394 a week at the time.", - "media_hash": "47e2d6dab3774414144eb3f4fbc11dd2190364857861dd26fb5dbae6", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Matt Hancock", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", - "publication_date": "2026-03-31T23:01:52", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694121/NHS-watchdog-Wegovy-heart-attack-stroke.html", - "media_type": "news_article", - "sentence": { - "text": "Those on the drug were 20 per cent less likely to suffer a major heart event, such as a heart attack or stroke, than those given a placebo.", - "media_hash": "bee0767fe6bc5616dffa5a5d28a88a3effa0346803a70b17822c722a", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 3.5163599999999997 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "\"It allows kids to pick up a free piece of fruit in store during the school holidays, and we've given away more than four million apples so far.", - "media_hash": "7f8c7d9dd915aa9a049774be4d0698951c29f2c168ebc9beae34c208", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Oonagh Turnbull", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "The team found that replacing blood pressure and cholesterol metrics with the five new measures improved mortality risk classification by 10 percent for women and 19 percent for men.", - "media_hash": "826cbe1525cc004ef8515156c83717c49a612dff9072205da4ed0a2a", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "nutrition_": 3.3956850000000003, - "health": 3.3956850000000003 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.545945 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", - "media_hash": "b3bb98b7a1995903de750a6e20560045eea78ab3729c226969b7fe89", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "It follows the impact of Storm Theresa, which hit the region hard, generating upwards of 700 litres of rain per square metre in some spots.", - "media_hash": "b6f6ca0986c8aa0e3806bea6aac12b12a13f381ca2a981d554b570c4", - "sequence": 24, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "environment": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Type 2 diabetes CAN be reversed, say experts - as they pinpoint six diet and lifestyle changes everyone can make", - "publication_date": "2026-03-31T13:51:11", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15693871/Type-2-diabetes-reversed-lifestyle-changes.html", - "media_type": "news_article", - "sentence": { - "text": "More than 13,000 adults in England were enrolled on the 800-calorie-a-day plan in 2024.", - "media_hash": "1d07328921ca5d370b45824e87d9c7f48df174c14381597d001b93d3", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.970815, - "nutrition_": 2.970815 - }, - "pa-media": { - "health": 2.5459449999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "\u2018Should never have been prescribed\u2019: private UK cannabis clinics face call for tighter regulation", - "publication_date": "2026-03-31T12:51:22", - "publication": "guardian-science", - "url": "https://www.theguardian.com/society/2026/mar/31/medicinal-cannabis-private-clinics-oliver-robinson-death", - "media_type": "news_article", - "sentence": { - "text": "The government reported about 5,000 NHS prescriptions for licensed CBMPs in 2023.", - "media_hash": "9187853ed0f103e858d514a7cfbb47ca239f71f9e1484c6d23e79532", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.772635 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How one family's bipolar disorder experience led to...", - "publication_date": "2026-03-31T12:11:24", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693461/How-one-familys-bipolar-disorder-experience-led-1-billion-Broad-Institute.html", - "media_type": "news_article", - "sentence": { - "text": "His father devoted $825 million altogether.", - "media_hash": "86e369afbfe1d455478fb2f15524ab6e3af676332d750aa3aa2276b7", - "sequence": 46, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Would YOU try an offal Bolognese? Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", - "publication_date": "2026-03-31T11:05:08", - "publication": "dailymail-tech", - "url": "https://www.dailymail.co.uk/sciencetech/article-15694183/offal-Bolognese-Sales-forgotten-cuts-Brits.html", - "media_type": "news_article", - "sentence": { - "text": "Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", - "media_hash": "1eb2572e7275f1413fe266b89dde8788bdfbfc0a855cc3ae859d1d37", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "ethics": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "It warns that one in four NHS sonographer job posts are vacant in England.", - "media_hash": "3ec8f7ebd2e2de061519049bfe5d76ae89a5c789ec89cf0916f69be6", - "sequence": 53, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "The highest number of reported cases occurred in early December, marking a turning point in its spread.", - "media_hash": "9462499608cbfcbf6f78854565a44a17afa629705d45132e7c733657", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Wales has the lowest average screening uptake compared to all of the UK nations, they say.", - "media_hash": "9e25048375fcfecbc8768463fa9a4f295b3bc09fb58c2afaf5d33ddd", - "sequence": 673, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "They're now \u00a3170.", - "media_hash": "8e5137c51cf6dc127581c2f82d8448673bdc8f04ee647081725b2065", - "sequence": 76, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "It's much better when I can go out with my powered wheelchair, which was \u00a32,000.", - "media_hash": "a006cf19fc83af3e795e1afeeae6cca500e3798482bae244dab66d2e", - "sequence": 119, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", - "publication_date": "2026-03-31T15:50:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/brave-airdrie-mum-battling-stage-36949798", - "media_type": "news_article", - "sentence": { - "text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", - "media_hash": "912309722bf504fb5e56c4073548e8c832ca5d39ff7af8fda21872bb", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - } - } - } -}, -{ - "title": "West Lothian cancer survivor shares her story this Bowel Cancer Awareness Month", - "publication_date": "2026-03-31T11:36:33", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/local-news/west-lothian-cancer-survivor-shares-36948829", - "media_type": "news_article", - "sentence": { - "text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", - "media_hash": "3f7e8ca7052fb5e5bd2e3372b22cbf08f12db9849e32bf9e38158611", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "Yet it wasn't until September 2025 that worldwide detections started climbing substantially.", - "media_hash": "d8ef6959069f37c77c5e7de67a4e7c762463b550c3028464dc34d1d6", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", - "publication_date": "2026-03-31T08:45:36", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/new-cicada-covid-variant-ba32-36947250", - "media_type": "news_article", - "sentence": { - "text": "While confirmed UK case numbers stay relatively small, the variant's identification amongst international travellers and its appearance throughout Europe indicates it is probably already spreading at modest levels within Britain.", - "media_hash": "99f81dba9d6b7c5a2e87a2f119e80070d731602b1633c0cc5abb5392", - "sequence": 12, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", - "media_hash": "41787f2644ba253a4f2e7f857310aeee8178ba57c4086071edeed42c", - "sequence": 212, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "AD FEATURE: How to eat healthily without breaking the bank", - "publication_date": "2026-03-31T16:39:30", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/shopping-deals/eat-healthily-without-breaking-bank-36879890", - "media_type": "news_article", - "sentence": { - "text": "Matching the prices of selected Tesco products against comparable or identical branded products at Aldi - two thirds of which are deemed healthy.", - "media_hash": "72742a5cc853c0f828648aac65eac279cff8349869cc9c3696540197", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Tesco", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 4.545945, - "nutrition_": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.545945 - } - } - } -}, -{ - "title": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", - "publication_date": "2026-03-31T14:52:48", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/ticking-timebomb-scottish-cancer-care-targets-missed-for-13-years-in-a-row-6530433", - "media_type": "news_article", - "sentence": { - "text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", - "media_hash": "2f8f5edd62264970131328b073ad68cb5ba6c8a3f145c6eec92bf37b", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Public Health Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", - "publication_date": "2026-03-31T13:59:55", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", - "media_type": "news_article", - "sentence": { - "text": "The family raised over \u00a38,000 for the charity Meningitis Now over the weekend.", - "media_hash": "c1635472d265ca1ec8c3666da2ca3ba461b8b2edbb4bb63c4b1c4656", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Meningitis Now", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "measles": 2.5459449999999997 - } - } - } -}, -{ - "title": "'My son's only meningitis symptom was feeling cold - hours later he was dead'", - "publication_date": "2026-03-31T13:59:55", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/my-sons-only-meningitis-symptom-36949789", - "media_type": "news_article", - "sentence": { - "text": "The mother is now warning other parents be vigilant and react quickly if they notice symptoms following the recent outbreak of the infection in Kent - which killed two young people.", - "media_hash": "a1f8563b003b2b34b5b88f213eb4df38f41ec52007fe5ca145693d6d", - "sequence": 10, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.54548 - }, - "demo": { - "health": 2.54548 - }, - "pa-media": {}, - "fullfact-policy": { - "measles": 2.54548 - } - } - } -}, -{ - "title": "If you have high cholesterol, there are alternatives to statins", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/high-cholesterol-there-are-alternatives-to-statins-4325871", - "media_type": "news_article", - "sentence": { - "text": "The injections are more expensive, so NHS guidelines say they should be reserved for people who have already had a heart attack or stroke, and cannot tolerate statins because of side effects, or for whom statins aren't reducing their cholesterol enough.", - "media_hash": "26d3aa2b2ab16ed742303fb3b548a23d8c02dd253cb41bdd0edc3440", - "sequence": 14, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5438549999999998 - }, - "demo": { - "nutrition_": 2.968725, - "health": 2.968725 - }, - "pa-media": { - "health": 2.5438549999999998 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Mother's distress after late adorable toddler daughter was buried without her HEART", - "publication_date": "2026-03-31T17:02:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694493/louisiana-baby-buried-without-heart-legislation.html", - "media_type": "news_article", - "sentence": { - "text": "State coroners and pathologists warn the new rules could bog them down with paperwork and cause more trouble than help, insisting their existing standards protect families well enough, the outlet reported.", - "media_hash": "bafb482335141988e491e70f7d1a6e035ff78905d8a4051ce9068cdd", - "sequence": 30, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "State coroners and pathologists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5438549999999998 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "measles": 2.5438549999999998 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "Issues affecting your liver, lungs, and heart can all show up in your nails, so it's beneficial to keep an eye on them regularly.", - "media_hash": "069f34591b788a45c907973a45a277d961c68ebd096d622c39e23ba9", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 4.53726, - "nutrition_": 4.53726 - }, - "pa-media": { - "health": 2.53726 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "However, certain warning signs could imply you have early-stage heart failure or liver disease, and necessitate a visit to your GP.", - "media_hash": "1e8f50771cee2c8749f6d3984704dc221d730361a5031d34f8ccd6b1", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 0.0, - "nutrition_": 0.0 - }, - "pa-media": { - "health": 2.53726 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "With MS, it's really important to keep your body moving.", - "media_hash": "0eabb663fe86e40e77e509ed0b25345a0e48a0bc45b9ad3c75a04b10", - "sequence": 58, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.53726 - } - } - } -}, -{ - "title": "Canary Islands health warning to six types of tourists as people urged to 'close windows'", - "publication_date": "2026-03-31T14:00:59", - "publication": "mirror", - "url": "https://www.mirror.co.uk/travel/europe/canary-islands-health-warning-six-36948815", - "media_type": "news_article", - "sentence": { - "text": "Health authorities have urged people to refrain from staying outside for extended periods, keep windows shut, and steer clear of heavy physical exertion outside.", - "media_hash": "b071db0818074953af78e1b71d4896fe3732c9da2d1a897e4bdd922e", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Canary Islands Health Department", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "General Directorate of Public Health of the Canary Islands Health Service", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "environment": 4.53726, - "health": 4.53726 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 4.53726 - } - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "People are being encouraged to look out for specific warning signs on their nails that could suggest early-stage heart failure or liver disease, including cirrhosis.", - "media_hash": "a3b85973fc01fba3e45c3b7520c7219ca48fefe3b2e4fb7c8b0f7273", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 2.53726, - "nutrition_": 2.53726 - }, - "pa-media": { - "health": 2.6735499999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail warning sign could be early symptom of heart failure or liver disease", - "publication_date": "2026-03-31T13:00:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/health/2188827/fingernail-warning-sign-could-early-symptom-heart-failure-liver-disease", - "media_type": "news_article", - "sentence": { - "text": "It's worth examining the side effects of any medication you're currently on.", - "media_hash": "cee3a2f9030351ab6d294ad78236893be977b3837f90eac50102ae34", - "sequence": 49, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 2.53726, - "nutrition_": 2.53726 - }, - "pa-media": { - "health": 2.53726 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "However, certain warning signs could suggest you have early-stage heart failure or liver disease, and warrant a visit to your GP.", - "media_hash": "4b1936b06f3e14796209ee174a0cd0151c4d78501d0ec60292187a71", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": { - "health": 2.53726 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer. These are the easy-to-miss symptoms everyone must look out for", - "publication_date": "2026-03-31T09:50:31", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15678587/brown-streak-nail-deadliest-skin-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Yau said: 'If you suspect white patches are due to a vitamin or mineral deficiency, you should get a blood test to be sure.", - "media_hash": "c80b507fd17e76e4be5e16d2972d9117243ac3ccf02655dc96e882fa", - "sequence": 84, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Elizabeth Misselbrook", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Marion Yau", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ms Yau", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paddy Murphy is very familiar with the specialists dedicated to helping HIGH-RISK patients who've been told there is NO HOPE... what no one was prepared for was what happened on the OPERATING TABLE when Paddy was undergoing relatively routine surgery", - "publication_date": "2026-03-31T20:03:41", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15695329/Paddy-Murphy-familiar-specialists-dedicated-helping-HIGH-RISK-patients-whove-told-NO-HOPE-no-one-prepared-happened-OPERATING-TABLE-Paddy-undergoing-relatively-routine-surgery.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Hanratty says if you have been diagnosed with a heart issue and you feel that the treatment you have been receiving hasn't been working for you, then it is worth asking for a second opinion, particularly if your quality of life has been badly affected.", - "media_hash": "3e6601c02530cefcbc37cf30ab9ab6bdcd83b6866aaa5ace32448dd8", - "sequence": 47, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.53726 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lamar Odom Netflix documentary title explained as fans left 'so confused'", - "publication_date": "2026-03-31T16:06:12", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/is-lamar-odom-dead-netflix-36950506", - "media_type": "news_article", - "sentence": { - "text": "10 years ago, the 46-year-old had a near-fatal overdose and suffered kidney failure, 12 strokes and six heart attacks.", - "media_hash": "a88ccbdaabd68c77ca0c32f8a53f0e362a7d4b1080f576f8aecaaed8", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5326649999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Uber says drivers won't deliver alcohol to drunk customers after death of dad", - "publication_date": "2026-03-31T08:35:19", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/health/uber-says-drivers-wont-deliver-36947183", - "media_type": "news_article", - "sentence": { - "text": "Glenn Perkins died after spending up to \u00a360 a day having alcohol delivered to his home", - "media_hash": "5978339c8d6c823f330d0a86e5a48fafa943f1805253f5941bd94d08", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5326649999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "publication_date": "2026-03-31T01:46:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", - "media_type": "news_article", - "sentence": { - "text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "media_hash": "b053b1b9e13b96574be30fe5fdb4ff6757e891caaa1260b83d06f465", - "sequence": 0, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5323200000000003 - }, - "demo": { - "health": 2.5323200000000003 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T01:15:34+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038787251081982267", - "media_type": "social_post", - "sentence": { - "text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning https://t.co/oFoTjDDeyj", - "media_hash": "4d8167825241a1e412ec94fe13280a5dc1d7376d360e1400bdb47a7d", - "sequence": 0, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Nightclub", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5323200000000003 - } - } - } -}, -{ - "title": "From NEVER 'holding it in' and the best time to use the loo, to the one food which is guaranteed to flush you through... and why coffee is a very powerful friend: Your ultimate guide to a healthy bowel", - "publication_date": "2026-03-31T05:38:52", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691007/never-hold-best-time-loo-ultimate-guide-healthy-bowel.html", - "media_type": "news_article", - "sentence": { - "text": "In 2024, I found that Parkinson's disease could be predicted by gut problems decades before people developed tremors.", - "media_hash": "a6ea338d264d0fce4717143396e8698caf378be70c6f00d6a8a3944a", - "sequence": 19, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Dr Trisha Pasricha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5323200000000003 - }, - "demo": { - "nutrition_": 2.5323200000000003, - "health": 2.5323200000000003 - }, - "pa-media": { - "health": 0.0 - }, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", - "publication_date": "2026-03-31T01:46:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693117/Nightclub-centre-Kents-deadly-meningitis-outbreak-reopen-kissing-warning.html", - "media_type": "news_article", - "sentence": { - "text": "Club Chemistry, where the meningitis outbreak began, will reopen its doors this Thursday with a kissing warning", - "media_hash": "7db27d93b4639672801f094e3e5b2719eec03aaf7272136fa954a294", - "sequence": 15, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5323200000000003 - }, - "demo": { - "health": 2.5323200000000003 - }, - "aapfactcheck": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T10:00:05", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "'We have continued to improve ChatGPT's training to recognise and respond to signs of mental or emotional distress, de-escalate conversations, and guide people toward real-world support.", - "media_hash": "b205ff91afdea1de6f04131f1ff91949d55b9cf52cb244d308c46633", - "sequence": 68, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "ChatGPT", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "OpenAI spokesman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 0.0 - }, - "fullfact-policy": { - "climate_change": 2.5219199999999997 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "It is not fully understood why MND occurs and there are currently no treatments to halt its cruel march - instead doctors focus on alleviating the worst of the symptoms.", - "media_hash": "27276b47a45fb667c3979c640ab79813f2e841be899a2de30d4aaedf", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", - "media_hash": "53e476109777e393fe8c484ecc8d69c8d79804c00cddfb880ae741dd", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5219199999999997, - "clinical_health": 2.5219199999999997 - }, - "demo": { - "health": 4.52192 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.7201 - } - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "media_hash": "960204d0a5d8399cf434c2a483b2a15def014f38d9d1373586e581d9", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": { - "health": 2.5219199999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fingernail symptom could be early warning sign of heart failure or liver disease", - "publication_date": "2026-03-31T12:50:09", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/fingernail-symptom-could-early-warning-36949186", - "media_type": "news_article", - "sentence": { - "text": "People are being urged to watch for specific warning signs on their nails that could indicate early-stage heart failure or liver disease, including cirrhosis.", - "media_hash": "fc86819321078624d717b11663b9ee5d852f1381eb0c2deaf715e2cb", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": { - "health": 2.5219199999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The simple measure that can predict your lifespan better than invasive tests", - "publication_date": "2026-03-31T16:28:28", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15694759/simple-measure-predict-lifespan-walking.html", - "media_type": "news_article", - "sentence": { - "text": "'Our analysis found that walking pace was the strongest single predictor of death,' Professor Tom Yates, paper author and physical activity researcher at the University of Leicester in the UK, said.", - "media_hash": "9f0a287be23987974edfb96512747343ebf580eefdc91919eb328672", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "researchers", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Professor Tom Yates", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "University of Leicester", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": { - "nutrition_": 2.5219199999999997, - "health": 2.5219199999999997 - }, - "pa-media": { - "health": 2.5219199999999997 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5219199999999997 - } - } - } -}, -{ - "title": "The surprising $5 superfood that cleans out toxic cancer-causing microplastics from the body", - "publication_date": "2026-03-31T16:27:58", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15692623/superfood-bacteria-kimchi-microplastics-cancer.html", - "media_type": "news_article", - "sentence": { - "text": "An expanding body of scientific research has linked nanoplastics in the brain to cause a range of pathological changes, including inflammation, oxidative stress, an accumulation of Alzheimer's-associated amyloid plaques, as well as Parkinson's-linked Alpha-synuclein proteins.", - "media_hash": "7150c8ad3f7f46f910ab317c2dc91afd4ba8618113286ef327256004", - "sequence": 50, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5219199999999997 - }, - "demo": { - "politics_of_food": 2.5219199999999997, - "environment": 2.5219199999999997, - "nutrition_": 2.5219199999999997, - "health": 2.5219199999999997 - }, - "pa-media": { - "health": 4.52192 - }, - "maldita": {}, - "fullfact-policy": { - "climate_change": 2.5219199999999997 - } - } - } -}, -{ - "title": "Motor neurone disease breakthrough hope as drug that can 'slow progression of ALS' starts late stage trial", - "publication_date": "2026-03-31T09:33:10", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/health/article-15691975/Motor-neurone-disease-breakthrough-hope-drug-slow-progression-ALS-starts-late-stage-trial.html", - "media_type": "news_article", - "sentence": { - "text": "ALS claimed the life of Grey's Anatomy star Eric Danes at just 53-years-old earlier this year and the acclaimed scientist Stephen Hawking famously suffered from it.", - "media_hash": "adcd67cf282cd05e560c98352b02c59834e479a45a0f31af1d1d8b94", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5207699999999997 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tiger Woods had pills in his pocket when he was arrested, cops claim... as golf legend reveals what led to him rolling his SUV in high-speed crash", - "publication_date": "2026-03-31T16:29:18", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/sport/golf/article-15694883/tiger-woods-dui-crash-florida.html", - "media_type": "news_article", - "sentence": { - "text": "Tiger Woods had two loose opioid pills in his pocket when he was arrested for DUI in Florida on Friday.", - "media_hash": "c780ade322189987891765437870f3bf58b1be5cacbd3fcb3d6df6ee", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5207699999999997 - }, - "demo": { - "health": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK households urged 'do not ignore' this symbol on popular item", - "publication_date": "2026-03-31T08:20:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188601/sunscreen-symbol-safety-risk-uk", - "media_type": "news_article", - "sentence": { - "text": "The NHS claims that people need to be most vigilant between 11am and 3pm.", - "media_hash": "9faa7b3410f38a4bf81bcd0f08ba2661648d292e622d20dacb9bde39", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "NHS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5207699999999997 - }, - "demo": { - "health": 2.6735499999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Mother's distress after late adorable toddler daughter was buried without her HEART", - "publication_date": "2026-03-31T17:02:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694493/louisiana-baby-buried-without-heart-legislation.html", - "media_type": "news_article", - "sentence": { - "text": "Romero said her two-year-old was buried without her heart and is now behind new legislative change", - "media_hash": "f01f7c7aaf91f4b96945709b84f03d8c27bee4be842c664afc905f87", - "sequence": 13, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "Krystal Romero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5146300000000004 - }, - "demo": {}, - "aapfactcheck": { - "women": 2.5146300000000004 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "measles": 2.5146300000000004 - } - } - } -}, -{ - "title": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", - "publication_date": "2026-03-31T07:51:50", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/new-lineage-covid-arrives-uk-36946893", - "media_type": "news_article", - "sentence": { - "text": "However, it was not until September 2025 that global detections began to rise significantly.", - "media_hash": "5931f6af461844e77b5fc9ec51a09410f96b398c96335342e128ad6b", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "My week on PIP, from swollen feet in a cold house to exhaustion", - "publication_date": "2026-03-31T05:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/my-week-on-pip-first-person-4313682", - "media_type": "news_article", - "sentence": { - "text": "'MS symptoms can change from one day to the next, one week to the next, and that makes it really frustrating', says Georgina", - "media_hash": "283750259f8e03b0655812ac0c6feaed4ce0fd2cf897ac2144da0591", - "sequence": 45, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Georgina Colman", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.500545 - }, - "demo": { - "health": 2.500545 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.500545 - } - } - } -}, -{ - "title": "Which supplements ACTUALLY work? Dietician Josie Porter reveals the pills worth your money - and the pricey powders to ditch for good", - "publication_date": "2026-03-31T06:00:55", - "publication": "dailymail-health", - "url": "https://www.dailymail.co.uk/health/article-15691297/which-supplements-actually-work-life-bryony-podcast-josie-porter-reveals-pills-worth-money.html", - "media_type": "news_article", - "sentence": { - "text": "The body produces collagen naturally from protein rich foods such as chicken, fish, eggs and dairy, but millions of people have begun supplementing it on top of their regular diet following studies suggesting it can slow the visible signs of ageing.", - "media_hash": "3d451e6781f7c18bd246b4244bab8e0b10875a2651520a78264b2191", - "sequence": 14, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.500545 - }, - "demo": { - "health": 4.500545 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Health Secretary Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", - "media_hash": "cb95b6b72de14ec9a2cb0bc1286d4087609bbb8ff2f2526d72ddf494", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28741, - "score": 0.13490000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "health": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a34bn NHS investment, \u00a32 bus fares and 100,000 new homes: Welsh Labour\u2019s manifesto summarised", - "publication_date": "2026-03-31T05:00:09", - "publication": "labourlist", - "url": "https://labourlist.org/2026/03/welsh-labour-senedd-manifesto-2026-summarised/", - "media_type": "news_article", - "sentence": { - "text": "A new deal for the NHS with \u00a34 billion to build new hospitals, same-day mental health support and a new focus on women's health", - "media_hash": "a2275a88c7b74671013dd2aa708519fbe2879bb920c9bd6bf556b56f", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "First Minister Eluned Morgan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Welsh Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.970815 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Health Secretary Wes Streeting said it meant that 'for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000'.", - "media_hash": "c47d7126cfca470a87be80e8b0e80a4dea3ca1785351d2aefc04d8af", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Health Secretary Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.970815, - "health": 4.970815, - "leo_s_topic": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "The PM has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year.", - "media_hash": "b2232e74907f36738acaf2e6abeceff6d171cde94c0af32123074088", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 39593, - "score": 0.3891 - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "health": 4.970815, - "starmer": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", - "media_hash": "afde05da79416c3a4056d8f69a2d80422df9e65712db2099d2e60a10", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.970815, - "health": 4.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Over it's costing that the government even more money because now because of the staffing gaps that they have, they need to employ temporary staff that will be at higher rates, whether they're consultants, whether there's resident doctors, they're higher rates and of course when the strikes go ahead, they the rates are higher as well for doctors to step in and to make sure the staff are at safe, um, at a safe number.", - "media_hash": "33d08fa5d657b35186010c28e25cc1aa66ee07086bb2d134420d3b4c", - "sequence": 1411, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "health": 4.970815 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Because I, I fully accept that that resident doctors have lost out over the past 17 years.", - "media_hash": "cf47b29aeb27d1697529e631b7cfe1def2c911da860ae90355caedcd", - "sequence": 1423, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.772635, - "health": 4.772635 - } - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "The union said this was not enough, given inflation is expected to rise, and that pay for resident doctors has not kept pace with inflation since 2008.", - "media_hash": "baa0f4401cea0e52d6f351ed6a2c3dacd1bbc9708ac8dcf9f6645824", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.698725, - "health": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Resident doctors make up nearly half of medics working in the NHS - two thirds of them are BMA members.", - "media_hash": "a2dbb2e7d4d61d9dfe2c5ac7c0a266b2f1fa345c6026b45794283bde", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.698725, - "health": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I, I don't think resident doctors should be striking at all, but if they are, I mean, six days really is far too long, isn't it?", - "media_hash": "1ca13348c8bea6db3fb2999bc52246b7c09687897e2ba92d3e3c52af", - "sequence": 1420, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.658185, - "health": 4.658185 - } - } - } -}, -{ - "title": "\u00a34bn NHS investment, \u00a32 bus fares and 100,000 new homes: Welsh Labour\u2019s manifesto summarised", - "publication_date": "2026-03-31T05:00:09", - "publication": "labourlist", - "url": "https://labourlist.org/2026/03/welsh-labour-senedd-manifesto-2026-summarised/", - "media_type": "news_article", - "sentence": { - "text": "Invest \u00a34 billion in a Hospitals of the Future Fund to build state-of-the-art new hospitals, including replacing Wrexham Maelor Hospital and University Hospital Wales, and a major hospital development in West Wales", - "media_hash": "1a79a5f6aa41882871a239c271de882722dd5b626cd46ccc607ab0c8", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.636345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "That means resident doctors have to, when this short staffing, they have to look after more patients that they probably wouldn't have if the it was well staffed, more acutely unwell patients, could be probably complex medical patients, where they miss their breaks, miss their lunch, and have to stay overtime.", - "media_hash": "7cd79b5e09eb48d3eb49bc9ac9a4731df08980fc2d62d91c0a5df692", - "sequence": 1378, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.598275, - "health": 4.598275 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", - "media_hash": "579099884d4c68a64ea4805872cc92ae909f47d701aec1d53178d5d5", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 45085, - "score": 0.06908734046502547 - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.552875, - "clinical_health": 4.552875 - }, - "demo": { - "health": 2.5219199999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5528750000000002 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", - "media_hash": "08c7e3840f71fb499c0e9e93fc1ea0a9ccd37fa87ac622ed9e272937", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Full Fact", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "health": 4.545945 - } - } - } -}, -{ - "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", - "publication_date": "2026-03-31T07:46:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer gave the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics given a pay rise of 35% over three years.", - "media_hash": "c1abb6458c022c1c26162d5d8f9f11a0b8faa03c988d8c9be5489adc", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", - "media_hash": "77fd166baef910f3f07dc4b4c3454cbcdbdec780b0af03dd0eb2e55a", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "publication_date": "2026-03-31T16:03:46", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "media_hash": "51d848bd3ab6b95edfa75d2a2e1e5e8bf68eb410b4492e07a444a6b0", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 4.545945, - "starmer": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How did we get to another NHS doctors' strike?", - "publication_date": "2026-03-31T12:15:00", - "publication": "skynews", - "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer accused the BMA of rejecting a \"historic deal\" that would have delivered \"another above-inflation pay rise this year\" of 3.5% to bring their total pay rise since 2023 to 25.5%.", - "media_hash": "788a5c0adc05f9788b7f559d49192a5c8daac74766ba56e3c0053931", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Out-of-pocket expenses for things like exam fees were also to be covered, while progression through the five resident doctors pay bands was to be speeded up.", - "media_hash": "a6c386ec1fd5eed932cbd1141b33d64dae4d27b8a25e7965d8eb2cb1", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "It will be the joint longest since the dispute began - only once before have resident doctors taken part in a six-day walkout.", - "media_hash": "7cb0e97aa9c37a8cc6a1cc5411325bf7ddc51bef24caf2d69f71fc44", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "The deal also included a commitment to create at least 4,000 new specialty training posts in the NHS, for which resident doctors - previously known as junior doctors - can apply after their first two years of training.", - "media_hash": "092ae8b6228c64ebe1607ba5771a1bbbfe31448909aae0bb0ae37d78", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "health": 4.545945, - "leo_s_topic": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Resident doctors in the final stages of speciality training, who now earn \u00a373,992 in basic pay, would earn \u00a377,348.", - "media_hash": "49279982d27bbb46fc2c5a269e84df4bdcbc4cbcf3d05513c74251d8", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "health": 4.545945, - "leo_s_topic": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", - "media_hash": "42d0adc8d3f341c013f99fc4f36a6d2243f8c7abd60aa666d92dc163", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "health": 4.545945 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Last week, the BMA's resident doctors' committee rejected an offer worth up to 7.1 per cent for this year without even putting it to members for a vote.", - "media_hash": "56090652272aad166738751e4a72b4137e4e48e21804d68a45ffd104", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "BMA's resident doctors' committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.545945, - "health": 4.545945, - "leo_s_topic": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has given the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year", - "media_hash": "c8888b8944747b0ea7dd2bbfda63ce5ba16cf0b6b045877bce6e61ef", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "health": 4.545945, - "starmer": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "He said that the deal meant \"for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000\".", - "media_hash": "913451903f800239828576184413f6752d421a4dcb8e0b6a294bbf92", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "The BMA argues that, despite the pay rises of the last three years, resident doctors' pay is still a fifth lower than it was in 2008, once inflation is taken into account.", - "media_hash": "8251249836ede13206108772a27803850335ff1d40158512b2a32372", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 39545, - "score": 0.18520000000000003 - }, - { - "tracked_claim_id": 39593, - "score": 0.2733 - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.545945, - "health": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "We're seeing waiting lists coming down slightly, we're seeing urgent and emergency care improving, we're seeing the NHS hitting its financial targets for the first time in nearly 10 years.", - "media_hash": "40ab70146b45237d2ca9852a19d972f0e8d1eddd886e2031cfe988ee", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS Providers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.545945 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Resident doctors will be worse off.", - "media_hash": "de999245474b7596ea87d6d7a8f329ea01b09a7144bf28a121375c6e", - "sequence": 18, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.489365, - "health": 4.489365, - "leo_s_topic": 4.489365 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", - "media_hash": "2adfdc7e49415afec074f7f64afbe9c23dc2951cf0284cccaf1bb491", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.486035, - "health": 4.486035 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:48:25+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/SkyNews/status/2038916315310694760", - "media_type": "social_post", - "sentence": { - "text": "Sir Keir Starmer has threatened to withdraw an offer of thousands more NHS jobs should resident doctors go ahead with strike action next week", - "media_hash": "a8512b38461187416434692abcb90e42a4ad43ff4a4841fc21473998", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.486035, - "starmer": 4.486035, - "health": 4.486035 - } - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T11:39:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the deal, which currently includes an offer of thousands of extra NHS training posts.", - "media_hash": "7603ec4e2bf1540fff5a06f711b808947d47370d46324103186f77cd", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.486035, - "health": 4.486035, - "leo_s_topic": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So with the thousand places that Keir Starmer is saying, it's a step in the right direction, but when you have 18,000, over 18,000 doctors waiting to get into GP training, these are applicants that have passed the exam, are on the waiting list to get into GP training.", - "media_hash": "23bca404d7822a9ae67a53f7a7aa29dcad11ec033f2cde464ebf0419", - "sequence": 1369, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.486035, - "health": 4.486035, - "starmer": 4.486035 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Here Keir Starmer has accused junior doctors of being reckless after they rejected a deal which would have paid some of them more than 100,000 pounds a year.", - "media_hash": "cbf2de95418e0d9a46315b555520bda3b756016451d9894c3e3cc80a", - "sequence": 26, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.486035, - "health": 4.486035, - "leo_s_topic": 4.486035 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T21:14:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "The walkout, which is due to run from 7am on April 7 until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", - "media_hash": "695625660ad1fe8c642e670dc4b8faed5f5e5ea6f2e3d7a2ceb8a3a2", - "sequence": 21, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.451035, - "health": 4.451035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "The walk out, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", - "media_hash": "bcb1d3713d5989e6403e51c5a37d09fd840378376dd6d03e60d1deb0", - "sequence": 23, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.451035, - "health": 4.451035, - "starmer": 4.451035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, it is happening under a Labour government, from April the 7th, there will be no resident doctors working in our hospitals for six whole days.", - "media_hash": "7f7f2c9373b36dd92e57cde1a0cb229e685514b856d0b3f02a636c14", - "sequence": 1418, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.451035, - "health": 4.451035, - "starmer": 4.451035 - } - } - } -}, -{ - "title": "Resident doctors\u2019 training posts at risk unless they call off strike", - "publication_date": "2026-03-31T14:11:37", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has threatened to withdraw the offer of thousands of new training positions for resident doctors if the British Medical Association (BMA) doesn't call off strike action within 48 hours.", - "media_hash": "c2428df7c10cbb5bb071bbc0eb38f842921c2dee21f5bd51cac24dd1", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.41429, - "health": 4.41429 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", - "media_hash": "06b97deea0fcf270783faff33af386a35a7393efaf7c471d5f1b7536", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 4.409655, - "leo_s_topic": 4.409655, - "health": 4.409655 - } - } - } -}, -{ - "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", - "publication_date": "2026-03-31T17:51:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", - "media_type": "news_article", - "sentence": { - "text": "The BMA said the ballot raises the prospect of all secondary care doctors in England taking industrial action during the same period in a major blow to patients and Labour's pledge to tackle long waiting lists.", - "media_hash": "333de8add10fa38f24efe34230f5e755b3c8c3288e595812635c8a83", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.400095 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "And I think that's a signature pledge, uh, in our manifesto that is not present in others, building three new hospitals across Wales.", - "media_hash": "f1caea26a31f244ce4f7386eff8c3162ace2f0ffbbb40bc2fb050c52", - "sequence": 1009, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.347765 - } - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", - "publication_date": "2026-03-31T06:45:27", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has threatened to withdraw an offer of thousands of extra NHS training posts if resident doctors do not call off a six-day strike after Easter.", - "media_hash": "73dc7776fbccc8f44ab5dc8080358c0f6649036c18c53cd2e571b872", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 4.287855, - "starmer": 4.287855 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I think resident doctors need to be a special case because it's a long-term investment in the NHS.", - "media_hash": "1ffedd8df4ce5da54220c13afd7f50bd5f0df23084750c0ced6b1bbc", - "sequence": 1407, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.187915, - "health": 4.187915 - } - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "\"Because the truth is this: no one benefits from rejecting this deal. Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", - "media_hash": "b395496fc973b713e1f81d5fbb96897a12560b2767f61a5ea86be226", - "sequence": 19, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40306, - "score": 0.1533 - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.182605000000001, - "health": 4.182605000000001, - "starmer": 4.182605000000001 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "You look at Plaid, for example, they they're saying, well, we don't expect waiting lists to drop in the first three months of of a Plaid led government, whereas we know already under Labour, that they are dropping.", - "media_hash": "48585ed8b298ffd860ec5f1917ba5086e1cb61e5b57b948ba2c93a1c", - "sequence": 1000, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.173405 - } - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", - "publication_date": "2026-03-31T06:45:27", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", - "media_hash": "adb0d14af015ff77d020832fb939b06d2430618996dce035e41a5e93", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 4.16355, - "starmer": 4.16355 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", - "media_hash": "6a797f10d01ef26a8b1b0c886084ac8c48dfe775acefc0118a7a7806", - "sequence": 318, - "claim_type": [ - "correlation", - "rules", - "support" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.132820000000001, - "health": 4.132820000000001, - "leo_s_topic": 4.132820000000001 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T21:14:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Jack Fletcher, chairman of the resident doctors committee of the union, said: \"It is wrong for Government to withhold desperately-needed jobs as part of negotiating tactics.", - "media_hash": "296b5ebe75d2c2787f9ea9a774e5f8a8ab31f359108f99cae8b16110", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "resident doctors committee of the British Medical Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.128005, - "health": 4.128005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "The people of Scotland deserve better from their cancer strategy.", - "media_hash": "e672ba027054e1045da9133d710b4bf83941bf1488b254f450a82198", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.128005, - "health": 4.128005 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "He said waiting lists have built up since the pandemic and if they are not tackled they will become \"our starting point for the next big crisis\".", - "media_hash": "430921e0281e56740f331dfb747f044794f9df27909ee74292a7887f", - "sequence": 23, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Steve Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.128005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T18:19:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Addressing resident doctors, Prime Minister Sir Keir Starmer wrote in The Times: \"The truth is this: no-one benefits from rejecting this deal.", - "media_hash": "b07f4dd7d77e9c61699f171c9f5d9dfd653d8199ec624ef71c5f38b7", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.128005, - "health": 4.128005, - "starmer": 4.128005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", - "publication_date": "2026-03-31T07:46:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer claimed \"patients will pay the price\" if resident doctors go ahead with \"reckless\" strikes, as a furious row erupted with union bosses.", - "media_hash": "407cbec9edd1bb67f2de4df6cf6db29ed7f9bda0166e8159b9e899b7", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.10166, - "health": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I feel like the Prime Minister Keir Starmer's statement seems quite threatening in nature.", - "media_hash": "1432bf260fe4fbb106b2cd443671c70d8865fdc60d92100f89a49e20", - "sequence": 1363, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.10166, - "health": 4.10166, - "starmer": 4.10166 - } - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T11:39:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "It comes after the Prime Minister accused resident doctors of \"recklessly\" walking away from the deal without putting it to members for a vote.", - "media_hash": "958661f9b84e833b45de9a4a72399f892d896df47526190cec6b93bf", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.10166, - "leo_s_topic": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T06:57:08+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/BBCr4today/status/2038873211043971223", - "media_type": "social_post", - "sentence": { - "text": "@bbcnickrobinson presses Dr Jack Fletcher, from the BMA, on previous pay increases and the planned industrial action by resident doctors over a pay dispute with the government.", - "media_hash": "6f34c749eaff6742dc53fb6afa25a0a92d53c3275c1c19bf09ccd030", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Jack Fletcher, from the BMA", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "BMA", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.10166, - "leo_s_topic": 4.10166 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "The bitter war erupting between Keir Starmer and the British Medical Association (BMA) means patients are once again caught squarely in the crossfire.", - "media_hash": "c3a4a0c6d17e13ed31e3a8c3b96b6048c59b9d9d4525b86e2587f9da", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.10166, - "health": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", - "media_hash": "7b174f2126a3771613e30b8f6ffc8a4673a308afa6f4ca81046daa7a", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "health": 4.061165 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T18:19:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a deadline to reconsider a deal on pay and jobs which includes an offer of thousands of extra NHS training posts.", - "media_hash": "514ed802093960b5412a6406ed616b89f4ff1b3dd668b96b98d0881e", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.061165, - "health": 4.061165, - "starmer": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And yet you look at other people in the NHS, you look at nurses, for example, or ancillary workers, they haven't anywhere near caught up, and their pay is far, far less than resident doctors.", - "media_hash": "6e7be5e7bebfa5f88fe13bf61433defdf14c1e8992f4ed4143a3b0dc", - "sequence": 1395, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.061165, - "health": 4.061165 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than \u00a3100,000 a year - and given them 48 hours to call off their planned strike.", - "media_hash": "27a1017174e79064c172e5f40e58e51623b3436e7dea5be1af22569e", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.061165, - "health": 4.061165, - "leo_s_topic": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Sir Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than \u00a3100,000 a year - and given them 48 hours to call off their planned strike", - "media_hash": "2bb21cabf3531d655b0ff151f010de515bc51a14298c61d4a682c589", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Prime Minister Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.061165, - "health": 4.061165, - "leo_s_topic": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", - "media_hash": "a57a83439d4b8f3a3cc370dca4b86aa6c09bd6d643ea6c8a2ea715bd", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.061165, - "scottish_elections": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "And doing so without even giving resident doctors the chance to vote on it makes it worse.", - "media_hash": "74ff2483ea85bb222b43ccd58ce307514fc58378540f510734f1237c", - "sequence": 18, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.035135, - "health": 4.035135, - "starmer": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "And doing so without even giving resident doctors themselves the chance to vote on it makes it even worse.", - "media_hash": "578f09061c32a8e52eadade0cd8fca07ed4d72e41bba1f94f479c85d", - "sequence": 23, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.035135, - "health": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", - "publication_date": "2026-03-31T09:42:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", - "media_type": "news_article", - "sentence": { - "text": "The BMA then announced that resident doctors would go on strike after Easter.", - "media_hash": "ec70d13ba7d824fdbd44c2552f43d3f93fb8451bc1eba597cdd5308f", - "sequence": 3, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 4.035135, - "leo_s_topic": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T12:34:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "The walkout, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", - "media_hash": "39bd43bd9e303d239c0bb11c5d723c6c2921519053b4e0f086e04070", - "sequence": 40, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.026165, - "health": 4.026165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Resident doctors are in the front line working hard and if you're losing these doctors, and they're leaving the NHS, they're going to countries like Australia, Canada, America, this short staffing, that means that it's affecting patient care overall.", - "media_hash": "82654d9d8d9ab6e4b0ac4b122f83ecdaaa722c12a8e27accd1639755", - "sequence": 1408, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.0067, - "health": 4.0067 - } - } - } -}, -{ - "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", - "publication_date": "2026-03-31T09:42:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", - "media_type": "news_article", - "sentence": { - "text": "The prime minister has now given the doctors' union an ultimatum, demanding that they cancel the resident doctors' strike action within 48 hours.", - "media_hash": "f0e2f90e14048c8d8b9dd7963d7037a4236dfff520c6a9ff58bd4f0d", - "sequence": 4, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.98733, - "leo_s_topic": 3.98733 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:01:20+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Alison_S_Taylor/status/2039040361977233737", - "media_type": "social_post", - "sentence": { - "text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", - "media_hash": "829c335a01bdca0183fa9d4f012164e2ca50f51079aa150aa6d15ed5", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.975225, - "scottish_elections": 3.975225 - } - } - } -}, -{ - "title": "Transcription by Ben Lerner review \u2013 a stunning exploration of technology and storytelling", - "publication_date": "2026-03-31T06:00:33", - "publication": "guardian", - "url": "https://www.theguardian.com/books/2026/mar/31/transcription-by-ben-lerner-review-a-stunning-exploration-of-technology-and-storytelling", - "media_type": "news_article", - "sentence": { - "text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", - "media_hash": "fdadcd84453316bce89ca177b924febe4f145fd9f129d6b9eda560ac", - "sequence": 33, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "health": 3.975225, - "leo_s_topic": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", - "media_hash": "40b62d3dd90fb00582deb34f91d733adbadf22864589622925ab6182", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Susan Murray MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I'm not sure Keir Starmer ever envisaged him being in a position after 18 months as Prime Minister where he'd essentially have to issue threats to resident doctors.", - "media_hash": "e874449266a1353aa1069064a4961333fd2c0d3a6c517fc70c38d02b", - "sequence": 1339, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.975225, - "health": 3.975225 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "There's a staffing pressure because this staffing pressure when you're not retaining doctors, and doctors are leaning towards leaving the NHS or going to these different countries, there's a lot of pressure on resident doctors on the shop floor.", - "media_hash": "ca40531f7dbb089ac7aba748dcbd930bb315d11c41e02c81855f2cf7", - "sequence": 1377, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.975225, - "health": 3.975225 - } - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", - "media_hash": "a66223f695f36f48b9f06602809d961cf15ed180ebeead16c1ab64c3", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "World Health Organisation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.975225, - "health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", - "publication_date": "2026-03-31T17:51:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer said it would be 'reckless' for resident doctors to walk away from the offer.", - "media_hash": "ff7131386ac900a758f6ebe638a2993d0a1d5d0de55fb79365037465", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.975225, - "health": 3.975225 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ireland `no better prepared\u00b4 for pandemic than six...", - "publication_date": "2026-03-31T14:04:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695001/Ireland-no-better-prepared-pandemic-six-years-ago-panel-told.html", - "media_type": "news_article", - "sentence": { - "text": "Steve Thomas, a public health professor at Trinity College Dublin, warned that waiting lists and healthcare staff morale need to be tackled.", - "media_hash": "043b365bc98b93b38c26c9f5dfaa48bda1db328cf9573cf418dc67c1", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steve Thomas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.975225 - }, - "demo": { - "health": 3.975225 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.975225 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer marched into the 2024 general election campaign vowing to end the NHS strikes that brought misery to millions of patients under the Conservatives.", - "media_hash": "377214962a8e2239406ce23d0d6f35edd40518815307697e2fef62c8", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.975225, - "health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I mean if I had a pot of money and I was going to dole it out, having seen that the the resident doctors have had such a big pay rise last year, they would not be first in the queue.", - "media_hash": "2e87aeaf3ab04175ca7e0d415170f29776578b18eeac192ffba923fb", - "sequence": 1527, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.922175, - "health": 3.922175 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "If the strike goes ahead, it will be the 15th round of action by resident doctors since 2023.", - "media_hash": "6c2c7ead996d78038f02d5520c4af268cb40fdafc5fc189b021cb977", - "sequence": 29, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.911715, - "health": 3.911715, - "leo_s_topic": 3.911715 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "The British Medical Association has dared Sir Keir Starmer to follow through on his threat to ditch thousands of training places if the union refuses to agree a pay deal.", - "media_hash": "785f551577de7811dac335256a81949e0515a5e9e15255d216b28116", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 3.862985, - "starmer": 3.862985 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T18:19:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "\"Resident doctors will be worse off. Instead of improved pay, progression and support, they will receive the standard pay award this year, with none of the reforms that would have strengthened their working lives.\"", - "media_hash": "2b4ef901f8ea2cae65b28bdc2fd367be613a2beb87f4605a1964a5e0", - "sequence": 15, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.851805, - "health": 3.851805, - "starmer": 3.851805 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "It seems like it will have a negative impact on the NHS in the future, because he's, um, he's threatening to remove the extra training posts he wanted to give when he knows that there's a big job crisis in the NHS with resident doctors.", - "media_hash": "0881cec9c9038ab4e890c05c804e3135663acefcf75908b0ae743508", - "sequence": 1364, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.851805, - "health": 3.851805 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", - "media_hash": "48fdf07dfdf02242ff686315577f42532a9048c4ff29d403432d0bbb", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Gregor Poynton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "health": 3.748535 - } - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T12:34:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about.", - "media_hash": "6b1eca66f7ef39ecb021fee58a223e1d323779d8703df5a9f8bc7284", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.748535, - "health": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about. Ministers effectively moved the goalposts on the deal at the last minute.\"", - "media_hash": "26520f72d375d5b46c27663f83a8e44f557fff15f8b82e5db2f05de8", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.748535, - "health": 3.748535, - "starmer": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T21:14:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Crunch talks between resident doctors and the Government are set to continue in a bid to avert strike action.", - "media_hash": "2303cee4d1742a265762c02b5bb85472e2e271034dc97ba2d0632790", - "sequence": 2, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.7135350000000003, - "health": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I think that that resident doctors are underpaid.", - "media_hash": "501753f6e2c90da0c019213a9def09cf332f761a9ea8a917e6ebde81", - "sequence": 1523, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.703135, - "health": 3.703135 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Um, I would say that he needs to take this seriously, Keir Starmer, and Lisa, actually understand that there's a big job crisis, it's causing unemployment, and it's causing a lack of job security as well.", - "media_hash": "52d4cf63e298d8c64a96c624bc031496af4e415257c93f23e3e5854e", - "sequence": 1370, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.6886, - "health": 3.6886, - "starmer": 3.6886 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", - "media_hash": "a49f7bcc45c19245eb94bbee8fb52ad5f0a2f9198e1c331930bffad7", - "sequence": 19, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.635935, - "health": 3.635935 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", - "media_hash": "dd176e5ada44b4001da5152b79c4dd099e7d90cf283d7100f41e672a", - "sequence": 10, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.635935, - "health": 3.635935 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", - "media_hash": "cc910ff7bf1539d885997a759d22140e10964188ed277bbbec0d1e80", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", - "media_hash": "a36c466ad1ad5179c22f8bc96d7a50c47ded9163e5c203a2276c5eac", - "sequence": 1015, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "James Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "senedd_election": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T12:34:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "Crunch talks are to take place between resident doctors and the Government after ministers threatened to remove a key element of the deal currently on the table.", - "media_hash": "43e4e7add2ce67e8933237fc3ef59ca816003ba84a8fef7e03c65594", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", - "media_hash": "3671056854f967d53285a39691be240f4dbfa67a2a893b7e05804806", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", - "publication_date": "2026-03-31T09:42:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", - "media_type": "news_article", - "sentence": { - "text": "The British Medical Association has hit back at Keir Starmer's call for the union to cancel next week's strikes or risk losing the current deal.", - "media_hash": "abc6402ccda0ab44982e65fbf0b053f8f09d00583bb69fbb9532d35a", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "health": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has accused resident doctors of \"recklessly\" walking away from a Government pay deal without putting it to members for a vote.", - "media_hash": "7bf8538336396fdd49240da1f6a609ad57816c962abd7e927d24eece", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "health": 3.5503549999999997, - "starmer": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives 48-hour deadline to resident doctors...", - "publication_date": "2026-03-31T05:49:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer has issued an ultimatum to resident doctors to call off their strikes or lose the deal on the table.", - "media_hash": "9ae4d8eb1d2b486f11624f535eb1aa33a4a3bbd8e8f1c06e6660a4dc", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T19:50:49+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/SkyNews/status/2039067915241050352", - "media_type": "social_post", - "sentence": { - "text": "Sir Keir Starmer is \"ramping up the war of words\" with the doctors' union by giving resident doctors 48 hours to reconsider their upcoming strike, reports @ashishskynews.", - "media_hash": "34d12f9cd720f1d60610eab3feee02c387fb09a0b7cba4d58dc9222d", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "health": 3.5503549999999997, - "starmer": 3.5503549999999997 - } - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", - "media_hash": "f57a0718e8725e4d6c754a5b495a6754c818ffb0b525e28b2d4d4ae2", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", - "media_hash": "037f80d72150856bb52dab37bc9a5ac73a7f29fe0900201608e5ca41", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.3982 - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "publication_date": "2026-03-31T16:03:46", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer has criticised resident doctors for \"recklessly\" abandoning a government pay deal without presenting it to members for a vote.", - "media_hash": "6109cd562f1c86b8301d3bd30fb5b8eb0baa8b65648c941e71b155e7", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 3.5503549999999997, - "starmer": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fact checkers call out Labour MP NHS Scotland waiting time claim", - "publication_date": "2026-03-31T13:22:23", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25984351.fact-checkers-call-labour-mp-nhs-scotland-waiting-time-claim/", - "media_type": "news_article", - "sentence": { - "text": "And Scotland is paying the price for it.", - "media_hash": "06e483bf0abb4c0eb8f6a692e206a2af32553bf3250494c786e24de0", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "health": 3.5503549999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But with the junior doctors, resident doctors, there's never an element of that conversation where it feels like actually they do understand that there is another side to this.", - "media_hash": "6fb0c13cd481aa6e68b8f8edae1c4cad8851be495169386d13e39ab4", - "sequence": 252, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997 - } - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Writing in the Times, Sir Keir Starmer said the decision to announce the 15th walkout of the long-running dispute was \"reckless\".", - "media_hash": "82796b7a5c5c32eb866ce92c4064fe6c8972cba02a5fa1ac016d6410", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives 48-hour deadline to resident doctors...", - "publication_date": "2026-03-31T05:49:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer gives 48-hour deadline to resident doctors to call off strikes", - "media_hash": "9710d4e901d7e852116e5bbbf269ed7b0c40e097103bdbff217e7683", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "health": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T12:34:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "It is understood that the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in an ongoing row over jobs and pay.", - "media_hash": "7140eb94121b593b03b6043821e4312a54fef3f1168f03da48b8d0b4", - "sequence": 4, - "claim_type": [ - "correlation", - "rules", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.539295, - "health": 3.539295 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "Addressing the resident doctors, he added: \"There are still 48 hours left to choose a better path. For patients, the NHS, and our doctors - I urge you to take it.\"", - "media_hash": "67d4889e6163e8340affa3c17a032fdaf928c3615c7aa2d186a9e636", - "sequence": 21, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.499645, - "health": 3.499645, - "starmer": 3.499645 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T11:39:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "He added: \"So I say this to the BMA's resident doctors' committee: reconsider.", - "media_hash": "117baccf53d9efbec8fef83646419a247fadef4455dd54b24072149a", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.414065, - "health": 3.414065, - "leo_s_topic": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "It says Sir Keir Starmer warns resident doctors to call off next week's walkout within 48 hours or risk losing new NHS training posts.", - "media_hash": "b0bc535eba88fa1b6190e01a76529dec7362b3a55c2faaa50419681e", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.414065, - "health": 3.414065 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Their last six-day walkout cost the NHS a staggering \u00a3250 million, but it's the human cost that is sparking the biggest fear.", - "media_hash": "6eaa9fea3c06c01ea82cfca6df7a03dde80e127bcf3dbae2a5110b18", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.4061450000000004, - "health": 3.4061450000000004 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Furious row as Keir Starmer imposes 48-hour deadline on 'reckless' striking doctors", - "publication_date": "2026-03-31T07:46:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188580/furious-row-erupts-striking-doctors", - "media_type": "news_article", - "sentence": { - "text": "He said resident doctors, the NHS and patients will be \"worse off\", highlighting that each strike costs the health service \u00a3250 million.", - "media_hash": "db52f1c2998c15ce4e784f3623665d77980cbec0f715392a1d6b7eb5", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "'There are patients right now being treated in corridors in A&E and yet we are turning tens of thousands of resident doctors away from training places in the NHS.", - "media_hash": "7836a6506279e0a139529ba6a603e045d8b9045e2965918cecc358ab", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.3956850000000003, - "starmer": 3.3956850000000003 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.548465 - }, - "pa-media": {}, - "maldita": { - "health": 3.548465 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T07:41:13", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Each strike costs the NHS \u00a3250million in paying for cover.", - "media_hash": "81e414ab5693b1d84aaa1be9457bc9efc36d9d6abbe66e4ac7cd655e", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.3956850000000003 - }, - "demo": { - "health": 2.6987249999999996 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "But I think that leaders are really really keen to get back to the business of driving down waiting lists of improving emergency care and of transforming the NHS.", - "media_hash": "45967271ed02c2cad617c9e47e5602c1a253ea9c4ef55a3782ef965c", - "sequence": 342, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 3.363845 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Millions face fresh misery as a new six-day strike looms from April 7, threatening cancelled operations and stretched hospital corridors already at breaking point.", - "media_hash": "5fc4a29be8ab2c1c5c0f751097d7df9d8281ab66cbf133498eb27eab", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.31818, - "health": 3.31818 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So the working conditions are getting worse for them, this grueling hours, this overtime, this mis-breaks, this causing them fatigue, causing them to burn out.", - "media_hash": "cf2e1916bb068b3cca96ea1581f11c9e2088bab4294ee8475e9a8c6e", - "sequence": 1402, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.235835, - "health": 3.235835 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", - "media_hash": "48619f156727eabc70da3070db5b5b5a542825a1bda1f2a5789cec82", - "sequence": 14, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.228755, - "scottish_elections": 3.228755 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T14:16:07+00:00", - "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", - "url": "https://x.com/sinnfeinireland/status/2038983683206492416", - "media_type": "social_post", - "sentence": { - "text": "\"It is completely unacceptable that vulnerable individuals are left waiting months, in some cases nearly two years, for appropriate mental health care.\"", - "media_hash": "daf5bfbcab86ca0f8d66056a5323313542bad7e205644636a60826ff", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Sorca Clarke TD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.18436 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We are an under doctored country compared to the rest of the OECD.", - "media_hash": "66747bd798f7da3f6501a326e581e8700ad0a3be9301445ebd5377f9", - "sequence": 1645, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 3.123595 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "In terms of the pay, like you mentioned, I think it's really important and I think sometimes people sort of forget that doctors have faced the largest pay erosion in the public sector over the last decade and a bit.", - "media_hash": "b1ea8d3c7bd5e3abb93e93670cfacc229607e961deb5d6ba6611b278", - "sequence": 1679, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 3.123595 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T18:19:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "It is understood the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in a row over jobs and pay.", - "media_hash": "494e69888f9557868a9719f6f5f720f979660faa12928b85873e0187", - "sequence": 4, - "claim_type": [ - "correlation", - "rules", - "predictions", - "other" - ], - "claimer": [ - { - "name": "resident doctors committee of the British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.1144249999999998, - "health": 3.1144249999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off 'reckless' strike", - "publication_date": "2026-03-31T09:18:22", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/keir-starmer-gives-resident-doctors-36947553", - "media_type": "news_article", - "sentence": { - "text": "Of these jobs, 1,000 would have opened for applications this month, but the PM has now warned they \"will be gone if this deal isn't put to a vote on Thursday\".", - "media_hash": "41af1feac2632357e0a0b070f8462f505b61ca0222262d168319b2a0", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.09725, - "health": 3.09725, - "starmer": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "As we'll be discussing after 9 o'clock this evening, Sir Keir Starmer has told the British Medical Association that it needs to come to an agreement on resident doctors pay by tomorrow night, or see the current offer withdrawn.", - "media_hash": "89bf5a0401417f1aea5feffd87e14a90ae5da89cbbc34c1b5c9d0843", - "sequence": 807, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.092465, - "health": 3.092465 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", - "media_hash": "2d96af65d00637e2c8f45d9d22e7116bd28156d393ee419116c3b175", - "sequence": 27, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Susan Murray MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.037655, - "scottish_elections": 3.037655 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T06:04:10", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/snp-plan-for-nhs-is-working-says-swinney", - "media_type": "news_article", - "sentence": { - "text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service, you will find decay.", - "media_hash": "107efd4c59cf5ac08c50e3d0a6e619f27610d34cf45c25df75bf07f9", - "sequence": 23, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Susan Murray MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 3.037655 - } - } - } -}, -{ - "title": "How did we get to another NHS doctors' strike?", - "publication_date": "2026-03-31T12:15:00", - "publication": "skynews", - "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", - "media_type": "news_article", - "sentence": { - "text": "2024: January 2024 saw the longest strike in NHS history at the time - six days - over their pay erosion, and another in February.", - "media_hash": "c17bcea082d0f9b1c2b66021abbb670593a7716abea8b95c88a8af9f", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "doctors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.981275 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "The prime minister has accused resident doctors of 'recklessly' walking away from an offer that would have seen some earn more than \u00a3100,000 a year.", - "media_hash": "5e098a7a3d37ce8c496a76391def1496d546c58bdf0e95e7390100c1", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815, - "starmer": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir yesterday gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", - "media_hash": "064e7bfe8344d0f3283be2c2cbc20e516fcabb02d59ca6c10b7a75da", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815, - "starmer": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "93% of them are telling doctors to stay at work.", - "media_hash": "e8ea0ab7170b09b903ee25d2a258b9cbd3b9adcad26c013d7576cd83", - "sequence": 2515, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T06:04:10", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/snp-plan-for-nhs-is-working-says-swinney", - "media_type": "news_article", - "sentence": { - "text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", - "media_hash": "331cb8ca39ab5230c1407e0de0c9f232b6052b150398255632410ab7", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dame Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Nobody else has seen a pay increase like that over the last...", - "media_hash": "84780f144242e631c7aaf55766f0978cf2004cefbd73b7f914cb623e", - "sequence": 1697, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Although I seem to remember a massive pay rise for resident doctors that restating almost as soon as the election was over.", - "media_hash": "8122c2c3b4c7e64779d2bfcec2ec0d8fb2fdd9b59db24a5f61cfdf98", - "sequence": 1298, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", - "publication_date": "2026-03-31T09:42:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", - "media_type": "news_article", - "sentence": { - "text": "Starmer says that if the BMA doesn't cancel the strikes, the government will withdraw the extra 1,000 speciality training posts it has promised.", - "media_hash": "6953d57c2c09675e326b3fc9c1fe124a9394fd2a522324ccca0fb4d0", - "sequence": 5, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.970815, - "health": 2.970815, - "leo_s_topic": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "Some doctors are set to lose more than \u00a32,000 from their retirement pots as a result of the strikes that have been taking place since the start of last summer, calculations for The i Paper show.", - "media_hash": "10f08ffd7e8548cb8d8823bd238c3767ee2e237b9dd2c6fc05acef74", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The i Paper", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "The BMA is demanding that consultants who cover for striking junior doctors get paid up to \u00a32,500 per shift to do so.", - "media_hash": "497ffa021be2d36ee5f0c61143a6c61bbc41e809bfcbd7753f9b6f6c", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.970815, - "health": 2.970815, - "leo_s_topic": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", - "publication_date": "2026-03-31T05:08:53", - "publication": "bbc-health", - "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", - "media_type": "news_article", - "sentence": { - "text": "The prime minister has given the British Medical Association 48 hours to call off the six-day doctor strike after Easter in England or face losing 1,000 extra training places.", - "media_hash": "0a92df9d914ec1ea95d21f10784938b60220a0e4fcf1b764a76f3d28", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.970815 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", - "media_hash": "27d3523d82bf99d4d959077e4d892e473c95daf935e5ff47a90d3085", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.970815, - "health": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "little prediction that by 2048 would be 11 to 15,000 consultants short based on population I think the media was talking about the fact they're being paid as they just want more money but actually the jobs is quite an important part too", - "media_hash": "a8a64c3d9224f04697c0d5e93a1fc125cbd989a057db5cf28424c0e8", - "sequence": 420, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I understand from the news that these junior doctors, these student doctors, they get only 18 pounds something an hour.", - "media_hash": "3de31e8df408077a662bd4ff12ba8175b58dc399e1597b00299db0a8", - "sequence": 1586, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "Health secretary Wes Streeting said the pay offer meant that 'for the most experienced resident doctors, basic pay would have increased to \u00a377,348 and average earnings would have exceeded \u00a3100,000'.", - "media_hash": "57107f1603d3d61cad62e93b61338bd815cf30c8c3c325566b5f8379", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815, - "starmer": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", - "publication_date": "2026-03-31T17:51:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", - "media_type": "news_article", - "sentence": { - "text": "On Monday, Sir Keir gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", - "media_hash": "afeca7e8c394a3e9b3d1af536dc1ca353dba42abaafb2aa309290a64", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Now, the Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor's strike in England after Easter, or face losing 1,000 extra training places.", - "media_hash": "54b38d857d72c4607a43b78f0e0969917efdf83c59e1722e58d9f9f5", - "sequence": 1293, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Oh, well let's let's give every doctor 100,000 pounds a year then.", - "media_hash": "d8104ab8086d12392f153ed3cb0aba3cdd4c989c80cdf0d8da6ccda0", - "sequence": 1598, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.970815 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We've seen the largest pay erosion in the public sector.", - "media_hash": "97f19ed6eae7547439403dcee4e57711301f8930ec27436628990ecb", - "sequence": 1710, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.9358750000000002 - } - } - } -}, -{ - "title": "Crunch talks between resident doctors and ministers set...", - "publication_date": "2026-03-31T21:14:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695795/Crunch-talks-resident-doctors-ministers-set-continue.html", - "media_type": "news_article", - "sentence": { - "text": "\"Anyone who works in the NHS knows that patients need these 4,000 jobs created as soon as possible.", - "media_hash": "cf17421917498e3838924d8b001ff33b044c622a39ae2e2fd7bfce08", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "resident doctors committee of the British Medical Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.925415, - "health": 2.925415 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So if Jack Fletcher, the, uh, head of the resident doctors' committee, the BMA rang you up today and said, look, um, Rida, I want your advice, I'm not sure what to do here, I don't want to put these training posts at risk.", - "media_hash": "a447df0dc03c9c1ef082e0330da4819f6d91825fe0a45357149e1b9f", - "sequence": 1366, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.922625, - "health": 2.922625 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "and I I fail to see why it is always the resident doctors who should get a better deal than any other group.", - "media_hash": "b1cc27f106f67a7cb8f619544af5fe3876ae5204df66753cf5fd8f52", - "sequence": 1525, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.922625, - "health": 2.922625 - } - } - } -}, -{ - "publication_date": "2026-03-31T19:50:49+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/SkyNews/status/2039067915241050352", - "media_type": "social_post", - "sentence": { - "text": "The Prime Minister has threatened to withdraw an offer of thousands more NHS jobs if the strike goes ahead.", - "media_hash": "a056daaa6840c8986e99f177f1d99984c45c78e60f0c04c690c67790", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.910905 - } - } - } -}, -{ - "title": "Year-long treatment waits will be gone in `short number...", - "publication_date": "2026-03-31T13:19:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"He promised to end year-long waits in the NHS by the end of this month, but tens of thousands of Scots are still suffering these outrageous delays on his watch.", - "media_hash": "416ced07b902cabc0b93ba6c598a82d1d4a97189f31dbfbbec0311ff", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.910905 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", - "media_hash": "81411d2b8f853321c762f0866264201711598d35a2ba8f03faaf03cc", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.910905, - "scottish_elections": 2.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", - "media_hash": "e32518c650b30323c84b14e3df63455fa8958cd352d4d9ae79457449", - "sequence": 314, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905, - "health": 2.910905, - "leo_s_topic": 2.910905 - } - } - } -}, -{ - "title": "Communities not trusted enough during pandemic,...", - "publication_date": "2026-03-31T11:24:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694441/Communities-not-trusted-pandemic-Covid-19-evaluation-told.html", - "media_type": "news_article", - "sentence": { - "text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", - "media_hash": "0ae215e5eea20faf31960bed36ef9636499978ffcae105c20cf24ae2", - "sequence": 6, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Dr Michael J Ryan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.901365, - "health": 2.901365 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", - "publication_date": "2026-03-31T06:45:27", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", - "media_type": "news_article", - "sentence": { - "text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the prime minister said.", - "media_hash": "2b52a8bc9fb1641c43d067553e41717678f7fb2f4881e9fd913b446c", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.89907, - "starmer": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", - "media_hash": "5cce868ca8efd9b41db9d24d21054529319376fbb89b1ded771d6269", - "sequence": 292, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.885515, - "health": 2.885515, - "leo_s_topic": 2.885515 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So without having any, uh, surgical skills by just having letters signed by by other people or from other departments, for example, and so essentially you don't act you don't actually have to have any surgical skill to be appointed as a surgeon.", - "media_hash": "0a1c25d6201c294e9b30d5cd1d9b0acf2f53d0a9ee6f39ef00e4548a", - "sequence": 1684, - "checkworthiness": { - "fullfact": { - "health": 2.884875 - } - } - } -}, -{ - "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "publication_date": "2026-03-31T16:03:46", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", - "media_type": "news_article", - "sentence": { - "text": "The Prime Minister has issued the resident doctors committee of the British Medical Association (BMA) a 48-hour ultimatum to reconsider the offer, which would have granted medics a pay increase of up to 7.1 per cent this year.", - "media_hash": "21d258fbd89e6baa186b4dbca3017bdf80625a98ecee400bc0db01d0", - "sequence": 3, - "claim_type": [ - "quantity", - "rules" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.856485 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, everyone's facing cost of living pressures, I also know that MPs got a 3% pay rise.", - "media_hash": "c0c9878cdb2c866ee2ba215a24d6bb98c7260e7d79ba72f19f54c9fb", - "sequence": 822, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.8194, - "health": 2.8194 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "I just don't think that it's, it's valuable or useful to be making threats in the media to withdraw jobs from doctors because ultimately that's bad for doctors and bad for patients.", - "media_hash": "ece970230f15721fb5fb896c17405d43039fb965b5e19968ec0ff8b6", - "sequence": 1678, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.805745 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant short based on population.", - "media_hash": "b6e42e78d0b6b62d0bc8b78e79bdc5ddca1cb27f1c59528859e3685b", - "sequence": 268, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.801995, - "leo_s_topic": 2.801995 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant shortfall based on population.", - "media_hash": "f92410cc3858d498f57260a36a16943fac17ca910643aaea22077883", - "sequence": 311, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.801995 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "We're running a poll in the article online now, do you support the BMA resident doctors strike and subscribers are having their say, Hugo, more than 16,000 votes in so far.", - "media_hash": "454e939d3301c443c9f164c6fd3af3867aa91a4add05690c2cfd1e5a", - "sequence": 2514, - "claim_type": [ - "voting" - ], - "checkworthiness": { - "fullfact": { - "health": 2.7846200000000003 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I don't recall the conservative government indulging in this sort of thing because he's essentially saying to them, unless you agree by the end of Thursday to the terms of the offer that you've already got, we are going to abolish 4 and a half thousand training places for resident doctors.", - "media_hash": "9431c16d46af81289c7b4b2acbc2cd79946693342cb9da79cfc40507", - "sequence": 1254, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.77565 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, I think that's, that's all true, but the fact is, if he delivers on this threat, you're going to be a thousand, I think 1500 worse off this year, and four and a half thousand all together if he then repeats it for the next two years.", - "media_hash": "ef783c8ed70211d2694b46dfe77214fe66cc4998a2b9173ed973a7a2", - "sequence": 1371, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.77565, - "health": 2.77565 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "He's given them a deadline of Thursday evening, think that's right, to accept the terms of this new offer, or he will withdraw more than a thousand training places.", - "media_hash": "5b8e7f12014c7e3370ea6f3522210f02591db548cfaa8c3846858952", - "sequence": 1453, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.77565 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "The BMA's resident doctor committee hasn't barged on the plan six day strike planned between April the 7th and April the 13th.", - "media_hash": "023ad142207582a208f387c72c97a7874456c3a50a907a8117d38b6a", - "sequence": 325, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.772635 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Completely, because it's 26% pay increase they've asked for, because they've not got that, they've got an they had a very good offer, they're going to go out on strike. That's so irresponsible.", - "media_hash": "0ce54c0dc1ac1ab0285383b713feab0d2f7bcd36145047d8da847fa7", - "sequence": 844, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "health": 2.75796 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So the issue is, you're not going to retain doctors.", - "media_hash": "873577d49189f826b97498f1ef091f8ed83c8acd5fc5112c8c132ca5", - "sequence": 1376, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.73922, - "health": 2.73922 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "FSCS protection for your savings and current accounts has risen to 120,000 pounds per eligible person at UK authorized banks, building societies and credit unions.", - "media_hash": "8014e788dd99d5b530d2a87f75c0ad394ff52b675ff219b8806596d1", - "sequence": 422, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.72853 - } - } - } -}, -{ - "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", - "publication_date": "2026-03-31T18:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", - "media_type": "news_article", - "sentence": { - "text": "Dr Leyla Hannbeck, chief executive of the Independent Pharmacies Association, said medicine shortages pose a 'serious and growing threat to patients'.", - "media_hash": "d9607379be0f048ba951092d70a5bbcee2b528a2751d74839a391ccb", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Leyla Hannbeck", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Independent Pharmacies Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.7201 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.751055 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", - "media_hash": "fb4c9100ddd507fb12b6af7ff17a02659187b75b57e30c072bc217af", - "sequence": 27, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Macmillan Cancer Support", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.712725, - "health": 2.712725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.712725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "Every time doctors strike, they lose pay, with those who have taken part in each strike day losing thousands of pounds overall.", - "media_hash": "87360bfa3da63017f0e02f561b5652ef03d5b1fa3965293ee836bf0c", - "sequence": 4, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "and at the moment there basically aren't enough specialty training jobs to match the number of doctors.", - "media_hash": "6b835b96833b670970b7c5fd933e68cfc352b7d0146819f4f89abf41", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996, - "leo_s_topic": 2.6987249999999996 - } - } - } -}, -{ - "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", - "publication_date": "2026-03-31T18:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", - "media_type": "news_article", - "sentence": { - "text": "The UK imports about three quarters of its drugs and many others made from materials that are shipped from the likes of China and India.", - "media_hash": "f55beb2036407a3725168cb7c365f7459ce58123d75c521c39a9f431", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "Every year, they accrue 1/54th of their salary as an income each year in retirement, and this is uprated every year by inflation plus an additional 1.5 per cent.", - "media_hash": "9ef64d6868536095ffc1f7e8362d630453f0bda02d752077c4c52742", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T19:00:48+00:00", - "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", - "url": "https://x.com/theSNP/status/2039055327723766076", - "media_type": "social_post", - "sentence": { - "text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", - "media_hash": "e202f9a265e3e544a46a557204abdd5a4504f3872dd50bfa45facf8c", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Also on the table are thousands of extra NHS training posts.", - "media_hash": "13a14ed7dfcb4362962c4e89b7c10f7589639fd26fd6d3b608763af6", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.6987249999999996, - "health": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "The British Medical Association says they're unhappy with the government's proposed 3.5% pay rise.", - "media_hash": "a54389b2dcc2b7ca1e23366c0e5bb1f55a5b354d6e16558f64930d27", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.6975749999999996 - } - } - } -}, -{ - "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "publication_date": "2026-03-31T16:03:46", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", - "media_type": "news_article", - "sentence": { - "text": "\"Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", - "media_hash": "2e81d91f001bb07f8fb510b9d4bd60853d6416ef798532ebe1648e64", - "sequence": 11, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.6746749999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Covid 19 Cicada variant \u2018set to become dominant in UK - and put kids at risk'", - "publication_date": "2026-03-31T12:02:18", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/health/covid-19-cicada-variant-set-36946815", - "media_type": "news_article", - "sentence": { - "text": "Covid nearly broke NHS - 'never again can nursing and the public be failed like this'", - "media_hash": "31a452a7dcac2e1cdebca2bec1083ccbcbd030b608bb3ade7648c634", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6735499999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I mean, just speaking for myself, but I think a lot of my colleagues, there's there's all of these targets that are being imposed on us, mean that, for example, if I want to schedule patients for surgery, sometimes I have to prioritize patients who've been waiting, um, a long time over patients who have been waiting less time, but who have cancer or more urgent conditions, um, just because, uh, a certain target or patient would breach a target.", - "media_hash": "96e991e18f6e732a5af73dbbeeb471c9674de7a135e66a24f1c7e8b8", - "sequence": 1694, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "health": 2.658185 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "So all of this is costing the NHS way more money than it would if they actually just negotiate.", - "media_hash": "a00bada2e8641731ac4d2cae64d9735faf3eb8707e381f620cc48480", - "sequence": 1412, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.658185, - "health": 2.658185 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "They have to apply to positions, very slim chance of getting it and right now universities offers are going out and we're probably turning back three out of every four people who could become doctors are probably going to be rejected because we don't have enough training places, which we should be making more.", - "media_hash": "29a366fe52e409fd389ed553d6c89843bcd6e7476439568cc02df549", - "sequence": 1165, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.649215 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T07:41:13", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "Participating junior doctors will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", - "media_hash": "cf2fc4ba516c1f203bf60d27a193ae0d129b2ca07daae0cf5b79422e", - "sequence": 12, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.649215 - }, - "demo": { - "health": 2.649215 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.649215 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "The medics will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", - "media_hash": "aed7fa94ec86af4edc81a1023cf90c08a589c78b357e5f1559f35ef5", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.649215, - "health": 2.649215, - "leo_s_topic": 2.649215 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.649215 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctor's union dares Starmer to follow through on his ultimatum over jobs and pay row, warning patients will suffer", - "publication_date": "2026-03-31T12:36:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694435/Doctors-union-dares-Starmer-follow-ultimatum-jobs-pay-row-warning-patients-suffer.html", - "media_type": "news_article", - "sentence": { - "text": "This is more than many NHS staff in other roles will earn at the peak of their career.", - "media_hash": "ba3b77a151db54af6322748b2fb41775d57eb1b1cde16da57adde6c8", - "sequence": 21, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.649215, - "starmer": 2.649215 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.649215 - }, - "pa-media": {}, - "maldita": { - "health": 2.649215 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "Or the suggestion is he'll withdraw the offer of thousands more places for doctor training.", - "media_hash": "aa02a56c84fc742cae8babdd8ef1568f0b59e6dddde96ab216d5f26a", - "sequence": 223, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.649215 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Now, the union said this was not enough, given inflation is expected to rise and that pay for resident doctors has not kept pace with inflation since 2008.", - "media_hash": "2ac31b42f17c9451b0ba3c8a43acc19dc7ea3316b9618b8e681bd5c6", - "sequence": 1297, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "health": 2.631525 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "But the the net effect will be a significant loss.", - "media_hash": "2f889347dc94aaefb7b5fff8b566cfde3ac4c9647163bb62fb0d4437", - "sequence": 374, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6158 - } - } - } -}, -{ - "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", - "publication_date": "2026-03-31T18:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", - "media_type": "news_article", - "sentence": { - "text": "The blockade of the Strait has already pushed up oil prices and is expected to have a major knock-on effect on the rate of inflation.", - "media_hash": "520686700d12012e2a50a549fc5a67c51d08f5e57027044b60f61145", - "sequence": 5, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6158 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.6158 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", - "publication_date": "2026-03-31T18:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", - "media_type": "news_article", - "sentence": { - "text": "'Medicine shortages pose a serious and growing threat to patients across the UK, and the Government must act now to ensure people are not left without the vital treatments they depend on.", - "media_hash": "2d1d2639ae66759eb9cfb066a251636bc8af9988427ce0204a84f077", - "sequence": 26, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.6147650000000002 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5838099999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And this is really, really over the years going to affect the NHS.", - "media_hash": "af6ee5b24c633beafb6cccdde7de2a2aa9296eca8519113637740510", - "sequence": 1380, - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6127849999999997, - "health": 2.6127849999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And if he doesn't win, and in a sense, everyone's a loser.", - "media_hash": "1bf2f79ccdb8ebaf8519b22c9d327065bedcee840ff59f72162915ba", - "sequence": 1416, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6127849999999997, - "health": 2.6127849999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Seastrums threatening to withdraw thousands of specialty training places if the strike is not called off within 48 hours.", - "media_hash": "9f3fe31a7b9b8080d60c6d55309a10bdf763b93b1df5609f889e24ff", - "sequence": 302, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.61247 - } - } - } -}, -{ - "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", - "publication_date": "2026-03-31T05:08:53", - "publication": "bbc-health", - "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", - "media_type": "news_article", - "sentence": { - "text": "The union said this was not enough given inflation is expected to rise because of the war with Iran and the fact the pay of resident doctors, who used to be called junior doctors, has not kept pace with inflation since 2008.", - "media_hash": "c9c784f98addd7678a8205484c2a83d17d3baecc24fba2cf84a21e12", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.61247 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Suggesting that Simon's threatening to withdraw thousands of specialty training places is that the stoppage is not called off within 48 hours.", - "media_hash": "a59df6b1c70db6d6ea1701eb6d56cb0a3c2a5811e37a23313e6f969c", - "sequence": 1021, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.61247 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Not just that, he's saying that he'll abolish 4 and a half thousand training places for doctors, which Zoe, it it's brinkmanship, which I wouldn't have necessarily expected from someone like Kier Starmer.", - "media_hash": "1666bf73437c64a2fe7853848674c8edf47959ce71e78de852c6811c", - "sequence": 808, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.61247, - "health": 2.61247 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "So Thomas is threatening to withdraw thousands of specialty training places if the stoppage is not called off within 48 hours.", - "media_hash": "35a6f8b43a410171251998a1d34ac41fddc504c52fd0ae3f448ebd99", - "sequence": 590, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.61247 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Given the increase that you've already seen from the government, and given the context that we're talking to you in right now, is your position really morally justifiable?", - "media_hash": "e9e8cf45c019f3fe05933b9a960d80931212cdae0aaac8cd1c458e8f", - "sequence": 1690, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "health": 2.58644 - } - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "I think the Prime Minister is one of them.", - "media_hash": "1abc315298a2384f5f979500398d11ef3bb13ee1925bb54588baa883", - "sequence": 242, - "checkworthiness": { - "fullfact": { - "health": 2.58644 - } - } - } -}, -{ - "title": "How did we get to another NHS doctors' strike?", - "publication_date": "2026-03-31T12:15:00", - "publication": "skynews", - "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", - "media_type": "news_article", - "sentence": { - "text": "The BMA said global events such as the Iran war, plus the rising cost of living, mean doctors are facing further pay erosion, causing them to leave the UK to work elsewhere.", - "media_hash": "b5197bc6a3aaff187d309fa4867d0df4f4429fcd1a3aec6042c1c5f6", - "sequence": 29, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "BMA", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.58644 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives 48-hour deadline to resident doctors...", - "publication_date": "2026-03-31T05:49:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", - "media_type": "news_article", - "sentence": { - "text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the Prime Minister said.", - "media_hash": "3a1a2897b2bdaabcb8d1fddefe07b0ad6d58e54913264ecc83f7edb7", - "sequence": 12, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.57747, - "health": 2.57747 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "but it does progress up to 40, 50, 60, 70,000.", - "media_hash": "83d0624fff7e55dc529ea587c4aaa32542ffe7ccade58a7d3361751a", - "sequence": 1585, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5769 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well I'd give them a minimum of 20 pounds.", - "media_hash": "3bc85ed6d4ff7fbf7b83c401003a589bbe6a8436120d40ed34bc6c48", - "sequence": 1587, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5769 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And for consultants, a 2% pay rise.", - "media_hash": "574325da78522f6189c88431f5178a2aac6ad615ee402b73a4307337", - "sequence": 1706, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5769 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "My, my point is that last year, there was, I can't remember whether it was 22 or 29%.", - "media_hash": "af82c7994b34111567c106959426b7c93494a8e809ea3aeed43f502d", - "sequence": 1393, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5769, - "health": 2.5769 - } - } - } -}, -{ - "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", - "publication_date": "2026-03-31T05:08:53", - "publication": "bbc-health", - "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", - "media_type": "news_article", - "sentence": { - "text": "The 1,000 extra training places, which were to be created this year, were part of a package of measures that would see a total of at least 4,000 extra speciality posts created over the next three years under the deal put forward by the government.", - "media_hash": "1eb7d15ca7668491dd518cd4c8e92f7b3c3be3cb5b776ec82b82fa16", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5769 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "This included 2,159 exceeding two years, which was down 45 compared to January.", - "media_hash": "0bb757b57ee197cf8e8b91c0075f2403e3dcf9a947b07198555112f6", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5769, - "health": 2.5769 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Um, Sham, I could talk to you for the rest of the program, but we have only got 10 and a half minutes left.", - "media_hash": "0e9c03e9e5f8187461b16d03f926afa4b49488ef11fa05534e0315f7", - "sequence": 1697, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5769 - } - } - } -}, -{ - "title": "More doctors could strike as row between BMA and...", - "publication_date": "2026-03-31T14:24:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", - "media_type": "news_article", - "sentence": { - "text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure is clearly bad for patients.", - "media_hash": "1d5d8045d0247806144e837b8d90fe6a4aef0d316d1dec72398b989b", - "sequence": 24, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors: crunch talks to take place as...", - "publication_date": "2026-03-31T11:39:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694503/Resident-doctors-crunch-talks-place-deadline-looms.html", - "media_type": "news_article", - "sentence": { - "text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure, is clearly bad for patients.", - "media_hash": "153cd816be6ff4a4e337a85d56cb8d5c21358ae8c79d7dbdd1f84bd7", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Medical Association (BMA)", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Jack Fletcher", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5528750000000002, - "leo_s_topic": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "We've now seen threats to withdraw jobs for doctors at a time when we are seeing corridor care rife as the norm in A&E in a lot of places, as well as seeing patients this morning who were trying to get a GP appointment, calling their GPs and facing hold music because there aren't enough of them, and yet we've got the government saying that they're going to cut training places for resident doctors even further.", - "media_hash": "2c37f62d83e1b5e1253e5c1cf55ea11a8e799555cd4c50bcb0dbe59e", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Hugo Rifkind", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5528750000000002 - } - } - } -}, -{ - "title": "Year-long treatment waits will be gone in `short number...", - "publication_date": "2026-03-31T13:19:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"We know that these intolerable waits, which were virtually eradicated by the previous UK Conservative government, have a devastating impact on patients' physical and mental health.", - "media_hash": "d313d737d926d951549a0cc0d383d8fccc8dc00b2630bb50d1071a2f", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Conservative government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5528750000000002 - }, - "demo": { - "health": 4.552875 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "This overtime causes burnout, causes fatigue, causes them to be demoralized, low morale, and then they drop out of medicine or they want to just completely move to a different country.", - "media_hash": "812c8cd14c10324a49672b08e1a83fdeb27b91a825b1875d07ddbd4a", - "sequence": 1379, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5528750000000002, - "health": 2.5528750000000002 - } - } - } -}, -{ - "publication_date": "2026-03-31T11:50:02+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/spectator/status/2038946920127689183", - "media_type": "social_post", - "sentence": { - "text": "On the table is an above-inflation pay rise, along with government funding for postgraduate exams that doctors have historically paid for themselves, and an offer of 4,500 additional specialty training places.", - "media_hash": "271df3e8dc8c320af15cb8881e151d777639ebcfcb36e653cb114c40", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T11:03:40", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "First-year doctors fresh out of medical school would earn on average \u00a352,000 a year, \u00a312,000 more than three years ago.", - "media_hash": "8fdb3cb7eb3523b38e8e6f8430b70d2e9cbdcaed1d3f492cf800c5ba", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain is still paying a heavy price for Covid lockdowns", - "publication_date": "2026-03-31T09:26:02", - "publication": "cityam", - "url": "https://www.cityam.com/britain-is-still-paying-a-heavy-price-for-covid-lockdowns/", - "media_type": "news_article", - "sentence": { - "text": "In the NHS, the waiting list in England was 7.29m in December 2025, even after the NHS delivered a record 18.4m treatments and operations in 2025.", - "media_hash": "cb16d83d7fb089369933c149ff673951619a10244968188526f6d4cb", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alex Pugh", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 43603, - "score": 0.1814357236439175 - }, - { - "tracked_claim_id": 44362, - "score": 0.19342697902437114 - }, - { - "tracked_claim_id": 45085, - "score": 0.17981192326116746 - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives junior doctors 48 hours to halt their 'reckless' strike", - "publication_date": "2026-03-31T07:41:13", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692923/Starmer-junior-doctors-strike.html", - "media_type": "news_article", - "sentence": { - "text": "As medics also earn on average an extra \u00a320,500 a year for overtime, weekends and night shifts, the highest earners could take home more than \u00a3100,000 a year.", - "media_hash": "86359f7e0d67f3c5b59f328181757f92f5a478893f392912b95cfc46", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": { - "health": 2.5459449999999997 - }, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "People are still waiting more than two years, way more than the situation in England.", - "media_hash": "efd0405217c352d29e1c16e31a8de9522e825acfec9fba4996d8d92d", - "sequence": 993, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "Quilter's calculations suggest that a first-year foundation doctor - those just out of medical school - would lose around \u00a32,230 of pay if they were involved in all 21 days of strike action, while the most experienced resident doctors could lose around \u00a34,260.", - "media_hash": "0efb09e8e939b641a4d8c93df443cb02678cffeafb6f33f5e75c7739", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Quilter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir said union leaders had rejected a \"historic\" offer - including another above-inflation pay rise of 3.5% this year.", - "media_hash": "501301d65456322009c60f2ef2860a2be57a64c72efcc65a8809543e", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "I think 95% of appointments were managed and kept during the last period of strike action.", - "media_hash": "b3c1ca61d89bff32bd8872ba993817f00df806a4d83751b5f1e25a72", - "sequence": 383, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "More doctors could strike as row between BMA and...", - "publication_date": "2026-03-31T14:24:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", - "media_type": "news_article", - "sentence": { - "text": "Consultants and other senior doctors are to be balloted on industrial action after ministers announced they would be getting a 3.5% pay award.", - "media_hash": "e0758daf87cd5c6632808ef029bd0fe62561713a1df5b55607e465a0", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More doctors could strike as row between BMA and...", - "publication_date": "2026-03-31T14:24:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695075/More-doctors-strike-row-BMA-Government-deepens.html", - "media_type": "news_article", - "sentence": { - "text": "The deal sets out a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", - "media_hash": "cb8cc4be08979b55cc89f1c8eeb455f541dfab80d42d920401aa8e2d", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors\u2019 training posts at risk unless they call off strike", - "publication_date": "2026-03-31T14:11:37", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", - "media_type": "news_article", - "sentence": { - "text": "Among the elements of his offer was a 4.9% uplift to average basic pay between 2026 and 2027, which would make them an average of 35.2% better off compared to four years ago.", - "media_hash": "bfe6eb0d918b9ef344d4ccfb4eab2bb1bc0b9dcb0945b1d4cc741db2", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Resident doctors\u2019 training posts at risk unless they call off strike", - "publication_date": "2026-03-31T14:11:37", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", - "media_type": "news_article", - "sentence": { - "text": "Of course, what Streeting fails to do is put that \"35.2% better off\" into proper context:", - "media_hash": "9a5e70e1a8e7dccc65b2852572874e859e8fe7d8b75665c79392b895", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", - "media_hash": "d7f56059f6910a84610a932e2c60808109c3dae3f100b683e61eed12", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But I've talked about those 1,000 extra jobs, the 1,000 extra jobs is part of a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", - "media_hash": "13dfd95817d95c09569b24ff3a2930d323733384fa5397cc7edc59eb", - "sequence": 1324, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, at the moment, for example, for GP, there's over 18,000, um, trainee doctors that are waiting to get into GP training with over 4,000, probably just over 4,000 places.", - "media_hash": "b6b1205af6e426a37b9c5b5d702f898d2893fae7abcd706a6016d75c", - "sequence": 1368, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, I mean doctors are paid far more than the average of anybody in the UK, admittedly in their first year they they're not paid a huge amount, it's about 38,000 I think.", - "media_hash": "3ceb5947723674632be806387594d903f4dd5350b93c3049f24114ef", - "sequence": 1584, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "We had a 65% turnout and 83% of residents rejected.", - "media_hash": "fc36cb3c150347c72683c3424276f4d909aa6402fca39dd7aab3f958", - "sequence": 226, - "claim_type": [ - "quantity", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "How did we get to another NHS doctors' strike?", - "publication_date": "2026-03-31T12:15:00", - "publication": "skynews", - "url": "https://news.sky.com/story/how-did-we-get-to-another-nhs-doctors-strike-13526421", - "media_type": "news_article", - "sentence": { - "text": "Labour won the general election in July, and the new government offered a 22% pay rise over two years, which junior doctors accepted two months later, ending the strikes.", - "media_hash": "6b929f308ce2c556a4db82997f0a43877cc8381e8e5185c4a7855b98", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain is still paying a heavy price for Covid lockdowns", - "publication_date": "2026-03-31T09:26:02", - "publication": "cityam", - "url": "https://www.cityam.com/britain-is-still-paying-a-heavy-price-for-covid-lockdowns/", - "media_type": "news_article", - "sentence": { - "text": "By December 2024, only 71.1 per cent of A&E patients were admitted, transferred or discharged within four hours, far below the NHS standard of 95 per cent.", - "media_hash": "9c3fc03a4f329815f764878e7e8e9e95a4afcc1629c0ada8e0ed254a", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alex Pugh", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 17916, - "score": 0.17589999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "The union has rejected a pay rise of up to 7.1% this year without putting it to members, but says it's keen to attend fresh talks.", - "media_hash": "42bff7d52f08ba008af3367aec4fb238c25a125454947b1b465df4c9", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Hugo Rifkind", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "The 3.5% rise that is coming to them in April was recommended by the independent pay review body and covers all doctors.", - "media_hash": "cdd6ee38fa0e8d30aba622c7be36b7bbea9c17971a9e83db27c46666", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "It will be the fourth strike by members of the British Medical Association (BMA) since last July, with 21 days of industrial action having taken place since then.", - "media_hash": "31e72e8eedc09c448eee4b84bc6f130953ca23b1bc16a553336b2783", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It's a 10% pay rise for doctors in their first year.", - "media_hash": "eb9543790ad127175b9e58baf26b07bc36f6f990cca921649318aff2", - "sequence": 1704, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", - "media_hash": "a9911af16022cf11c16997958d7a6bc524fed8156ccdd07259c05e4d", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "The goalposts were changed at the last minute by the government where the investment offer was reduced and stretched to over three years.", - "media_hash": "5bcdbef3b89f54d1a36cc6b9990494822fde796915ab92a0dd598032", - "sequence": 1330, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And on the face of it, it's a reasonable offer, three and a half percent pay rise this year, that's slightly more than inflation.", - "media_hash": "4dbd0ae5e53b0a9564fe81a938e6f228ecd0a8cd852b0507064e7262", - "sequence": 1572, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Senior doctors are now threatening to strike as the British Medical Association escalates its pay dispute with the government", - "publication_date": "2026-03-31T17:51:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695699/Senior-doctors-threatening-strike-British-Medical-Association-escalates-pay-dispute-government.html", - "media_type": "news_article", - "sentence": { - "text": "The Department of Health and Social Care said basic pay for new senior doctors has increased by 28.5 per cent over the past four years.", - "media_hash": "6edd8f91ef5493645cf23a4513cceeff9b7e22b8a3168988a69a36ed", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "We had a 65% turnout and 83% of residents rejected it, just did we been telling the government and therefore we've not put this to members because we don't think it's a good deal on pay.", - "media_hash": "a56fd502a231463bb3e09239e0b19d66eba9b2ed4469c84b735ded43", - "sequence": 329, - "claim_type": [ - "quantity", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "BMA to ballot senior doctors in England over strikes as pay dispute escalates", - "publication_date": "2026-03-31T13:13:44", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/society/2026/mar/31/bma-ballot-senior-doctors-england-strikes-pay-dispute-escalates", - "media_type": "news_article", - "sentence": { - "text": "Last week the government announced that doctors would get a 3.5% pay rise after agreeing a recommendation from the pay review body.", - "media_hash": "fd3df2538f8469fa9fcaae22868204ed2c140fd25ca2a3818a6ebd61", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Last summer there were 30,000 applicants for around 10,000 jobs, although some of those were doctors applying from abroad.", - "media_hash": "bb751c69670bdbfc8616f650093d0ffc1d0571ba52ad838c433996c2", - "sequence": 38, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "media_hash": "09d4546560871b113b16b4f0ce60bc179b4cb9a9e9d098eba4051a52", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "But they also lose entitlement to some of their generous defined benefit pensions, with calculations by wealth manager Quilter suggesting this could total over \u00a32,000 for many doctors over a 20-year retirement.", - "media_hash": "cfa05d50448a70a75b59d829a3448d5a2f98234fbcf1b620e879742c", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Quilter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", - "publication_date": "2026-03-31T05:08:53", - "publication": "bbc-health", - "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", - "media_type": "news_article", - "sentence": { - "text": "The BMA announced the strike as it emerged doctors were to be given a 3.5% pay rise this year.", - "media_hash": "e3ec11529f64bd1d46496091f4b7504a817fd80d4286b65a2ce28480", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "In the same way that inflation between January 2022 and January 2026 was around 28%.", - "media_hash": "0ecc3bbe9d94422f9a36f378ef81fcb1c91035fc1f6344ca61dffe2f", - "sequence": 1692, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But a six-day strike, and the previous strikes weren't six days.", - "media_hash": "6bc64ed2c84d26bcc8d1f081802872a7a4586b3477fa7a7e8c3c0ca8", - "sequence": 1354, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And when you when you put it in an hourly rate like that, it doesn't sound very much but if you multiply 20 pounds an hour by 52 weeks of the year, um, it's a reasonably sizable sum.", - "media_hash": "8966e000c63590996d9b658c47b86971083e5800096ea69522f6141b", - "sequence": 1591, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", - "publication_date": "2026-03-31T16:03:46", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/uk-news/keir-starmer-hits-out-union-36950764", - "media_type": "news_article", - "sentence": { - "text": "Of these positions, 1,000 would have been available for applications this month, but the PM has now cautioned they \"will be gone if this deal isn't put to a vote on Thursday\".", - "media_hash": "7eef2cd22c952df6b837d554f70319e1e208e65c799854044b702983", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "And I think that we've had a much more constructive set of discussions over the last six months or so, certainly over the last three months or so, much more conciliatory and really trying to find a solution.", - "media_hash": "32e14b58ca25dae66fa53310d2e859ec97d0d4e9e970ca0a299fc7d0", - "sequence": 367, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Year-long treatment waits will be gone in `short number...", - "publication_date": "2026-03-31T13:19:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Figures released on Tuesday confirmed the pledge had been missed, with 44,000 waits of a year or more still ongoing.", - "media_hash": "1cf587dfa71793821bfaeee179790c548c2080bca96b894583fdb4c4", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": { - "health": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BMA hits back at prime minister\u2019s 48-hour deadline to cancel doctor strikes", - "publication_date": "2026-03-31T09:42:13", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/bma-hits-back-at-prime-ministers-48-hour-deadline-to-cancel-doctor-strikes/", - "media_type": "news_article", - "sentence": { - "text": "The government pledged to create 4,000 extra training places over three years, including 1,000 places this year.", - "media_hash": "2c092090f83bc6d8415e9f47350ebc21f01741dcaacf845f90e72fce", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woman\u2019s Hour", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403939", - "media_type": "transcript", - "sentence": { - "text": "It warns that one in four NHS sonographer job posts are vacant in England.", - "media_hash": "3ec8f7ebd2e2de061519049bfe5d76ae89a5c789ec89cf0916f69be6", - "sequence": 53, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "clinical_health": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "We had a 65% turnout and 83% of residents rejected it.", - "media_hash": "6ee6be4dce862931bcd3e3975a3f91f4379a1d58cbf5fcbf603c9d8e", - "sequence": 594, - "claim_type": [ - "quantity", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "The deal, which was rejected last week by the union's leadership without consulting members, would see a pay rise of up to 7.1% this year and the creation of 4,000 specialty training posts.", - "media_hash": "55f9baa55f8c640db2be54610154d48b153560534543e34e285fed0d", - "sequence": 1157, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", - "publication_date": "2026-03-31T06:45:27", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/society/2026/mar/31/keir-starmer-resident-doctors-48-hours-to-call-off-strike", - "media_type": "news_article", - "sentence": { - "text": "The union, which is to stage a walkout from 7 April to 13 April, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", - "media_hash": "ff304e826bb1354c9d51b8ca618150fa74b81f82fa88bd8233b5e153", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "starmer": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "For 21 days of strike action, the most experienced resident doctors could lose \u00a378.83 per year; over 25 years, because of the way pensions are uprated, that could be worth \u00a3114.38, adjusted for inflation.Over a 20 year retirement, that is worth \u00a32,280 before tax.", - "media_hash": "e1ce234c2a342312dee7e7d73e814ceed38e9243f0214b78d4f5d4de", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Quilter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives 48-hour deadline to resident doctors...", - "publication_date": "2026-03-31T05:49:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", - "media_type": "news_article", - "sentence": { - "text": "Last week, the BMA resident doctors' committee rejected an offer that would have given doctors a pay rise of up to 7.1% this year, without putting it to members for a vote.", - "media_hash": "fc4ffd7a0b4c2e985153d65118f6dfb03326326620eee51d650d6b2b", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 39593, - "score": 0.38980000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Under a new deal on pay, which the medics have rejected, some of them would have been on over 100,000 pounds a year.", - "media_hash": "a05581ff9fbaf8a2d1a820ca73e526ebf8f17d51941cbd319db0e8b7", - "sequence": 388, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "He's accused them of being reckless for walking away from a pay deal under which at least some would have earned more than \u00a3100,000 a year when overtime and night payments are added.", - "media_hash": "ced315703734c420acd20cd1cc8cfd112da62dd2414f1d85a832339d", - "sequence": 1622, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "You know, a first year doctor, fresh out of medical school would earn \u00a312,000 more than three years ago.", - "media_hash": "86246835c25f227f63684c8f9a7c8bc44947817c2119ee25534fe84e", - "sequence": 1696, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And for those in their second to fifth year, a 3.5% pay rise.", - "media_hash": "d939a493b45b4de93056b14dfc73adc7dfafdaa14573225fc8908659", - "sequence": 1705, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And frankly, with the current inflation rates, we think that is about 20%.", - "media_hash": "7cfd1057771dcc0da25c7ef83ae43d7962a3067c8064955174ff3c66", - "sequence": 1715, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So the government's offer of 10% for junior doctors and 2% for consultants is significantly below that.", - "media_hash": "169e56e67aef2097e6b8af22fe1f263ebaa8cdbdd366550e2f79ab93", - "sequence": 1716, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "SNP plan for NHS is working, says Swinney", - "publication_date": "2026-03-31T00:19:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693033/SNP-plan-NHS-working-says-Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", - "media_hash": "c3613fb9e8972d80077a7fcd5899314ddf020f9d8b93b6f0cda79f2f", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "After entering No10, Starmer agreed to pay rises worth 22% over two years, with further increases following last year.", - "media_hash": "1ccdc2fb371e7604c98a02a00061783243979bae5e4f1a85989bc08d", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 28741, - "score": 0.45030000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", - "media_hash": "d890ddea0a76a50b14701aad4ced28675909d7311f94cafc9555937b", - "sequence": 461, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "defence": 2.5459449999999997 - } - } - } -}, -{ - "title": "Resident doctors\u2019 training posts at risk unless they call off strike", - "publication_date": "2026-03-31T14:11:37", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/doctors-strike-march-2026/", - "media_type": "news_article", - "sentence": { - "text": "The PM went on to reiterate the terms of the rejected deal, mentioning a total pay rise of 35% over three years, reimbursements for Royal College exams, and 4,500 new speciality training posts over three years.", - "media_hash": "3343d7951b14a6bdcb760c847473cc6e5efaba1039950ae2ce040833", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Although a figure of 4,000 has been mentioned, but I think that's over three years.", - "media_hash": "9c7641a735cc947d5989f5cd204f51aa91364230c895e537e8c2c824", - "sequence": 1294, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "They have budgeted the government 250 million pounds for these jobs, which is about a week's worth of strike action, which is what seems to be going ahead next month.", - "media_hash": "6e40b0793f8d3ee43fb1fc3622eb047fce39c1188613b86041ab6e2c", - "sequence": 1307, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Year-long treatment waits will be gone in `short number...", - "publication_date": "2026-03-31T13:19:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694869/Year-long-treatment-waits-gone-short-number-months--Swinney.html", - "media_type": "news_article", - "sentence": { - "text": "\"But what I think we should be looking at today is that we've got nine months of continuous reductions in long waits for outpatient and inpatient treatment - that's thousands and thousands of people receiving the healthcare treatment they require and more and more people getting treatment within the 12-week period.", - "media_hash": "1242de2aaf9a74ccaad8a247be837a047782ce2b2ecd817fed66e610", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": { - "health": 4.562435 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "The union's rejected a pay rise of up to 7.1% this year but says it's keen to attend fresh talks.", - "media_hash": "b748c104e42b6a2bad5d1bedf3a815711e66991cd3570c81844affc6", - "sequence": 301, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "I'm not sure anybody knows anybody who's been given a pay rise of what 28%.", - "media_hash": "cade365a2aa7998d7a849b405a86b8750920efbf2dea93d10d085e66", - "sequence": 1160, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Last week the BMA called the strike after rejecting a deal which would see doctors receive a 3.5% pay rise this year, some expenses including exam fees paid for, and an increase in the number of training posts.", - "media_hash": "2958ccf214e83b8d707b9211970df98970c1e5f73f2a3e049d8f71c3", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer gives doctors 48 hours to cancel strike or lose new jobs package", - "publication_date": "2026-03-31T06:50:04", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c23909pge35o", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, he said, new graduates entering the profession would earn on average \u00a312,000 more annually than three years ago.", - "media_hash": "889370806fbf93fcd91999380b14ee756c624fb64a2553511e566eb2", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wes Streeting", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer gives 48-hour deadline to resident doctors...", - "publication_date": "2026-03-31T05:49:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693637/Keir-Starmer-gives-48-hour-deadline-resident-doctors-call-strikes.html", - "media_type": "news_article", - "sentence": { - "text": "The union, which is set to stage a walkout from April 7 to April 13, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", - "media_hash": "3e7c884c674969fab6c09544a0b081cca40a2507057e821644578a81", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Medical Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "PM gives BMA 48 hours to call-off strike or lose 1,000 training posts", - "publication_date": "2026-03-31T05:08:53", - "publication": "bbc-health", - "url": "https://www.bbc.com/news/articles/cdxknk4w2qyo", - "media_type": "news_article", - "sentence": { - "text": "The walkout, which is due to begin at 07:00 BST on Tuesday, will be the joint longest of the dispute - only once before have resident doctors taken part in a six-day strike.", - "media_hash": "6ec17778e43ecf3495716dd521495e8be1f47a6e3016e7565e791065", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So the government have offered to create an extra 4,000 training posts.", - "media_hash": "17e21eee8d2403138e6904a5317fe836d21182d1752ae3986160932e", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Yet last year, there were 13 fully qualified doctors who were applying for every job in NHS to train to be an any.", - "media_hash": "713c1b95458877ff39b5344ae1f646a99304c7c90a4777d0b161f0c2", - "sequence": 1647, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And that's why it's only 10% for those in their first year.", - "media_hash": "1713b9bd17faef2087de09af9d807be243ed1b53b179d3376f767219", - "sequence": 1713, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Keir Starmer broke his promise to end the war with doctors - and now we'll all suffer", - "publication_date": "2026-03-31T16:00:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188884/keir-starmer-risks-breaking-election", - "media_type": "news_article", - "sentence": { - "text": "Labour leader hopeful Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", - "media_hash": "7c431ab34c4d6c621ef05bf865df2d7079b6549c94721abf04a2d246", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 28741, - "score": 0.15190000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "A&E in meltdown and cancer targets missed\u2026 but First Minister John Swinney 'proud of progress'", - "publication_date": "2026-03-31T20:40:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695785/A-E-meltdown-cancer-targets-missed-Minister-John-Swinney-proud-progress.html", - "media_type": "news_article", - "sentence": { - "text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", - "media_hash": "e2c1b487d20fbe6a88086b41c4816070fead6e309bb89bbfba701e47", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "health": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Now, last week the BMA called the strike over a deal which would see doctors receive a 3.5 percent pay rise this year, so slightly above inflation.", - "media_hash": "5aab87e449c9c08e3c46666b73122c1782757396a7ceb127710b57f6", - "sequence": 1295, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Some expenses, including exam fees paid for, and an increase in the number of training posts.", - "media_hash": "8a2a5aa8a0bcde9a166b109bdefe52a656d47e79dbfc77a84f551262", - "sequence": 1296, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And also in terms of those jobs existing in the first place, those 1,000 extra jobs, which is part of the deal.", - "media_hash": "d33c07864fa192c33458ce9716c23c94bfddfc509c8b5964c3f9ea1e", - "sequence": 1306, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Can you tell us what the settlement was after the election that West Streeter came to, because we were told something like 22%.", - "media_hash": "b3252ae3760e37e421432fa95dd294c7a91b9c3e6b60e25fda323259", - "sequence": 1385, - "claim_type": [ - "quantity", - "voting", - "opinion" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Pienaar and Friends", - "publication_date": "2026-03-31T17:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404387", - "media_type": "transcript", - "sentence": { - "text": "And I think that we've had a much more constructive set of discussions over the last six months or so, or certainly over the last three months or so, much more conciliatory, um, and and really trying to find a solution.", - "media_hash": "0f7825dac28fa530069e965e16adf8b3c2b8e7957fc1982d04da21c0", - "sequence": 235, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997 - } - } - } -}, -{ - "title": "Doctors to lose \u00a32,000 from pensions due to 21 days of strikes", - "publication_date": "2026-03-31T06:00:00", - "publication": "inews", - "url": "https://inews.co.uk/inews-lifestyle/money/pensions-and-retirement/doctors-lose-from-pensions-days-strikes-4320942", - "media_type": "news_article", - "sentence": { - "text": "\"In the 2015 structure, any reduction in pensionable pay creates a gap that compounds because each year's accrual is uprated.\"", - "media_hash": "e26358778346b4176c719bff762cdd303293508ea339cdcb6bae5bdc", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Graham Crossley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.5315000000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "And a dog owner has been convicted after his XL bully attacked and killed an elderly man in Cheshire.", - "media_hash": "9792bfec5a975e39c537229c9304418c377175c9ab3ff0aedfbc0b89", - "sequence": 255, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5207699999999997 - } - } - } -}, -{ - "title": "NHS 'only days' away from some supplies running out because of Iran war, chief executive says", - "publication_date": "2026-03-31T18:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694467/NHS-days-away-supplies-running-Iran-war-chief-executive-says.html", - "media_type": "news_article", - "sentence": { - "text": "We've already had a couple of supply shocks in the last 12,18, months or so.", - "media_hash": "f42bdaa77baf9743cdc0d00d143c8dab716d7fa6c5cf2e1c0d335bb3", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NHS England", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "health": 2.500545 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "health": 3.05185 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And at the point might be made that, well, the 4,000 specialty jobs, we all need them.", - "media_hash": "1c0d30263e7ef5a2334b7d51b8af8186b89145143daf9adb8d1d8633", - "sequence": 254, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.500545, - "leo_s_topic": 2.500545 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So, you know, those numbers do sound large because they're taken over a number of years, inflation peaks and troughs during that time.", - "media_hash": "89b6c7e66118fcd168e55bf99de5da1f0706f25da870ece1898d5aa1", - "sequence": 1693, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.500545 - } - } - } -}, -{ - "title": "Parents told impact of kids' behaviour on lessons - as private schools perform better", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/parents-told-impact-kids-behaviour-36949335", - "media_type": "news_article", - "sentence": { - "text": "Just 8% said it \"rarely\" or \"never\" has an impact on classrooms - compared to almost a third of teachers (31%) in private schools, according to a major survey by the National Education Union.", - "media_hash": "eea06e4969bd8145cbc53b8a8b56ad2e8724a636febb59f559bf44c6", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Teachers in private schools", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "education": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "publication_date": "2026-03-31T10:00:05", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693927/Private-school-pupil-16-killed-day-asking-ChatGPT-advice-life.html", - "media_type": "news_article", - "sentence": { - "text": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", - "media_hash": "cc0499549a7aa455ebcba4e2f3af457a3c08c4b903a7a4252319e443", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "education": 4.36914 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "education": 4.6220099999999995 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Parents told impact of kids' behaviour on lessons - as private schools perform better", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/parents-told-impact-kids-behaviour-36949335", - "media_type": "news_article", - "sentence": { - "text": "The NEU said the different outcomes between state and private schools showed \"the roles that resourcing, class size and pupil to adult ratios play in behaviour\".", - "media_hash": "e12cc3350e2d22ac490afb42f4151395faa4164734103bdf556e912d", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "National Education Union", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "education": 3.901315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", - "publication_date": "2026-03-31T13:42:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", - "media_type": "news_article", - "sentence": { - "text": "Plans by Spain's socialist prime minister to hit British expats with a tax of up to 100% of the value of their holiday home purchases have stalled.", - "media_hash": "6299c6fab1725c5d117462a9724cfc47792af4b1777e57fbc9495591", - "sequence": 2, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "education": 3.3956850000000003 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Fake landlord lied that his dad had died to scam my deposit'", - "publication_date": "2026-03-31T04:57:39", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/clyvv713y3no", - "media_type": "news_article", - "sentence": { - "text": "According to the National Fraud Intelligence Bureau, 4,441 cases of rental scams were reported in the past year across England, Wales and Northern Ireland, with people aged between 20 and 29 years old proving the most likely to fall prey.", - "media_hash": "b56d3ad8575c89ba4726d9804a4e349db19231bcefc8aa96efb5368c", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Fraud Intelligence Bureau", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "education": 3.3647299999999998 - }, - "demo": {}, - "dev": { - "blah": 3.3647299999999998 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", - "publication_date": "2026-03-31T13:42:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", - "media_type": "news_article", - "sentence": { - "text": "The world's second-most visited country after France is also among the European nations where public anger is most acute over affordable housing shortages, with rental supply halving since the pandemic.", - "media_hash": "15a15f58e5b150661968b56db524b0ed1a60374ec88dceae970538fa", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "education": 3.123595 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Fake landlord lied that his dad had died to scam my deposit'", - "publication_date": "2026-03-31T04:57:39", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/clyvv713y3no", - "media_type": "news_article", - "sentence": { - "text": "As part of our investigation, we have spoken to four other people who say they lost more than \u00a36,000 between them in the same scam.", - "media_hash": "4286c8042baa932b956f751c1c931bb2a0a603df152163eb521c9076", - "sequence": 61, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "education": 3.09725 - }, - "demo": {}, - "dev": { - "blah": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", - "publication_date": "2026-03-31T13:42:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", - "media_type": "news_article", - "sentence": { - "text": "Foreigners made up 20% of all buyers last year, unchanged from a year earlier.", - "media_hash": "c485b756daf2b6a49c32d06b88359563ccd9e310dcc51d9824271826", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "education": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", - "publication_date": "2026-03-31T13:42:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", - "media_type": "news_article", - "sentence": { - "text": "This represents a 15% increase from 2020 while there are thought to be many more that operate without an official licence.", - "media_hash": "6ee7e4f71e8bff9b895b84d9428ecf46f4453c401044b7c8eee24392", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "education": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Victory for expats in Spain as socialist PM's plan to hit Brits with 100% holiday home tax stalls after backlash", - "publication_date": "2026-03-31T13:42:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694149/Victory-expats-Spain-socialist-PMs-plan-hit-Brits-100-holiday-home-tax-stalls-backlash.html", - "media_type": "news_article", - "sentence": { - "text": "Brits remained the largest group of foreign purchasers, at around 8%, preliminary official data showed.", - "media_hash": "5d2d616378b9ff2ae282185d8629fe5b256924517e2af16606da9125", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "education": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "media_hash": "930d4b60dbd4cbf0d49d9dab31be61add2c58be09c57aa0eec84168a", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Sadiq Khan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 5.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 5.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", - "publication_date": "2026-03-31T15:44:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", - "media_type": "news_article", - "sentence": { - "text": "Latest figures show nearly 190 London police officers were sacked and barred from returning to the service in 2025.", - "media_hash": "74f14c7cfe3e1b8f1f3369ecf2f789e03155375e493c45da15307a65", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Metropolitan Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", - "publication_date": "2026-03-31T01:06:32", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Anthony Albanese has warned of a growing threat from extremist ideologies as he declared he felt 'no sympathy' for self-proclaimed sovereign citizen Dezi Freeman, who killed two Victorian police officers.", - "media_hash": "bd722afb886f6837c07e14ba2938e60773aafc50f0f58a785895236f", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Anthony Albanese", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.965595 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 4.965595 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "The \u00a365 million inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded.", - "media_hash": "8de9324a827e63d46ad1e9b4d8db35c21f8d7bf4b63d08871c50d6ed", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.89907, - "crime": 4.89907 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", - "publication_date": "2026-03-31T00:25:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Hurst also raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers.", - "media_hash": "b614d85a61d88ef2e4fbe3acf223a6395ad5ce48ac728c71fdbd1793", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reality TV star Joseph Duggar posts $600,000 bond in...", - "publication_date": "2026-03-31T21:26:42", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695673/Reality-TV-star-Joseph-Duggar-held-600-000-bond-child-molestation-case.html", - "media_type": "news_article", - "sentence": { - "text": "Duggar, who starred with his parents and siblings in TLC's \"19 Kids and Counting,\" was arrested March 18 in Tontitown, Arkansas, after police officers interviewed a 14-year-old girl who told them Duggar had molested her several times during a family trip to Panama City Beach, Florida, when she was 9.", - "media_hash": "74039aeba85bfc55aa2c98959d322dfe80fcb09002df9821e176dfe5", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Joseph Duggar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The real guide to North London: Influencer sparks backlash with rundown of posh bakeries, wine bars, and Pilates studios - as residents share 'pretty nasty' reality", - "publication_date": "2026-03-31T15:01:26", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/lifestyle/article-15693883/The-real-guide-North-London-Influencer-sparks-backlash-rundown-posh-bakeries-wine-bars-Pilates-studios-residents-share-pretty-nasty-reality.html", - "media_type": "news_article", - "sentence": { - "text": "Residents have described 'people sitting on the stairs, smoking crack cocaine' and a rampant issue with knife crime.", - "media_hash": "fec3e112a9899092ceda0e0ba99a738c6e15f162d2cbc5383d53d8f1", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Residents", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with \u00a36.1million in dirty cash uncovered in a money laundering probe.", - "media_hash": "886030accad256797c9fbf799d0cbc53bfe44b72c5f1261118599d61", - "sequence": 30, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "EU Agency for Criminal Justice Cooperation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.61247, - "crime": 4.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owner of XL bully that 'savaged' 84-year-old man found guilty", - "publication_date": "2026-03-31T14:00:00", - "publication": "skynews", - "url": "https://news.sky.com/story/owner-of-xl-bully-that-savaged-84-year-old-man-found-guilty-13524972", - "media_type": "news_article", - "sentence": { - "text": "The animal had to be shot 10 times by police officers who were called to the scene.", - "media_hash": "744ff406a2d8fbea6d703e15e9f132a95c0c670c627a206bce0e18cc", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T16:54:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Video shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand in the middle.", - "media_hash": "6410c0c3e7b7874d21264b639ae20fb7f37ab4e6e6c0e0bcf39de571", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.61247 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", - "media_hash": "0394d2a438e55d77c935963434df6a27c982e1f33ec53377b8a33efd", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "1919 magazine", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "crime": 4.545945 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Revealed: The truth about the remote compound where Dezi Freeman made his last stand in a shootout with cops", - "publication_date": "2026-03-31T05:00:04", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693293/dezi-freeman-farmer-denies-harbouring-victoria.html", - "media_type": "news_article", - "sentence": { - "text": "Dezi Freeman murdered two police officers and fled", - "media_hash": "1c672da3e63374529a9afb392e3b59623d4abf3ff48fd556bee3ff07", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.540725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Slain fugitive could become sovereign citizen 'martyr'", - "publication_date": "2026-03-31T05:15:40", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693593/Slain-fugitive-sovereign-citizen-martyr.html", - "media_type": "news_article", - "sentence": { - "text": "He had been on the run for seven months after killing police officers Neal Thompson and Vadim de Waart-Hottart as they served a warrant related to alleged child sex offences.", - "media_hash": "3eee2773d1c1b66b2b338ed8ee6215c842d32575c84a50f29e8c5dbb", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", - "media_hash": "3ff650a586805fd9d9eb88ba98b49d6388bedd0e5e1371dfa2a552db", - "sequence": 10, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.540725, - "crime": 4.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", - "publication_date": "2026-03-31T06:50:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", - "media_type": "news_article", - "sentence": { - "text": "Christine Hurst raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers", - "media_hash": "09e00a0ed09696a028effc16385ca8b3bae2cceed54b722edfa96c63", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Mr Ainsworth", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Bea Ainsworth", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Mrs Ainsworth", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.4703800000000005 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "'(It) will be laser focused on grooming gangs and will explicitly examine the role of ethnicity, religion and culture of the offenders and in the response of institutions.", - "media_hash": "268cd98c2b61ed519eed8079ddd4a213ca609e0dc26bcb49b04aa58b", - "sequence": 74, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Home Secretary Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.41762, - "leo_s_topic": 4.41762, - "crime": 4.41762 - }, - "demo": { - "race__ethinicy__religion": 4.26484 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Woodhouse, who was targeted, groomed and abused as a teenager, was part of Restore Britain MP Rupert Lowe's private investigation into grooming gangs, which has claimed to have found child sexual exploitation in 85 local authorities in the UK.", - "media_hash": "9795fda1b53e30a76dd2d89a89b508fcc693e8f01dc8cf2d7adcd912", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Restore Britain", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.41429, - "crime": 4.41429 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Alpine town desperate to move on from Freeman's crimes", - "publication_date": "2026-03-31T03:55:38", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693451/Alpine-town-desperate-Freemans-crimes.html", - "media_type": "news_article", - "sentence": { - "text": "Dezi Freeman, wanted for shooting dead two police officers on a property near the town, was killed on Monday roughly 150km away in Thologolong, after seven months on the run.", - "media_hash": "9939747da281203755c129962eb79c31cfb4f0226a75350e09639d57", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.41429 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", - "media_hash": "272411c20dabb6e93f34343bb819c561d9574c643d13f77acf4438db", - "sequence": 13, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.331365, - "crime": 4.331365 - }, - "demo": {}, - "aapfactcheck": { - "queer-trans-sexuality": 4.331365 - }, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", - "publication_date": "2026-03-31T01:06:32", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", - "media_type": "news_article", - "sentence": { - "text": "'He made the decision to murder two police officers.", - "media_hash": "392f9a646204e181067d3f2e9a7d59e22d011938553210e5892bdd84", - "sequence": 12, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.300755 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 4.300755 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Conservative Party leader Kemi Badenoch said: 'This appears to be a significantly strengthened terms of reference for the national grooming gangs inquiry.", - "media_hash": "b017cb223cb6681dafb0490eb3e06f749954df0ea9d1420421a31f3a", - "sequence": 58, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Grooming gang inquiry", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Conservative Party leader Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.29984, - "leo_s_topic": 4.29984 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 4.29984 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "Conservative Party leader Kemi Badenoch said the terms of reference appeared to have been \"significantly strengthened\", but Reform UK leader Nigel Farage said he has \"absolutely no faith\" that the grooming gangs inquiry will get justice for victims.", - "media_hash": "befafac333b203a088f59afd79df78bd7df196127446a2c4ee19c867", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.29984, - "leo_s_topic": 4.29984, - "crime": 4.29984 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Husband of woman, 61, who was killed by 'drunk' motorist in Turkey tells of trying 'with all my strength' to stop her from being run over a second time", - "publication_date": "2026-03-31T15:20:24", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694999/Husband-tells-wife-run-drunk-driver-Turkey.html", - "media_type": "news_article", - "sentence": { - "text": "A photo from the scene shows three police officers taking a suspect, who was allegedly under the influence, into custody", - "media_hash": "4f884ecbc73c5488d24a103d250d48375af6933df790ccef16e371d5", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.287855 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "In each area, the inquiry will conduct 'local investigations' into 'serious failures identified in response to child sexual exploitation by grooming gangs'.", - "media_hash": "642c1546eac8ca512715a59c80e1b81677c5927e8baef0e4871ef37f", - "sequence": 10, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Grooming gang inquiry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.26484, - "leo_s_topic": 4.26484 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 4.41762 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", - "media_hash": "3bef971223bf0779f87941fff65ae27737ed8730d549135bbc8868e3", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.263805, - "crime": 4.263805 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "\"The problem is any third party inquiry is a waste of space unless you can subpoena police officers, social services, civil servants, who were all part of of turning the collective blind eye, and I think everything this Government has done on this issue is an attempt to literally kick the can down the road, to not fully open this up.", - "media_hash": "d7c16ca1c4cb9984864a1f9a92ddbe1bce119fc26de789e4313864dc", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.25444, - "crime": 4.25444 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "The audit found systemic failures and institutional paralysis had enabled grooming gangs to operate for many years.", - "media_hash": "76da6d1f62aca8c45819c92fe516d322827a6a0b27922f64f76293cb", - "sequence": 80, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Baroness Louise Casey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.25444, - "leo_s_topic": 4.25444, - "crime": 4.25444 - }, - "demo": { - "race__ethinicy__religion": 2.7747900000000003 - }, - "pa-media": {}, - "maldita": { - "trending": 4.25444 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Delivery driver threatened at gunpoint in attack on police station", - "publication_date": "2026-03-31T11:51:32", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", - "media_type": "news_article", - "sentence": { - "text": "\"The people behind this showed absolutely no regard for the driver, the local community or police officers, whose lives could have been put at risk,\" she said.", - "media_hash": "4ebc41510f058c16f51703618dd2a23b7a2bfd9944fef4b8473bdb06", - "sequence": 51, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Claire Hanna", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.228095 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Farage said: \"I've wanted a national grooming gangs inquiry, I've done everything I can to try and push the Government into it.", - "media_hash": "123d9463957dce2ea61bb36acd8a4197997b7f121d4cb69a38ac4f38", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fugitive Freeman 'unlikely' to have been taken alive", - "publication_date": "2026-03-31T00:15:38", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15692191/Fresh-shooting-details-Dezi-Freeman-identified.html", - "media_type": "news_article", - "sentence": { - "text": "Police officers and vehicles continued to surround the property on Tuesday, 24 hours after Freeman was killed in a hail of bullets after refusing to surrender.", - "media_hash": "ad2c158cca4318834d06a1f8d4ccdc00f59ff17c91dccf7c32f69aa2", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Victoria Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "In its 'terms of reference' published this morning, the inquiry said it would 'investigate how grooming gangs operated and how institutions, including police, local authorities, health services, social care services, and schools, responded to abuse'.", - "media_hash": "74c53745e28cb5c99cac35a72cc8ff1ab21d619ca675ba7d52eeb7a7", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 4.10166, - "leo_s_topic": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ex-SNP candidate under investigation over alleged sexual offences", - "publication_date": "2026-03-31T11:15:31", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983585.stefan-hoggan-faces-police-probe-alleged-sexual-offences/", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", - "media_hash": "f119ef7581a322aec8188c5d4efc169dceec171ca39b9bc6372b84fa", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - } - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Marcus Johnstone, managing director of PCD Solicitors, said: 'Grooming gangs have not disappeared, but simply evolved their tactics to largely escape detection.", - "media_hash": "f37a685f42697692645a80dc60360d786a95899e973c389bd3387b68", - "sequence": 62, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Marcus Johnstone", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.10166, - "leo_s_topic": 4.10166, - "crime": 4.10166 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", - "media_hash": "8d882f7790685ab42df5d3c1acbe8682c377185d1cc7a0d325efe63c", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man shot dead outside Euston Station pictured as killer remains on the loose", - "publication_date": "2026-03-31T17:43:10", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-man-shot-dead-outside-36951245", - "media_type": "news_article", - "sentence": { - "text": "Nahom Medhanie was shot dead in a car outside Euston Station in London - Metropolitan Police officers were called to reports of gunshots at 11pm on Saturday", - "media_hash": "ea4fe62499f19d354ae19ac80792a3966e117b7bf76524a88b77820f", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police investigating former SNP Holyrood candidate over...", - "publication_date": "2026-03-31T17:34:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", - "media_hash": "81e1fa29e1e255c5a9a56876cdd6c4ed53684116f135ccb74a1b43d0", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.10166, - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "The grooming gangs inquiry was set up in response to a recommendation from Baroness Louise Casey's National Audit on Group-based Child Sexual Exploitation and Abuse.", - "media_hash": "b313cc19ef2df8cc8b94f4d85ed610fedf93d779be88e518522803d1", - "sequence": 79, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 4.10166, - "leo_s_topic": 4.10166, - "crime": 4.10166 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "maldita": { - "trending": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Families 'are barricaded inside high street stores' as mobs of youths storm Clapham AGAIN", - "publication_date": "2026-03-31T19:58:53", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695845/Families-barricaded-inside-high-street-stores-mobs-youths-storm-Clapham-AGAIN.html", - "media_type": "news_article", - "sentence": { - "text": "Footage posted on social media showed police officers watching on as an army of feral youngsters stormed through the supermarket.", - "media_hash": "772f2d89abfe56256caafc6050d605bc67d031b8564989cf657facb8", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reality TV star Joseph Duggar held on $600,000 bond in...", - "publication_date": "2026-03-31T17:26:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695673/Reality-TV-star-Joseph-Duggar-held-600-000-bond-child-molestation-case.html", - "media_type": "news_article", - "sentence": { - "text": "Police officers in Tontitown had the father call Duggar with a detective on the line, and he again admitted to the actions, according to the affidavit.", - "media_hash": "2d3f9d3f5197986ff36769a5d07b4c2228c2ed56f80d377962bdc870", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Joseph Duggar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Indonesia arrests Scottish man sought by Spain in...", - "publication_date": "2026-03-31T16:56:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695585/Indonesia-arrests-Scottish-man-sought-Spain-connection-international-crime-syndicate.html", - "media_type": "news_article", - "sentence": { - "text": "A Scottish man identified as Steven Lyons, who is described as a senior figure in an international crime syndicate, center, is escorted by police officers at the regional police headquarters in Denpasar, Bali, Indonesia, Tuesday, March 31, 2026.", - "media_hash": "6b4355c792358641e72218ae5598f90b41e1dfc503b3cb8338eb680d", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Delivery driver threatened at gunpoint in attack on police station", - "publication_date": "2026-03-31T11:51:32", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", - "media_type": "news_article", - "sentence": { - "text": "He described it as a reckless attack, which could have endangered local people and police officers.", - "media_hash": "f78a9ce1c8485e3cb64b59ae4829f89191fc4aacf28e5e981a26903f", - "sequence": 41, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jon Burrows", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Home Secretary Shabana Mahmood said: 'The grooming gangs scandal is one of the darkest moments in our country's history - where the most vulnerable people were abused and exploited at the hands of evil child rapists.", - "media_hash": "79974af8654ad12dfddedcc245c03dc73d46db0b982e3f67f11e4030", - "sequence": 55, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Home Secretary Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166, - "leo_s_topic": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 4.25444 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", - "publication_date": "2026-03-31T16:57:04", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", - "media_type": "news_article", - "sentence": { - "text": "According to reports, Brueckner has repeatedly tested police officers' patience in the period since - especially when drinking alcohol.", - "media_hash": "bfadb4004432a3a89cda86214e95432fdb71122bf63fa32eafd6e545", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T16:54:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "New footage shows the moment an army of youths caused chaos in a Marks and Spencer shop in London as police officers watched.", - "media_hash": "cd74cd00b98358f9efeecd073d8ec0025f77da059d7766fcc6b278d6", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "A child sexual exploitation survivor has urged the grooming gangs inquiry to investigate every council and police force in the UK after the probe outlined its terms of reference.", - "media_hash": "b40477ef210ddbae7ac4316cafa1101715ac34478352aa2c7df5616d", - "sequence": 2, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.98733, - "crime": 3.98733 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:09:48+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/Telegraph/status/2038891496129077403", - "media_type": "social_post", - "sentence": { - "text": "\ud83d\udd34 Police officers who failed to investigate Asian grooming gangs will be held to account by the public inquiry into the scandal, its head has pledged.", - "media_hash": "5b5ec76290d04e311b13f8c5c61079e77c8ced7ea1e2a303ecff439e", - "sequence": 0, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Baroness Longfield", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.98733 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Uh, well, the national inquiry into grooming gangs, Hugo, will not flinch from uncomfortable truths, its chair has announced as a three-year investigation begins.", - "media_hash": "4db9af50feed6efc6334c43381a6c45cd3df08d6f8c068b45ea2d484", - "sequence": 2478, - "claim_type": [ - "correlation", - "predictions", - "support" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.9255500000000003, - "leo_s_topic": 3.9255500000000003 - } - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T11:54:31", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Met Police officers then swooped on the scene, with hundreds of children sent fleeing through Soho after the sound of sirens brought the stunt to an abrupt close.", - "media_hash": "030f501ad617cbf52881410c0e19f17309339e04b8e91f3eda160316", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.862985 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.862985 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "The inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded to abuse.", - "media_hash": "5abc5c399733a5dd6345c00db3a75eb7b931cd557d853d3f238893c7", - "sequence": 50, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Grooming gang inquiry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.7800599999999998, - "leo_s_topic": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 3.7800599999999998 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "'I have full confidence that the National Crime Agency will expose and prosecute the grooming gangs.", - "media_hash": "5ec7654a6e40c291c1e3b669f8760dc25a036ec410c40c8f37db6b8e", - "sequence": 59, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Sarah Champion", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.7800599999999998, - "leo_s_topic": 3.7800599999999998, - "crime": 3.7800599999999998 - }, - "demo": { - "race__ethinicy__religion": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", - "media_hash": "e7a3146e65a33ae931a15041ba0a62198d284507e12bb8864ac1cff7", - "sequence": 1, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.7800599999999998, - "crime": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "Local investigations will be carried out in areas where serious failures have been identified in response to child sexual exploitation by grooming gangs.", - "media_hash": "32291e7ffa0e303065278101180195da6c94c8b48b4c7c9b67d2c7a1", - "sequence": 5, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.7800599999999998, - "crime": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "Tory leader Kemi Badenoch said the terms of reference of the inquiry had been 'significantly strengthened \u0301 (Yui Mok/PA)", - "media_hash": "46df338b5cad731c148488bc3fe61177b39b9c04fc23222c9b183a23", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.748535, - "leo_s_topic": 3.748535, - "crime": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T11:54:31", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Footage shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand helpless in the middle.", - "media_hash": "cfc3307a32607c49aeb12832c3bb206fba55629bc878783799bf19e6", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 4.29984 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", - "publication_date": "2026-03-31T16:48:39", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", - "media_type": "news_article", - "sentence": { - "text": "'Members of the public are entitled to accept the highest standards from police officers and to ensure they do not abuse their power and position.", - "media_hash": "bb9926905c88e7b605a65afae4ff1f7b88a0cb174696cf81f1995cf0", - "sequence": 41, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Judge Nicola Talbot-Hadley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.7404349999999997 - }, - "demo": {}, - "aapfactcheck": { - "women": 0.0 - }, - "pa-media": {}, - "maldita": { - "crime": 3.70948 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dezi Freeman's final moments to be revealed in inquest", - "publication_date": "2026-03-31T16:37:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15695555/Dezi-Freemans-final-moments-revealed-inquest.html", - "media_type": "news_article", - "sentence": { - "text": "For the families of the police officers and also Freeman's, they will get a clear outline on what occurred through the coronial process.", - "media_hash": "1265ee2b5ff13846ad22f3e45dd2c89fb001c2bb37da92eeaeb0c231", - "sequence": 17, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", - "media_hash": "e8010740956593f59364f297e55c4c3f588ee2c17dd1ae0cf584a843", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "crime": 3.703135 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", - "media_hash": "7100c011b1055c79ac87f787a38bb80410cc71d65200cf519d05f4d4", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "crime": 3.703135 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", - "media_hash": "6658be1562fca05b50ab85e47c96a447f717cb65be4fd4d13ae8d27b", - "sequence": 1, - "claim_type": [ - "rules", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.66573, - "crime": 3.66573 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Spring Break trend 'turns cities into The Purge' as stampedes and fights overwhelm police", - "publication_date": "2026-03-31T11:40:57", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/spring-break-trend-turns-cities-36947147", - "media_type": "news_article", - "sentence": { - "text": "A dangerous social media trend is turning US cities \"into The Purge\" with police officers overwhelmed after already dealing with Spring Break.", - "media_hash": "dfdd2dce3ed123b9a580236fe856566485761291971d528866523e5e", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Anthony Albanese sounds the alarm on extremist ideologies after Dezi Freeman's death", - "publication_date": "2026-03-31T01:06:32", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692883/anthony-albanese-dezi-freeman.html", - "media_type": "news_article", - "sentence": { - "text": "'That ideology led him to murder two police officers in cold blood,' Albanese said.", - "media_hash": "53ca168d077d936de5462414bf13a4199e3db23a980b969412dbc7c9", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Anthony Albanese", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.563255 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 4.228095 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", - "publication_date": "2026-03-31T10:13:51", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", - "media_type": "news_article", - "sentence": { - "text": "The reward was one of the largest ever offered in Australia, and came amid a search involving 450 police officers and members of the defence force", - "media_hash": "7464b642aef1492d5f900cf6a16afd343553db76fad2b5ebf54eae75", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.556405 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.556405 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T11:54:31", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Met Police officers appear to try and control the group by gently pushing a few of the teens, which has little impact", - "media_hash": "651a56fc5b52ab641e28f8e897b5cd60b3a48db50c5ced357b7201e2", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police investigating former SNP Holyrood candidate over...", - "publication_date": "2026-03-31T17:34:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695683/Police-investigating-former-SNP-Holyrood-candidate-alleged-sexual-offences.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", - "media_hash": "b482a75e855d18922197af3adb1189ba95d3866e30faa297c290aec5", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", - "publication_date": "2026-03-31T13:23:56", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", - "media_hash": "b0984601cf8c309e7f5f1ea321e1ce18e0daa4e07567d9d1215527e7", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland has previously said it will continue with its current policy.", - "media_hash": "28e703e2ff069434c235fcab2dfca6c6adcc76b1c6ac12a8260a7ec2", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Its findings are calamitous for London's transport and policing bodies and for Mayor of London Sadiq Khan: the committee's chair, Marina Ahmad, said that while she expected 'to find a problem, what we found was a crisis'.", - "media_hash": "b0fce0cdc0daceff4231eb7c99c08a20c592cb5baf3b95237232c8c1", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", - "publication_date": "2026-03-31T10:14:38", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", - "media_type": "news_article", - "sentence": { - "text": "Greater Manchester Police officers are currently responding to a concern for welfare on Barton Bridge on the M60, reported at around 9:40am this morning.", - "media_hash": "ff8999b537fd88e3e708d32c7668da818afcc4f2eb99abed664a9251", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Greater Manchester Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", - "publication_date": "2026-03-31T10:14:38", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", - "media_type": "news_article", - "sentence": { - "text": "Police officers are at the scene responding to a concern for welfare.", - "media_hash": "46949ef8ac4da7c8ea0e852b5e8a3b37152f65ea71949dd2a13a0632", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Greater Manchester Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.975225 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", - "media_hash": "f8d3a4c92e59f62006be5cdca6367b18b0661350a3c3607074aadd2e", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", - "media_hash": "78e07e46d212bd0cd5e21f1d4cfa6b194306773895b0edd66947af91", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T16:54:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Met Police officers then swooped in on the scene, with hundreds of children sent fleeing through the streets after the sound of sirens brought the stunt to an abrupt stop.", - "media_hash": "25e9d3ba4338bf079fdf56555a5363cea99919c97f71b5c7b79d7993", - "sequence": 22, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Funfair worker started devastating fire then faked seizure when arrested", - "publication_date": "2026-03-31T16:06:33", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/funfair-worker-started-devastating-fire-33692400", - "media_type": "news_article", - "sentence": { - "text": "Police officers were joined by an ambulance crew and they managed to get Gornall to safety.", - "media_hash": "d467044a9662f7aaa901ebefde3462f902be5dd65913d561e6c1e5e2", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "'Brutal' crime drama soars up Netflix chart as fans 'drop everything to watch'", - "publication_date": "2026-03-31T15:38:06", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/brutal-crime-drama-soars-up-36950587", - "media_type": "news_article", - "sentence": { - "text": "\"Underneath the surface, this series is a nuanced character drama about two police officers - and supposed colleagues - operating on opposite sides of the law. Throughout the season, Harry goes head-to-head with his long-time adversary and corrupt detective Tom Waaler,\" reports the Express.", - "media_hash": "192be3865ae1abf457e16b92b3c570e4a7eb824e538c6118a88679f9", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Boy, 12, among trio arrested after bomb and knife attack hoax shuts down UK schools", - "publication_date": "2026-03-31T12:55:22", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/boy-12-among-trio-arrested-36949343", - "media_type": "news_article", - "sentence": { - "text": "Police officers were spotted at both schools on the Monday and armed officers were photographed at Eastern High in Trowbridge.", - "media_hash": "cd89e0351361fff743e72e48dd08a947bd6930b2e612d3d2df5ccea2", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", - "media_hash": "74f292618f0c059f2e657ba424aa4f2bd7d85b6ef6040c9e0e310cff", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Steven Lyons", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Amanda", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", - "media_hash": "5870605429121f95ba5a5e437d9441e8607a45271379abe867dd40d3", - "sequence": 22, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Woods to 'step away and seek treatment' after crash", - "publication_date": "2026-03-31T23:44:19", - "publication": "bbc", - "url": "https://www.bbc.com/sport/golf/articles/c87wjj424vro", - "media_type": "news_article", - "sentence": { - "text": "That came after police officers found Woods slumped at the wheel of his car near his home.", - "media_hash": "f6353a8bca23f352c88f57414c820f728445de022a0e849a93f86bb3", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", - "media_hash": "c8010e05506ef0df19188606dfc2b242e9a89867bb810270a3229b43", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", - "publication_date": "2026-03-31T15:21:22", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland were called to the address after concerns were raised about the occupant.", - "media_hash": "2ef55cffda923da1dfadb60ebb60c1596d17d916550a785ab2e43e36", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Man dies after falling from Glasgow high-rise as police probe 'unexplained' death", - "publication_date": "2026-03-31T13:23:56", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-dies-after-falling-glasgow-36949474", - "media_type": "news_article", - "sentence": { - "text": "Officers from Police Scotland say his death is currently being treated as unexplained.", - "media_hash": "4b4d52218bed3bc6d74ab0f6a54f0baae34682d5c05b069c00cf26d8", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "M60 traffic LIVE: Chaos near Trafford Centre as motorway shut after 'police incident'", - "publication_date": "2026-03-31T10:14:38", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/m60-traffic-live-chaos-near-36948075", - "media_type": "news_article", - "sentence": { - "text": "Greater Manchester Police officers are responding to the incident at the scene.", - "media_hash": "0d3df745bca453ad073669b6dbed2aca30eb95ef306d52edb052df92", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", - "media_hash": "4de07c284139b1bffa489a0527b8d1f62ebdd808f2372c3bf52f959c", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Boy, 12, arrested in connection with threats to Cardiff schools", - "publication_date": "2026-03-31T10:55:14", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/boy-12-arrested-connection-threats-33690188", - "media_type": "news_article", - "sentence": { - "text": "Police officers were seen at both schools on the Monday and armed officers were pictured at Eastern High in Trowbridge.", - "media_hash": "4d8b1489365b5ecc0ccba3ae251440a2fe326570b66bdb6b8f7ff926", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", - "media_hash": "4eed64d849cddd4f921f27c111f1b5b605953a97bb6eb68a81884403", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "international law enforcement", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Norman Silvester", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police officers in Lanarkshire issue advice to residents over keyless car theft", - "publication_date": "2026-03-31T10:04:02", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/in-your-area/lanarkshire/police-officers-lanarkshire-issue-advice-36947991", - "media_type": "news_article", - "sentence": { - "text": "Police officers in Lanarkshire have issued advice to residents over keyless car theft.", - "media_hash": "7d2e9d58da448c35dc125b195a3983e8086d980211a7572eecaae721", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Princes Street incident: Boy, 15, arrested after car chase in Edinburgh city centre", - "publication_date": "2026-03-31T08:23:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/boy-15-arrested-after-early-hours-car-chase-on-princes-street-6529563", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", - "media_hash": "932144d920312a346138f7c3fcf63bc8b4ebf9665ae1d9b668d6295a", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man charged with attempted murder after woman \u2018stabbed\u2019 near Perth roundabout", - "publication_date": "2026-03-31T08:08:55", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/5462094/perth-attempted-murder-charge/", - "media_type": "news_article", - "sentence": { - "text": "Police officers search the area.", - "media_hash": "1124bf780c768dca0c72b9f18e34fbff927cbca4a9b8e645995266ec", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - } - } - } -}, -{ - "title": "Man appears in court charged with murder after David Smith found dead in Glasgow home", - "publication_date": "2026-03-31T15:21:22", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/man-appears-court-charged-murder-36947992", - "media_type": "news_article", - "sentence": { - "text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", - "media_hash": "a5928758ecdf0493a55f46e7e1a8eafde9068ca7b3ec71a933cf7222", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - } - } - } -}, -{ - "title": "Vicky McClure 'heartbroken' over grim murder as famous husband makes major promise", - "publication_date": "2026-03-31T15:03:30", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/3am/celebrity-news/britains-murder-map-vicky-mcclure-36950079", - "media_type": "news_article", - "sentence": { - "text": "Their Sky History show examines unsolved murders, miscarriages of justice and milestone cases that have changed the law, and the co-hosts speak to historians, police officers, victims' families and a number of other contributors along the way.", - "media_hash": "8ec2896ae8e7890aed72d7e681956344adc265460724ae7311e17be5", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment woman escapes police car in cuffs by wiggling her body out of the window and running away", - "publication_date": "2026-03-31T20:57:54", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695265/woman-escapes-police-car-michigan.html", - "media_type": "news_article", - "sentence": { - "text": "Just a few seconds later, police officers in the parking lot walked back to the car and realized their suspect had fled.", - "media_hash": "223eec7d08d3102fa8aa9ce2c21b1c552c74f26c1676102bf732dc1c", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T11:54:31", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "New video shows the moment an army of youths caused chaos in a Marks and Spencer store in London as police officers watched on powerless.", - "media_hash": "981e4757d0b336586a37810c1a8eacc8b5f8a97980ca22e3044f3b63", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.5194 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.5194 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Former Inverness youth worker jailed over indecent images of children", - "publication_date": "2026-03-31T16:32:06", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6987559/former-inverness-youth-worker-jailed-over-indecent-images-of-children/", - "media_type": "news_article", - "sentence": { - "text": "Devices were seized, and analysis discovered 64 \"child sexual abuse material files\" which were deemed to be category C.", - "media_hash": "0b6e0cdc88df64a73b0720230149615bc82410047e2d9711363e0f27", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.450375 - } - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "'The initial draft did not, amongst other things, examine ethnicity and religion, nor did it ensure those in positions of authority like politicians or police officers would be investigated.", - "media_hash": "9ed6476ca90deaaaf6243c97d93cc2f378a442a04c1a01ecfbacb968", - "sequence": 59, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Grooming gang inquiry", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Conservative Party leader Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.436025, - "leo_s_topic": 3.436025 - }, - "demo": { - "race__ethinicy__religion": 3.436025 - }, - "pa-media": {}, - "maldita": { - "trending": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Oldham is the only area that has been confirmed, it means that local investigations won't begin until at least a year after Sir Keir Starmer announced this national inquiry, that itself came after his U-turn because he previously insisted that a national inquiry into abuse was not necessary.", - "media_hash": "a8c7834a02c2b1968cd977e0b64beba108fd1a0deda074656edd6d10", - "sequence": 2487, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.436025, - "crime": 3.436025, - "leo_s_topic": 3.436025, - "culture-wars": 3.436025 - } - } - } -}, -{ - "title": "The bombshell connection Dezi Freeman had to his secret lair - and exactly why he narrowed down his escape to one small town", - "publication_date": "2026-03-31T13:42:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693635/Dezi-Freeman-hideout-escaped-Victoria-police.html", - "media_type": "news_article", - "sentence": { - "text": "He had been on the run since August 26 after killing two Victorian police officers and injuring another when cops raided his remote Porepunkah property over historic sex offence allegations.", - "media_hash": "b4a92ec6fa0126b6a44c1227e4f39cac95ef262330d930c215a65699", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.4142900000000003 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", - "media_hash": "393a931a9a6085fd9209116b4867174d584df29766536993536dada4", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065, - "crime": 3.414065 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Police who failed to investigate child sex grooming gangs will be held to account, the new independent inquiry's head pledged today - as she promised issues of ethnicity, culture and religion will also be scrutinised.", - "media_hash": "8cb7e87acbae56fd4227017a883237b8711e68250f72e69e59915dcf", - "sequence": 2, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.40507, - "leo_s_topic": 3.40507 - }, - "demo": { - "race__ethinicy__religion": 3.956375 - }, - "pa-media": {}, - "maldita": { - "trending": 3.98733 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Criminal said 'I just have to do it to earn a living' in desperate plea to police after arrest", - "publication_date": "2026-03-31T15:18:55", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/criminal-said-i-just-earn-33691428", - "media_type": "news_article", - "sentence": { - "text": "The total value of drugs seized is estimated to have potential street value of \u00a31,460.", - "media_hash": "2851d37774f2ef32e9159581778fc241bfe81d336587160496e0221b", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.3956850000000003 - } - } - } -}, -{ - "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", - "publication_date": "2026-03-31T11:34:58", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", - "media_type": "news_article", - "sentence": { - "text": "The street value of the retrieved cocaine was estimated between \u00a3719,040 and \u00a3898,000.", - "media_hash": "8ffce2df96cc6431b483cb179451edbfc0e6645a7e6f579ce021685d", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "William Paterson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", - "media_type": "news_article", - "sentence": { - "text": "Stats out in 2024 show Black men were 2.4 times as likely to be arrested as white men and Black people were 3.7 times more likely to be stopped and searched compared to white people.", - "media_hash": "473a91233267fd1eb7aee092d388172229cfa000efdd24033aac658e", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T10:25:11", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "Across no less than a third of the country, not a single case of this devastating crime was cracked by constabularies.", - "media_hash": "8c1f8720a0eb9cfb8358600571bee69b9ab37d64096afde096296bda", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.2500299999999998 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Excesses are regularly in the thousands.", - "media_hash": "c2fefa66f3ab30a850e28508ab0b5cb4ae41d920321cf940491e0bf4", - "sequence": 52, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", - "publication_date": "2026-03-31T08:45:06", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", - "media_type": "news_article", - "sentence": { - "text": "Ten police officers had attended his property he shared with his wife, Mali and their two children, to serve a warrant on August 26 2025.", - "media_hash": "3b5821fb4e95579a4f9776b7bf1fc0f366cf2ca2ea94f985bf2711aa", - "sequence": 19, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.2291 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.1981450000000002 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Longfield said that the inquiry will examine cases in which public officials and police officers were reluctant to investigate allegations because of concerns about how it may look.", - "media_hash": "5e4b61495ca979133a790088b3e8a546be98145be22c8beec676a67e", - "sequence": 2483, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.228755, - "leo_s_topic": 3.228755 - } - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "And Sarah Champion, Labour MP for Rotherham, who first called for action on grooming gangs, has criticised the amount of time the inquiry has taken to get going and believes its budget would be better spent on supporting the National Crime Agency bringing gangs to justice.", - "media_hash": "92d23966f6e9ceda9be9d72a5bbfe7ad18419d959d890e8b022244f4", - "sequence": 10, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Sarah Champion", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.211065, - "leo_s_topic": 3.211065, - "crime": 3.211065 - }, - "demo": { - "race__ethinicy__religion": 3.7623699999999998 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", - "publication_date": "2026-03-31T09:35:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", - "media_type": "news_article", - "sentence": { - "text": "The 13-year-old girl from the Bayside area was charged with 52 offences including reckless conduct endanger serious injury, multiple counts of theft, multiple counts of theft of motor vehicle, burglary, handle stolen goods, and threaten physical harm or property damage on ground of a protected attribute.", - "media_hash": "4a782a4929cf3c37d0994f3a4082f01628326946dcf0900a96d10d46", - "sequence": 23, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.1637750000000002 - }, - "demo": { - "race__ethinicy__religion": 2.738905 - }, - "aapfactcheck": { - "crisis": 2.965595 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T11:45:03", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "The \u00a365m inquiry, to conclude no later than March 2029, 'will examine why children were so often disbelieved, dismissed, or blamed for their own abuse'.", - "media_hash": "c668ac57dd681ec2774bf9e4029b5a5b91969ddf5693a62dc812b633", - "sequence": 5, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Grooming gang inquiry", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09782, - "leo_s_topic": 3.09782 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 2.57747 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Overall crime on the network has risen almost eight percent in the last three years alone.", - "media_hash": "481504079ff397a9a68c9793586f2e4ee83715be2ec44d056263c4b6", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Of all public transport crime reports in 2025 almost a fifth, 4,593, related to VAWG and another 1,724 were incidents of hate crime.", - "media_hash": "603daea4be500c23634eaed47066f67922da2543735a3b51e23ec80d", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Only a handful of incidents ever led to a charge, and a suspect was not identified in 58 per cent and 66 per cent of VAWG and hate crime incidents respectively.", - "media_hash": "20c9b8554fc44a00ac646fc04e76785aad894f137f2a9f2a9e7a5cfc", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Almost half of travellers - 45 per cent - say they're either 'very' or 'fairly' worried about being harassed while commuting, and more than half say they have little to no confidence in TfL, the Met and the BTP to take action.", - "media_hash": "419fad03094948877ae48084f31aea213bbf8adfd44e90f2a704de72", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T10:25:11", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "Just 1 per cent of these disgusting robberies leads to anyone being punished.", - "media_hash": "4511fde3a3045fca77b23cd55a58c358f2f3f54f6833f5aa4d8e315c", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Thought police' are ordered to stop wasting time on online squabbles", - "publication_date": "2026-03-31T05:28:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691995/End-thought-police-Shake-non-crime-hate-incidents-crack-officers-sent-mediate-online-debates.html", - "media_type": "news_article", - "sentence": { - "text": "NCHIs were introduced in 2014 by the College of Policing, and saw a 400% increase in police recorded hate crimes in the decade from 2012, based on analysis of force figures.", - "media_hash": "c232c7b56fc02eeed23493c621a942abcf842810e66a6350f53aff11", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", - "media_type": "news_article", - "sentence": { - "text": "In its report, the Independent Scrutiny and Oversight Board (ISOB) said just six of the 44 forces covered by the PRAP have publicly acknowledged institutional racism.", - "media_hash": "c6dddf9cf5fdd5258b4664a643901d47c770caab04149bb188d143e0", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Independent Scrutiny and Oversight Board", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", - "publication_date": "2026-03-31T16:43:39", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", - "media_type": "news_article", - "sentence": { - "text": "With a further 240 RSOs either in custody or in hospital.", - "media_hash": "a8c3141845d3910c5f390e1b96dab0c9a0438b2ad4ec9ad060cd3e71", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - } - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Crime on London's public transport network has risen by almost 50 per cent since the pandemic - with 'unacceptable' levels of violence against women and girls, according to a devastating new report.", - "media_hash": "c94da3b934773c05da0aa39de797e540c387bc54b4397a5bc3840643", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40329, - "score": 0.45320000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "crime": 3.09725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scott Mills 'is not taking calls from his worried friends' after being sacked by the BBC", - "publication_date": "2026-03-31T19:39:19", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695421/Scott-Mills-not-taking-calls-worried-friends-sacked-BBC.html", - "media_type": "news_article", - "sentence": { - "text": "The disgraced BBC News presenter Huw was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", - "media_hash": "4dfc1a0e64936c3ebbc2d6ececa85b7ff6fd9425d5a42048658e4bfd", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.08627 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", - "publication_date": "2026-03-31T09:35:26", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", - "media_type": "news_article", - "sentence": { - "text": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", - "media_hash": "8df8f7514deae6dabc4843e658dc7e7b9d13b04070fc4e0b5210d6ad", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 3.03734 - }, - "demo": { - "race__ethinicy__religion": 3.1637750000000002 - }, - "aapfactcheck": { - "crisis": 2.61247 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Put cops on the streets, not on tweets, Tories demand", - "publication_date": "2026-03-31T20:47:18", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695791/Put-cops-streets-not-tweets-Tories-demand.html", - "media_type": "news_article", - "sentence": { - "text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", - "media_hash": "db80b90ea4e3d9d575b907a1dcfc3e8ab1040a8b3f8048639dc01b4f", - "sequence": 29, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.023415, - "crime": 3.023415 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.89698 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", - "publication_date": "2026-03-31T16:57:04", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", - "media_type": "news_article", - "sentence": { - "text": "The expert warned that if he were set free, his probability of committing another serious offence within two years could be between 30 and 50 per cent.", - "media_hash": "2c6d758ba6adf3c7394b19f45de6808c7c60da635f29d4011b21f178", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "psychological expert", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.983715 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", - "publication_date": "2026-03-31T23:04:00", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", - "media_type": "news_article", - "sentence": { - "text": "A modern day Fagin ran gangs of teenage robbers who stole more than \u00a3100,000 worth of mobile phones in two weeks, a court heard.", - "media_hash": "089bd8f33dcd02bba297e61d26fc8d43aec8e7fbf7d88ba4a3ba95a1", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", - "publication_date": "2026-03-31T11:04:00", - "publication": "skynews", - "url": "https://news.sky.com/story/glasgow-drugs-courier-who-dumped-nearly-1631m-of-cocaine-during-police-chase-ordered-to-repay-thousands-13526383", - "media_type": "news_article", - "sentence": { - "text": "COPFS said the street value of the cocaine was estimated to be between \u00a3719,040 and \u00a3898,000.", - "media_hash": "2acbc0aa6c9a7f7d980efc2b6730d2ca6929539c3d6e082b799c84a1", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Crown Office and Procurator Fiscal Service", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Of 562 investigations into alleged sex offences reported in 2025 involving CCTV evidence, 250 either had no CCTV available, or was of unusable quality.", - "media_hash": "2a57bd4e2291b654e1031f1da37c46dcaf8a948d25a9b550e83cabfe", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", - "publication_date": "2026-03-31T06:55:17", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", - "media_type": "news_article", - "sentence": { - "text": "Arrow MORE: Thieves steal \u00a38,000,000 worth of paintings in just three minutes", - "media_hash": "9190786dbedfc949d864f2e81f5f9da2b413306e37a3c22cbe3ed275", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "The cost of living crisis has made food and beverages an increasingly attractive target, with thefts rising as much as 79% in 2024 according to one report.", - "media_hash": "910f0fd2f25dba05147bfbca6d574dba50daf319c1227cc8b8e8e44e", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T00:17:49", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "Shockingly, out of 185,000 cases of forced entry where an investigation occurred last year, the police were unable to identify a suspect in 143,000 of them.", - "media_hash": "dea8bf885294b53226c14c1c55eb09005ad5c30a8a5822f71221e181", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "ANTHONY STANSFELD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "London TravelWatch estimates as many as 80 per cent of incidents go unreported.", - "media_hash": "fcba26a312af190fba6a00746ed08e03574a8f1bd11aedba23602b90", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London TravelWatch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death", - "publication_date": "2026-03-31T08:48:34", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "Three teenagers charged with murder of girl, 16, who was stabbed to death", - "media_hash": "4eecd11ea1f577fa15a8803d1e66a340b83da1bd3c1a04e8c1e394c9", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.965595 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 2.965595 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Toxic 'manosphere' linked to worrying rise in young people radicalised online, posing new extremist threat to 'ill-prepared' UK, MPs warn", - "publication_date": "2026-03-31T23:01:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694249/Toxic-manosphere-linked-worrying-rise-young-people-radicalised-online-posing-new-extremist-threat-ill-prepared-UK-MPs-warn.html", - "media_type": "news_article", - "sentence": { - "text": "Southport killer Axel Rudakubana, who murdered three schoolgirls at a dance class in Southport in 2024, is alleged to have launched his horror knife rampage out of an incel hatred of women.", - "media_hash": "e062b95fd828f69bdb41ca360a725bce97cd22b46f05e04986d46d4c", - "sequence": 25, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.965595 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.965595 - } - } - } -}, -{ - "title": "Tuesday court round-up \u2014 Perth attempted murder charge and drunken knifeman", - "publication_date": "2026-03-31T15:45:11", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/courts/5460247/tuesday-court-round-up-perth-attempted-murder/", - "media_type": "news_article", - "sentence": { - "text": "A Perth prisoner has been put on the sex offenders register after he was heard shouting rape threats at visiting children, aged between one and eight to one.", - "media_hash": "811d8ffb96c19c7464aa635f7e3a56ff212721d33521100130f2613a", - "sequence": 44, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Frank Wakefield", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.965595 - } - } - } -}, -{ - "title": "Prince Harry now wants UK return - but the Royal Family's answer is going to hurt", - "publication_date": "2026-03-31T04:26:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/royal/2188035/prince-harry-now-wants-uk", - "media_type": "news_article", - "sentence": { - "text": "So why does a Californian-based non-working royal, raking in \u00a375m from Netflix and \u00a320m from his book Spare, think a nation facing a cost-of-living crisis should fork out for his security detail, let alone police protection officers?", - "media_hash": "30b43218831a88171e5ad373724db28dea3458a13dc28fd179da0948", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.93986 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", - "publication_date": "2026-03-31T13:25:47", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", - "media_type": "news_article", - "sentence": { - "text": "'It is a terrible truth that violence, abuse, assault and in the worst cases, murder, can often come at the hands of a partner.", - "media_hash": "ca9f9379e2d6e6dd64926fd333042feddc547411d1f27c5ec675411e", - "sequence": 31, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Detective Sergeant Heather Kenwright", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.9264200000000002 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", - "publication_date": "2026-03-31T16:43:39", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", - "media_type": "news_article", - "sentence": { - "text": "\"We can never eliminate risk entirely, but sexual reoffending rates of RSOs remain very low.", - "media_hash": "850a687c90b563ace9293660cd121bc667b62ca7139b1d0242fae26e", - "sequence": 23, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.925415 - } - } - } -}, -{ - "title": "Madeleine McCann suspect accused of playing 'cat and mouse' game with police", - "publication_date": "2026-03-31T16:57:04", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/madeleine-mccann-suspect-accused-playing-36950389", - "media_type": "news_article", - "sentence": { - "text": "Brueckner has repeatedly tested police officers' patience since being released from jail, including one incident when he is said to have briefly managed to escape them on a bicycle", - "media_hash": "f3a90a632f19d93c0ccaf643f17c8acd088335b59fc7245cb8f913a4", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.91647 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", - "publication_date": "2026-03-31T12:31:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", - "media_type": "news_article", - "sentence": { - "text": "Ashley Warren, 41, has been jailed for more than 10 years after owning one of two XL bully dogs that mauled 68-year-old Esther Martin to death at his home in Jaywick, Essex", - "media_hash": "f66e796d92efbaba4639e8f0c6163a18de77bd23fd4908f29a376cc5", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Suspect arrested in 30-year-old Donna Keogh murder mystery", - "publication_date": "2026-03-31T09:50:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188641/suspect-arrested-30yearold-donna-keogh", - "media_type": "news_article", - "sentence": { - "text": "A \u00a320,000 reward from Crimestoppers remains in place in connection with the murder of Donna.", - "media_hash": "fef7abbbc28bbf2705439083313101dc5bc5312f4ff032b6e843a8e9", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Crimestoppers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", - "publication_date": "2026-03-31T16:43:39", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", - "media_type": "news_article", - "sentence": { - "text": "It is also revealed that across the north-east, there are 469 registered sex offenders in the community.", - "media_hash": "69d87f34e2d5374360a93a3df7fbdfca33a72512d710ef9dced72b53", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.89907 - } - } - } -}, -{ - "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", - "publication_date": "2026-03-31T12:31:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", - "media_type": "news_article", - "sentence": { - "text": "The law makes it a criminal offence to own or possess an XL bully dog in England and Wales without a certificate of exemption.", - "media_hash": "0e71c89d151a8fa5d43601127ce3015dbf9981effcd9616b50834856", - "sequence": 7, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.8912199999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gang boss Steven Lyons looks furious as he's cuffed and paraded in prison jumpsuit", - "publication_date": "2026-03-31T09:01:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/breaking-gang-boss-steven-lyons-36930986", - "media_type": "news_article", - "sentence": { - "text": "Steven Lyons is escorted by police officers at the Bali police headquarters", - "media_hash": "a695bb5ede66a818b4fb4332689fcd2c65520e5aadd87bc45c23c8f2", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.885515 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Dog breeder guilty after XL bully 'savages' pensioner before being shot ten times", - "publication_date": "2026-03-31T15:26:18", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/dog-breeder-guilty-after-xl-36950463", - "media_type": "news_article", - "sentence": { - "text": "But the first police officers, who were unarmed, could not get to Mr McColl.", - "media_hash": "b2511700280e14e31a43ccb54a628d0cbb28904fb8742c89ac8b9672", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "David Birrell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.885515 - } - } - } -}, -{ - "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", - "publication_date": "2026-03-31T12:31:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", - "media_type": "news_article", - "sentence": { - "text": "An aspiring rapper has been jailed for more than 10 years after he was found guilty of owning an XL bully dog that mauled a pensioner to death.", - "media_hash": "7ff2e2d13448364d0e09f9b4af374f98b807a7717f90413065743ce4", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.87995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", - "media_hash": "12ebeb8b8006ad21fa2b481f3fc934b00020ee1734ac320d945462d7", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Police Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.862985, - "crime": 2.862985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Delay for teen accused of businessman's fatal stabbing", - "publication_date": "2026-03-31T05:10:40", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693251/Delay-teen-accused-businessmans-fatal-stabbing.html", - "media_type": "news_article", - "sentence": { - "text": "He is the first juvenile to be charged with murder after the passage of Queensland's controversial \"adult crime, adult time\" laws, mandating he will face a life sentence if found guilty.", - "media_hash": "53ce11eefd45879735cd0c4bd4d0b2146613931c706a7716c214bd8a", - "sequence": 5, - "claim_type": [ - "quantity", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.8512649999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "measles": 0.0 - } - } - } -}, -{ - "title": "Search on for \u2018abducted\u2019 girl, 14, after man and woman arrested", - "publication_date": "2026-03-31T12:56:42", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/search-abducted-girl-14-man-woman-arrested-27784953/", - "media_type": "news_article", - "sentence": { - "text": "Arrow MORE: Rapper whose XL bully mauled gran to death is sentenced to 10 years in prison", - "media_hash": "450611e7b173020e9cce807386bb7cff6a9badfc5cb259440f536a69", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Jeremy Vine says Scott Mills\u2019 sacking from BBC Radio 2 was \u2018unfair\u2019", - "publication_date": "2026-03-31T14:17:36", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/jeremy-vine-says-scott-mills-sacking-bbc-radio-2-unfair-27784612/", - "media_type": "news_article", - "sentence": { - "text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children two years ago.", - "media_hash": "c1d839bb9bf488b5a2b7dcec596d8ba9342f6e04a785b2ac3b9e45a3", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.8334 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", - "publication_date": "2026-03-31T15:44:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", - "media_type": "news_article", - "sentence": { - "text": "A Metropolitan Police detective has been sacked after using sex workers and class A drugs while on trips aboard over a seven-year period.", - "media_hash": "cd26c2a4cf90229a6ea678d4ab98fbd2ca934abe25af16e89d1aca25", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.8334 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Former Inverness youth worker jailed over indecent images of children", - "publication_date": "2026-03-31T16:32:06", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/crime-courts/6987559/former-inverness-youth-worker-jailed-over-indecent-images-of-children/", - "media_type": "news_article", - "sentence": { - "text": "A former Merkinch youth worker caught with indecent images of children has been jailed for 14 months.", - "media_hash": "8810df3fb273e53d962434f81b9bc174827c785a5a1067dc69d9fb96", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.8334 - } - } - } -}, -{ - "title": "Spring Break trend 'turns cities into The Purge' as stampedes and fights overwhelm police", - "publication_date": "2026-03-31T11:40:57", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/us-news/spring-break-trend-turns-cities-36947147", - "media_type": "news_article", - "sentence": { - "text": "He warns they can often grow into \"altercations that turn into gunplay with potential fatalities\".", - "media_hash": "4fdd95a2adc70ce4aa6ea660a768753c322c272a4ded2ef1cda0c753", - "sequence": 28, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Chesterfield County Police Department", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.805745 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "'The biggest development in child abuse happens on encrypted web sites, social media and apps, where the police are hopeless at investigating.", - "media_hash": "ec518428b83cf0f2bd2ddfdf2192cc6e30f0c8e0044444fbb34d653a", - "sequence": 63, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Marcus Johnstone", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 2.78525, - "leo_s_topic": 2.78525, - "crime": 2.78525 - }, - "demo": { - "race__ethinicy__religion": 2.78525 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man caught with knife in jacket he claimed belonged to a friend", - "publication_date": "2026-03-31T15:32:08", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25985328.man-jailed-knife-found-jacket-claimed-belonged-friend/", - "media_type": "news_article", - "sentence": { - "text": "Two women feared for their life after thug put knife to their faces during Glasgow attack", - "media_hash": "f29fd61fc76026c482c75c956a9bec2c8ad2b700b6bd8b7037e72459", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.7736400000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", - "publication_date": "2026-03-31T23:04:00", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", - "media_type": "news_article", - "sentence": { - "text": "In just one raid on the Three store in Woolwich, southeast London, the gang snatched \u00a330,000 worth of goods.", - "media_hash": "c8eafe551f64a65088a78d5aa9f19139f21f6d2e48575aaaa00b0fea", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.772635 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", - "media_hash": "375bb9c9d8fab907da770ab5766606d9a0e967b87984eb206f698170", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.748535, - "crime": 2.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "About 80% of trucks on the road, estimate the RHA, are from firms with six trucks or fewer.", - "media_hash": "965a7ef8c88ca5fecc4321703731f57d59d1850afb0ec91a7c51088a", - "sequence": 265, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Road Haulage Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "By most estimates, there are twice as many trucks on UK roads than there are places for them to pull up.", - "media_hash": "2ab7f81a77f8ca43ae8a018b38bd6f3ac324824ec758e57b05610334", - "sequence": 145, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Extra MSA", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Moment aspiring drill rapper tells police 'poodles are more aggressive' days before his XL Bullies mauled grandmother to death", - "publication_date": "2026-03-31T15:41:27", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694663/Aspiring-rapper-left-pensioner-charge-XL-Bullies-mauled-death-jailed-10-years.html", - "media_type": "news_article", - "sentence": { - "text": "Footage shows the moment Ashley Warren (left) told police poodles are 'more aggressive' than XL Bullies days before his dogs mauled a grandmother to death", - "media_hash": "a02bb509dce1616cf9c72782e7b46c6153a1cdc8c96340b27540cfcb", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.72471 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC confirms it knew about Scott Mills allegations almost a year ago - as it is claimed Radio 2 star 'was accused of sex offences against boy under 16'", - "publication_date": "2026-03-31T18:51:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15695709/BBC-Scott-Mills-allegations-Radio-2-sex-offences.html", - "media_type": "news_article", - "sentence": { - "text": "The teenage boy who accused Mills of serious sexual offences in the 1990s was under 16, it was claimed today.", - "media_hash": "2afc39af82d35e70ed25136b57a0754bbad6a241affb5b42a5afaf5a", - "sequence": 25, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man, 36, is charged with nine offences after seven people were injured when a car ploughed into crowds in Derby city centre", - "publication_date": "2026-03-31T23:45:06", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15696263/Man-36-charged-nine-offences-seven-people-injured-car-ploughed-crowds-Derby.html", - "media_type": "news_article", - "sentence": { - "text": "Seven people suffered serious injuries when a Suzuki Swift mounted a pavement and mowed down pedestrians at 9.30pm in Friar Gate on Saturday 28 March", - "media_hash": "4e1f88afc2634ae1c67b1c9ab715d2b0c3a28459a2495e62a123b358", - "sequence": 12, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Jeremy Vine calls Radio 2 colleague Scott Mills' sacking 'unfair' because 'there's been no crime' after police probe was dropped - as he questions why DJ didn't get same mental health considerations as Huw Edwards", - "publication_date": "2026-03-31T12:59:15", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15694393/Scott-Mills-Radio-2-colleague-Jeremy-Vine-forced-address-sacking-live-air-says-lot-people-confused-revealed-sexual-offence-accuser-16.html", - "media_type": "news_article", - "sentence": { - "text": "The disgraced BBC News presenter was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children.", - "media_hash": "eb94ed81f77ece96e791ee34c5667bf3d7a9e79804ff6392235e738f", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Teenage killer is caught out after his 'thoughtless act' at crime scene", - "publication_date": "2026-03-31T00:36:55", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/teenage-killer-caught-out-after-36946380", - "media_type": "news_article", - "sentence": { - "text": "\"The wound quickly proved fatal and he bled to death on the driveway of the house where he had collapsed. For four of the five men in the BMW those thoughtlessly discarded cigarette butts were to prove their undoing. Each had left traces of DNA on one of more of the cigarette butts.\"", - "media_hash": "af5039cfcdf3c7eaf3dac2e727c2ead234851c1ef70b1c0fde436a9e", - "sequence": 15, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Crispin Aylett, KC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", - "publication_date": "2026-03-31T16:48:39", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", - "media_type": "news_article", - "sentence": { - "text": "PC David Wren, 57, who had been investigating 13 incidents of domestic violence inflicted on the woman ended up exchanging hundreds of personal messages with her.", - "media_hash": "d4fea9694339df35b97b7e93220d31c315ea31f1beb2c88020b5f253", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - }, - "demo": {}, - "aapfactcheck": { - "women": 2.965595 - }, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tuesday court round-up \u2014 Perth attempted murder charge and drunken knifeman", - "publication_date": "2026-03-31T15:45:11", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/courts/5460247/tuesday-court-round-up-perth-attempted-murder/", - "media_type": "news_article", - "sentence": { - "text": "A Perth jewellery maker bit his wife's face in a drunken attack, forcing her to spend \u00a3400 on reparative skin treatment to remove his teeth marks.", - "media_hash": "519237e2ed1eb722adb4222dae773ecd6cedd2836e5c6e3690dc019e", - "sequence": 40, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Sacheera Acharige", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.712725 - } - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "The chains can be five or six deep, the profit margins getting smaller each time.", - "media_hash": "a0b797eb2fc25cdecee569bbe63f62a5965faebfbd116c83824ef599", - "sequence": 262, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "About a quarter of all the theft Dawber sees comes from curtain-slashing.", - "media_hash": "bca04396c0afda0a183fbda2ea74e140b160acebe3894826bf640d8f", - "sequence": 74, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Insurance premiums rise with every claim.", - "media_hash": "2a559fb7067c141a436519488fee3764a4d1c16c780de4ec7a4226c1", - "sequence": 51, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.6831300000000002 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "A drug dealer fled police in his underwear while his accomplice flooded a bathroom in a bid to flush \u00a310,000 worth of heroin down a toilet.", - "media_hash": "6e70378c058f83e4a84629016dd2f2b455d6009bc591ba178a123035", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.68177 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shoot her': Woman recalls terrifying moment masked men threatened her life during home invasion in Brisbane", - "publication_date": "2026-03-31T01:16:42", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692845/home-invasion-brisbane-rochedale-south.html", - "media_type": "news_article", - "sentence": { - "text": "A woman was held at knife point when four armed men ransacked her Brisbane home, breaking her finger while attempting to call the cops", - "media_hash": "265cf0e52185a5ee090ed3fbed7fd98166a4d9f97729d3f5d9ff9afd", - "sequence": 12, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.68177 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "On the anniversary of Valerie Forde\u2019s death, we must deliver the change Black women need", - "publication_date": "2026-03-31T10:31:00", - "publication": "politicshome-house", - "url": "https://www.politicshome.com/opinion/article/anniversary-valerie-fordes-death-deliver-change-black-women-need", - "media_type": "news_article", - "sentence": { - "text": "If we are serious about ending violence against women and girls, the system has to work for those who currently trust it least.", - "media_hash": "1494b9ee3e08582da86fa5034aba8489b62cb6da296eb6d0f6554006", - "sequence": 41, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Abena Oppong-Asare", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.671075 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T00:17:49", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "We are sliding towards becoming a society in which we suffer some of the worst aspects of a police state - above all, an insidious and dangerous erosion of our freedom of speech - with none of the more tolerable aspects of authoritarianism, specifically its stern punishment of petty offenders.", - "media_hash": "008da20bcd7eb632963d31fd4f8b5a62da9e02cfe5b553d71d503021", - "sequence": 41, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "ANTHONY STANSFELD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.664635 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "He quietly watched his victim before walking up to his home and stabbing him", - "publication_date": "2026-03-31T11:15:06", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/quietly-watched-victim-before-walking-33690193", - "media_type": "news_article", - "sentence": { - "text": "He quietly watched his victim before walking up to his home and stabbing him", - "media_hash": "e69bf940e7e6b14913b014730846d1978be7f798cd7665de7193b01c", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - } - } - } -}, -{ - "title": "Madeleine McCann suspect \u2018chased out of town\u2019 as locals launch furious protest", - "publication_date": "2026-03-31T09:29:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188599/madeleine-mccann-suspect-chased-out-of-town", - "media_type": "news_article", - "sentence": { - "text": "In addition to raping the woman, who has since died, Brueckner has convictions for child abuse and drug trafficking.", - "media_hash": "b593d1d56a53dd53de8f6da3e9d9e8fe09e95c75be97a4af3044e226", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "`Crude but viable\u00b4 explosive device deployed in attack...", - "publication_date": "2026-03-31T13:39:29", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694929/Crude-viable-explosive-device-deployed-attack-Lurgan-police-station.html", - "media_type": "news_article", - "sentence": { - "text": "Those responsible for the hijacking of a delivery driver and the attack on the PSNI station in Lurgan have nothing to offer our communities but harm, fear, and disruption.", - "media_hash": "835025b2923745542a39e1e7c43efca282fc6b82899624f8b9af55ca", - "sequence": 6, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Police Service of Northern Ireland (PSNI)", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Teenager stabbed at McDonald's as boy, 15, arrested", - "publication_date": "2026-03-31T19:52:59", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/teenager-stabbed-mcdonalds-boy-15-33694224", - "media_type": "news_article", - "sentence": { - "text": "\"A teenage boy was taken to hospital with a stab wound to his lower back.", - "media_hash": "cdddcdcb0b3263286e1539e407185519d968d580a080db198e973c2d", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Staffordshire Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - } - } - } -}, -{ - "title": "Delivery driver threatened at gunpoint in attack on police station", - "publication_date": "2026-03-31T11:51:32", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", - "media_type": "news_article", - "sentence": { - "text": "Delivery driver threatened at gunpoint in attack on police station", - "media_hash": "bafd12caf24981503fef349e1e0bdcb4156fdda4cac670149640e4d9", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", - "publication_date": "2026-03-31T09:03:09", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died on Saturday morning after suffering stab wounds", - "media_hash": "3f3a5db15722ea794ab23135b578f24e22e1854b0fd7b5712c8c9c09", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", - "publication_date": "2026-03-31T05:32:45", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692673/Family-girl-16-stabbed-death-row-boy-pay-tribute-world-Murder-police-arrest-fifth-teen.html", - "media_type": "news_article", - "sentence": { - "text": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", - "media_hash": "d4bb83a6cc0d160661b8c7cfef70c96dbcadd706a35c56565f9df3e3", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.62201 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "media_hash": "41e4ef1c41f17c6f276e2ccb87380b7382dc7e2f3f6b89548ddb350a", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Baroness Anne Longfield", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 2.652965, - "leo_s_topic": 2.652965, - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Teenager stabbed inside Birmingham McDonald's boy, 15, arrested", - "publication_date": "2026-03-31T19:12:29", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/teenager-stabbed-inside-birmingham-mcdonalds-36951524", - "media_type": "news_article", - "sentence": { - "text": "Just before 8.30pm yesterday, were called to a report of a stabbing inside McDonald's on Elmhurst Drive.", - "media_hash": "4b166a5af01f4a0df34f489d3a118e4c5dfa3ac674020a480e75463e", - "sequence": 15, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scott Mills' former BBC Radio colleague bluntly asked 'did you hear rumours?' - after it emerges that police probed the DJ for 'serious sex offences against teenage boy' in 2016", - "publication_date": "2026-03-31T12:56:00", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tv/article-15694123/Scott-Mills-former-BBC-Radio-colleague-bluntly-asked-did-you-hear-rumours-emerges-police-probed-DJ-sex-offences-against-teenage-boy-2016.html", - "media_type": "news_article", - "sentence": { - "text": "The investigation related to allegations of serious sexual offences against a teenage boy.", - "media_hash": "673b8b616ee8796cada44fcc4524ef1381b078564bdc4f69dd1048aa", - "sequence": 34, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", - "publication_date": "2026-03-31T10:13:51", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", - "media_type": "news_article", - "sentence": { - "text": "Double cop-killer Freeman was shot dead by an elite specialist police crew after he was tracked down to his rural lair, before firing on cops with a gun he stole from one of his victims.", - "media_hash": "1cc8e0eade4e84c3daff06499443860ae68589b220fddb1f953828e7", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teenagers charged with murdering 16-year-old girl", - "publication_date": "2026-03-31T09:09:21", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694025/Three-teenagers-charged-murdering-16-year-old-girl.html", - "media_type": "news_article", - "sentence": { - "text": "Three teenagers charged with murdering 16-year-old girl", - "media_hash": "4e43f87dd39f1b716a113c51cd169f74bf749e4fc1071a5858abaccd", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shoot her': Woman recalls terrifying moment masked men threatened her life during home invasion in Brisbane", - "publication_date": "2026-03-31T03:35:02", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692845/home-invasion-brisbane-rochedale-south.html", - "media_type": "news_article", - "sentence": { - "text": "'Shoot her, shoot her,' another man urged.", - "media_hash": "e57b52cbdac0165f123ad5e6249c0e007304f94ef1b27f13db554f41", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T11:11:44+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/TheSun/status/2038937281260585139", - "media_type": "social_post", - "sentence": { - "text": "Teen among three people charged with murder of girl found 'stabbed in back' https://t.co/9jUMuBDXYs", - "media_hash": "e0336b5fb65eb3e1258e7b3196304c0d6b6d79e3703df2954a8986fb", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Teen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - } - } - } -}, -{ - "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", - "publication_date": "2026-03-31T09:03:09", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died at the weekend after suffering stab wounds 'in her back' following an alleged 'row over a boy'.", - "media_hash": "45bbbc6e1baea1d5c7fcef2ce474095dd101fa493d50ccaab5fb00bb", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", - "publication_date": "2026-03-31T09:03:09", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "She had been stabbed in the back and there was quite a bit of blood.", - "media_hash": "560cede5349951e47ec2d491a396950a862cd09cead1568a363ef4fa", - "sequence": 85, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Wayne Mallows", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sides make closing arguments in the trial over the 2024...", - "publication_date": "2026-03-31T21:27:43", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696247/Sides-make-closing-arguments-trial-2024-killing-New-York-City-police-officer.html", - "media_type": "news_article", - "sentence": { - "text": "The 36-year-old also faces other charges, including attempted murder.", - "media_hash": "a7a4f0abd27fc3df3b114a75d051e3acdf4924464225c9c0489486b2", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pervert caused innocent woman to be arrested in sick shower clips probe", - "publication_date": "2026-03-31T15:56:11", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25985500.glasgow-pervert-appears-court-sick-shower-clips/", - "media_type": "news_article", - "sentence": { - "text": "Mould - posing as the woman, but using a fake name for her - went on to send the sick clips to a fellow paedophile, who was later snared with the videos.", - "media_hash": "e16e6391d35d96c21667f428e10216d9bee8acbb939526fc1a1dfe44", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Timeline of Scott Mills' career and police probe after BBC sack Radio 2 star", - "publication_date": "2026-03-31T13:06:02", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/entertainment/celebrity/timeline-scott-mills-career-police-36948752", - "media_type": "news_article", - "sentence": { - "text": "It is understood that Mills' departure relates to a historic police investigation into alleged \"serious sexual offences\" against a teenage boy.", - "media_hash": "34cd8a48302908862e647a3927000525bc52944852bb33abf4672657", - "sequence": 7, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - } - } - } -}, -{ - "title": "He quietly watched his victim before walking up to his home and stabbing him", - "publication_date": "2026-03-31T11:15:06", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/quietly-watched-victim-before-walking-33690193", - "media_type": "news_article", - "sentence": { - "text": "He brandished a kitchen knife and swung at the victim, and caused a piercing wound to his chest.", - "media_hash": "9af7d59b59198eac403dd3a6a04e414e00be51523221a8a112d76289", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Walter Kanhukamwe", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - } - } - } -}, -{ - "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", - "publication_date": "2026-03-31T08:45:06", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", - "media_type": "news_article", - "sentence": { - "text": "Cop killer Dezi Freeman was shot dead by an elite specialist police crew on Monday", - "media_hash": "94932e8b0ee5dc79c3e90c7be0c5f857da66ac558b4b0ec4f1e071e4", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Everything we know about Dezi's secret hideaway and how he survived 216 days in the bush undetected", - "publication_date": "2026-03-31T08:45:06", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690477/Everything-know-Dezis-secret-hideaway-survived-216-days-bush-undetected.html", - "media_type": "news_article", - "sentence": { - "text": "The hour-long standoff ended in bloody chaos after Freeman shot two officers dead as they attempted to pry open his door.", - "media_hash": "6db82fb8be6c63e411b1d75591be3b38be1fa35e31b99421e0c44ec4", - "sequence": 20, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Revealed: The truth about the remote compound where Dezi Freeman made his last stand in a shootout with cops", - "publication_date": "2026-03-31T05:00:04", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693293/dezi-freeman-farmer-denies-harbouring-victoria.html", - "media_type": "news_article", - "sentence": { - "text": "Sen Const Vadim De Waart-Hottart and Det Leading Sen Const Neal Thompson were murdered by Freeman", - "media_hash": "caf87e53238e8db4969eef4ba32a5ba48c955ddd7dd25b0e58dd6a5a", - "sequence": 48, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New police taskforce to investigate Epstein's alleged UK sex ring", - "publication_date": "2026-03-31T16:59:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694299/New-police-taskforce-investigate-UK-exploitation-sexual-abuse-linked-Jeffrey-Epstein.html", - "media_type": "news_article", - "sentence": { - "text": "Detectives poring over the welter of material released by the US Department of Justice have set up a Gold Group of specialists to look into allegations of sexual offending, including abuse, exploitation and trafficking carried out in the UK.", - "media_hash": "e6b20c13fd7129ff7abf99e83019796f2bab18d078b3e135159b2187", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New police taskforce to investigate Epstein's alleged UK sex ring", - "publication_date": "2026-03-31T16:59:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694299/New-police-taskforce-investigate-UK-exploitation-sexual-abuse-linked-Jeffrey-Epstein.html", - "media_type": "news_article", - "sentence": { - "text": "He died in prison in 2019 after being found hanged in his cell while awaiting trial for child trafficking offences.", - "media_hash": "4edeaa7c5056435815ff886d70950a4ad29957c42b685d7ff664457f", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", - "publication_date": "2026-03-31T14:54:34", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", - "media_type": "news_article", - "sentence": { - "text": "The device, which was placed in the boot of the car, has been described as \"about the size of a briefcase\" and was said to have \"carried a huge amount of danger\", putting both the driver of the car and those in the station at risk.", - "media_hash": "b0f2474b7d851eef410ebc3e5838ea6f07438f5bfbaf26aff7f8c4fe", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", - "publication_date": "2026-03-31T14:54:34", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", - "media_type": "news_article", - "sentence": { - "text": "The assessed threat level for dissident republican attacks in Northern Ireland remains substantial.", - "media_hash": "10303f5d07658cf589ea4451257404982a8f78a4eb587f0617108d7f", - "sequence": 15, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "PSNI", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Girl, 8, kept uncle's sperm in order to prove she was raped after family dismissed her", - "publication_date": "2026-03-31T19:05:16", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/crime/girl-8-kept-uncles-sperm-36951490", - "media_type": "news_article", - "sentence": { - "text": "After her uncle forced her into oral sex, she collected his biological material and presented it to other family members, who subsequently reported the crimes to the police.", - "media_hash": "33f313cba0bf34c70324b9f35589f5f049f97990455b146f89f40fa7", - "sequence": 9, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Respectful' BBC drama on murder of Sarah Everard to air", - "publication_date": "2026-03-31T15:55:37", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cql72rqr73ko", - "media_type": "news_article", - "sentence": { - "text": "Everard was abducted, raped and killed by serving Metropolitan Police officer Wayne Couzens in south London on 3 March 2021.", - "media_hash": "ad4c2b754171d9093b451ce2bb9d0e2a1f7ff1a272d0db0f0ba3e334", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "dev": { - "blah": 2.62201 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "British 'serial killer' who is still on the loose: Coroner lost her job for raising the alarm after FIVE elderly couples died in murder suicides in the heart of leafy Cheshire\u2026 but could she be proved right...", - "publication_date": "2026-03-31T06:50:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/crime-desk/article-15691477/British-serial-killer-loose-Miss-Marple-coroner-lost-job-raising-alarm-FIVE-elderly-couples-died-murder-suicides-heart-leafy-Cheshire-proved-right-along.html", - "media_type": "news_article", - "sentence": { - "text": "She was hit on the head and face, strangled then stabbed in the neck.", - "media_hash": "ff841f544cb2ddaf70a8d47d94fa27af92b99669234580225abcd31d", - "sequence": 96, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Stanley Wilson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peggie Wilson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "It's rare for drivers to be assaulted, though people within the industry told me stories of drivers being threatened with knives, machetes, baseball bats and, on one occasion, a gun.", - "media_hash": "74f751dc4adef21b082a52993c2873135532833690f99a51bb0f5b7e", - "sequence": 196, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Delivery driver forced at gunpoint to take object to...", - "publication_date": "2026-03-31T11:49:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694011/Delivery-driver-forced-gunpoint-object-police-station.html", - "media_type": "news_article", - "sentence": { - "text": "I utterly condemn the reckless act of violence overnight in Lurgan directed at the police, which forced dozens of families from their homes and put people's lives at risk.", - "media_hash": "6344b9944f7f2a9cd887f3edea6cfcdbde28a23e7855881aca0b5e24", - "sequence": 10, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Hilary Benn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Teenage killer is caught out after his 'thoughtless act' at crime scene", - "publication_date": "2026-03-31T00:36:55", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/teenage-killer-caught-out-after-36946380", - "media_type": "news_article", - "sentence": { - "text": "Police say pregnant mum, 18, shot dead by 29-year-old boyfriend in Philadelphia", - "media_hash": "a53f1239573b8d0bc65b5f875e8a05e42159d26d9a3676ee4f909d25", - "sequence": 13, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", - "publication_date": "2026-03-31T13:25:47", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", - "media_type": "news_article", - "sentence": { - "text": "This is the moment a man who smothered his ex to death with blue tape the day after they broke up confessed to police 'I've killed my girlfriend' on the side of a motorway.", - "media_hash": "b33c31c8ddb93359cc386628164e243202a52ed8b2d7f5cb39f29dc5", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", - "publication_date": "2026-03-31T06:55:17", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", - "media_type": "news_article", - "sentence": { - "text": "Neighbour Wayne Mallows described how he tried to save the girl but she had been stabbed in the back.", - "media_hash": "407e65976f5dd4365607567593f66b9eb7865dee00a547d7d8b9879b", - "sequence": 29, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "Baroness Anne Longfield, a former children's commissioner for England, who is chairing the inquiry, said: 'Children across England and Wales were and are sexually abused and exploited.", - "media_hash": "05a1d1409b4568876d59dc75732e40d8060baf0a29eb3e1e49af81ad", - "sequence": 15, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Baroness Anne Longfield", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 2.62201, - "leo_s_topic": 2.62201, - "crime": 2.62201 - }, - "demo": { - "race__ethinicy__religion": 2.7747900000000003 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The young faces of Chloe Watson Dransfield stabbing accused as they're pictured for first time", - "publication_date": "2026-03-31T16:07:36", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/faces-chloe-watson-dransfield-stabbing-36950853", - "media_type": "news_article", - "sentence": { - "text": "Chloe Watson was attacked after a party in Austhorpe, Leeds, at 5.55am on Saturday before being rushed to hospital where she was sadly pronounced dead.", - "media_hash": "a2e4a9f45bb8cb292377eebb980b18d6656d9ee1c323d5a40805bbc5", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - } - } - } -}, -{ - "title": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", - "publication_date": "2026-03-31T14:29:44", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693733/St-Kilda-Melbourne-Jewish-stolen-car-arrest.html", - "media_type": "news_article", - "sentence": { - "text": "Footage showed the stolen Hyundai sedan making a right-hand turn from the wrong lane and female occupants appearing to yell 'f*** Jews' at the group of Jewish men.", - "media_hash": "ee2585fcb3e38e94d65284b8a71ef333d48ae9e7584c91dc641a1a14", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": { - "race__ethinicy__religion": 2.62201 - }, - "aapfactcheck": { - "crisis": 4.6220099999999995 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Watchdog issues Stephen Lawrence warning over police racism progress - 'trust is broken'", - "publication_date": "2026-03-31T23:01:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/watchdog-issues-stephen-lawrence-warning-36950073", - "media_type": "news_article", - "sentence": { - "text": "The report into the racist murder of the 18-year-old in 1993 found the Metropolitan Police had been incompetent and was institutionally racist.", - "media_hash": "cdc0f3fb7a3de62250e008d1625ee43bbc3cf855fb076999eaf1addb", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", - "publication_date": "2026-03-31T13:25:47", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694549/Moment-murderer-smothered-killed-girlfriend.html", - "media_type": "news_article", - "sentence": { - "text": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", - "media_hash": "6911c4c90175ea9b2d25d52de078ab5789ee9c54ba111a19d7761d65", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Leeds teen 'stabbed over boy' sent desperate last message to friend as 3 charged", - "publication_date": "2026-03-31T08:19:39", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/leeds-teen-stabbed-over-boy-36946974", - "media_type": "news_article", - "sentence": { - "text": "A teenage girl \"stabbed in the back over a boy\" reportedly messaged a friend asking to be picked up from an \"out of hand\" house party moments before.", - "media_hash": "0b7e5fd9234d26d0004df24e90fcd52b7ee2c0f276e34ff9c7a8abc0", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Chloe Watson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "The Met police has said the former BBC Radio 2 presenter Scott Mills was investigated in 2016 in relation to allegations of his stanoic serious sexual offenses against a teenage boy.", - "media_hash": "43dea9eb2521fe7c308ff7b4d5de4b49f341f2de479b9f30e2961695", - "sequence": 811, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - } - } - } -}, -{ - "title": "The young faces of Chloe Watson Dransfield stabbing accused as they're pictured for first time", - "publication_date": "2026-03-31T16:07:36", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/faces-chloe-watson-dransfield-stabbing-36950853", - "media_type": "news_article", - "sentence": { - "text": "A teenage girl and boy accused of stabbing a 16-year-old girl to death have been pictured for the first time.", - "media_hash": "67663cdd0ed434a16ebfe3704856e1b5b5a5ea9181eca83432110c98", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - } - } - } -}, -{ - "title": "Delivery driver held at gunpoint and forced to take suspicious object to police station", - "publication_date": "2026-03-31T08:58:48", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/delivery-driver-held-gunpoint-forced-36947265", - "media_type": "news_article", - "sentence": { - "text": "Delivery driver held at gunpoint and forced to take suspicious object to police station", - "media_hash": "35312153a2ab81779a8e3a654d3ba4b1d1efc5d26f4a0d13901c7770", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", - "publication_date": "2026-03-31T23:38:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694303/Grooming-gang-inquiry-expose-bungling-police-failed-investigate-gangs-Asian-men-chairman-pledges.html", - "media_type": "news_article", - "sentence": { - "text": "And the father of another Rotherham grooming gang victim said police and officials who turned a blind eye or covered up the abuse of girls by Asian gangs should be jailed and forfeit their pensions.", - "media_hash": "e7154c70200c292578a8e93beed41415b15ea8f0bc5282ec6489472b", - "sequence": 47, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Father of another Rotherham grooming gang victim", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 2.62201, - "leo_s_topic": 2.62201, - "crime": 2.62201 - }, - "demo": { - "race__ethinicy__religion": 2.62201 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "A striking thing about the cargo crime crisis is that the firms most affected are doing little to alleviate it.", - "media_hash": "214c6546986f4c70eef754bf0b44280d11d0dd0cb8acad1f229c2696", - "sequence": 284, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.6127849999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", - "media_hash": "fe5392c18430df8ead347a4a1f48e2f535a42890e1974abebee7a12a", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.61247, - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "A fifth arrest has been made after a 16-year-old girl died after being stabbed in Leeds.", - "media_hash": "3b55ab72bbc1ecdb888885f2ce0be7aebe1886b010e1d767f0246930", - "sequence": 117, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - } - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "This is where truck parking is most oversubscribed and where regional crime gangs in Leeds, Liverpool and Birmingham overlap.", - "media_hash": "78148c8cb91ccf40dfb1b0998d45be7b26655ab88565e9fd5a275f69", - "sequence": 218, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", - "publication_date": "2026-03-31T11:34:58", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", - "media_type": "news_article", - "sentence": { - "text": "Paterson dumped nine kilos of the class A drug concealed in a black box beside a housing estate near Hogganfield Loch in the city's East End.", - "media_hash": "fab45234e557e0a7c22045bf647d91f0600b5d8fbcfb1d7d53dabf69", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "William Paterson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "Following Wheeler-Spink's arrest, officers discovered two lock knives, a dagger and a knife in a sheath alongside almost \u00a312,000 worth of cocaine and cannabis.", - "media_hash": "d507ec94b94158febc2c615d009c7bbe8ffa0b67284048bc68f3ea27", - "sequence": 25, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Lurgan police station targeted in 'serious' security alert as town on lockdown", - "publication_date": "2026-03-31T07:15:50", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-lurgan-police-station-targeted-36946680", - "media_type": "news_article", - "sentence": { - "text": "She added about 100 homes have been evacuated as a result of the incident and that a controlled explosion has taken place.", - "media_hash": "20bcd06d27c7f18c152315fde0a2e38127260be5a2489ca451ea6264", - "sequence": 7, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Carla Lockhart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Married police officer who kissed and pursued relationship with 'highly vulnerable' domestic abuse victim avoids prison", - "publication_date": "2026-03-31T16:48:39", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694775/Married-police-domestic-abuse-victim-prison.html", - "media_type": "news_article", - "sentence": { - "text": "But Judge Talbot-Hedley said there was 'a clear power imbalance' in their relationship with him being a police officer and her being a victim of domestic violence involving 16 cases of abuse in 2021.", - "media_hash": "eb53249e711c4e63757d5e4c8a04610679393ab6de5e84d2c1557c8e", - "sequence": 39, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Judge Nicola Talbot-Hadley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "aapfactcheck": { - "women": 2.61247 - }, - "pa-media": {}, - "maldita": { - "crime": 2.61247 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teens and man charged after 'armed gangs clash' at Edinburgh Asda car park", - "publication_date": "2026-03-31T16:41:41", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/three-teens-man-charged-after-36950874", - "media_type": "news_article", - "sentence": { - "text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", - "media_hash": "8396cc78831f783b6122529d651a82b24dfec458229190f68d8ad67c", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.61247, - "crime": 2.61247 - } - } - } -}, -{ - "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", - "publication_date": "2026-03-31T23:04:00", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", - "media_type": "news_article", - "sentence": { - "text": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", - "media_hash": "859e8e38061a7f115a310c9d6fc683f3610835c1be3559ea6dc10293", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man who dumped \u00a3900k of cocaine during police chase ordered to repay thousands", - "publication_date": "2026-03-31T11:34:58", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25983715.glasgow-drug-courier-ordered-repay-thousands-court/", - "media_type": "news_article", - "sentence": { - "text": "At a previous hearing, the court heard how Paterson had thrown a box of cocaine worth hundreds of thousands of pounds from a car window into the street during a police pursuit in March 2023.", - "media_hash": "5e2531383ccd44288ad33f9f9d0aeff633a9b199f4a9ce6fdbbaf37d", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "William Paterson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "Another of McGowan's phones was confiscated which held a video displaying what seemed to be 11kg blocks of cocaine and heroin.", - "media_hash": "e3ec0b1d640d0f65334340bbf77d2caea41f4dd50f057e1f896d1640", - "sequence": 20, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Family pay tribute to girl, 16, who was \u2018stabbed in the back over a boy\u2019", - "publication_date": "2026-03-31T06:55:17", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/family-pay-tribute-girl-16-stabbed-back-a-boy-27779064/", - "media_type": "news_article", - "sentence": { - "text": "A fifth teenager, a 17-year-old boy, was arrested on suspicion of murder on Monday after four others were held over the weekend.", - "media_hash": "878da2067226cd1d5b50928cc3bbb97bfb81547b532f5e9124066027", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "He preyed on a young colleague for months yet his anonymity is protected by police", - "publication_date": "2026-03-31T15:25:54", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/preyed-young-colleague-months-yet-33692494", - "media_type": "news_article", - "sentence": { - "text": "During the one-and-a-half day hearing the panel heard that the senior officer sent sexually inappropriate messages to his younger, more junior, colleague whilst on and off duty, over several months.", - "media_hash": "cc578a6bcbb950441b7e4032e80341d508a537ff168a5846c4a5888a", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Officer Y", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.598275 - } - } - } -}, -{ - "title": "He preyed on a young colleague for months yet his anonymity is protected by police", - "publication_date": "2026-03-31T15:25:54", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/preyed-young-colleague-months-yet-33692494", - "media_type": "news_article", - "sentence": { - "text": "A senior South Wales Police officer who \"should have been a role model\" preyed on a younger, more junior colleague for months with \"malign intent for sexual gratification\".", - "media_hash": "a30061c71bbc94d757c848879d9f31fceaeb85ea969e9b0ca0a32dcb", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.598275 - } - } - } -}, -{ - "title": "Girl, 8, kept uncle's sperm in order to prove she was raped after family dismissed her", - "publication_date": "2026-03-31T19:05:16", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/crime/girl-8-kept-uncles-sperm-36951490", - "media_type": "news_article", - "sentence": { - "text": "Given the seriousness of the allegations and the risk of the suspect fleeing, the DPCA requested preventive detention, along with additional measures including a search of his property and access to his digital data.", - "media_hash": "c3299aaa6d442ecb556f64b47cd25dda4039e837667e4e1fe9b38131", - "sequence": 15, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.58644 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 2024 killing of an NYPD officer once caught Trump's...", - "publication_date": "2026-03-31T23:16:53", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696247/Sides-make-closing-arguments-trial-2024-killing-New-York-City-police-officer.html", - "media_type": "news_article", - "sentence": { - "text": "The bullet struck the officer below his bulletproof vest, mortally wounding him.", - "media_hash": "935f8e8a2aa122eae1ab522b7a6a44386152ca665c99f32a9fef9fab", - "sequence": 27, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.58268 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Attack `sad attempt\u00b4 by dissident republicans to make...", - "publication_date": "2026-03-31T14:54:34", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695191/Attack-sad-attempt-dissident-republicans-make-relevant--PSNI.html", - "media_type": "news_article", - "sentence": { - "text": "If carried out by dissidents, it would be one of the most serious attacks since the shooting of senior detective John Caldwell in Omagh in February 2023.", - "media_hash": "4a3246224d9b78248d152a408457f7c34d2933dc43a405455c7bc711", - "sequence": 8, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.57747 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Major update after teen stabbed to death in UK city as devastated mum pays tribute", - "publication_date": "2026-03-31T08:31:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188614/major-update-chloe-dransfield-stabbed-death-leeds", - "media_type": "news_article", - "sentence": { - "text": "The online appeal had raised more than \u00a313,000 by Monday evening.", - "media_hash": "dc992e34c44fbbb60f3f2bd62298b7dbd67875789417b46e4b62a266", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "He travels about 30,000 miles a year and brings his own sandwiches.", - "media_hash": "a159e2ab9a38826c287f110ada1c40595d4e59be4f10951bced5606f", - "sequence": 81, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Moment aspiring drill rapper tells police 'poodles are more aggressive' days before his XL Bullies mauled grandmother to death", - "publication_date": "2026-03-31T15:41:27", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694663/Aspiring-rapper-left-pensioner-charge-XL-Bullies-mauled-death-jailed-10-years.html", - "media_type": "news_article", - "sentence": { - "text": "Footage shows the moment an aspiring drill rapper told police poodles are 'more aggressive' than XL Bullies just days before his dogs mauled a pensioner to death.", - "media_hash": "eb5892343de2a890f8ca7e1382f5f4b680417a9f76900bb19cbef371", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.56732 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", - "publication_date": "2026-03-31T15:44:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", - "media_type": "news_article", - "sentence": { - "text": "The Met, with a workforce of 33,293, had the highest number of dismissals, followed by Greater Manchester, Thames Valley and West Midlands forces.", - "media_hash": "64b246b37d716d6bf23a47ea17ed7dec816cc9ff91e86461c4c9dee3", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Absolute chaos' at crisis-hit BBC as Scott Mills becomes ANOTHER scandal-hit presenter to be sacked - as it's revealed he was probed by police in 2016 over 'serious sex offences against teenage boy'", - "publication_date": "2026-03-31T00:27:53", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15692897/chaos-BBC-Scott-Mills-sacked-sex-offences-teenage.html", - "media_type": "news_article", - "sentence": { - "text": "The biggest breakfast show in the country currently brings in a weekly audience of some 6.5million, after listeners lost under Mills' predecessor Zoe Ball returned.", - "media_hash": "c08ca6d8eb77dc8b10046e907a2c59e9e59a17b5985edef1e182a6d7", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.556405 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", - "media_hash": "35bd5c83dbd7a93284ceef661c43ba2b5c15a8203e95e66da1babfd6", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997, - "crime": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EU voices concern over reports of violence during...", - "publication_date": "2026-03-31T13:07:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15694833/EU-voices-concern-reports-violence-Serbia-elections-urges-action.html", - "media_type": "news_article", - "sentence": { - "text": "People clash with Serbian police officers during a local election, in Crvenka, small town located in the municipality of Kula, Serbia, Sunday, March 29, 2026.", - "media_hash": "3c40609a7bc7bc73c54d53bc7d162a64183e963347894f43543907f5", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Glasgow gang boss Steven Lyons 'to be deported from Bali' after arrest", - "publication_date": "2026-03-31T13:50:52", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/scottish-news/25984549.glasgow-gang-boss-steven-lyons-to-deported-bali/", - "media_type": "news_article", - "sentence": { - "text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", - "media_hash": "a153fc2ac7b82fa57fc3a86af99525f97e7a529a42c0c5ebcaad8816", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Interpol", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5503549999999997, - "crime": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Crime dipped three percent on buses, 2.7 per cent on the Docklands Light Railway and 40 per cent on Trams in the same time period.", - "media_hash": "ee448f1196842bd3dca8d5ef519cd577b6c0cafec42cb3314322af18", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "'Last year we received a 20 per cent increase in reports, showing us that more passengers know how to report crime to us and have the confidence to do so, knowing they will be believed and taken seriously.", - "media_hash": "8f3de04209f19e8e9e3dab20a18c78ac149abbad1e1258ef6d378eab", - "sequence": 45, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Transport Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotland's criminal underworld \"in meltdown\" as cop crackdown targets gang bosses", - "publication_date": "2026-03-31T10:42:38", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/scotlands-criminal-underworld-in-meltdown-36945133", - "media_type": "news_article", - "sentence": { - "text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", - "media_hash": "7264fa2229fb76c6edfe61ce3c53c50d7f951a1a336d66894a56a06b", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.5459449999999997, - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "Phone records reveal that on one instance, 70 messages were dispatched to numerous contacts within a 10-minute timeframe.", - "media_hash": "9f33fc4d785376e697b88bbec8ab481d465d3359b0055aff6147fd2f", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "Nottinghamshire Police detectives confiscated assets belonging to McGowan including \u00a328,186 in cryptocurrency and bank holdings.", - "media_hash": "c8a3cc1bca5040d52e42f1a3ac3a6f0ef2b167bab30333bf4d687644", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Since 2017, when Dawber joined Navcis, the number of cases that reach him have more than tripled, to about 5,000 each year.", - "media_hash": "6b6c72166df36a02b08c4c526eb305cf1534ed14a8f524fc62aabf16", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Drivers can reach it from the ports at Dover and Felixstowe; drivers departing Leicester with goods can reach 95% of the country in their allotted driving time.", - "media_hash": "6674ff084a727fcf6f07f935468f8d2fba1e82f96f3716d4171ca89c", - "sequence": 222, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", - "publication_date": "2026-03-31T15:44:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", - "media_type": "news_article", - "sentence": { - "text": "According to the College of Policing, the Metropolitan Police had 183 of the 735 UK-wide dismissed in the year to March 31, 2025 - about one in four.", - "media_hash": "fad6cf29af67d5eae23d7e56e9adac711882ef8c9a5745ebf46356fd", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Metropolitan Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teenagers appear in court charged with murder of Chloe Watson Dransfield", - "publication_date": "2026-03-31T12:33:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/three-teenagers-appear-court-charged-36949038", - "media_type": "news_article", - "sentence": { - "text": "A relative of Chloe's has launched an online fundraising appeal which had accumulated nearly \u00a315,000 by Tuesday morning.", - "media_hash": "bb690ba842a44c0bf5bc15e3966ca70c98a7a526064c2d86374fadb3", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "A relative of Chloe's", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "Teens accused of murdering Chloe Watson Dransfield appear in court as family weep", - "publication_date": "2026-03-31T11:26:00", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-teens-accused-murdering-chloe-36948422", - "media_type": "news_article", - "sentence": { - "text": "One of Chloe's relatives has set up an online fundraising page which had raised nearly \u00a315,000 by Tuesday morning.", - "media_hash": "4eb4c21c1e6403359a7a55ef62f1bd352051f1da51d8dedeca642afd", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Between 2023 and 2025, crimes on the Underground rose 12.5 per cent, while they rose 60.4 on the newest part of the network, the Elizabeth Line, and rose 15 per cent on the Overground.", - "media_hash": "7ada424afdb3b64e582e0b44429bf11db8485196a6338062f63ecbf6", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "London Assembly's Police and Crime Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T10:25:11", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "Research published this week shows British police forces failed to solve 92 per cent of burglaries in a year ending last March.", - "media_hash": "f93baef3dca6ec6abf2b750fff7f5e3786d2f642da994ed6bf6baea7", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC's Scott Mills sacked following 2016 police probe into 'serious sexual offences'", - "publication_date": "2026-03-31T06:25:19", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/bbcs-scott-mills-sacked-following-33688007", - "media_type": "news_article", - "sentence": { - "text": "Mills receives between \u00a3355,000 and \u00a3359,999 per year for his BBC duties, based on the 2024-2025 remuneration report.", - "media_hash": "a42f6f1ff983472c7aac614f7c23ebe89dd3765c985cf5004abceb0a", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "When accounting for lost revenues, VAT and insurance costs, cargo crime is estimated to cost the UK economy about \u00a3700m a year.", - "media_hash": "eca4fb9c541ff70e7073ec5e295e073f02f617755051aa9007cd3035", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Ever since, about 70 or so companies pay an annual fee (from \u00a3700 to \u00a32,500 depending on turnover) for access to the one-man cargo-crime department that is Mike Dawber.", - "media_hash": "b9569574086797e21f886149e1a01c1d948d6bfa28e6783f32473dc8", - "sequence": 161, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Of the 5,000 cases that Dawber deals with each year, only 300 or so result in arrests.", - "media_hash": "eb4b3338a5be2846d07121ca19d381ca107f4724f7caad2f8e9d8f4b", - "sequence": 247, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40329, - "score": 0.22529999999999994 - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", - "media_type": "news_article", - "sentence": { - "text": "Among the 500,000 present, there were just 25 arrests reported, two of which were for protesters attempting to climb columns at the National Gallery, and 18 of which were due to alleged support for Palestine Action.", - "media_hash": "308f6ce5e9468c789d248d7b70798ddf4b624e3d7f58246f09766006", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "ANTHONY STANSFELD: I know why police forces have given up in the fight against crime. No one will say it, but this is why I fear where things are heading...", - "publication_date": "2026-03-31T00:17:49", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/debate/article-15692817/ANTHONY-STANSFELD-police-forces-fight-against-crime.html", - "media_type": "news_article", - "sentence": { - "text": "British police forces failed to solve more than nine in ten burglaries in a year ending last March", - "media_hash": "0b37fd162032d9336c00833506f1009913630b22977355fc5335d589", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "ANTHONY STANSFELD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Man, 36, is charged with nine offences after seven people were injured when a car ploughed into crowds in Derby city centre", - "publication_date": "2026-03-31T23:45:06", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15696263/Man-36-charged-nine-offences-seven-people-injured-car-ploughed-crowds-Derby.html", - "media_type": "news_article", - "sentence": { - "text": "Four of the seven victims - four men and three women aged between 36 and 52 - have been discharged from hospital, police confirmed.", - "media_hash": "dbec99380e59ca97226f98c64332d3c373d3b5350fd66a9b1147e032", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Timeline of Scott Mills' career and police probe after BBC sack Radio 2 star", - "publication_date": "2026-03-31T13:06:02", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/entertainment/celebrity/timeline-scott-mills-career-police-36948752", - "media_type": "news_article", - "sentence": { - "text": "Mills, who earned between \u00a3355,000 and \u00a3359,999 annually for his work at the BBC, according to the 2024-2025 pay report, was reportedly sacked over the weekend.", - "media_hash": "2911b6f1fe2ef7b8c9f2aa6aee4d4f93e382636a781adc3950c2a821", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "Armed cops storm Wrexham hotel in major operation as officers seen with battering rams", - "publication_date": "2026-03-31T07:46:38", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/armed-cops-storm-wrexham-hotel-36946811", - "media_type": "news_article", - "sentence": { - "text": "Witnesses reported seeing more than 10 police vehicles at the hotel on Monday evening.", - "media_hash": "958fb06500dba28f251216c1ca19fe1abc69e94c1abb6e133397bd46", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Dawber didn't know what eyelash technology was, exactly, but he later learned that a pallet of it was worth more than \u00a3500,000.", - "media_hash": "20d6606bf80b58edd2b5091e9aef9b7581fcbb844efb4e8b4e2242ca", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "One supermarket chain fired 75 drivers last year on suspicion of collusion with thieves, yet the firm only reported seven of those to the police.", - "media_hash": "afa3c20b3ba9f3f304984337732fea21d030ae14653d8469dd247062", - "sequence": 191, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", - "media_type": "news_article", - "sentence": { - "text": "When they did, they substantially downplayed the size of the protest, quoting a Metropolitan Police figure suggesting 50,000 attendees - around 10% of what was reported almost everywhere else.", - "media_hash": "d92b2bde4c583e983a5f326f0c75488f9f889f00e0211742454b8419", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "BBC", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Metropolitan Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "Met cop sacked after 'organising sex workers for pals during drug jaunts abroad'", - "publication_date": "2026-03-31T15:44:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/met-cop-sacked-after-organising-36950433", - "media_type": "news_article", - "sentence": { - "text": "City of London Police had six - taking the total across the capital to 189.", - "media_hash": "79e328f99ca245e7886c568d110d8360a6a6e8ce4e7153de0809b37c", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC's Scott Mills sacked following 2016 police probe into 'serious sexual offences'", - "publication_date": "2026-03-31T06:25:19", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/bbcs-scott-mills-sacked-following-33688007", - "media_type": "news_article", - "sentence": { - "text": "After dedicating over 25 years to BBC radio and television output, he stands as the broadcaster's 11th highest-earning presenter.", - "media_hash": "118a13352350ec05696c7be87e44aac54f3e90f79c077752dbdebbb2", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "When I first spoke with him last spring, he was investigating a case of stolen plastic drinking cups worth about \u00a370,000, and laptops worth \u00a3250,000.", - "media_hash": "6c2174825278da0c2ca9b7d614b3e3e6ccb826f028154a0ce6ae6a08", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mike Dawber", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "This was on top of the 1,300 investigations each year he assisted, the 300 or so arrests in which he played a key role, and the 50 or so police operations, from stakeouts to searches, he took part in.", - "media_hash": "165ed413d555bb04c8d654758c8272bded7027343ffb4b5741acd500", - "sequence": 168, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Of those, only about 10% result in convictions.", - "media_hash": "03065cb88c2151a3d566a8588a2ebec86c2f4bc8d3040d9f81eec3b0", - "sequence": 248, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 40329, - "score": 0.30689999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Police guarding Buckie paedophile\u2019s home insist \u2018all reasonable steps\u2019 are being taken to protect the public", - "publication_date": "2026-03-31T16:43:39", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/news/6987531/sex-offenders-police-protect-public/", - "media_type": "news_article", - "sentence": { - "text": "About 20 officers were in attendance on Well Road on the day.", - "media_hash": "465470abcdff454d29fe73909f786a64df3b0bc46f174f3c7a3e8026", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "Grooming gangs inquiry should probe every UK council...", - "publication_date": "2026-03-31T11:59:26", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694571/Grooming-gangs-inquiry-probe-UK-council-police-force--victim.html", - "media_type": "news_article", - "sentence": { - "text": "The inquiry has a maximum duration of three years, to conclude no later than March 2029, and has a budget of \u00a365 million.", - "media_hash": "04a109a0194cb37a77c1b85346ea5c509cf3d4b82c93897af4ab7404", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", - "publication_date": "2026-03-31T11:04:00", - "publication": "skynews", - "url": "https://news.sky.com/story/glasgow-drugs-courier-who-dumped-nearly-1631m-of-cocaine-during-police-chase-ordered-to-repay-thousands-13526383", - "media_type": "news_article", - "sentence": { - "text": "Glasgow drugs courier who dumped nearly \u00a31m of cocaine during police chase ordered to repay thousands", - "media_hash": "fb750cee63006367f5b1eb76e54eda2c95569caa7e2a5920d8bc93cf", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", - "publication_date": "2026-03-31T11:00:05", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693867/The-Criminal-Underground-Crimes-committed-Londons-Tube-network-46-cent-pandemic.html", - "media_type": "news_article", - "sentence": { - "text": "Around 48,000 crimes were reported across Transport for London (TfL) services in 2025 - up 46 per cent against a pre-pandemic average of 16,544.", - "media_hash": "e05a3fee3cdc0e966eae1ea103d57bc4079d481c10b71c51c0983d62", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 40329, - "score": 0.25739999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "crime": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "Among the members of Yarword's company, there were more than 400 losses of this type in 2024, compared with a handful of thefts from truck stops.", - "media_hash": "047f8e5969a4d92e95229cd27a1190204469843bf653904a48ca31b9", - "sequence": 143, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Ellie Gomersall: Marches are great but there\u2019s something we need to remember", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981974.marches-great-something-need-remember/", - "media_type": "news_article", - "sentence": { - "text": "Given the most recent statistics indicate 11.2 arrests annually per 1000 people in England and Wales overall, for 0.005% of march attendees to have been arrested on any charge shows that Saturday's march was extremely safe and peaceful, and claims or predictions of \"unrest\" were nothing short of anti-leftist scaremongering", - "media_hash": "7357d03d85a3e9819876a7f9951f6d6f99af139b1cb55854fe112341", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - } - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T16:54:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "'This proactive approach saw a 44 per cent increase in arrests last year, while shoplifting across London fell by four per cent.", - "media_hash": "b7295795ecbe4b110dbf8c99107f31a4488609bca52949e6492fa110", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Met Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Brutal' crime drama soars up Netflix chart as fans 'drop everything to watch'", - "publication_date": "2026-03-31T15:38:06", - "publication": "mirror", - "url": "https://www.mirror.co.uk/tv/tv-news/brutal-crime-drama-soars-up-36950587", - "media_type": "news_article", - "sentence": { - "text": "It currently sits as the fifth most-watched TV programme, and presently maintains a 90% score on review aggregator Rotten Tomatoes.", - "media_hash": "4507911021e5be3342b12672028944d6779d42100dcc70eeb0da7ddc", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three charged with murder over death of girl, 16", - "publication_date": "2026-03-31T08:32:14", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cn0w50dwd2jo", - "media_type": "news_article", - "sentence": { - "text": "Three people have been charged with murder over the fatal stabbing of a 16-year-old girl in Leeds.", - "media_hash": "e76aafe462f5933e08aa273ee0c909111b42ef8d79d52aca37ec6de4", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "West Yorkshire Police", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "dev": {}, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Three charged with murder of 16-year-old Chloe Watson Dransfield in Leeds", - "publication_date": "2026-03-31T08:17:14", - "publication": "mirror", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-chloe-watson-dransfield-charged-36947067", - "media_type": "news_article", - "sentence": { - "text": "Three teenagers have been charged with the murder of a 16-year-old girl who was found stabbed in the back in the street.", - "media_hash": "a7a76c872d87ba995563e4c8c2a798539c4e05f931970aa781248c4a", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Moment mob of youths run riot in M&S store as police watch on powerless yet again in lawless London", - "publication_date": "2026-03-31T11:54:31", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694175/Youths-Marks-Spencer-police-lawless-London.html", - "media_type": "news_article", - "sentence": { - "text": "Two members of the group remained outside, one sitting on a bike and the other patrolling the pavement, waving a huge machete to ward off any intervention.", - "media_hash": "953bc24f04d795e1c8743232fa3fba3c2e0f63fa3082a97e99f9dcba", - "sequence": 41, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 2.540725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Three teenagers charged with murder of girl, 16, who was stabbed to death in the street after 'row over boy'", - "publication_date": "2026-03-31T09:03:09", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "Three people were charged with murder today", - "media_hash": "2b4305cb78514d418de5b315d41bd77678b7b13f615625c271268382", - "sequence": 28, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Four charged after armed police descend on Asda car park after \u2018knife incident\u2019 in Edinburgh", - "publication_date": "2026-03-31T14:50:13", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/east-central/four-charged-after-armed-police-descend-on-asda-car-park-after-knife-incident-in-edinburgh", - "media_type": "news_article", - "sentence": { - "text": "Two males, aged 17 and 18, have been arrested and charged in connection with assault to endangerment of life, breach of the peace and weapons offences.", - "media_hash": "8db43dab4b38574b18ace1fa5dea039f588376f4a56bb831ce285a83", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - } - } - } -}, -{ - "title": "Gunmen force delivery driver to take suspected bomb to County Armagh police station", - "publication_date": "2026-03-31T10:26:26", - "publication": "guardian-news", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/lurgan-county-armagh-gunmen-delivery-driver-suspected-bomb", - "media_type": "news_article", - "sentence": { - "text": "Gunmen hijacked a car, placed a device inside and forced the occupant to drive the vehicle to a police station in Northern Ireland on Monday, prompting a security alert and the evacuation of about 100 homes.", - "media_hash": "e4759256c19f550f00d8c13ed854ee46dabb570f58358d7c17ba23ba", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Modern-day Fagin ran gang of teens to steal \u00a3100k of phones in two weeks and used old man with Motability car as getaway vehicle", - "publication_date": "2026-03-31T23:04:00", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695157/Modern-day-Fagin-ran-gang-teens-steal-100k-phones-two-weeks-used-old-man-Motability-car-getaway-vehicle.html", - "media_type": "news_article", - "sentence": { - "text": "For six of the raids, teenagers wearing gloves, balaclavas and hoodies stormed into the shops threatening violence to staff as they stuffed their bags with phones.", - "media_hash": "b94fc2e58e28668ab51a370cc0a5d0de8f438289a33437ef97f1f7be", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "35,000 pints of stolen Guinness, 950 wheels of pilfered cheese: can the UK\u2019s cargo theft crisis be stopped?", - "publication_date": "2026-03-31T04:00:30", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/stolen-guinness-cheese-crime-cargo-theft-crisis-mike-dawber", - "media_type": "news_article", - "sentence": { - "text": "The man in question had a \u00a31,000-a-week crack habit.", - "media_hash": "c8c6b626d2e679aafe466593c9e905f32fcd7b844c89a76133674e96", - "sequence": 243, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5326649999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Delivery driver threatened at gunpoint in attack on police station", - "publication_date": "2026-03-31T11:51:32", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c2k3vezpwlko", - "media_type": "news_article", - "sentence": { - "text": "\"We're describing this as a viable device so yes, we would say lives were at risk,\" he said.", - "media_hash": "d990d06ff93455e1eddbaf2a39b2cfef7fdf177061b9ed45dc65716f", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Bobby Singleton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.52653 - }, - "demo": {}, - "dev": { - "blah": 2.52653 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", - "publication_date": "2026-03-31T10:16:38", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/showbiz/breaking-scott-mills-questioned-over-36948099", - "media_type": "news_article", - "sentence": { - "text": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", - "media_hash": "aba4de005d7b5bcad93895cd3129010b6916327de038e449b38a7acf", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.52653 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scott Mills \u2018probed by police over serious sex offences against teenage boy\u2019", - "publication_date": "2026-03-31T06:48:37", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/scott-mills-probed-police-serious-sex-offences-teenage-boy-27779065/", - "media_type": "news_article", - "sentence": { - "text": "Scott Mills 'probed by police over serious sex offences against teenage boy'", - "media_hash": "6295e6a3861c065fe8a5fe765ecd17e7b509d2e57cb25d6859383c5b", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.52653 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "crime": 2.62201 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pictured: Beautician and man accused of stabbing girl, 16, to death in 'row over a boy' - as they appear in court accused of murder alongside teenager", - "publication_date": "2026-03-31T14:59:43", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693915/Three-teenagers-charged-murder-girl-16-stabbed-death.html", - "media_type": "news_article", - "sentence": { - "text": "The schoolgirl later died in hospital from knife wounds to her back.", - "media_hash": "cfcac94acc509614f237fbc6e0b08b095369abc5749abeb5d6cec4da", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.52653 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Drug dealer flees police raid in pants as accomplice floods bathroom with heroin", - "publication_date": "2026-03-31T08:30:56", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/drug-dealer-flees-police-raid-36946930", - "media_type": "news_article", - "sentence": { - "text": "The text alerted users that the line was actively accepting orders and customers would call the Vic Line number to purchase drugs.", - "media_hash": "5b2cfa26fba50cabae60ed4e019744a2619e64a0ccf5b66125b28f08", - "sequence": 19, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.52653 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", - "publication_date": "2026-03-31T12:31:49", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-rapper-ashley-warren-jailed-36949188", - "media_type": "news_article", - "sentence": { - "text": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", - "media_hash": "32d4febdb1bd760912d3f4e3a6caa348525373c55ea87010dc99460d", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5207699999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bar staff laughed in face of machete robber thinking he was \u2018prankster neighbour\u2019", - "publication_date": "2026-03-31T16:27:44", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/bar-staff-laughed-face-machete-robber-thinking-prankster-neighbour-27787616/", - "media_type": "news_article", - "sentence": { - "text": "Bar staff laughed in face of machete robber thinking he was 'prankster neighbour'", - "media_hash": "b8f6e086a9e0d9f1aaa17f56a7f2ef12520c12c2447758484e28321a", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5207699999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Jeremy Vine calls Radio 2 colleague Scott Mills' sacking 'unfair' because 'there's been no crime' after police probe was dropped - as he questions why DJ didn't get same mental health considerations as Huw Edwards", - "publication_date": "2026-03-31T16:52:57", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/tvshowbiz/article-15694393/Scott-Mills-Radio-2-colleague-Jeremy-Vine-forced-address-sacking-live-air-says-lot-people-confused-revealed-sexual-offence-accuser-16.html", - "media_type": "news_article", - "sentence": { - "text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", - "media_hash": "8f8acdeb03a606a3986ce30a94cec5ecaa73f231177ce5b2b8973f38", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Huw Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "crime": 2.5207699999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "media_hash": "950a043cb4355cadeb6289dd2e05e8db90141aa9e0c85fcca5f2e412", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.66914 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 5.66914 - }, - "fullfact-policy": { - "climate_misinformation": 3.6691399999999996 - } - } - } -}, -{ - "title": "Alexander Dennis to shut Falkirk site and put 115 jobs at risk despite Scottish Government help", - "publication_date": "2026-03-31T12:05:09", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/alexander-dennis-to-shut-falkirk-site-and-put-115-jobs-at-risk-despite-scottish-government-help-6530155", - "media_type": "news_article", - "sentence": { - "text": "Read more: Energy bills predicted to surge by nearly \u00a3300 a year from July", - "media_hash": "728e84c844f685c031f51b9dad911562bba840a3dae0f7275177ce4f", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.66914 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil nears highest price since start of Iran war", - "publication_date": "2026-03-31T16:48:16", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c17vrd0pj95o", - "media_type": "news_article", - "sentence": { - "text": "Average energy bills in the UK are also forecast to rise an average of \u00a3288 a year from July for a typical dual-fuel household.", - "media_hash": "2e7c000113b355f39ddce54a02a6551857e14c4d1b5269d716a9390b", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.51636 - }, - "demo": {}, - "dev": { - "blah": 3.5163599999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", - "media_hash": "6554b5bde2af8c5ddb7e290750c470b6a7ab3b127797bb26c36e2d91", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.395685, - "scottish_elections": 5.395685 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump tells UK to secure Strait of Hormuz and `go get...", - "publication_date": "2026-03-31T11:59:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Average energy bills are forecast to rise by almost \u00a3300 from July while motorists are already counting the cost of the war, with drivers paying \u00a3544 million extra for fuel since the US-Israeli bombing campaign began.", - "media_hash": "04ef1cdf3f81963285625e15dd37bd99f1c17552960d69bf0791f039", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.36473 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:47:09+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2039051890114035759", - "media_type": "social_post", - "sentence": { - "text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills https://t.co/JvIVvWPeg9", - "media_hash": "3de7b3d8fd39ab53f577f03151fc501675ce32c9484619d9b2d8dce0", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "California homeowner", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 5.36473 - } - } - } -}, -{ - "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", - "publication_date": "2026-03-31T18:12:52", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", - "media_type": "news_article", - "sentence": { - "text": "Energy bills are predicted to surge by nearly \u00a3300 starting from July.", - "media_hash": "a9d0118840cac5d8453b00697599c9f083d9619e51c13a1ce262219b", - "sequence": 16, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.1947600000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Energy bills are predicted to surge by \u00a3288 in July because of the ongoing Middle East war, households have been warned.", - "media_hash": "d7ceb476036c16b12b3c3e5854a89ae28a11cda5319913a82837bca4", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 5.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "Of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict (Yui Mok/PA)", - "media_hash": "b50992c51cdb3d44e893d214a48d32b3530a45449490a951ae376f16", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills are expected to soar by \u00a3288 a year from July after Donald Trump's war in Iran sent wholesale costs rocketing.", - "media_hash": "f475f4ce30aa1f04dfd56c032e74bf20e140cdff48e6fc15141bee61", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 5.09725 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.09725 - }, - "pa-media": {}, - "maldita": { - "energy": 5.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", - "publication_date": "2026-03-31T08:59:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", - "media_type": "news_article", - "sentence": { - "text": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", - "media_hash": "00ac7dd3a2721522da9e5b2421ef348c977cd9d0fbd17552e83bb574", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T08:54:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Energy bills predicted to surge by \u00a3288 a year from July as rise 'unavoidable \u0301", - "media_hash": "92609fca9d1707cd684d7811fee5167be5016380720bacd5472bd686", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "Energy bills 'to rise by almost a fifth' in just three months", - "media_hash": "a986560c2940c72117f283de3a734dcce527370be021fc73657ee2a4", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.970815, - "energy": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 5.123595 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "It's a mad mechanism that in 2023 added 43 billion pounds to our energy bills unnecessarily.", - "media_hash": "9cd6ba246fc269e2a890b0d2b65a3e830caba8856bc9935b744fa35a", - "sequence": 1279, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.970815 - } - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "This caused people's energy bills to drastically increase - although the Conservative Government provided financial support to all households.", - "media_hash": "c220b54e0f980a10d2006cef674126818d04f749e7376383f04643cc", - "sequence": 26, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "The forecast hike is \u00a3288 a year higher than the \u00a31,641 cap on energy bills set for April to June after the Iran war pushed the UK's gas market past three-year highs in recent weeks.", - "media_hash": "3d4b40aa1d3d94d70709160cb63b9667371970c9ab81999599a42fd3", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:33:36+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/MetroUK/status/2038897485993644284", - "media_type": "social_post", - "sentence": { - "text": "Energy bills 'to rise by almost a fifth' in just three months https://t.co/Mf6hLucbfI", - "media_hash": "373d801fc9539e0ced0c4031c5c41c5836676fd0e0b5d0913757d6d2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Energy bills", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.9398599999999995 - } - } - } -}, -{ - "publication_date": "2026-03-31T09:09:48+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/TheScotsman/status/2038906596739203430", - "media_type": "social_post", - "sentence": { - "text": "Energy bills predicted to surge by nearly \u00a3300 a year from July https://t.co/h8bqxvMjCj", - "media_hash": "7ebee42d073d0d9ff31cabd7df6f697ecb90e693049462e11311c961", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Energy bills", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.9398599999999995 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "5 million people in our country can't afford to pay their energy bills, why are they paying VAT on top of that?", - "media_hash": "d10a4e387b8b05d05ac8deb42f9b23aa03c9a9e3a7ba9e2d9b5c05ba", - "sequence": 1294, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.925415 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "Cheap Power Plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", - "media_hash": "2b9c92f183dc22f5b97d041467f42111268da326770799abca032a2b", - "sequence": 27, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.90684 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.0905750000000003 - }, - "pa-media": {}, - "maldita": { - "energy": 3.889875 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", - "media_hash": "336a6928d49b7a82ebe9c693a9da906b56d671aaa44de361836ad840", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.801995, - "economy": 4.801995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF Energy customers can earn up to 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/edf-energy-customers-can-earn-33685834", - "media_type": "news_article", - "sentence": { - "text": "Millions of households are being offered the chance to slash their energy bills", - "media_hash": "a6e490871d690bc39fc4301ea3c9a3bbf192221a9fae13357248976c", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.698725 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The Prime Minister pointed to the reduction of energy bills by \u00a3117 a year for the average household, a rise in the national minimum wage to \u00a310.85 and in the national living wage to \u00a312.71, the start of the \u00a31 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", - "media_hash": "e04699637004eba1e06da6b8f0a00e449370f9a255fbe16bbe299280", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.698725, - "energy": 4.698725, - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "Millions of households are being handed the opportunity to cut their energy bills by nearly \u00a3100 annually - with a simple change.", - "media_hash": "0518f3021574f7af83fb5e7655d670d7134b23ef493b5dd31201decb", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "media_hash": "0516a5548d9624ef4cdb20faa4aee613444548f340562213523a92f1", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.66777 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "media_hash": "d37eb87dec681c62841bb58be10044dd68cd2b7174c069765dfc409a", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.66662 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "media_hash": "d38c86a6c3ca9381a9e7e85dea830e46c4558e09891d30db9f24aee2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.66662, - "energy": 4.66662 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be \u00a3300 a year.", - "media_hash": "857a5fd4df5a27b91cf0eba8bd13aa23521a406b1293bd98125f823e", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.649215, - "energy": 4.649215, - "economy": 4.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "And of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be by \u00a3288 a year.", - "media_hash": "7a98de4f9461947f8bdd012b5c22556207898b3553b6a8072c76a610", - "sequence": 32, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", - "publication_date": "2026-03-31T08:46:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", - "media_type": "news_article", - "sentence": { - "text": "The Institute of Grocery Distribution has warned that a shock spike in energy bills could heap an extra \u00a3150 on the average household's annual grocery bill.", - "media_hash": "5dfb4cef1a91a837f145482ccb044e71290e58f03659440a80e5761b", - "sequence": 24, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Institute of Grocery Distribution", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.44689999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "It already has the highest inflation in the G7, and investors also fear it could embark on a borrowing splurge to protect households from surging energy bills.", - "media_hash": "ce693b457a5dfccd2aa6a26c072e8a9ae7efddb741a3a401c486b997", - "sequence": 14, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.641985 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.641985 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Energy bills is forecast to jump in July after a three month reprieve following an April cut", - "media_hash": "875f6f8fbbda603833bef934b8e1b9698fba906c422c77c77d3569c2", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.62122 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", - "publication_date": "2026-03-31T18:59:36", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", - "media_type": "news_article", - "sentence": { - "text": "Lorraine Hammer, 79, was thrilled to get solar panels attached to the roof of her Ontario house so her costly energy bills would drop in price, but instead she's been left shelling out more cash for nothing in return.", - "media_hash": "4e306b663a7dd4969cc150382427bda592c484bb08a45db3285cd915", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.598275 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "energy": 3.748535 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", - "media_hash": "e8ebadafb2239713c195df95c7995b1a8c1bd4616f4bedcdd55ddb47", - "sequence": 2, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.58644, - "economy": 4.58644 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "The funding comes from \u00a33.8m allocated to Wales by the UK Government earlier this month.", - "media_hash": "1c809ddad81a14516c21b359c702a7f1d785493d28aefb12d24c0690", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.5769, - "senedd_election": 4.5769 - } - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "Millions of households are being offered the chance to slash their energy bills by almost \u00a3100 a year - by shifting when they use electricity.", - "media_hash": "a575aa7c61776a63a9fdd000201de402482f2fce3b523151097d7488", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.2915 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.562435 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", - "media_hash": "f1e1d4d9f387cf9c8ede9bbecb684d29da455b13331303a7cf765f43", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.556405 - } - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "Ofgem has announced that the energy price cap will fall from \u00a31,758 to \u00a31,641 in April for the average household.", - "media_hash": "4f7a0598fc768aae75c473714ee319b077eff6fb6955855700e38077", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", - "media_hash": "50948043fc783903a84982750c7cddd6df24ad197ecf5a2785cbb117", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The average pump price of a litre of unleaded petrol in the UK stood at 148.8p on Monday March 30, up 4.6p week on week and a jump of 16.6p, or 13%, since March 2, according to figures published by the Department for Energy Security & Net Zero (DESNZ).", - "media_hash": "c767265802f32339661933adb85d09b5cc4ff3692439717af1f80ad7", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Back in September 2022, PM Liz Truss tried to shield households by capping average energy bills at \u00a32,500.", - "media_hash": "01306b3285bd87e0a9b7bbbd1bcd2387554c27bec7f2ad32e107d6be", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Liz Truss", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104752, - "score": 0.11648099823180075 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "trending": 4.545945, - "energy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", - "publication_date": "2026-03-31T21:30:00", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", - "media_type": "news_article", - "sentence": { - "text": "This follows further announcements made on March 16 including cutting the energy price cap until the end of June, extending the cut in fuel duty until September, and providing \u00a353 million for households that are most exposed to heating oil rises.", - "media_hash": "c5f71db93319f91c072b57638e35b9fdbe56ee812827cbe5ec1bafa6", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "leo_s_topic": 4.545945 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to \u00a32,394 on average.", - "media_hash": "fe4be61db3841d5188c0df0e5fafa9ea85d14b15fdd17770e576daf3", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Hundreds queue at Costco petrol station amid rising fuel prices and empty pumps", - "publication_date": "2026-03-31T13:04:13", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/scotland/hundreds-queue-at-costco-petrol-station-amid-rising-fuel-prices-and-empty-pumps", - "media_type": "news_article", - "sentence": { - "text": "Average energy bills are forecast to rise by almost \u00a3300 from July.", - "media_hash": "70a9fbefe04774d1baac9115778187ba887aee5971ac559028cb76bf", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - } - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "The Government estimates that a typical UK home could save \u00a370 to \u00a3110 a year on their energy bills from plug-in solar, meaning a family could make their money back in around four years.", - "media_hash": "b501b7ce238713ed58571a57c7a1ec4aaca583c333dd9f4fc267b842", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "\"If customers commit to every Sunday Saver challenge and flex their energy use, they could achieve an average of 266 hours of free electricity on Sundays, and \u00a396 on their annual energy bills.\"", - "media_hash": "e0ca2cc060e03882761d8fbf3903a01bd38cd601a56cc07d3ea16753", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Joe Souto", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.18689999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", - "publication_date": "2026-03-31T19:25:00", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills could also increase by \u00a3288 a year in July, according to latest forecasts from analysts Cornwall Insight.", - "media_hash": "f85a2f45e0d1212b1d86e5766767c830697712d7e341e019a77dd3ee", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", - "media_hash": "1790d24fe6a685c7056e090f0b29a3e1327f49fcbf9f3d3d45fc35b4", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Some \u00a34.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional \u00a35.4m.", - "media_hash": "930a886ee8c0000fe195223b32259aa786ec034a1b8aa96c95458bbb", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40373, - "score": 0.5368999999999999 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "They talk about average household energy bills falling by over 100 pounds from tomorrow.", - "media_hash": "ddf27d6f61194f2bad9d3c637cd6ea9ddda174000dc41da3d0020db9", - "sequence": 85, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - } - } - } -}, -{ - "publication_date": "2026-03-31T08:34:18+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/GuidoFawkes/status/2038897661353279907", - "media_type": "social_post", - "sentence": { - "text": "Cornwall Insights estimates revised July energy price cap at \u00a31,929, a rise of \u00a3288 on April's price cap.", - "media_hash": "008c92e0ae484e11ee4e46a7144a5a40a2cab3454b123cfeaa389604", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insights", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "leo_s_topic": 4.545945 - } - } - } -}, -{ - "title": "Households can get free electricity on four days next month", - "publication_date": "2026-03-31T07:50:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", - "media_type": "news_article", - "sentence": { - "text": "Those who completed every challenge throughout 2025 built up an average of 266 hours of free electricity across the year - worth around \u00a396 off their annual energy bills.", - "media_hash": "833ba13040cb14c84a7d31ad1730bdbad0d08e83f5607477402b2b81", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", - "media_hash": "42e722b19c950ef9105c8ed1f347c6130eb1dabc2dce14f62e315a80", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "In a post on social media, they pointed out that the Ofgem energy price cap is dropping on Wednesday by 6.7%, and this means your bills may drop too.", - "media_hash": "2a892ece02b9b5db7c954078d3c04af859e70bc3f19dcbc7e9925a18", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "MoneySavingExpert", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "The latest forecast by Cornwall Insight is a slight fall from its forecast earlier this month, which had seen the energy price cap surging to \u00a31,973 in July.", - "media_hash": "2372c3874e6185a6973307cabb99e5356124074b4b3319d0b96c6318", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "When it comes to the energy needed to operate machinery or equipment, 78% of small businesses said they were affected by rising energy prices, with 41% of respondents saying they would have to pay more than \u00a31,000 extra a month to cover energy bills.", - "media_hash": "4a7ac09a6a721639478525fca038c556c4408f15075ee579534d442a", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.545945 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "publication_date": "2026-03-31T12:49:04+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/tomhfh/status/2038961779326193917", - "media_type": "social_post", - "sentence": { - "text": "The government changed the law so that wind farms no longer have to provide expensive and time consuming like for like compensation for the birds they kill.", - "media_hash": "cc93c6e3546cc309016401524856fceda4efc4e586c16e55f44c3e18", - "sequence": 1, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.543855 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The average council tax for a typical band D property in England is currently \u00a32,280.", - "media_hash": "5cf1f9cec337b8614f702e818bdd412846965bd1f581b09265c0a8b3", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.53035, - "economy": 4.53035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T11:42:35", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "The typical household will spend \u00a31,641 a year on gas and electricity bills, according to the regulator Ofgem's energy price cap.", - "media_hash": "d64825e102eb14ccfd401e40c546f709777a49e56423c1b6afdcfbd1", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:48:34+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", - "media_type": "social_post", - "sentence": { - "text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", - "media_hash": "44040b133caca303abc5f1a268e4de1fcd62070a4d507d4a96adae92", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "the SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.500545, - "scottish_elections": 4.500545 - } - } - } -}, -{ - "title": "Jury can't reach verdict in corruption trial of 2...", - "publication_date": "2026-03-31T17:06:38", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695347/Jury-reach-verdict-corruption-trial-2-ex-FirstEnergy-executives-60M-bribery-scandal.html", - "media_type": "news_article", - "sentence": { - "text": "Prosecutors had argued that Jones and Dowling bribed Public Utilities Commission of Ohio chair-to-be Sam Randazzo for legislative and regulatory favors, most notably his work championing House Bill 6, a $1 billion bailout for two aging FirstEnergy-affiliated nuclear plants at the center of the bribery scheme.", - "media_hash": "4c95b68156e400af591017db22512a891ed200bd8b64cfa7d7f226e6", - "sequence": 15, - "claim_type": [ - "quantity", - "rules", - "other" - ], - "claimer": [ - { - "name": "Prosecutors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.49814 - }, - "demo": { - "politics": 0.0 - }, - "pa-media": { - "media_literacy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "A typical home with rooftop solar panels could save around \u00a3500 a year on its energy bills, according to Government figures.", - "media_hash": "5caf1e73db962f4c406cd36367fd631d4b73184d454d125f84d17245", - "sequence": 8, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.4978 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "Nine in 10 Brits browse Rightmove and Zoopla for design tips rather than homes", - "publication_date": "2026-03-31T09:36:50", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/nine-10-brits-browse-rightmove-36947663", - "media_type": "news_article", - "sentence": { - "text": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "media_hash": "fe6a2ddbd10c1696483d5928ab80482e32106001105b5c30cca4fc30", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.491165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T11:42:35", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "There are fears that the conflict in the Middle East will trigger a crippling hike in energy bills in Britain this winter.", - "media_hash": "436264fdbc183342074c411b9c16d14bd323a6cf48226e699525aa5b", - "sequence": 13, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.46302 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", - "media_hash": "ea098b53ff1fe0586375c7e47d65ae44770e3dafa9feb4190b1b6a15", - "sequence": 69, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.46302, - "economy": 4.46302 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tories call for more drilling in North Sea with new draft law", - "publication_date": "2026-03-31T05:45:45", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", - "media_type": "news_article", - "sentence": { - "text": "As part of its local elections campaign, the Conservative Party have also called for a cut in VAT on domestic energy bills and the scrapping of green taxes on power generation, saying these measures will cut bills by \u00a3200.", - "media_hash": "dc8534c66b8c8a7f32526db3412a5c3bf60f8fe83a8465b53639fc82", - "sequence": 11, - "claim_type": [ - "quantity", - "rules" - ], - "claimer": [ - { - "name": "Tories", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Conservative Party", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.431615 - } - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "Millions of EDF Energy customers can cut their energy bills by up to \u00a396 a year with a simple change", - "media_hash": "3d03978134ece2a494956446a52e4baca7c154302de1e29e42c0a335", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.409655 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "The Conservatives are urging Ms Reeves to slash household energy costs by \u00a3200 immediately by taking VAT, taxes and levies off energy bills.", - "media_hash": "ac8aacaf49aa18f08f011a84e87d07c909924f057423268b9149ba60", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.409655 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 4.409655 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "\"The Government must adopt the Conservatives' Cheap Power Plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny. We would cut bills for everyone rather than taxing working people to fund yet another bailout for people on benefits.\"", - "media_hash": "7a13912c7aa3f141e5b3c281a6e87c2905e8963032b178206d333dab", - "sequence": 28, - "claim_type": [ - "quantity", - "rules", - "predictions" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104555, - "score": 0.11150000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.398595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "The energy price cap is the maximum amount of energy suppliers can charge you for each unit of gas and electricity, as well as the standing charge to have your home connected to the energy grid if you're on a standard variable tariff.", - "media_hash": "2fbfa653de820473bfd46b0764fbd7b1a40ccf83dddf40cbf6be2ce0", - "sequence": 25, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.386215, - "leo_s_topic": 4.386215 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.386215 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", - "media_hash": "20d4a148d4e8c3057db0350353d67309d370b44c9ae6a208806ff023", - "sequence": 1393, - "checkworthiness": { - "fullfact": { - "energy": 4.386095, - "economy": 4.386095 - } - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills will increase by almost a fifth when the price cap is next updated in July, according to energy market experts.", - "media_hash": "7545ae8a5cdebce811ef3d52af5ddea0e056a1ce30c7272754df01a5", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.377125, - "energy": 4.377125 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.377125 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "The Ofgem energy price cap is expected to leap by 18 per cent after June as households brace for the impact of spiralling oil and gas prices.", - "media_hash": "9ed24563d19ab28391ef340a75f45c25f7bde485b5e92fb3b18a287e", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.377125 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Presenter Accuses Minister Of 'Patronising' Response To Growing Energy Fears", - "publication_date": "2026-03-31T08:18:32", - "publication": "huffingtonpost", - "url": "https://www.huffingtonpost.co.uk/entry/justin-webb-bbc-minister-energy-iran_uk_69cb752de4b0128a9ef9d16a", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills are not yet increasing in line with the crisis in the Middle East but are expected to go up later in the year as a result.", - "media_hash": "2f1a2df531bf08f3521f7b2d5f862bbd66b57ecce38909088381a891", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.377125 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "Energy bills expected to rise again in July, with forecasts predicting an 18% increase", - "media_hash": "abb160180169b6b65925faa98cdc916be205ffecee71127446301304", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.377125 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.377125 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The Treasury is set to rake in billions from higher VAT on fuel and the windfall tax on oil and gas.", - "media_hash": "21af3328f7ef5a652ea5caff89bbbbf310d7aa1e972d88837d419cb4", - "sequence": 30, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 4.377125, - "energy": 4.377125 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:39:28+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/LBC/status/2038898965626634660", - "media_type": "social_post", - "sentence": { - "text": "Energy bills 'set to soar by \u00a3288 more a year' due to Iran war https://t.co/68uq6ZPRQm", - "media_hash": "ec638c41c2f87a52b462d202ad1ed638a91c597606e2729cf61d198d", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Energy bills", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.36473 - } - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills could increase by \u00a3288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem's price cap, according to the latest forecasts.", - "media_hash": "b762a26dbdfbdc2150c00e09149584d3742e83383d0f8a37d7a08fbb", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.36473 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills could increase by nearly \u00a3300 a year in July due to the Iran war, experts have warned.", - "media_hash": "0562d6c20d6456c32720852f890093c33cdc02441b2a2ac2556be323", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.36473 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Shadow energy secretary Claire Coutinho said: \"The Government must adopt the Conservatives' cheap power plan to cut bills by \u00a3200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", - "media_hash": "48df0604dc5af34571ac50055466b4cf86c109d28fc4d894d1b2ab57", - "sequence": 21, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.349745 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Thousands in Wales to get \u00a3200 boost as prices rise", - "media_hash": "9e6938159d503cdf718fa61857220ce2ee9c12db1a824303ca77e96f", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.347765, - "senedd_election": 4.347765 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "Latest forecasts by experts at Cornwall Insight predicted that Ofgem's energy price cap from July to September will be \u00a31,929 for a typical dual fuel household.", - "media_hash": "29560df41ecac5abbe931e27b3e13bc0da0f28da5c0b9a029a77aaed", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.347765 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 4.347765 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", - "publication_date": "2026-03-31T18:59:36", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", - "media_type": "news_article", - "sentence": { - "text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", - "media_hash": "1859262297d2a8c896a650d22992813f01f488cc8f71a409abfb7324", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.347765 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "energy": 4.347765 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tories call for more drilling in North Sea with new draft law", - "publication_date": "2026-03-31T05:45:45", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", - "media_type": "news_article", - "sentence": { - "text": "This Bill would stop the lawfare and free our oil and gas industry to start drilling, creating new jobs and bringing in revenue to get energy bills down.", - "media_hash": "ad09faacc2fd26f9d16ea56c0030b54859e70afd08309f973d6acf01", - "sequence": 9, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Tories", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.33582 - } - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "The government is under mounting pressure to announce what help it will provide with energy bills from the summer onwards as households are facing a huge surge due to the Middle East war", - "media_hash": "09d5e42344203e330a8258e68ecb7cf381649978d454d59c45d00795", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.26870000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.29984 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Howard, a former deputy governor at the Bank of England, warned that 'splurging' money on a big energy bills bailout could panic international investors and send borrowing rates even higher.", - "media_hash": "8045966ec018bc856c821fb9e1def733adfafc9c136b3c94bb13f43c", - "sequence": 36, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Sir Howard Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.276675 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.97824 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", - "media_hash": "e8971f18e2f4e5337d3b9cc53a27cd2f72431be62150b90abdc1991d", - "sequence": 1343, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.26484, - "economy": 4.26484, - "trending": 4.26484 - } - } - } -}, -{ - "title": "EDF Energy customers can earn up to 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/edf-energy-customers-can-earn-33685834", - "media_type": "news_article", - "sentence": { - "text": "Millions of households are being given the opportunity to reduce their energy bills by nearly \u00a3100 annually - by adjusting when they use electricity.", - "media_hash": "1b30a68ec6d4dcf05abe2e30e24cb0d02ac7c737df6a4663a1f7c73b", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.240835 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", - "media_hash": "162427decdce3e89de25776d85b4787b6ab6333ddceb57f4c6a86b16", - "sequence": 2, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.233315, - "senedd_election": 4.233315 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "\"Today, millions of people up and down the country will see energy bills go down by \u00a3117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this Government has taken.", - "media_hash": "35bde3922a8963312cd9cfdd8199e7ef5401fc744354c7b1cfdf2aed", - "sequence": 7, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.224345, - "energy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "The energy price cap that governs most people's bills could be less than previously feared from July, according to a respected forecaster.", - "media_hash": "2fb545c4c1a7c64334f4d2864e67dc8503663d2eaf47d505454bcd9a", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.224345, - "energy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight has published its latest forecast for the energy price cap, and claims household energy bills will increase by almost a fifth in July.", - "media_hash": "6cb0a33b3ed36ccf2feb4e62014e371045cc3cc2e1c3eb932de4048f", - "sequence": 44, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 4.224345 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", - "publication_date": "2026-03-31T21:30:00", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", - "media_type": "news_article", - "sentence": { - "text": "The cut to the energy price cap comes on top of the \u00a3150 Warm Home Discount that around six million families will have received this winter following its expansion last year.", - "media_hash": "f329375329d2884f53dea20a40d3efc77bbd5f0121bcc50ce7ee26b0", - "sequence": 11, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "leo_s_topic": 4.224345 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The energy bills price cap is expected to increase in the summer by \u00a3332 to \u00a31,963 annually", - "media_hash": "4110f23e44f33924c32f2e0dee818b29281e298ccdf0ebd90d970a80", - "sequence": 63, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "While Ofgem's latest price cap will reduce energy bills by \u00a3117 on average, this saving will be more than cancelled out by increases elsewhere.", - "media_hash": "02304a7d73b46d20880fa161ebf2e8252a67ae167c662d4f4db35044", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 4.377125 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T14:53:37+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Dan4Barnet/status/2038993121069904024", - "media_type": "social_post", - "sentence": { - "text": "From tomorrow, the new energy price cap kicks in and will save the typical working family around \u00a3117 a year off their energy bills.", - "media_hash": "7cedf80830c7c75c1bce5448f31061e90da560ea5e9d27990a841cf8", - "sequence": 1, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104752, - "score": 0.13084286186479996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "leo_s_topic": 4.224345 - } - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", - "media_hash": "f7d469200b180fd0c1e6048061009a544b7644b73eea38128fe6a6df", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tens of thousands in Wales will get a pay rise from April 1 says Keir Starmer", - "publication_date": "2026-03-31T21:30:00", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/tens-thousands-wales-pay-rise-33693877", - "media_type": "news_article", - "sentence": { - "text": "\"Today, millions of people up and down the country will see energy bills go down by \u00a3117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this government has taken.", - "media_hash": "921250e86861bd14f89cac5262a7af1f1c869ec21786e93ad4a68e43", - "sequence": 15, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "leo_s_topic": 4.224345 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Council tax bills will rise by as much as 15 per cent on April 1.", - "media_hash": "74cfb48d44176d46dc532ed02c25a2f0432b6c64b15b3054539f0a0b", - "sequence": 9, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "Tomorrow's change to the energy price cap comes alongside a raft of annual rises for households, including hikes to water, broadband and council tax bills.", - "media_hash": "1982dd04ffd663000cf654a945a6212f4408af0e75dffbd561d100ac", - "sequence": 20, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.213945, - "energy": 4.213945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", - "media_hash": "99c5df1ab4c463156554f21683aa56fa8993c5a53ebc2a2031f1fc4d", - "sequence": 66, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.213945, - "economy": 4.213945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", - "media_hash": "f873b7e09186e01a43df2d71d78aa71c88d2714231828b0bbfa55b8f", - "sequence": 1384, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.206655, - "economy": 4.206655 - } - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T15:37:04", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "She believes thrift cuts her energy bills by almost two-thirds.", - "media_hash": "abed233322a2341baa3023778a16c275da00453da8370d87131bc822", - "sequence": 54, - "claim_type": [ - "quantity", - "support" - ], - "claimer": [ - { - "name": "Gloria Batabyal", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.206655 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "Although UK energy bills have not yet risen because the price cap was set beforehand.", - "media_hash": "8650a6aecfb65f02c7474ee2cd6a362add7828999742d2c9924f5fa5", - "sequence": 28, - "checkworthiness": { - "fullfact": { - "energy": 4.186764999999999 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T12:12:02+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/Telegraph/status/2038952458492215586", - "media_type": "social_post", - "sentence": { - "text": "Catch up now on yesterday's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to @ClaireCoutinho the shadow energy secretary, who says the Government could cut your energy bills by drilling more in the North Sea, but chooses not to...", - "media_hash": "fd241ee593f00ec50fdb1865db36fbfbd8d913113e0861a33e8a62e1", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.173405 - } - } - } -}, -{ - "title": "Energy crisis will define Holyrood election, says Flynn", - "publication_date": "2026-03-31T10:40:03", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694311/Energy-crisis-define-Holyrood-election-says-Flynn.html", - "media_type": "news_article", - "sentence": { - "text": "This election will boil down to a straight choice for the people of Scotland - a permanent cost-of-living crisis under Westminster or lower energy bills with independence", - "media_hash": "b64dd06487c2ea4537fc8676371443b9da781b2c4a5ab6de6b179940", - "sequence": 5, - "claim_type": [ - "rules", - "predictions" - ], - "claimer": [ - { - "name": "Stephen Flynn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.150510000000001 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:03:14+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/BBCr4today/status/2038904945479410007", - "media_type": "social_post", - "sentence": { - "text": "\"Are you saying it's likely that energy bills don't rise after July?\"", - "media_hash": "c0e5603f6591c2fad91fcb97c7af391e021aea0199b70102c314cc43", - "sequence": 0, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.1384050000000006 - } - } - } -}, -{ - "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", - "publication_date": "2026-03-31T08:46:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", - "media_type": "news_article", - "sentence": { - "text": "The BRC said the Government could fuel further inflation if it fails to listen to calls for relief from looming costs, including red tape on workers' rights and green levies on energy bills.", - "media_hash": "5539f6a50abff4ef22759a7a84dc166c4801d770537f061095120ace", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "British Retail Consortium", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.128005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", - "media_hash": "701c815f7dd14dd4af6ed552c3aa758c00e430388f99fab3d97534d8", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.10166, - "senedd_election": 4.10166 - } - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Miliband is slamming his foot down on the net zero charge, and driving us into a ditch.", - "media_hash": "4b28fe025f5b173876e482ca16ae96b1c7852e4dabcde81fbf6fb808", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Ed Miliband", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.10166, - "trending": 4.10166, - "energy": 4.10166 - }, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "However, some fixed tariffs can be lower than the energy price cap, so it might be worth shopping around for the best rates, according to Martin Lewis.", - "media_hash": "a8755885b36f7820fd747d019f4e964cc9ba9e72b2f427e847c3c8e8", - "sequence": 30, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Martin Lewis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.088055000000001 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.889875 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a \u00a3500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", - "media_hash": "95f36115ba3a97b86eaf7f0acd6129e21af3f8153590b006af4f14f1", - "sequence": 24, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jackie Dunbar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.071625, - "energy": 4.071625 - } - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "The rise in energy bills is likely to spark fears among economists that inflation will surge in the middle of the year as a chain reaction of higher prices dampens consumer demand and knocks GDP.", - "media_hash": "db154e655efeb211ea110b9d54c30377ffb89222151eda6a4467c3d5", - "sequence": 8, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.064495 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", - "media_hash": "36d0dd517bae33d72a29cd280f0ad918956abb22450ec488b0531e48", - "sequence": 6, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.064495, - "energy": 4.064495 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.064495 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "The exact discount you'll receive on your energy bills will depend on the size of your household and the type of household, as well as the location, building type, how you pay your bills, and how much energy you regularly consume.", - "media_hash": "57cb08c40e30b75f64d51134b736f8fdc7f26aa6fe74007dfda0fbca", - "sequence": 23, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.064495 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.911715 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", - "media_hash": "d1d6ab2c7753827a2517588a9688ce9d98dd550d1f3d778df8d709a6", - "sequence": 10, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.061165, - "energy": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", - "media_hash": "61d964f314636c9e38b36641749439b1d74ec8151d5be87a3fb46294", - "sequence": 20, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.059075, - "scottish_elections": 4.059075 - } - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The Department for Energy Security & Net Zero publishes monthly figures on the average price of heating oil.", - "media_hash": "fd7e9837b5a1c5326bb9a8e2e2cc93e09afeb1912ba0ef128cd7870b", - "sequence": 28, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.0467200000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Recalls yesterday from opposition politicians for the government to remove VAT from household energy bills for the next three years.", - "media_hash": "173c895891ae2e21b4022349a6fd61b00c3056b0f0e6f6309d3ad1c7", - "sequence": 1291, - "checkworthiness": { - "fullfact": { - "energy": 4.035135 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", - "media_hash": "6b10a6165d9529ddf32e96060bd41b1c8fafedd43491fb829521a4d1", - "sequence": 1389, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.035135, - "economy": 4.035135 - } - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", - "media_hash": "0e5292f0da47b8acdac7a32f70b3575fc64ab53a414cd1ebb421ca57", - "sequence": 56, - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.035135, - "economy": 4.035135 - } - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "But people will know that whatever happens over the next three months in the Middle East, energy bills will be lower here.", - "media_hash": "2e12f5e8858b4eb58d03a6673340e8a7253f75c7f32a724d8cd82fc1", - "sequence": 127, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.026165 - } - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for \u00a3300 of support with their bills.", - "media_hash": "9067383b77bb0df353d633e264773cd338b1075a5cd22c2b406ddc3e", - "sequence": 19, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Advice Direct Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.026165, - "scottish_elections": 4.026165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "There is growing pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits", - "media_hash": "e3343960b3160e67cd085b8746161fe373c729196d075ec741f954cf", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.975225 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "Principal consultant Dr Craig Lowrey said a surge in energy bills was \"pretty much unavoidable\" as international market changes will now have been \"baked in\" to forecasts.", - "media_hash": "2d5b6f295e8a9067242e4ee1db7b03e9de7475b37a6e570cf21a2a37", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Craig Lowrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Kemi Badenoch has been talking about this for a few days, but she also keeps saying it's not actually going to reduce bills even if we do drill.", - "media_hash": "27876c41027ec34e3f16491810e0920bef84e0ddff4ff71fd4bc7ec0", - "sequence": 944, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.975225, - "trending": 3.975225 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Rachel Reeves thinks our net zero targets to the answer to the economic crisis.", - "media_hash": "3e3e149579ab1aa7ddd1eee43131f05aa704f2657d051ff9f33dfaf7", - "sequence": 941, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.975225 - } - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Kemi Badenoch has urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", - "media_hash": "801b3f4d6259f33daeb4f82647fc8a5bea35d7410ef3c72b7b868c0b", - "sequence": 26, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 3.975225, - "energy": 3.975225 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "media_hash": "a6207993a9e86c94a9a760fbbea78856ff84d70935a7d1ef24e3e366", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "energy": 4.36473 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:22:52+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038909883718742512", - "media_type": "social_post", - "sentence": { - "text": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn https://t.co/8LhrGd37kQ", - "media_hash": "f0a228a51d07caa1717e8325a5f9414b0068348df8049600d8650b8e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Brits", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.970815 - } - } - } -}, -{ - "title": "Households can get free electricity on four days next month", - "publication_date": "2026-03-31T07:50:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", - "media_type": "news_article", - "sentence": { - "text": "Households looking to cut their energy bills could get free electricity on four days over the coming weeks under a scheme from EDF Energy.", - "media_hash": "4d4b42e194614b9bb70a19aceb144de563813c2b84abec301a464676", - "sequence": 2, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.920805 - } - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "But they can know that from tomorrow, because of the energy price cap, bills will come down rather than going up.", - "media_hash": "f0b90d9134c0a59ebb2af204164dd1040b321270cc68166fb5955109", - "sequence": 125, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", - "media_hash": "2e56e9518645f1b0c47645577a08d7c696096885454881669561610f", - "sequence": 1347, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715, - "economy": 3.911715, - "leo_s_topic": 3.911715 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "This will pile more pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits.", - "media_hash": "b34fa9ab1a984c6cc1940210f628ce5ff04c7e54437c77a15117d394", - "sequence": 6, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 3.911715 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "What I can point to to go back to my original point is, you know, people thinking about what's happening tomorrow, they know that their energy bills will come down.", - "media_hash": "22ebe74cbab6424b62e36bf0c531b633851170051fecf037d6227992", - "sequence": 156, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715 - } - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer will chair a meeting of the Cobra crisis committee to consider the impact on households and the wider economy from soaring energy costs.", - "media_hash": "e0a2ab4f40a166ec7e23e4e82e718f3638abb50c1799e0528ce995df", - "sequence": 12, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715, - "starmer": 3.911715 - } - } - } -}, -{ - "publication_date": "2026-03-31T17:25:24+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/JoStevensLabour/status/2039031317728231465", - "media_type": "social_post", - "sentence": { - "text": "\ud83d\uddd3\ufe0f TOMORROW's energy price cap fall will put more money back into the pockets of families across #CardiffEast.", - "media_hash": "2a7c018c757e5dd09a3663e7bc3461a58101062f98458a94bba67a08", - "sequence": 1, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "UK Labour Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715 - } - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", - "media_hash": "541859e8ca7689c57fae1c202c0a39f16eba65f69e43d8c29f712e44", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - }, - "demo": { - "politics_of_food": 0.0 - }, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", - "media_hash": "25d8357c62b597f7a5af980a82d300bf7f5581f9a8f6a1f8e1927a88", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Record View", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", - "media_hash": "7f13f2a4150e445aaa4e656ea3130781d03bb6184b9d5b2f2e1275f5", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.901315, - "energy": 3.901315 - } - } - } -}, -{ - "publication_date": "2026-03-31T08:48:34+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901254898761765", - "media_type": "social_post", - "sentence": { - "text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", - "media_hash": "35eaf5d51b900e1aa2a942ecbd2ba82e298fd6f02fdd540df44201c3", - "sequence": 2, - "claimer": [ - { - "name": "the SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.898845, - "scottish_elections": 3.898845 - } - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "MSE shared a warning ahead of April 1, reminding Brits that energy bills are about to change.", - "media_hash": "c1769928052a1776e2117b80ed918baf41c17caf317f676e20afa0e7", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.88572 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.703135 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "But equally, I think if there are big rises in energy bills to come, and we don't yet know if there are, then the government might need to go further in terms of providing targeted support to some households.", - "media_hash": "f2335a4489db632c873582136d88b10b83096d059a483218f213ecf6", - "sequence": 102, - "claim_type": [ - "correlation", - "predictions", - "support" - ], - "claimer": [ - { - "name": "Ruth Curtis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.861005 - } - } - } -}, -{ - "publication_date": "2026-03-31T08:48:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", - "media_type": "social_post", - "sentence": { - "text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", - "media_hash": "f10998e5e2c68043328e774e2c8f5ca176e17069b6ef17d1c7d7c00b", - "sequence": 1, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.860895, - "scottish_elections": 3.860895 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight said a hike in energy bills this summer is 'pretty much unavoidable' - and they warned an even greater hit to household finances could come in October.", - "media_hash": "cc0673d5234fe89ef21fb7021ed283de8e817731c631787cfdf4c6b5", - "sequence": 5, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.851805 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 3.851805 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", - "media_hash": "24196df121e0b1a190caff62d537cc5aee3cda22501b00fbdcad2a04", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Scottish Tory energy spokesman Douglas Lumsden", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.788715, - "energy": 3.788715 - } - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T08:54:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Household energy bills could increase by \u00a3288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem \u0301s price cap, according to the latest forecasts (Jacob King/PA)", - "media_hash": "b8608a58f1a258513bc814c8fad124101ceaeb5f7fb0b993a8af1fea", - "sequence": 11, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.77565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "So I think our tax system needs a whole bunch of reforms and I would start with taking VAT off of energy bills and I would add it to flying to keep it fiscally neutral.", - "media_hash": "74a9c40922508160af6815683e2b5c55af7a2c83b26aa6ba09ff080e", - "sequence": 1296, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7754250000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", - "media_hash": "1dbd00bad4aab01cfcb82c261d291861270e7c52a35f1b50f8d57dd6", - "sequence": 1395, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7577350000000003, - "economy": 3.7577350000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Absolutely, of course, it should be used to alleviate the burden that is being faced by motorists and indeed households right now, but what would be far better for the country would be if they were to remove the windfall tax, remove the energy profits levy from the oil and gas industry so it could generate yet more revenue from the treasury.", - "media_hash": "34e738cbb2da58d01b4a8e0dd85e16e5e0edf5bc36a77bc9cff9d71e", - "sequence": 1028, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7577350000000003 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Greg Marsh, CEO of Nous.co, said: 'This calculator shows how quickly lower energy bills are cancelled out by other rising costs.", - "media_hash": "172882414e0bcbb09665081abcd89f98ec5a9cd721b653d367071cf0", - "sequence": 8, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nous.co", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Greg Marsh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.\"", - "media_hash": "64f11a4e943e04fbf0a81f9487fcc83cfec9ee3d725151ca233983d7", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Joe Souto", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.11470000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535, - "leo_s_topic": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.", - "media_hash": "e2c1ce38b74d2fb21d5470cac5b6375714915d3d3e74db0eac2e3767", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Joe Souto", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.1119 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535, - "leo_s_topic": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "On the environment, both offshore and onshore wind farms encroach far more on the British coastlines and countryside, and the species that live there.", - "media_hash": "69075f2fd1101b6c306141d219cb19bce919cfa65d571ef95e9e5940", - "sequence": 37, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", - "media_hash": "e99add1c9063c7c65566f4d0c3e04a07d3e42d044e79acd88265876e", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anas Sarwar", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.748535, - "scottish_elections": 3.748535, - "energy": 3.748535 - } - } - } -}, -{ - "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", - "publication_date": "2026-03-31T19:25:00", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", - "media_type": "news_article", - "sentence": { - "text": "The increased windfall tax take was based on analysis of Office for Budget Responsibility figures from 2025 by Chris Wheaton, of financial services firm Stifel.", - "media_hash": "b4de8462917f33b8fa3549ef4e3928720aa75eab0c96b5ad4860b586", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Chris Wheaton", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stifel", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:29:49+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/alexburghart/status/2038881437378543698", - "media_type": "social_post", - "sentence": { - "text": "Tune in now to today's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to shadow energy secretary @ClaireCoutinho who says the Government could cut your energy bills by drilling more in the North Sea....", - "media_hash": "7d236d5b7ed1d1a48af6ace087c2f86591d795e72982c4335c15eac8", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.748535 - } - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight has published its latest forecast for the energy price cap, ahead of a fall in gas and electricity bills coming into effect tomorrow.", - "media_hash": "d4a7789edd319e51d43a73c72be760cc282aad969998c6861bc066dd", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.748535, - "energy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scots hit with extortionate pump prices of as much as \u00a32.17 a litre for diesel as Middle East fuel crisis starts to bite", - "publication_date": "2026-03-31T21:52:14", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695803/Scots-hit-extortionate-pump-prices-2-17-litre-diesel-Middle-East-fuel-crisis-starts-bite.html", - "media_type": "news_article", - "sentence": { - "text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", - "media_hash": "98365704f35fb6c4239da81b113b322ef23ad98adff1116f09805dc3", - "sequence": 19, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scotland's farming industry", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "NFU Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "energy": 3.748535 - }, - "demo": { - "politics_of_food": 0.0 - }, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "general": 0.0, - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "President Donald Trump has apparently told aides he is considering ending his military campaign even if Tehran does not reopen the critical Strait of Hormuz - through which around a fifth of the world's oil supplies normally pass.", - "media_hash": "bf60e2efc9fda1df73da147005ce336825220205687eaa98f6b5f6c1", - "sequence": 8, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "President Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.739565, - "energy": 3.739565 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "A Welsh Conservative spokesperson said \"this one-off payment will only go so far for families already under pressure\", adding that the UK Conservatives had launched an enhanced Cheap Power Plan to cut energy bills by \u00a3200 to help families with the cost of living.", - "media_hash": "01f4a6e163ea6d9578fcb07e5d38a5f52c6de1d729c78a933db2d944", - "sequence": 47, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Welsh Conservative spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.739565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "The energy price cap will fall on April 1 (Picture: Getty Images)", - "media_hash": "c13e57ac0203c1e2adcc5440313eccd59d80124429c228bd2129c17d", - "sequence": 12, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.7135350000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", - "media_hash": "ecfb88a8e6be59febe9decc81c6b6eb1ad4ba564216948d9e880573e", - "sequence": 18, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "scottish_elections": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "And are you saying it is likely then that energy bills don't rise after July?", - "media_hash": "f6c29d8a1943998446b5dc5069d895b69d8d383ee8aed0aac75a8564", - "sequence": 140, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", - "media_hash": "616392e3d2df360f0851e7cd80dae7b149987736acba21efa5e180bc", - "sequence": 1349, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "economy": 3.7135350000000003, - "leo_s_topic": 3.7135350000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", - "media_hash": "24634f680700670725f9281cb717b50edc17f4aa717ee847eab16d04", - "sequence": 1354, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "economy": 3.7135350000000003 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "There should be no mass subsidy of domestic energy bills.", - "media_hash": "69eb7fb9db4d138cb7f0e10266937d543d0efb9948cce4c46e535395", - "sequence": 2505, - "claim_type": [ - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.712335 - } - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", - "media_hash": "a72191d958d6a8b204303a3d8d073db19741884ff7c2fb17bb3c1867", - "sequence": 53, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Patrick Harvie", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Green", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.697825, - "scottish_elections": 3.697825 - }, - "demo": {}, - "pa-media": { - "food_systems": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "You know, I think a lot of people will be seeing the news from the Middle East and will see the instability and the uncertainty and might be worried about what's going to happen to energy bills in the months ahead.", - "media_hash": "e0e9fee26f52934042c802d8e96a2b5be89f295ae5664589d99628c3", - "sequence": 124, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.6825799999999997 - } - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "For example, one thing the government could do that would be short of the probably unaffordable universal support provided in 2022, would be some sort of targeted discount on energy bills for low income households.", - "media_hash": "73a738ed14b73f870d1dbe36923a8f65209b0e02e0af25a493128273", - "sequence": 103, - "claim_type": [ - "rules", - "predictions" - ], - "claimer": [ - { - "name": "Ruth Curtis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.661095 - } - } - } -}, -{ - "title": "Oil and gas prices won't immediately return to normal...", - "publication_date": "2026-03-31T19:02:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", - "media_type": "news_article", - "sentence": { - "text": "J\u00f8rgensen said although he doesn \u0301t foresee a repeat of the 2022 natural gas crisis where companies reaped huge profits from a massive gas price hike, a one-time \"windfall tax\" on such companies \"is a possibility.\"", - "media_hash": "afbf7f32acffc4f53a8326ebf9de6855445cef2e49ed6579a188b554", - "sequence": 11, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "European Union", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dan J\u00f8rgensen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.653625 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fuel for ambulances and emergency speed limits - UK's petrol rationing plan", - "publication_date": "2026-03-31T07:39:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188558/uk-fuel-rationing-plans", - "media_type": "news_article", - "sentence": { - "text": "The National Emergency Plan for Fuel is produced by the Department for Energy Security and Net Zero.", - "media_hash": "20ef6090d7a660f17f49e619bb576fadc0b233c740daa9daca2d6b9c", - "sequence": 10, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Department for Energy Security and Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.61976 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.61976 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T17:25:24+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/JoStevensLabour/status/2039031317728231465", - "media_type": "social_post", - "sentence": { - "text": "\ud83d\udcc9 Our @UKLabour Government is taking decisive action to lower energy bills.", - "media_hash": "dabd7a487cefceadd7b70692055a767e35906e066af0bc98f107c4a5", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.612245 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", - "media_hash": "1000eaf6f4fec5852dc88f3720f6c9083f6ef71f8995a2b47df327fb", - "sequence": 15, - "claim_type": [ - "voting", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "energy": 3.612245 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", - "media_hash": "e8ba0501f33a1ca5f9728b40fc001b175d4b1e4c5c32de20d8b0d702", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Labour finance spokesman Michael Marra", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.612245, - "energy": 3.612245 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Yeah, I don't think we should have VAT on our energy bills at all, because VAT is a luxury tax.", - "media_hash": "004033bbe9a21a40b5f320cfe17a1fada8252cbe3c4fe372d9510a7a", - "sequence": 1293, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5980049999999997 - } - } - } -}, -{ - "title": "Households can get free electricity on four days next month", - "publication_date": "2026-03-31T07:50:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", - "media_type": "news_article", - "sentence": { - "text": "Scots urged to submit meter readings this week to avoid higher energy bills", - "media_hash": "1f020e85d2f0dbcfc89a6841672591da47b347c1555fc6307e205c0d", - "sequence": 7, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.59665 - } - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "But what we can do is to shield people from those prices on their energy bills through the energy price cap that I've talked about, and also by making contingency plans for the future.", - "media_hash": "be928e05849f33be8ba05427de558d2d20f9f469777f807c6a12dfc4", - "sequence": 139, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.566845 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", - "media_hash": "29a18e17320a82af97cbcaec70f86b027174eb5e43a076a1a05f9c93", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.562025, - "scottish_elections": 3.562025 - } - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Unlike households, these businesses are not shielded by an energy price cap and have more energy requirements, according to Novuna.", - "media_hash": "a4e6f13c1e3dfb5a4429c4e72e1151b79baa813c0c264875bdd5c2cb", - "sequence": 4, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Novuna Business Finance", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.562025 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.4092450000000003 - }, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock.", - "media_hash": "d4776924c20647278ae1f81ec4f1d3d1735854e001c51d1d927e1011", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997, - "starmer": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:12:39+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/John2Win/status/2039043207959380422", - "media_type": "social_post", - "sentence": { - "text": "Through its partnership with SGN, they've been handing out energy packs to support people in fuel poverty.", - "media_hash": "eb5c60e145ab4985147d70fb5cb41f9846723aee4b06945c38dd9745", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Newcastleton and District Community Trust", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "The forecast Cornwall insight has raised its forecast for the July energy price cap.", - "media_hash": "dcf91b72e41659724f8fa3dae79a4c72949025c86e92bc5171dddc7a", - "sequence": 303, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997 - } - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "The estimates come as Sir Keir Starmer hosts another Cobra emergency meeting over the looming hit from the Iran crisis, with the Tories insisting he take action instead of holding more talks.", - "media_hash": "3eb3465b2ae0f732fc8dc4da164017d034b6b004f4e888a20049d00f", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer is hosting another Cobra emergency meeting today over the looming hit from the Iran crisis", - "media_hash": "436c433168817c0a0324f078192ca8dbf63dcc1ec96a9514cfed9f8c", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Kemi Badenoch urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", - "media_hash": "a38b0e0a516fa8adfe210c8d71c52df7f83774f688f4f352b316308a", - "sequence": 38, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Energy consultancy Cornwall Insight said a hike in Ofgem's energy price cap was now 'effectively unavoidable'.", - "media_hash": "93d8dbf357fb45033307a52643ca5c675dee99a6f0147cefa4d27b2a", - "sequence": 17, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:51:40+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SEANLWOODCOCK/status/2038886935951798672", - "media_type": "social_post", - "sentence": { - "text": "Energy and Net Zero Secretary Claire Coutinho was questioned on #BBCBreakfast about plans to annually award licences for oil and gas projects in the North Sea", - "media_hash": "749073bba068e68139e7c8687a4d4f5916f6a4951cb0a4197f210a5f", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Energy and Net Zero Secretary", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997 - } - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", - "media_hash": "8a830f711f819356088c50a7630d1c8f02d3cc5e1e952cb0c30bb749", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", - "media_hash": "3c1ef980a35ab4379d9557aa2987f4278ec251e2337c297445183160", - "sequence": 1357, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997, - "economy": 3.5503549999999997 - } - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "Kemi Badenoch and other figures on the right have shouted about exploiting North Sea gas instead.", - "media_hash": "04becf358092b6b7d592b6f78a6209745eba4d9734a202ab78065a12", - "sequence": 27, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997, - "trending": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Reform said Labour had undermined energy security with net zero madness and the Welsh Conservatives said the help would only go so far for families already under pressure.", - "media_hash": "ffd31d91ce1933534c2724563cd2fd73e111834f6e3f606668f2a664", - "sequence": 113, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997 - } - } - } -}, -{ - "title": "Keir Starmer to chair Cobra as costs to households from...", - "publication_date": "2026-03-31T11:09:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", - "media_type": "news_article", - "sentence": { - "text": "Speaking to the Press Association on a visit to Hertfordshire, she said the Tories would cut VAT off energy bills for three years and scrap \"unnecessary\" green levies.", - "media_hash": "4722d7e75bd037f4af6d0a9123baa1e50e5ceeea587e6c6d936a2074", - "sequence": 24, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.541385, - "trending": 3.541385 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "media_hash": "37dd7dcb6b070e29cb5acc8c1ecd7c7b00b7b3335d4491a6a855be72", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5163599999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Separate figures showed the collective debt of two million British households to their energy supplier reached a record high of \u00a34.55bn at the end of last year, according to official data published by Ofgem, after climbing by \u00a37m over the final three months of 2025.", - "media_hash": "fd342e15a03d6a56788788923469b64fbb3d0e014631fa900b8f5de9", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5163600000000006 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", - "media_hash": "bebcb4208b02f29456620f944e2fd8a509c525a3ca23d151f87ec087", - "sequence": 27, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.47393, - "scottish_elections": 3.47393 - } - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "Reform has also announced tax cuts on VAT on domestic fuel and green levies, including the Carbon Price Support and Renewables Obligation, but has not said how it would fund any of these cuts.", - "media_hash": "9b414a6cd102151260d896db4cec876ef7b7a29e0ce171fb7d05f530", - "sequence": 5, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Reform", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.436025 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "Martin McCluskey, the Minister for Energy Consumers, said: 'Action taken by this government on bills will see the energy price cap coming down from tomorrow.", - "media_hash": "b3772627c203314c8c7375e0816cd45653bf252437cd46f566874b66", - "sequence": 11, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Martin McCluskey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.4269350000000003, - "energy": 3.4269350000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 3.4269350000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Martin McCluskey, Minister for Energy Consumers, said: \"Action taken by this government on bills will see the energy price cap coming down from tomorrow.", - "media_hash": "468d189bc476155db1fef0618ed526fccf0833508a24d8656f8b2aa6", - "sequence": 23, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Martin McCluskey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.4269350000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tories call for more drilling in North Sea with new draft law", - "publication_date": "2026-03-31T05:45:45", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", - "media_type": "news_article", - "sentence": { - "text": "The party claims more drilling would secure cheap, reliable energy and cut energy bills - in addition to making Britain more resilient to global energy supply and price shock.", - "media_hash": "50c40d37005667854cff97d875970f6b0eed00ef32d38e9175b2e383", - "sequence": 4, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Tories", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.4269350000000003 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", - "media_hash": "0eec77037a0660c7c69def7a32862548924b924582b4d4d4aa2ac657", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Labour finance spokesman Michael Marra", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.414065, - "energy": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", - "media_hash": "ea4c776071e4e1f3e5a2dd470dd7b71d087993258fdac6352bcc171b", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", - "media_hash": "52573a6944ac3078f1f560c59b0e9b589b1e113c4372e9a47858c692", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", - "media_hash": "e9c1379ac05eab18894ec619fa2bf225fd566c072d7c61170a62a524", - "sequence": 29, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "UK Conservative", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock as he warned: 'The Government can't do it on its own'.", - "media_hash": "565927111c5207201fe4d6b3733390ae6276a107279131b1cb10932a", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.414065, - "energy": 3.414065 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Addressing leading figures from multinationals, including Shell, BP, Centrica and HSBC, the PM acknowledged public fears that the economic impact is 'going to hit them and their families and their households... and I think probably uppermost in their minds at the moment is energy bills, petrol and also food prices.", - "media_hash": "a3d8d6006f7436e8b16d592b7c13be43ccca4c304eead7fe55a135e2", - "sequence": 5, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.4092450000000003, - "energy": 3.4092450000000003 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", - "media_hash": "4294a254b65a41dbe9d2d2d1191ead20bcb627c8bec692b38433256d", - "sequence": 71, - "claim_type": [ - "support", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.20340000000000003 - }, - { - "tracked_claim_id": 104556, - "score": 0.10219999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.4092450000000003, - "economy": 3.4092450000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T15:37:04", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "Traditionally, tumble driers are one of the biggest energy eaters - costing households as much as \u00a3275 in electricity a year, which Katherine is now able to save.", - "media_hash": "fe220fb3b52db48a60f41a9a55fae6dea46dfee4b4b1e870352ab8a9", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.4061450000000004 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.556405 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "According to new data, since the Iran war, 82% of UK small businesses have already felt the impact of rising energy prices.", - "media_hash": "ac35779b2acaa8b30081b020cfb095ed120bb89e6203f874795f2cd2", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": { - "climate_misinformation": 3.3956850000000003 - } - } - } -}, -{ - "title": "Readers' letters: There is no alternative to direct action against Iran", - "publication_date": "2026-03-31T16:59:28", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", - "media_type": "news_article", - "sentence": { - "text": "However, it has twice the power output of the above and will last for twice the time so the real comparison figure is one fourth - \u00a310bn - and, of course, it will kill no wildlife.", - "media_hash": "9e73c8d25e4b33f706ee4c39a6066f0f15167600351fd52ee023a918", - "sequence": 74, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "A McCormick", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "The UK Chancellor earlier this month confirmed that more than \u00a350 million will be provided for low-income families who have to heat their homes with oil.", - "media_hash": "2142858d3cf25b32f55a46b68f3879a75fe2b847e3e6877e6258a309", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Chancellor", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Urgent message every Aussie needs to read before they go to Bali as tourists panic: 'Feel a little stressed'", - "publication_date": "2026-03-31T01:09:27", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690009/Aussies-panic-fuel-Bali.html", - "media_type": "news_article", - "sentence": { - "text": "The closure of the Strait of Hormuz has put pressure on global fuel supplies, with diesel reaching more than $3 a litre in Australia and more than 500 service stations suffering from petrol or fuel shortages in NSW and Victoria.", - "media_hash": "b3b102e04572098c72dbed5e625b9c16b88339fd43b4b6f9bc9b4288", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.3956850000000003 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.09725 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Today Programme: Main interview", - "publication_date": "2026-03-31T07:06:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/403770", - "media_type": "transcript", - "sentence": { - "text": "No, I think people should go about their lives as normal, knowing that the government is taking action to bring energy bills down.", - "media_hash": "74fded5a14a2ad799a0abd206cdce7f3aedd3aa8b15b582ecb2d5abf", - "sequence": 123, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.363845 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "This would be in contrast to the universal support provided by the previous Tory government in 2022, when Russia's invasion of Ukraine caused energy bills to soar.", - "media_hash": "e41a3378558a01c6ad98c0a3c99f7485b282e0959c788f41e08b3b61", - "sequence": 8, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.29984 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 2.748535 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", - "media_hash": "b3eed90ba12fac2b2d244930b333228f4e8a9fa5c47e95232b2bf448", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.29984, - "energy": 3.29984, - "economy": 3.29984 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "Reform used a press conference at Heathrow Airport today to criticise net zero policies and announce their plan to scrap Air Passenger Duty on short-haul flights if they won power.", - "media_hash": "4c08d28ddaf64e8c3dffcad5cb5cddc05b3f3c61029e1886a640f594", - "sequence": 1, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Reform", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.299735 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 0.0 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", - "media_hash": "21efe1aab0ff4a772f97d563de1b0245d56f9eb68446f41421c1dc5a", - "sequence": 25, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jackie Dunbar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.290645, - "energy": 3.290645 - } - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "Reduce by 50% - gain the maximum 16 hours weekly", - "media_hash": "e6625536e7d16aa90490c848c56377e2b381f085c09c940e4acd8aa1", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.2593950000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "He said: \"With around 22 million households on their supplier's Standard Variable Rate, most are paying the maximum allowed by the regulator. Check your current contract, and if you haven't switched in the past year, it's likely you'll be free to leave - and you could save up to \u00a3917.\"", - "media_hash": "163b396bd6a7d61d751a63b2b4b62643b6e8664607ca1de640356322", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "James McCaffrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.2593950000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about \u00a340 from a DIY store, which can be used to water the garden rather than using a hosepipe.", - "media_hash": "2144ac481c0e7c762e77d3cf238ab75f7e3d6f9eb6ff6e46de2ba1be", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.2593950000000005, - "economy": 3.2593950000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's how much energy bills will go up by due to the Iran war", - "publication_date": "2026-03-31T10:29:56", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "THE latest forecasts suggest household energy bills are set to soar as a result of wholesale costs caused by the Iran war.", - "media_hash": "6bd30ed7c397fc5115eec83999615eea458473ef5d8a30d2c4c34601", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.2544399999999998 - } - } - } -}, -{ - "title": "Tories call for more drilling in North Sea with new draft law", - "publication_date": "2026-03-31T05:45:45", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", - "media_type": "news_article", - "sentence": { - "text": "Conservative leader Kemi Badenoch said her party's Get Britain Drilling Now Bill would \"stop the lawfare and free our oil and gas industry\".", - "media_hash": "be847353d18dd7dd12ca49c26f98c1b0289c88a77ebf2615c5f8e79d", - "sequence": 2, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Kemi Badenoch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.228755, - "trending": 3.228755 - } - } - } -}, -{ - "title": "BBC Presenter Accuses Minister Of 'Patronising' Response To Growing Energy Fears", - "publication_date": "2026-03-31T08:18:32", - "publication": "huffingtonpost", - "url": "https://www.huffingtonpost.co.uk/entry/justin-webb-bbc-minister-energy-iran_uk_69cb752de4b0128a9ef9d16a", - "media_type": "news_article", - "sentence": { - "text": "The energy price cap, which was announced by Ofgem before the Iran war began, will see costs fall between April and the end of June - but that will change again in July.", - "media_hash": "194142e133abba078d08be0faec9c77cc9a8bd9729906350844ae0d0", - "sequence": 5, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", - "media_hash": "023e3e63fe3e678041d7fcfaf750c711047f86f44f2b370a0b4c250f", - "sequence": 46, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "economy": 3.211065 - } - } - } -}, -{ - "title": "The key north-east election issues as Tory and SNP leaders visit Aberdeen and Westhill \u2013 and what they think of Reform rise", - "publication_date": "2026-03-31T05:01:54", - "publication": "d30f8621-fc83-4834-a463-748c0a8a4f05", - "url": "https://www.pressandjournal.co.uk/fp/politics/scottish-politics/6986828/north-east-elections-snp-conservative-visit/", - "media_type": "news_article", - "sentence": { - "text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", - "media_hash": "4a2783b6197af9efa0d12701a5e3607ee5da0ef8efa0de3068cc8ba9", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "scottish_elections": 3.211065 - } - } - } -}, -{ - "publication_date": "2026-03-31T08:48:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/SeamusLoganMP/status/2038901226931159223", - "media_type": "social_post", - "sentence": { - "text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", - "media_hash": "8ec10c3352342495edc697bd098438eec80d5a70bcb4a2738b263378", - "sequence": 2, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "scottish_elections": 3.211065 - } - } - } -}, -{ - "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", - "publication_date": "2026-03-31T08:46:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Dickinson also flagged charges added to businesses' energy bills, echoing criticism from Marks & Spencer boss Stuart Machin last week, who said these were 'just not sustainable'.", - "media_hash": "f458cb28c47063a714e60753389bb5f00c7bf68858ff61e499c504a8", - "sequence": 12, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Marks & Spencer", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stuart Machin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "Indeed, prices have nearly doubled since the start of the war.", - "media_hash": "c48460cec19397e44e947c1407c86a91e0bc78b8f251549a883936d3", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.17364 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 3.17364 - } - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "In addition, more than three in four small business owners said business worries keep them awake at night with concerns over economic volatility and geo-political uncertainty reaching a record high (52%).", - "media_hash": "e06e4508fed9737b6d6ea1ba02769429e74e28a4187d1c627129f097", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.134055 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Respected energy analyst Cornwall Insight has said electricity costs for businesses have increased by between 10% to 30% since the conflict began in late February, while gas prices have soared by between 25% and 80%.", - "media_hash": "16a16b0321a0c1e0fe2f8a55dd77fffcfe0e092852b09b2d0842ad24", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.123595, - "energy": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "The Government's own numbers say that 93 per cent of the oil and gas which could be extracted from the North Sea fields has been extracted.", - "media_hash": "1cd502b3f08161214cfe0995f45c7faf4cc101fb6ad9dff9de307ddf", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", - "publication_date": "2026-03-31T07:14:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", - "media_type": "news_article", - "sentence": { - "text": "The strait usually carries 20% of the world's oil and gas supplies and since it has been closed the global economy has been hit hard with soaring fuel prices.", - "media_hash": "ec6255745ee4b49bff856b30f22579c327f9c814cbd8c5478095d013", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil and gas prices won't immediately return to normal...", - "publication_date": "2026-03-31T19:02:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", - "media_type": "news_article", - "sentence": { - "text": "He said the EU's executive arm is preparing a string of measures designed to help families and businesses weather the huge spike in oil prices that have resulted in about a 70% price hike for gas and 60% for oil in Europe.", - "media_hash": "443502b9539218cff718f7625a98128a097040be8373cf43122203b0", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "European Union", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dan J\u00f8rgensen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Shoppers face pain if we don't tackle red tape and energy prices, retailers warn", - "publication_date": "2026-03-31T08:46:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15692937/Shoppers-feel-pain-tills-Government-ignores-pleas-energy-price.html", - "media_type": "news_article", - "sentence": { - "text": "'They now make up over half our bill.", - "media_hash": "464fbeb87f13b2b56862e39575024c39d680b93d68e2c272ad3053d9", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran\u2019s Energy War -- Netanyahu: \u2018Only Long\u2011Term Solution to Hormuz Crisis Is Rerouting Pipelines to the Mediterranean\u2019", - "publication_date": "2026-03-31T07:55:40", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/31/irans-energy-war-netanyahu-only-long%e2%80%91term-solution-to-hormuz-crisis-is-rerouting-pipelines-to-the-mediterranean/", - "media_type": "news_article", - "sentence": { - "text": "The Strait of Hormuz, which typically handles roughly one-fifth of global oil supply, has seen traffic collapse by as much as 95 percent since the conflict began, according to maritime intelligence estimates, with shipping severely curtailed amid security threats and mounting restrictions tied to Iran's actions.", - "media_hash": "0234a66036b6a908123d547472b1aa636a233e24678d1f67c809121c", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The impact of the Iran war on Asia", - "publication_date": "2026-03-31T09:11:27", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c1450zj6n48o", - "media_type": "news_article", - "sentence": { - "text": "The impact here of a war more than 7,000km (4,300 miles) away is being felt strongly - with the country's jeepney drivers among the worst affected.", - "media_hash": "a134a2a00d59c78fc1d5e72e7d720bca421c868aac1cd2d4c0511bef", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": { - "politics_of_food": 3.09725 - }, - "dev": { - "blah": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": { - "digi___strait_of_hormuz": 3.09725 - } - } - } -}, -{ - "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", - "publication_date": "2026-03-31T07:14:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", - "media_type": "news_article", - "sentence": { - "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started Feb. 28 when the U.S. and Israel attacked Iran.", - "media_hash": "1861408e2bbd2f24aa405fbf9d247717a2ae524ffbae21c38434a9c9", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Inflation increases to 2.5% in Europe as Iran war...", - "publication_date": "2026-03-31T09:56:06", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", - "media_type": "news_article", - "sentence": { - "text": "FRANKFURT, Germany (AP) - Europe's inflation rate rose to 2.5% in March, according to official figures released Tuesday, as the Iran war sent fuel prices sharply higher.", - "media_hash": "4727fc2470ab94fedf3606b14277526c4419fc7383245215aee8453a", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Eurostat", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "That's only half the job. They left wholesale prices to be driven by global markets and in the last energy crisis, 2022, wholesale prices over took retail and it bankrupted half the players in the energy market.", - "media_hash": "57619ec41b1d99d06235d288ace33b302efe02f19d035fea340f2c00", - "sequence": 1275, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - } - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Its blockage and the disruption to supply, combined with attacks and stoppages at energy infrastructure across the Middle East, has sent gas prices soaring and the cost of crude surging past 100 US dollars a barrel since the conflict started on February 28.", - "media_hash": "711505fe6c3c13d6bcb1b2bad899279acedf82da5ebc1300837e604b", - "sequence": 17, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "The Conservatives have called on the Government to take urgent action to support all households and businesses by cutting VAT, taxes and levies off energy bills.", - "media_hash": "f85a1d105435042e78348614100a3e2993b17a0541d4317d641d3a22", - "sequence": 20, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "The Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.074775 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "He also said that the UK has the most expensive industrial energy prices in the world.", - "media_hash": "0ce024aa930b47fd39241b68d03e0b4b824170075b74a004d0c543a3", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.074145 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 3.074145 - } - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases.", - "media_hash": "75b1ff08b834fbb5a058593b5aa513cdb559fcb5d4a045cb3e0e115e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "Make UK estimate that the average cost to a manufacturer will be \u00a3100,000, rising to \u00a3250,000 by 2030.", - "media_hash": "42eacaf45ff12616e873e1c4870520a1ccb562de50616b4dc1a4be0f", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Make UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "And when it comes to energy, consultancy Cornwall Insight has said that bills could go up by \u00a3332 in July when Ofgem sets the new price cap.", - "media_hash": "14a1ef5727ca936089ae7ea2fd0b8bedfc07362459f12a7f0d4d42e0", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "In the end, the final cost was closer to \u00a327billion, but we can't even afford that today.", - "media_hash": "d4f79ad335a6bd5f7de73ae53ccc6f6467dce6fef25c474593d37484", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "'Even when you look at the means-tested State pension - which is for people who reach that age without having sufficient social insurance contributions to qualify for a contributory pension, so we know those people are on low incomes - only 56 per cent of those qualify for fuel allowance.", - "media_hash": "71a24ebf67f98044c30b1d4e82815bb05d08cd04520def33f605a106", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Age Action Ireland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "\"Shutting down the North Sea means we are losing out on \u00a325 billion in tax receipts that we could use to cut bills and reduce the cost of living.", - "media_hash": "1b4a0510f183c8938a242b3fd3dc32a10d9f1542446cf52d09a35a67", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104555, - "score": 0.14649999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "Filling up: Brent crude has reached nearly $117 a barrel as prices for petrol and diesel continue to climb amid fears of a repeat of the 2022 energy crisis", - "media_hash": "bbcaf9c778d6358e11979b0e9e3b18c981b0d0c52a154f9357970ef3", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", - "media_hash": "7ee60d472340e5a6169d594449470529ec8d11314140dbe43d85c3f7", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.970815, - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Small businesses across the UK say that the estimated hike in energy prices following the war in the Middle East will cost them an average of \u00a32,273.90 a month, coming to a whopping \u00a327,286 over a 12-month period.", - "media_hash": "8431e0e8e9378ecfefb2959be47f4fce45937efe30a5fceb40fd9b56", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104448, - "score": 0.37929999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": { - "climate_misinformation": 2.970815 - } - } - } -}, -{ - "publication_date": "2026-03-31T12:12:02+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/Telegraph/status/2038952458492215586", - "media_type": "social_post", - "sentence": { - "text": "RT @DailyTPodcast: By 2035, we would only need to import 6% of liquified natural gas from abroad if we drilled in the North Sea...", - "media_hash": "113f2547f88604440b13f7baa5e8136c4113ae9390c3f767bae1fa0c", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Daily T", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - } - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Opposition leaders argue the \u20ac250million fuel-relief package announced this week does not go far enough, while one leading economist said wealthy people driving 'big SUVs' will benefit most from the measures.", - "media_hash": "7467cf58b02f3d5cae18f898d60bf11442b3e00fade54d957a7561e9", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Opposition leaders", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "leading economist", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "energy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil and gas prices won't immediately return to normal...", - "publication_date": "2026-03-31T19:02:16", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695877/Oil-gas-prices-wont-immediately-return-normal-Iran-war-ends-EU-warns.html", - "media_type": "news_article", - "sentence": { - "text": "Since the start of the war, the EU \u0301s bill for imported fossil fuels has jumped by 14 billion euros, according to J\u00f8rgensen.", - "media_hash": "6d493676076f6f5f2c9e829a13647908a2330a30964b983be0ca1606", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "European Union", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dan J\u00f8rgensen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", - "media_hash": "5f76ec41c120474bd2f456d6d80bc5cdbb27746137330400a50a526a", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.970815, - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T12:05:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Diesel went from about \u20ac1.72 per litre to \u20ac2.30 cent per litre, meaning an increase of 11 cent per litre in the 23 per cent VAT take.", - "media_hash": "778c9d1c316edf78df41480020a27b21ea66480ed5a13361f255eb53", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", - "media_hash": "2366f3bcead30a3c69969c3b4d708cce8894eaa831401c1443a8efa3", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", - "media_hash": "41affbdecfc8d59ba66c667c1a04b7cffca63c698680ab64100a134e", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104448, - "score": 0.19320000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "They said rising energy prices mean they will pay an average of \u00a3753.56 more each month for transport, travel and logistics and an average of \u00a3734.42 more each month to heat their office/workplace.", - "media_hash": "1ed559e163c77681d9ec8620ca006ebec33e80a1f44c1f508e28ccf4", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": { - "climate_misinformation": 2.970815 - } - } - } -}, -{ - "title": "Fuel shortage update as drivers given important message on what to do now", - "publication_date": "2026-03-31T12:21:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", - "media_type": "news_article", - "sentence": { - "text": "\"This is why people are now concerned that there's a developing shortage of diesel and jet fuel - jet fuel prices have gone up 50% since the war began and I think they'll go up further.", - "media_hash": "e66e9f6da6467aaf75d7086e543a794405683ca98c717faaaa644aea", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nick Butler", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "energy economist", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "ex-BP head of strategy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "advisor to Gordon Brown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", - "publication_date": "2026-03-31T19:25:00", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", - "media_type": "news_article", - "sentence": { - "text": "The Chancellor can expect a multibillion-pound windfall in tax as the war drives up energy prices at petrol pumps", - "media_hash": "fdd71bca853724f21e763d654692a702e8a9c4743717eadf34777c8c", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The impact of the Iran war on Asia", - "publication_date": "2026-03-31T09:11:27", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c1450zj6n48o", - "media_type": "news_article", - "sentence": { - "text": "In Mumbai - a city of more than 22 million people - as many as a fifth of all hotels and restaurants fully or partially shut in the first weeks of March.", - "media_hash": "701b5892d86e4d1a1ff545be5b67cb3e2546efb82093e59e63520635", - "sequence": 79, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": { - "politics_of_food": 2.970815 - }, - "dev": { - "blah": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": { - "digi___strait_of_hormuz": 2.970815 - } - } - } -}, -{ - "title": "The Greens who want to drill the North Sea", - "publication_date": "2026-03-31T04:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", - "media_type": "news_article", - "sentence": { - "text": "The concept of fracking has the support of 41 per cent to 30 per cent opposed.", - "media_hash": "2311446e6dd8fcfe809229c9aebee10fdff3dcb65c37b95ce4ea3f5d", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Britons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "Farage stated that household bills have been 15-20% higher for \"the best part of two decades\" due to these subsidies.", - "media_hash": "85a8706a7f8451c52373529b5ac88c9d389c1dd58508431f889a27ec", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815 - }, - "demo": {}, - "pa-media": { - "environment": 3.123595 - }, - "fullfact-policy": { - "climate_misinformation": 2.970815 - } - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "Nuclear projects currently face up to eight separate regulators, multi-year planning battles, and a legal environment where any local challenge can derail nationally significant infrastructure for years.", - "media_hash": "f66c82558643ea7235318853c1c2aaeca7de0aaa44644221955ed3f8", - "sequence": 24, - "claim_type": [ - "quantity", - "rules" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.93752 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Because this is the second one of this decade already, you'll probably realize, it's only 2026, this is our second one, there'll probably be a third one for all over.", - "media_hash": "3a3a92ea8df1ede4410657b5774a52dd377f39e8be988fca183e1b6b", - "sequence": 1270, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.89907 - } - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "Nearly everyone in England, Wales and Scotland is benefiting from the cut irrespective of their tariff, although the amounts will vary between households.", - "media_hash": "eaeb5cb7a0c1c26ed5f25c939375aba6550d38340d0765b47281860b", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "A bath typically uses 100 litres of water while taking a four-minute shower with a \u00a320 water-saving shower head uses just 32 litres.", - "media_hash": "e07f5f793a6bd9a27ffa3b60f452568dedef7161680a50bbbd801445", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131, - "economy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T22:56:31+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/TrisOsborneMP/status/2039114646699835893", - "media_type": "social_post", - "sentence": { - "text": "Every kWh delivered by green energy is less use of oil / gas.", - "media_hash": "2baca56d774ac67f6185d149d60b5bc1d72bd7949336566afea2b446", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "user", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131 - } - } - } -}, -{ - "title": "Fuel shortage update as drivers given important message on what to do now", - "publication_date": "2026-03-31T12:21:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", - "media_type": "news_article", - "sentence": { - "text": "He explained: \"If supplies are cut by 20%, then someone is using 20% less.\"", - "media_hash": "b7f03c16764b735c924010e6265589e92097a555794ffd0ac26fac92", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nick Butler", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "energy economist", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "ex-BP head of strategy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "advisor to Gordon Brown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.88131 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "A washing machine requires up to 150 litres of water per wash.", - "media_hash": "0ab511a7b85895b514e7743d810218beac852d340100c2b6f440c672", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131, - "economy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", - "publication_date": "2026-03-31T18:59:36", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", - "media_type": "news_article", - "sentence": { - "text": "Mistreatment or hostility will only slow communication and resolution.", - "media_hash": "4e365517925655e5133751ebef1393b7f5d9d45895dfcc50c2df3a61", - "sequence": 20, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.867685 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5692500000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", - "media_hash": "86a27ceed05145c49e4630b444b17b58075ef42a578d09157195487a", - "sequence": 1407, - "checkworthiness": { - "fullfact": { - "energy": 2.8610100000000003, - "economy": 2.8610100000000003 - } - } - } -}, -{ - "title": "Trump makes bombshell announcement as UK warned of horror energy crisis", - "publication_date": "2026-03-31T07:14:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2188565/trump-makes-bombshell-announcement-uk", - "media_type": "news_article", - "sentence": { - "text": "In the UK petrol stations have already started to run dry, with closures reported from as far as Northern Ireland to Essex at the start of this week.", - "media_hash": "53482abb69b7af5936f0fea3b7b2196bf778adba25b90cd512807a59", - "sequence": 5, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.8334 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Paying the Middle East premium", - "publication_date": "2026-03-31T14:09:14", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/paying-the-middle-east-premium-6530470", - "media_type": "news_article", - "sentence": { - "text": "From mortgage rates to the price of fuel, cost of living pressures are increasing and there seems to be no signs of relief anytime soon.", - "media_hash": "c62a2add61568fba8f131ea470648eda3cecba274da6caa65340d209", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.8194 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:00:19+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/ClaireCoutinho/status/2038889111088484747", - "media_type": "social_post", - "sentence": { - "text": "At the same time, refusing to fully exploit North Sea oil and gas just forces us to import dirtier energy, lose jobs, and weaken our economy.", - "media_hash": "53699f47d7c21807524323d41de7f48349522e9aab182ece06119567", - "sequence": 1, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "BenGrahamUK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.8109650000000004 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", - "media_hash": "c4145132ba7b006d21f8d80c44b970dfec84e420116506164213a9a5", - "sequence": 1398, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.810965, - "economy": 2.810965 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", - "media_hash": "4fed090c7516038c5440b72410678a5e4a2b89cbc8e8a2c98b815212", - "sequence": 1392, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.810965, - "economy": 2.810965 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Experts fear that Brent crude could reach all-time highs of $150 a barrel if the conflict continues.", - "media_hash": "437b70ac5dd57db6a5f571c66939fd58a6932bbb369186a32ec68f93", - "sequence": 13, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.78611 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", - "media_hash": "8c7a42ff28cf003199ccc9b149756bbf41b9621a223335d4f08b5027", - "sequence": 1404, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.7846200000000003, - "economy": 2.7846200000000003 - } - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "With conflict in the Middle East driving volatility in the energy market, the cheapest tariff is now priced at a similar level to the upcoming cap rather than saving you anything.", - "media_hash": "b731d72144654bc37eeefa1c3a557a6e97d4d164064466d691b68527", - "sequence": 6, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.7846200000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The impact of the Iran war on Asia", - "publication_date": "2026-03-31T09:11:27", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c1450zj6n48o", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, the attacks on energy infrastructure in the region have only served to push prices higher.", - "media_hash": "a40adadf1970aa9ccee53afb1dc47c79f4996f942f7792453d49eb90", - "sequence": 12, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.7846200000000003 - }, - "demo": { - "politics_of_food": 2.7846200000000003 - }, - "dev": { - "blah": 2.7846200000000003 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": { - "digi___strait_of_hormuz": 2.7846200000000003 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "The annual cost of essentials, including council tax and water, will increase by more than \u00a3200 from April even before the economic impact of the Iran war is felt by UK consumers.", - "media_hash": "2a539b79fa1ae6b284e4a95318b501160491e695a55aa979a45121cc", - "sequence": 6, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.77565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "However, there will barely be a chance to enjoy the savings, amounting to around \u00a310 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", - "media_hash": "abc32788f0e2da823cac45fc728a1c4febb7af1173ad2ff11f05cb68", - "sequence": 65, - "claim_type": [ - "quantity", - "predictions" - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.2639 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.77565, - "economy": 2.77565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "South Africa hit by record diesel price hikes despite...", - "publication_date": "2026-03-31T21:11:59", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696213/South-Africa-hit-record-diesel-price-hikes-despite-fuel-levy-cut.html", - "media_type": "news_article", - "sentence": { - "text": "He said that the fuel increases, especially the record increase for diesel, would have a devastating result on the cost of logistics and transportation, with knock-on effects on inflation in coming months.", - "media_hash": "5076e04d8f7f341904ec978ba287e288a36282f07b04b7e2373eaa2e", - "sequence": 14, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Theuns Du Buisson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.7756499999999997 - }, - "demo": { - "politics_of_food": 2.801995 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir said he was focused on 'de-escalation' of the crisis that has led to the blocking of the Strait of Hormuz, which normally carries 20 per cent of the world's oil.", - "media_hash": "75073c749563f3b6e874bcf3c725eef1180b6f32c06a4d029bf67ddd", - "sequence": 43, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.76525, - "starmer": 2.76525 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.76525 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", - "media_hash": "eaa02221fdad37e1e16920f4e8a9357f1d45634069cfa01b48fc4b75", - "sequence": 11, - "claim_type": [ - "predictions", - "support", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.753175, - "energy": 2.753175 - } - } - } -}, -{ - "title": "Greens pledge \u00a3600m renewables investment through carbon capture cuts", - "publication_date": "2026-03-31T06:06:40", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/greens-pledge-600m-renewables-investment-through-carbon-capture-cuts", - "media_type": "news_article", - "sentence": { - "text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", - "media_hash": "deed62a4ff8fb436ae263ebf718bcf36975cde689cf518d8d8520565", - "sequence": 12, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Greens", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Gillian Mackay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ross Greer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 2.751055, - "energy": 2.751055 - } - } - } -}, -{ - "publication_date": "2026-03-31T11:22:50+00:00", - "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", - "url": "https://x.com/scottishgreens/status/2038940076432892346", - "media_type": "social_post", - "sentence": { - "text": "Green energy is the cleanest and cheapest energy available.", - "media_hash": "2cfb1d3be5211999387f81c93f07495e28ffaae07adddebf282b3f42", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Green energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.751055 - } - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "\"If your provider can't install one, they must offer you an 'assessed charge', which could save you money. Around 2.5 million households are also eligible for social tariffs, with average discounts of around 40%.\"", - "media_hash": "8af17233e63bb5a6a8b581fa7c6ea962e50ea4293367d42fd2e07d4b", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "The average figures quoted for additional monthly costs are national averages that include those not affected by price rises.", - "media_hash": "c40e817efabda719abc00e11a87fa39d3e24f5887eeab1dcf78a5c75", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_misinformation": 2.72968 - } - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "In terms of unit costs under the April cap, the maximum that households on a default tariff are paying is 24.67p/kWh for electricity and 5.74p/kWh for gas, with standing charges of 57.21p and 29.09p respectively.", - "media_hash": "7467607d8f9550f2fa1b93e5c6854d3f6594b4e06277e070a0e76e62", - "sequence": 140, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", - "media_hash": "812b460b7392f5dca5257da1e17967ad0a41f7c07975cb7156c40aa5", - "sequence": 1331, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72968, - "economy": 2.72968 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Water bills in England and Wales are also due to rise, by an average of \u00a333 a household from April, up 5.4% to \u00a3639.", - "media_hash": "c051d844f8af4e1b03fa97c262c96ccf7d6da10c4e6df5340dd5778e", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72853 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Some households could also save costs by installing a water meter - those who switch typically save up to \u00a3100 a year.", - "media_hash": "091f2a9fe79c6cfe00659a0ba615c829a92a00179afaf70169290f98", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72853, - "economy": 2.72853 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "BT, EE, Plusnet and Virgin Media are all hiking broadband prices by \u00a34 a month, Sky by \u00a33, and Vodafone by \u00a33.50 - adding nearly \u00a350 more per year to bills.", - "media_hash": "ac2b32309a9c66b5f95d0980054cb1b5c266cff110da66bcb71ad736", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72853 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "The estimated 22 million households still languishing on their supplier's Standard Variable Rate are paying the maximum allowed by the regulator.", - "media_hash": "5f87b14f62acc394c698ed61ef16604c180f49d11c0f03873e1ec925", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", - "media_hash": "0b3125de9d730baa8e316111bf3e0ef949b8ee04da0bf3d6c4b53824", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - } - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "At around \u00a3400, these panels are much cheaper than traditional rooftop solar and can be put on balconies, in outdoor spaces or fixed to an outside wall that catches the sun.", - "media_hash": "bfefb0358274f3c6f53a30868394e3019609ebb47d7165d99988ecaf", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Inflation increases to 2.5% in Europe as Iran war...", - "publication_date": "2026-03-31T09:56:06", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", - "media_type": "news_article", - "sentence": { - "text": "Food price inflation came in at a relatively moderate 2.4% while services, a broad category ranging from medical care to haircuts, rose 3.2%.", - "media_hash": "ef685035c3cf469702f934d6cb8179d590aa596bb3f29431e762862e", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", - "publication_date": "2026-03-31T08:48:48", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/british-gas-octopus-eon-edf-36947292", - "media_type": "news_article", - "sentence": { - "text": "\"There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", - "media_hash": "8a9f957eeeb536762f63b4fe099aa71ed384fc509569c991df602c66", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Craig Lowrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "Nuclear power's safety record, measured by deaths per unit of energy produced, is better than oil, gas and coal, and comparable to wind and solar.", - "media_hash": "64b748b79d2c465931017e3b2983dcbe32a4b0a69a327c1c25d8ba4d", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "While 16% of businesses said they may need to reduce staff numbers, 34% are looking to automation to cut long-term costs.", - "media_hash": "72cc5be288af197f3091a16c1c98d913b8b226bcd5afdc1fc3b549d3", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "Asia feels the sting of Trump-induced energy crisis", - "publication_date": "2026-03-31T17:27:12", - "publication": "thecanary", - "url": "https://www.thecanary.co/global/2026/03/31/asia-energy-shortages-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "This crucial waterway has global significance for Asia, serving as the gateway for 20% of global Liquified Natural Gas (LNG) and 25% of seaborne oil.", - "media_hash": "9eed97277f1cbcef32676838853a9bbe949b2558e35d0fbec09183d0", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104558, - "score": 0.1654 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "While the UK does have among the highest industrial energy prices in the developed world, this is primarily because the country is more reliant on gas for generating electricity compared to other European countries.", - "media_hash": "09532656fea118e22b02a44e2dc11597329c8abb99d230bb3ca3d11c", - "sequence": 10, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": { - "environment": 2.6987249999999996 - }, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T12:05:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Petrol and diesel combined come to \u20ac1,195,000 a day.", - "media_hash": "0d2eeb7ed6f21681eb2e175b8d8b83d9a739cd03c78210d3c4db8c7e", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fuel support considered for diesel-dependent Pacific", - "publication_date": "2026-03-31T23:40:41", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", - "media_type": "news_article", - "sentence": { - "text": "With 80 per cent of regional energy currently dependent on imported oil, the crisis has accelerated the push for local clean energy generation.", - "media_hash": "1bdc81db22d2b9a9289f1bace289fa6c1ab09e2b414b2358531c638c", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "claims_matched": [ - { - "tracked_claim_id": 104558, - "score": 0.23070000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "The economy barely grew at the end of last year, official figures confirm, leaving it vulnerable to a further downturn triggered by the latest energy price shock.", - "media_hash": "f4f075aa2e953672b2c04ccaf1223f27db0c4576a8f1747cf2300c73", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "It is worth noting that current wholesale costs remain well below the extremes of 2022, which means that, despite the turbulence, the scale of this crisis is not yet comparable to the price shock households faced three years ago.", - "media_hash": "fae5b1f8f580a70819b91d838d34dfc301674a125a60f628e8b995fe", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "'There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", - "media_hash": "dab39f0c5791c4a4ffa6b26024c7387c7b85b152dc5c7d47577c33e4", - "sequence": 22, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Craig Lowrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fuel support considered for diesel-dependent Pacific", - "publication_date": "2026-03-31T23:40:41", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", - "media_type": "news_article", - "sentence": { - "text": "While reducing emissions is a factor, for these nations responsible for just 0.03 per cent of global conditions, the primary driver is energy security.", - "media_hash": "e4e69ae6618b841ecda831b051be4a7fd45936795d2b01aee75b0fc1", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Over two in five said they are likely to raise their prices; 20% said they would reassess their funding arrangements with lenders to free up more working capital; and 17% said now was the time to explore renewable or green energy options to lower costs.", - "media_hash": "35b3656b474e910b3e46983e3fc68c32adf367f4fe3ffc0011f36328", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "On average, those taking part currently secure approximately 18 hours of complimentary electricity monthly, based on company figures.", - "media_hash": "9c719a36ea7c3c5a8d408e4f3df38ad348e6ded0f694a3e5726f96ff", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.22540000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", - "publication_date": "2026-03-31T02:21:07", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", - "media_type": "news_article", - "sentence": { - "text": "It has approximately 1.2 billion barrels of onshore crude inventories, Kpler estimates.", - "media_hash": "d026eb86b0a726ad08ad5742bbaee8eb094868dfc07ffe11a133c438", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kpler", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves and Starmer Government to make \u00a320million a day in tax from Iran war chaos", - "publication_date": "2026-03-31T19:25:00", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/rachel-reeves-starmer-government-make-36949274", - "media_type": "news_article", - "sentence": { - "text": "The additional revenue includes billions of pounds levied from North Sea oil and gas profits, power generators and VAT on petrol sales.", - "media_hash": "2414c4c2579449283b09b5feac4bebb83103707f8c025ffad37620b1", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "More than \u00a3130m is spent each year on such schemes.", - "media_hash": "7e0303524cd63bac6650c4cc3e93fe75a79f51183806cc2f80065247", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "senedd_election": 2.6987249999999996 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Gas and electricity bills are set to fall by \u00a3117 a year on average from April 1, to \u00a31,641 a year for a typical household.", - "media_hash": "9fc5bdd0c8a75354fc89bff6373ffa1ba064ec972dafbe15787065ad", - "sequence": 64, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Because back then the amount of goods - not just oil but also fertiliser, aluminium, all sorts of other products - was a lot less than what we are dependent on today.", - "media_hash": "1edd0ff0e142259138215bb5f91cec1bc51d419f0dbf086d335da207", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Lars Jensen", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Gas prices are climbing just as quickly, and with 26million UK homes relying on boilers, we're more exposed than most.", - "media_hash": "f71ab47ecc611f5b117c798e4d88261953a1f6f36a4a25b89260db08", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "'Fewer than 30 per cent of people in receipt of the State pension get fuel allowance.", - "media_hash": "38482eafdbcb633514c6b0f584185f91cb65f5bdf2d44cbe89cb9462", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Age Action Ireland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.72968 - }, - "pa-media": {}, - "maldita": { - "energy": 2.72968 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "Production has been falling for a long time - last year, production was about 20 per cent of what it was in 2000, near its peak.", - "media_hash": "680bab7e71c24da7acf4603d34c5a615916a2aaaf8a10af5c68edd17", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.6987249999999996 - } - } - } -}, -{ - "title": "Households can get free electricity on four days next month", - "publication_date": "2026-03-31T07:50:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", - "media_type": "news_article", - "sentence": { - "text": "On average, customers taking part earn around 18 hours of free electricity per month.", - "media_hash": "762f8989ed086b14b35c90c6d028487ed4b20aa15a28082b351e6c1e", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - } - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "Customers have racked up more than 20.5 million free hours of electricity", - "media_hash": "d98ba5c0af2ae1c7117c83759a23125ddf99fd2c2a41f89323d43d2c", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.3023 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", - "publication_date": "2026-03-31T12:13:11", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", - "media_type": "news_article", - "sentence": { - "text": "\"It's always hard to be 100 percent, but we can detect more than 90 percent of what's happening in real time.\"", - "media_hash": "c352b87c8a2b8d36d6390d19c8370edbe070901567dc9bd0db262417", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kpler", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jean Maynier", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Oil has almost doubled from around $60 a barrel to almost $120.", - "media_hash": "5c9ff7fe672462aea49ec1b943ede7e71263d2cf7362fefd9aa7cf4a", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", - "media_hash": "9e3574c922321a880b23e9f356285ff07ee2913732f20c41250506cf", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996, - "leo_s_topic": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.698725 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "In the US, it takes an average of eight years for a hydroelectricity facility to become fully licensed.", - "media_hash": "cd2bff9e3c7813774fd8dd8a6ed3688ee7dc68f9bb48fa735931b8ad", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Mobile customers can save an average of \u00a3304 switching from a handset contract to a SIM-only contract.", - "media_hash": "215d90b8b45740ee47f8a532d099de8ab25573592bc4447f3942d5e9", - "sequence": 53, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T15:37:04", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "Electricity is measured in kilowatt-hours (kWh) - with one unit equivalent to a 100-watt light bulb running for 10 hours, or a 200-watt fridge for five hours.", - "media_hash": "9204911444626a85d5f27ec13156f8689be03a063835214e3ef5351e", - "sequence": 46, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6831300000000002 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6831300000000002 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "We need far more oil and gas as part of our overall national energy situation.", - "media_hash": "4317202f8da0354918a977b9bb0ffdf233f6ec0901a0b38e6561358e", - "sequence": 967, - "checkworthiness": { - "fullfact": { - "energy": 2.6746749999999997, - "trending": 2.6746749999999997 - } - } - } -}, -{ - "title": "Europe told to 'work from home, drive less and avoid flying' in energy crisis update", - "publication_date": "2026-03-31T22:46:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/world/2189020/europe-told-work-home-energy", - "media_type": "news_article", - "sentence": { - "text": "The Strait of Hormuz, through which about one fifth of all global oil traded passes, has been a contentious point in the conflict.", - "media_hash": "3adfcd8485a0ceafb86a0d93c9c7a4e21abde867624ae6c4f75b2f50", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.67238 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "Um, instead, the first response of the government seemed to be to to whip up a storm about profiteering, which was, you know, extremely unhelpful and, you know, annoyed petrol retailers and actually put some of their staff at risk of, um, verbal and physical assault.", - "media_hash": "9da2a601b05e9ed764899c1c58cee2af9c0f927b48efacae38e759de", - "sequence": 250, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.652965 - } - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T12:05:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "There was no reduction in the home-heating oil tax, which Age Action Ireland has predicted will contribute to a 'significant rise' in poverty amongst elderly people.", - "media_hash": "e9e51db0ef84b192f35e02b813a7a568d758f3dbc455f760d090849f", - "sequence": 7, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Age Action Ireland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.649215 - }, - "pa-media": {}, - "maldita": { - "energy": 2.649215 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "Experts are warning that when the Government's quarterly price cap comes in at the end of June, bills are expected to jump by \u00a3332 to an average of \u00a31,972 a year.", - "media_hash": "1605695c32559f98a4fa7d6dd5dd40832c72da97807365b7ceedd42c", - "sequence": 5, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Experts", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.31699999999999995 - }, - { - "tracked_claim_id": 104752, - "score": 0.06775669193604274 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.649215 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", - "media_hash": "34c35813d5befd06a9e4c04c9711f2e0dc698156a8a9c287a0bdb322", - "sequence": 1325, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215, - "economy": 2.649215 - } - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "What they never add is that they'll rise by almost 300 pounds come July.", - "media_hash": "d9e86fba73e745c8ce01fa232deaf2733de6ca69047e342b01173d30", - "sequence": 86, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215 - } - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "Um, I mean, for example, we had the publication this morning of the latest estimates from Cornwall Insight, a very sensible people who forecast what the off-jam cap might be in July, and they were predicting an 18% rise, which would be clearly very painful, but we're nowhere near as big as the rises that we saw in 2022.", - "media_hash": "8a676fd6d42318426d9641ddaa0837eeeb22981a0b5dbf2862eea6ae", - "sequence": 263, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215 - } - } - } -}, -{ - "title": "Fuel shortage update as drivers given important message on what to do now", - "publication_date": "2026-03-31T12:21:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188801/iran-fuel-shortage-update-drivers", - "media_type": "news_article", - "sentence": { - "text": "Iran is blockading the Strait of Hormuz in response to air strikes by Israel and the US, preventing about 20% of the world's oil trade from passing through.", - "media_hash": "c1359cf7475e76f186142b82190c7aa271b82aeceff9846a2131a894", - "sequence": 3, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.648555 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "\"The biggest . challenge] is just the lack of awareness of our solution, but that's really flipped in the last nine months. We still keep our 40-50% tax credit, while wind and solar [equivalents are sunsetting,\" says Davies, referring to the Trump administration eliminating Biden-era federal subsidies for solar and wind energy ventures.", - "media_hash": "9e9c28ae1e52f7c91b8a620304e00e49e4223e7574e1d182eb561ac2", - "sequence": 43, - "claim_type": [ - "quantity", - "support" - ], - "claimer": [ - { - "name": "Ocean Renewable Power Company", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stuart Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.641985 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.641985 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", - "publication_date": "2026-03-31T12:13:11", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", - "media_type": "news_article", - "sentence": { - "text": "\"There is almost no crude oil arriving\" in Asia currently, and no viable alternatives to energy imports from the Middle East while \"inventories are being depleted\", Maynier said.", - "media_hash": "74aa49e8306545f4dddc43beeb184efbe96b2f7d1ea6ab6368848dce", - "sequence": 11, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Kpler", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jean Maynier", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.638815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Fuel support considered for diesel-dependent Pacific", - "publication_date": "2026-03-31T23:40:41", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15695893/Pacific-energy-crisis-looms-amid-Middle-East-war.html", - "media_type": "news_article", - "sentence": { - "text": "Zero Carbon Analytics energy transition researcher Amy Kong said small economies were already spending huge proportions of GDP on fuel imports.", - "media_hash": "ace7482f046e9130038b912af169339ebf4c0eff66310f389aa75004", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Zero Carbon Analytics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.638815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "The energy experts warned a rise in Ofgem's price cap in July was 'effectively unavoidable' with rocketing wholesale prices over March now locked into the calculation and little chance that they will fall below pre-war levels in the coming weeks.", - "media_hash": "6fc048d199ac69c129e65069887ea14cc33a03221bfa264d543e9bab", - "sequence": 17, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.638815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Other parts of the world in Asia, they're having four day weeks and rationing and stuff like that already because they depend on the Middle East and Gulf states for their oil supply, we don't.", - "media_hash": "75931974be872b378b927947cf0f4cfaa2914290adad925a10d7c153", - "sequence": 1263, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.638815 - } - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "However, with gas prices soaring once again - before they even had a chance to recover from the spikes generated by the Ukraine war - it is becoming blindingly obvious that solar and wind power are the way to go.", - "media_hash": "7baac23f7d2949a28bd34d5a4e6d5476fbb9878bcaae68fb39c30d90", - "sequence": 25, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6127849999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.6127849999999997 - } - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "Labour may have lost grip of the national spirit.", - "media_hash": "2c201eb3e97d10753762e5dd62013bda64a1ee018c471eea07ec5375", - "sequence": 40, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6127849999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "\u00a3400 plug-in solar panels will quietly change the whole country", - "media_hash": "7f3da22572c0739565f02ee40f3b28d120632ecc7a206db2c7b67206", - "sequence": 0, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.603815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.603815 - } - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "The deal hinges on households cutting their usage during peak weekday hours - typically between 4pm and 7pm - when demand on the grid is highest.", - "media_hash": "1677b568ecd52319190a01ea9b3625996241d2e0c5572564ccc648b6", - "sequence": 3, - "claim_type": [ - "quantity", - "rules" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.012399999999999967 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", - "media_hash": "a0d759d8ce015fd1abcd1cd8c6d5dea694675bdb598d6e4fb4e3371e", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.57747, - "energy": 2.57747 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T11:42:35", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "He now pays just \u00a370 a month on gas and electricity bills.", - "media_hash": "b60d0dea28e812f87d820f41c8616977ac90c0652e3492334a2686ba", - "sequence": 58, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "Over four weeks, that adds up to a maximum of 64 free hours.", - "media_hash": "8a13772da4ae7ab9ce241f9213ab5dde8752d88ae70a45596340012e", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "But if you wash using the eco-mode setting it can be just 50 litres.", - "media_hash": "8a671600aaded2440af66dc6b56ed049783d5e79e8baf9de6459dd31", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "Nearly a third of homes in Ceredigion and Powys are reliant on oil, as well as 24% in Carmarthenshire.", - "media_hash": "3b7ccd4b108fc69bf072eaf4a2246286c9641c0d0a3ef12185932df9", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5769 - } - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "This consists of \u00a3409 million for diesel and \u00a3135 million for petrol.", - "media_hash": "37aadbde22bcf4a25558b2392a337a1c6d5fc9995ea2aa8fa0ed8a8c", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T12:05:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "That amounts to \u20ac1,045,000 per day, based on around 9.5million litres of diesel being sold per day in March 2025.", - "media_hash": "efb880d721024b10e3b3bccd0b8b42f005d4ef362aede07ffe8cbb2a", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "About 7% of households in Wales depend on oil as their primary heat source, but there are much higher proportions in rural communities.", - "media_hash": "f5c82af927f29eb7cb8362b532fe9679297ec7110ee93688185d5899", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.5769 - } - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "This is a 7 per cent drop.", - "media_hash": "4f054ebaaf4a3d813681844a17ac6a9c115825c5bc4e138af77c14c0", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "Through the Discretionary Assistance Fund, the maximum award for heating oil has increased from \u00a3500 to \u00a3750.", - "media_hash": "08b3e27a4eb4965878d6b29c5e2cad875adca8d5aa9d5d533470447d", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.5769 - } - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T15:37:04", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "That is \u00a3148 a month on average - 48 pc more than Gloria.", - "media_hash": "6536067146d9ddb3162a8ef18f57c202bbf2b2886df2d7385c39fece", - "sequence": 44, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5769 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "That equates to roughly \u00a36.6 million in total bill savings", - "media_hash": "03759c3d836f413f2049eb77d09bcc2443b6f80a4a3c81b441d5cf3a", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.054200000000000026 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "The maximum award for heating oil has been increased from \u00a3500 to \u00a3750 and people can now apply up to twice within a 12-month period.", - "media_hash": "25fe9f3524764fbdde96ed14412d4ddde8a70454a61f84c885fa613e", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "senedd_election": 2.5769 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", - "media_hash": "197c498503a7abad2d230377d1eb0902e9914c4a843924d354da4558", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "\"We've just had another stark report out from the UN detailing just how real and urgent the climate crisis is. Ditching green policies that lower bills, reduce pollution and make our communities safer and healthier, is exactly what I'd expect from a party funded by the fossil fuel industry and billionaires.\"", - "media_hash": "a7eeed8db626fffbca46cb724531fa0331136edb07a2e344806feba3", - "sequence": 20, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Green New Deal Rising", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hannah Martin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5649800000000003 - }, - "demo": {}, - "pa-media": { - "environment": 2.5649800000000003 - }, - "fullfact-policy": { - "climate_misinformation": 2.5649800000000003 - } - } - } -}, -{ - "title": "Thousands in Wales to get \u00a3200 boost as prices rise", - "publication_date": "2026-03-31T14:25:11", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/cost-of-living/thousands-wales-200-boost-prices-33688208", - "media_type": "news_article", - "sentence": { - "text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", - "media_hash": "f595f3379bb6c0c7ec5223b0549b909175def4f2441a6e06f9ff1473", - "sequence": 11, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.563275, - "senedd_election": 2.563275 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Most households in England and Wales will see an increase of about 5% in their council tax, while in Scotland bills will go up by between 4% and 10%.", - "media_hash": "8261f3f26d9b54403b94e0b41daec8ff6026467874d3778dcd6ff17e", - "sequence": 7, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.55971 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Korean Air takes emergency action as fuel prices soar", - "publication_date": "2026-03-31T05:33:56", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c5yvg42kr21o", - "media_type": "news_article", - "sentence": { - "text": "Fuel costs are the airline group's single biggest expense and accounted for around 30% of its spending in recent months, the spokesperson added.", - "media_hash": "3ccf0442cd76e3ef846741a1f19c67239266f7ac9f3807e3265f41d5", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Singapore Airlines", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "This all comes with the price tag of \u00a349bn in today's money, making it the most expensive reactor in the world.", - "media_hash": "11c50743d6e93e2eace5ffc5e3c9b50e3a9739260b2d6e70968b1d79", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "This is nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", - "media_hash": "4051649152a86f6232512d32df9ae3ad9403272b2a703efd3434c67c", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The average price of unleaded petrol in the UK has climbed to its highest level since May 2024 (Simon Belcher/Alamy)", - "media_hash": "76ff746dc9ecf82d1dab9cf88ca4656eefdf6b70fa4ce86e1002f4d2", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", - "media_hash": "c739ce8a295258f71a0dac70bc2128ea66f6848346384d0cdb360725", - "sequence": 1394, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5528750000000002, - "economy": 2.5528750000000002 - } - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "That's why the nuclear Nimby's safety and environmental concerns must be met head-on.On safety, the accidents that shaped public perception involved older designs and, in two cases, catastrophically outdated regulatory cultures.", - "media_hash": "e5d202d2a5eb03622e964e6988552fc50ef20e43c169c6b8813c9c23", - "sequence": 34, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "\"However, the key word is responsible. You can't put something up just for the sake of harnessing the energy, while at the same time doing harm . or potentially doing harm to the environment and the human and non-human life that depend on that environment.\"", - "media_hash": "0972ab04beab748511a80bc6e63530fec5a65dbf51480f4e9c118d97", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Black Rock Riverside Alliance", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Anne KC McCooey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5528750000000002 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Readers' letters: There is no alternative to direct action against Iran", - "publication_date": "2026-03-31T16:59:28", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", - "media_type": "news_article", - "sentence": { - "text": "It is perhaps also worth pointing out to the anti-nuclear zealots like John Swinney that nuclear reactors produce the products required for medical procedures like CT and PET scans and radiotherapy treatment for cancer patients.", - "media_hash": "346570e78032dadf9b68c04330e91f7040b1e466eda64f8db220ae8b", - "sequence": 75, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "A McCormick", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5528750000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "To qualify for the Council Tax Reduction Scheme residents need to be receiving one of the following, and have less than \u00a316,000 in savings and property:", - "media_hash": "8412e9959b2144320d8506b8b786256aad2849b903932f853d9bf98e", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5769 - } - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T11:42:35", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "All in all, her energy saving tricks have cut her monthly bills in half to just \u00a3100, she believes.", - "media_hash": "3f7896ffe10c652314c37b6fc80f745cc07fce3ba4e6897a6015a2ca", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Katherine Twigg", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", - "media_hash": "a6bf5d913f8d41a705a3f50a8c6b319e2e2d18f64ceeb3fea3c3c0e7", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409m for diesel and \u00a3135m for petrol.", - "media_hash": "870f75b691702a90f1f2b80c864ae55060c30334d5956475cc969813", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "They could total around \u00a312billion.", - "media_hash": "5a288f07c1131470fdf31d17db91930f7d800e27de359d85bbed2d22", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996, - "trending": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "That is set to rise by at least \u20ac117million this year, with a new rate for carbon tax to be introduced in May.", - "media_hash": "61590bc14ec38c883fb5096e5a2503bfe2495620f25e0e5ba2f877cd", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "And according to estimates, the Government was taking in more than \u20ac1million extra per day on petrol and diesel VAT alone, ahead of the new relief package, compared to before the Iran crisis.", - "media_hash": "4938332929d8169a0a189c73c8787b47586431123fc48de56b87bec8", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Petrol prices went from about \u20ac1.73 cent per litre to \u20ac2 per litre, meaning a VAT increase of 5 cents per litre, according to UCD energy economist Ciar\u00e1n Mac Domhnaill.", - "media_hash": "f8589af08a8a688dfefa84784312f845e600f47a5d4c6bdfccab28a4", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UCD energy economist", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "That equates to an extra \u20ac150,000 per day, based on the CSO's record of around three million litres of petrol sold per day in March 2025.", - "media_hash": "1c20d6c98a4e1fbe79507cc23f3acc10c77eec69670b0c17765cfecc", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "The CSO's report noted older households benefited the most from temporary supports in 2025.", - "media_hash": "2042bc03b797c41ccd7f6b70fb652e8ed0c39d28f62abd3f593c9550", - "sequence": 36, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "It would represent a \u00a3288 rise from the cap set between April and June.", - "media_hash": "2b4abd942fdbe7572da5d9530c78bdaefd47cb84bc8520b328ef81ac", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "Shadow energy secretary Claire Coutinho urged the government to capitalise on North Sea oil supplies as she suggested it could yield \u00a325bn more in tax receipts, which could be used to support households through the crisis.", - "media_hash": "d3044bd7796284b47fd49d34e300dcb85c766a6811a6c52c64b55aa4", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104558, - "score": 0.1976 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "Analysis in The Times has suggested that the government's levies on energy companies' profits was making the government around \u00a320m more a day.", - "media_hash": "c0bcaa1228ed7381d83dac6be83f5d651095b60999364a0e806dd8fe", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's how much energy bills will go up by due to the Iran war", - "publication_date": "2026-03-31T10:29:56", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight said its prediction for the Ofgem's price cap from July to September now stands at \u00a31929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", - "media_hash": "a6c2e4908527cbdd69629a7ce6184630f994c172d0dfda67182a8f85", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "However, this is less than people were originally promised by the Chancellor, as the cut was expected to be around \u00a3150.", - "media_hash": "cf3c578d9f771048db1e8052f7647cde9971ba1052b8c7fa50f14a1e", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "Octopus Energy, the UK's largest energy supplier, has seen a 54 per cent jump in solar panel sales since the start of the Iran conflict as households look to protect themselves from the scourge of soaring gas prices.", - "media_hash": "1edda6eee0d868152f077a0cdea936c1db915edbb5671dfc94c34586", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Keir Starmer to chair Cobra as costs to households from...", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", - "media_type": "news_article", - "sentence": { - "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409 million for diesel and \u00a3135 million for petrol.", - "media_hash": "04e3f5ffeffa6165f60bfdba7c4f82ce1c5f450418101af753f1b4c1", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "Read more: Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "media_hash": "597a18aad32ee23d520f3a3c687136c1a30316befa802ab4ee0fb37b", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "It's now predicting it will be 1929 pounds, almost 300 more than its previous forecast.", - "media_hash": "8a41be2399c4f1590d9b94124df66d5b23b09b4099f20e1752dc29cd", - "sequence": 304, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "leo_s_topic": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "But their pump prices are slipping like a third higher than they were at the start of the year.", - "media_hash": "4bf3846d216e571020ea792ded7d20a90855d71032cac49f1e565cd5", - "sequence": 951, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", - "publication_date": "2026-03-31T08:59:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", - "media_type": "news_article", - "sentence": { - "text": "Ms Coutinho said: \"Shutting down the North Sea means we are losing out on \u00a325 billion in tax receipts that we could use to cut bills and reduce the cost of living.\"", - "media_hash": "6dc907028f0cca58f6426dfcd3d3e7d93a3020d4e64c9876a065a7ce", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ed Miliband", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Claire Coutinho MP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ed Miliband's 'mad plan' slammed as energy bills to rise by \u00a3288 a year from July", - "publication_date": "2026-03-31T08:59:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188623/ed-milibands-mad-plan-slammed", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under the cap fell by 7% from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "a922f9edf653cde148c37464b3b07eea32a9c4c792af6c1472aa9b2e", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran\u2019s Energy War -- Netanyahu: \u2018Only Long\u2011Term Solution to Hormuz Crisis Is Rerouting Pipelines to the Mediterranean\u2019", - "publication_date": "2026-03-31T07:55:40", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/31/irans-energy-war-netanyahu-only-long%e2%80%91term-solution-to-hormuz-crisis-is-rerouting-pipelines-to-the-mediterranean/", - "media_type": "news_article", - "sentence": { - "text": "Shipments from Yanbu have surged to around 5 million barrels per day of crude, along with additional refined products, offering a critical - though incomplete - offset to the disruption of roughly 15 million barrels per day that typically move through the Strait.", - "media_hash": "15ae05635ed20a562c373247fef13b0d34979bcd6d85fc0edee65de6", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million a day boost to revenues.", - "media_hash": "d7c62108ac49a30ea742cb6b3fbb6d54479a7f02a03277eef6256015", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "The RAC has also suggested the Government could earn an extra \u00a32billion from VAT on petrol sales.", - "media_hash": "0a5d6b9a39c50fd193c9455b36dad0b9eddcc5f09ec18d05e7492523", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Industry experts Cornwall Insight hiked its latest forecast for Ofgem's price cap by 18% to \u00a31,929 a year.", - "media_hash": "75f9be664724073a1502aba370b4cf297263af256cd5188dac96adfa", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "The cap is actually due to fall by 7% to an average \u00a31,641 a year from tomorrow thanks to measures taken by Chancellor Rachel Reeves in the autumn Budget.", - "media_hash": "bbf0315c95d6803f594d2d822ffa92f93875cf10424d615e215f268e", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Korean Air takes emergency action as fuel prices soar", - "publication_date": "2026-03-31T05:33:56", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c5yvg42kr21o", - "media_type": "news_article", - "sentence": { - "text": "The average price of jet fuel rose to nearly $200 (\u00a3151.45) a barrel on 20 March, more than double what it was in February, according to the latest International Air Transport Association figures.", - "media_hash": "09f5a99264c2cd7e4a2489f163d30b7785ad9489694e24d963bb196a", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "International Air Transport Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "The study finds that nuclear generation at Torness has been more than \u00a32 billion cheaper than the market baseload price over this period.", - "media_hash": "c36db155f3352e82cf0beeee0cef05286cc722f92be18a95a81c2d70", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nuclear Industry Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The Greens who want to drill the North Sea", - "publication_date": "2026-03-31T04:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", - "media_type": "news_article", - "sentence": { - "text": "On drilling for oil in the North Sea, Britons are supportive by 57 per cent to 15 per cent against.", - "media_hash": "ccb7c63c5aa887337158528a40da14ad8dac76fc37826599a59f336b", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Britons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "On average, participants currently earn about 18 hours of free electricity per month, according to company data.", - "media_hash": "0f4d82367b3928ece758b62c1ff3556a581f29a76022b0ee3de59c97", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.21530000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "Power supplier EDF Energy is launching four \"free electricity\" Sundays this spring through its \"Sunday Saver\" initiative, offering customers the chance to bank up to 64 hours of complimentary power over the coming month.", - "media_hash": "4da08db85c38e4c73f0064255a7950ed72df9df4824c79360bd73b47", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.30269999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "The most engaged participants in 2025 secured an average of 266 hours free throughout the year", - "media_hash": "37db94c67de4625473169a3ec11e6df96ca80a68854ab400680ad345", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.027200000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", - "media_hash": "cc6c4fb943d141a63e262396a7582d6472b4e7c5c5b78ff014c04f4e", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "82% of UK small businesses have already felt the effects of rising energy prices (Image: Getty)", - "media_hash": "85a3e918ef88a2572e20a82cfb0a6120a0713e117255731ca0d08c38", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "The rise in marine power generation is happening at a time when, across the Great Lakes, electricity prices for residential and industrial consumers have surged.", - "media_hash": "0fd9402768abce32cad029b7aefdaad7f047ec1238297444c86f6c16", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "\"The current there gets to about 2.3 to 2.5 knots, which is pretty slow for turbine technologies. But it's very easy for Vivace to harness that power,\" he says.", - "media_hash": "b3962e70d0678db9a003c1d2562bba096ddccae59da834a56de7c65a", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Michael Bernitsas", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "In Northern Ireland rates are due to increase between 1.96% and 4.5%.", - "media_hash": "69dca8aeb1c38c469eb38f9cf1b991d4af4531e5e631f4ea8964d44c", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform criticised for \u2018another unfunded giveaway\u2019 on flights and attempting to blame high energy bills on net zero", - "publication_date": "2026-03-31T14:09:43", - "publication": "leftfootforward", - "url": "https://leftfootforward.org/2026/03/reform-criticised-for-another-unfunded-giveaway-on-flights-and-attempting-to-blame-high-energy-bills-on-net-zero/", - "media_type": "news_article", - "sentence": { - "text": "\"Hundreds of licences issued between 2010 and 2024 have delivered the equivalent of just 36 days' extra gas.\"", - "media_hash": "7d5ad5e616570a110124331f12c8ecc2c461eb5c499efd43202767c5", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scientists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hannah Spencer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "environment": 2.5459449999999997 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Keir Starmer to chair Cobra as costs to households from...", - "publication_date": "2026-03-31T11:09:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", - "media_type": "news_article", - "sentence": { - "text": "While predictions have dipped slightly in the past few days - \u00a344 since 19 March - the forecast still represents... pic.twitter.com/Q2hJm3zDz8", - "media_hash": "bc7f7ba387dea981f7ffed766d37c38326c36bca3fc12e94553c0c0e", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", - "media_hash": "5c5c8e803255ce1de3cbb164dbde3bab29eec07ad8ef63aedd10d64c", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a333; Potential savings: \u00a3100", - "media_hash": "f6f9ec05b52ef7d6a593b90368bc3887aab98d88a4df3c7697b2ad0f", - "sequence": 44, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price 'hike': minus \u00a3117; Potential savings: \u00a3338", - "media_hash": "d3f7dd4f99d6ed60b095e6010c151190bc5b8e2b89d69e4cf7dddfd7", - "sequence": 79, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", - "publication_date": "2026-03-31T12:13:11", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", - "media_type": "news_article", - "sentence": { - "text": "Seventeen commodities vessels crossed the the strait over the weekend, 12 of them on Saturday, making it one of the busiest days for crossings since March 1, according to Kpler.", - "media_hash": "960289235d42c339cd99b946cf29cda187701979572246087fc04eac", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kpler", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Last year's energy tax yield breaks down to \u20ac2.737billion in levies for petrol and diesel, as confirmed in response to a parliamentary question from Independent TD Carol Nolan - \u20ac545million in VAT on gas and electricity, Finance Minister Simon Harris said in response to queries from Sinn F\u00e9in TD Pa Daly and \u20ac1.174billion in carbon taxes, according to figures from the Government's Tax Strategy Group (TSG).", - "media_hash": "d5c789f309af6a4448eeb724cf2297e68dd7172c205eae2186a363ac", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Independent TD Carol Nolan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Finance Minister Simon Harris", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Government's Tax Strategy Group", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Inflation increases to 2.5% in Europe as Iran war...", - "publication_date": "2026-03-31T09:56:06", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", - "media_type": "news_article", - "sentence": { - "text": "Energy prices increased 4.9% percent in March compared to a 3.1% decline in February, Eurostat figures showed.", - "media_hash": "42a6b957870f5e75fc077f87307e6a17b79405d52727a1cf169dfbcb", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Eurostat", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "Watching the pennies: Energy prices are set to rise from July - but the forecast has been reduced from what was previously expected", - "media_hash": "d0c9ec395e03f80a45cb56e0ccae5b1f17959e3b355d64b9e15d4629", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "While this would still represent a \u00a3288 or 18 per cent rise from April's cap, it is \u00a344 lower than Cornwall Insight's previous prediction of \u00a31,973 per year, made on 19 March.", - "media_hash": "3f28b07d240f41a75115e6411b277ca6c3d50e9601de217d7bca556b", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under the cap fall by 7 per cent from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "0e9e799ef1c89e7e2c7a5217de4a17391aa00a0181a5c60bfe749170", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "And by the way, it was helping the Tories had decided to jack up the tax rate to something like 75% for North Sea sending a major disincentive.", - "media_hash": "39cb459b45490fe5a74b3d2b42828d4243a6087045e7cc4ff5221138", - "sequence": 963, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "trending": 2.5459449999999997 - } - } - } -}, -{ - "title": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", - "publication_date": "2026-03-31T08:48:48", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/british-gas-octopus-eon-edf-36947292", - "media_type": "news_article", - "sentence": { - "text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to \u00a31,973 in July.", - "media_hash": "b19e854eb12242411951537a675c9bc2bc3da8258601525d47ab1a38", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "media_hash": "677dcb6231a592cc61b019c58ccdcf450b9d33109b35e670207a9f7f", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", - "publication_date": "2026-03-31T02:21:07", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", - "media_type": "news_article", - "sentence": { - "text": "In March, flows were about 3.8 million barrels a day, above February \u0301s 3.2 million but still below the mid-2023 peak of 3.9 million.", - "media_hash": "e09068e57945ee4a09cf5badb58a8853319786b0b9c124e2a5a587ba", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Urgent message every Aussie needs to read before they go to Bali as tourists panic: 'Feel a little stressed'", - "publication_date": "2026-03-31T01:09:27", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15690009/Aussies-panic-fuel-Bali.html", - "media_type": "news_article", - "sentence": { - "text": "He said one day a week of working from home would 'save about a fifth, or around 20 per cent, of fuel consumption'.", - "media_hash": "36bf6e684ce8268ac14f2046f3b3d63c665cd8b73d422942f4069642", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Indonesian Finance Minister Purbaya Yudhi Sadewa", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or \u00a3117 a year, to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "3d68950982c026f689ec3634215de1d6628d81a36d3c0ae95be4068b", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", - "publication_date": "2026-03-31T18:12:52", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", - "media_type": "news_article", - "sentence": { - "text": "However, esteemed energy analyst Cornwall Insight has projected that the regulator's price cap for July to September will now be \u00a31,929 for a typical dual fuel household - a rise of \u00a3288 or 18% on April's cap.", - "media_hash": "734e41274b24c49d0d5192b0ccbdb54cb72131814cd8307704666e97", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Heating is expected to add a further \u00a3734.42 each month (Image: Getty)", - "media_hash": "72f7a6b7cff2396495594eaed67f2ff9210f5928c4b794413f35150c", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "These new findings come at a time when Novuna Business Finance's tracking research revealed the growth outlook of UK small business owners was already fragile, with just 27% predicting growth for the first three months of 2026.", - "media_hash": "4489e1274f7162791216d96b4ef30b5eea1df0ae0171502f34b9f966", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Novuna Business Finance", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "When it came to travel, transportation and logistics costs, 21% of small businesses expected energy costs each month to rise by more than \u00a32,000.", - "media_hash": "0ddb800a473c3c846bda2d357b714e06258386d8f27457a6bac3704e", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.970815 - }, - "fullfact-policy": { - "climate_misinformation": 2.970815 - } - } - } -}, -{ - "title": "Readers' letters: There is no alternative to direct action against Iran", - "publication_date": "2026-03-31T16:59:28", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/letters/readers-letters-there-is-no-alternative-to-direct-action-against-iran-6530899", - "media_type": "news_article", - "sentence": { - "text": "The much maligned Hinkley Point C nuclear power station is now reckoned to cost near \u00a340bn.", - "media_hash": "2ec62de5a2cc2c24c00b460cfdf4488354961f5d3e5c29c5e18c3ce2", - "sequence": 73, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "The Government has announced a \u00a353 million package of support for heating oil customers.", - "media_hash": "017c1d1958625ae7146a2e5e63ea749445a3827edbd9c72099b88717", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Diesel has climbed to an average of 182.77p a litre, taking the cost of filling a typical 55-litre family car to over \u00a3100 for the first time since early December 2022.", - "media_hash": "5df92f32fedce6d5f5d53ccc6d1f689bc39959d11174837f1deffc8c", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "A full tank of petrol is setting drivers back \u00a384 after pump prices climbed to an average of 152.83p.", - "media_hash": "24791782d52af63e30ac64bb79abea609df90ffbef42b5240c5b72bb", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Petrol prices at supermarket forecourts were an average of 7.6p a litre lower last week than at other sites, the AA said, compared with a price difference of 5.4p before the conflict in the Middle East began late last month.", - "media_hash": "b1497139d44f886dd87af7cdf147a7f0ee2c64a2b3e85ab2b2d53908", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "AA", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "This is the highest price for unleaded petrol since May 2024.", - "media_hash": "e5876b40ea742111632d9cec9c97f1eec94991c4d6d08a01ec68df59", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "Diesel peaked at 199.2p per litre in July 2022.", - "media_hash": "9cfe567d7f168ade4d9b988b57e5a4023502f02343f4e4118b1cff65", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "Motoring research charity the RAC Foundation estimates the increase in road fuel prices have led to motorists paying a cumulative additional \u00a3544 million for petrol and diesel since the start of the conflict.", - "media_hash": "d192957348f5834fc201e0dd91a3ab9690f92b4f264323472aa856e7", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", - "media_hash": "8494762cf9de5b7f594c69a9698aebc635f1d3e09ccdb2a359ae4555", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Switching can save broadband customers an average of \u00a3329, according to Uswitch.", - "media_hash": "530387204f36b9669f40dd2ea490e6eda9675d0607ce0ec637482fe6", - "sequence": 52, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "In some - albeit temporary - good news, the price most households pay for energy will fall by 7% from April 1.", - "media_hash": "4cc4ccb482e3e78856944a668dc6f4e0ff317ca4ca5d3567d937b85f", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "Fixed energy deals that can save you money have been disappearing from the market, with the best fixed tariff at the moment coming in \u00a39 above the April price cap.", - "media_hash": "f08069bf1a8a8a9e9aebdb7b265bb1b5d635144f09dc8a9f5c3bd09b", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "For July, it predicts that the cap will increase from \u00a31,641 to \u00a31,921, but its confidence in this prediction is very low.", - "media_hash": "3f5dd7235450fc4e6ab0212e4ded70eb46b4761f367f21b5d8ae091e", - "sequence": 155, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "This left 22 million households lumbered with variable-rate deals.", - "media_hash": "8e3627555478c7a2b88805c2bc57a91e295320aa47d93de74d3da045", - "sequence": 167, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "The TSG's estimated carbon tax take for this year is \u20ac1.291billion, a rise of \u20ac117million.", - "media_hash": "f391caf2e6284dc4541dd004d1537809239966966c56d73f8bf6e42f", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government's Tax Strategy Group", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "From April 1, the energy regulator's price cap, which controls how much you can be charged, will drop from \u00a31,758 to \u00a31,641, which is a reduction of \u00a3117, fixed until the end of June.", - "media_hash": "11fefd1cb4c24eae19f3f4c8ad99fae85cf63b9654674fbbae4a438b", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "This means that a typical household using electricity and gas will see its bills slashed by \u00a3117 for three months, or around \u00a310 per month.", - "media_hash": "82e310d40ad9aac1873e283ab6c15741023bbb085a8e6aa4f6461ccf", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer to chair Cobra as costs to households from...", - "publication_date": "2026-03-31T09:54:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "f1d625368e39d45c9d68ffec197083274b9baa1ea76b4c313474bcc2", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "However, forecaster Cornwall Insight has reduced its estimate, cutting it to \u00a31,929 per year for a dual-fuel household with average usage.", - "media_hash": "83b0a4e6568bdaccb24ef146b740827785ab94aa6f3ca2d5bdc50288", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap forecast to hit \u00a31,929 in July but that's LOWER than feared", - "publication_date": "2026-03-31T09:44:59", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15693929/Energy-price-cap-forecast-hit-1-929-July-thats-LOWER-feared.html", - "media_type": "news_article", - "sentence": { - "text": "'The size of the increase depends on the duration of the conflict.", - "media_hash": "76d13abaf2cf82be6a0f1920a5832c92bfc7ea8f92264b60d03098fa", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "They went slower and now we've got about, I don't know, about three billion barrels of equivalent reserves which isn't that much.", - "media_hash": "f934cb71c50a5bce65e7f66f94bf20f2f6cd242f537f89a27d122ce5", - "sequence": 996, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "trending": 2.5459449999999997 - } - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "Yesterday, there was little sign of respite as oil prices surged again, with Brent crude climbing to a high of almost $117 a barrel, before falling back.", - "media_hash": "6611bc45db8cc75bb13a63b76a8652c5c9243f2a9a26419c90ecec34", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "According to Cornwall Insight, that will mean an increase of \u00a3288 or 18% in annual bills.", - "media_hash": "5956606e03ea667f48df51841b4acc978a6e5c889c47a90fc39da90b", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "According to analysis for The Times, the Government is set to get around \u00a33.5billion a year from the energy profits levy on North Sea oil and an extra \u00a32.4billion from gas sales.", - "media_hash": "c122ba792c8b157e572a9e9a010f3a376e3340d3d8d28e34dd01d22b", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18%.", - "media_hash": "8316165c92325c1d84734e3cc00b00719e4def2ee1d8ae1fbe3b363e", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Craig Lowrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "Torness nuclear power station saved Britain's electricity system more than \u00a32 billion since the 2021 energy crisis, according to industry analysis.", - "media_hash": "dce5e04b6ab96df1bed864c76661929a6d412ce18df78f73bff2fbfc", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nuclear Industry Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The Greens who want to drill the North Sea", - "publication_date": "2026-03-31T04:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", - "media_type": "news_article", - "sentence": { - "text": "There is, clearly, a collective exhaustion with the cost of living, such that even local fracking is not a non-starter for more than a third of the country.", - "media_hash": "432f99c091e5b7537e2ac0152038c75a7fb48468af341e1de29f4e22", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "Energy giant EDF Energy is rolling out four \"free electricity\" Sundays this spring under its \"Sunday Saver\" scheme, with customers able to earn up to 64 hours of free power over the next month.", - "media_hash": "b923567eda1b87be94e76abc1743dd74c971ddaa8e5953a41fd207eb", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.28869999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "The most active users in 2025 earned an average of 266 hours free across the year", - "media_hash": "f0c6b63d1a2b0303ec4810c74dd7db33dec0c3c2e3221e246b9b2651", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.03269999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "While the headline offer of \"free electricity\" may sound generous, it requires households to actively shift when they use power - and in some cases cut peak usage by up to 50%.", - "media_hash": "b7884504f38273ec13b044e79b85f763d1f4102e66a68506d7042aee", - "sequence": 35, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "EDF suggests the scheme could slash roughly \u00a396 yearly from bills for the most dedicated participants.", - "media_hash": "77a7725f5104c032bd311576b801155593523330faf5bf5fad3c5ada", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.1734 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", - "publication_date": "2026-03-31T02:21:07", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", - "media_type": "news_article", - "sentence": { - "text": "That is nearly four months of its overall seaborne crude imports, which cushion short term impacts from the war.", - "media_hash": "0d8dc03cad2605da2531554737d4452eb3ee1686b0ee92fb0c106b50", - "sequence": 57, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Despite the PM's stark warnings, last night it emerged that the Government is reportedly raking in an additional \u00a320million a day through taxes and levies linked to oil and gas price rises.", - "media_hash": "b3e10a9e2515fa79645d48e5c0ac07815f5231788a6a72e4999f0e9f", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T01:13:30", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", - "media_hash": "bbafbc7ce5b8eb54ae223fca110a126e3c60bcb740c8059c73e6af71", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "For a household on a tariff governed by regulator Ofgem's price cap, and using a typical amount of gas and electricity, the annual bill will drop to \u00a31,641.", - "media_hash": "a9fbd9e442290105c0a17d95a2f37d97e4255de1974a0a537666cc06", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "The latest forecast by analysts at energy consultancy Cornwall Insight suggests the household with typical energy use will pay \u00a31,929 a year from July, an 18% rise.", - "media_hash": "ef4cd7a35d6abc3c97cdd8f47edc18bd256b2ea4522391c9bbd8c037", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How to slash energy bills to \u00a370 a MONTH: Household 'super sleuths' reveal tricks to save hundreds with 'good old-fashioned' hacks, simple gadgets and this \u00a36 Screwfix device", - "publication_date": "2026-03-31T15:37:04", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/money/bills/article-15694271/slash-energy-bells-household-super-sleuths-tricks.html", - "media_type": "news_article", - "sentence": { - "text": "She says she has calculated that by just boiling enough for half a dozen cups a day, it can save almost \u00a390 over the course of a year.", - "media_hash": "667e04e7facfe70d6806964a4895615eb288258481c9637fec91e1b5", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Katherine Twigg", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "The cost of phones and broadband are expected to rise by an average of \u00a339.60 for an annual bill and \u00a327.60 for a typical mobile contract, according to Uswitch.", - "media_hash": "2fe7a5ee4dd50b4dd49737aa73ed98e9343644bf06bbf52494cfd81a", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "Average diesel prices on Tuesday stood at 182.8p per litre, up 40p since the start of the conflict on February 28.", - "media_hash": "e567da54a27b46e8dea0d0c6dec15764d03f997685115681f639d1d0", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The figures estimate how much extra the rise in pump prices has cost UK drivers in total, compared with what would have been spent on petrol and diesel had prices remained at the same level they were on February 27.", - "media_hash": "82e5657d11a172be38c29f46870c97d56c1a052e1df0d96347662d4c", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The average price per litre of gas oil stood at 99.5p in March, up 51% from 66.0p in February and the highest monthly figure since November 2022, when it reached 128.1p.", - "media_hash": "4bc25bd4402993ca3e00488f56096c321f33e313dd593dae914ac2bb", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy bills predicted to surge by \u00a3288 a year from...", - "publication_date": "2026-03-31T11:04:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693905/Energy-bills-predicted-surge-288-year-July-rise-unavoidable.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under the cap fall by 7% from April 1, or \u00a3117 a year to \u00a31,641, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "aa86745f29ce3a4726b104ecd1c5e4ab42334472c69076e4a5c20d01", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the Government is in line for an \u00a38billion windfall from soaring energy prices.", - "media_hash": "c8d9d3da90373375ecced10a5295beab2c3a58cf366a99184f93f8b9", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a372; Potential savings: \u00a3633", - "media_hash": "1f445bafa75b67d626111e5011a03da19e5c7d054504b52ebb3e0cbe", - "sequence": 59, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "However, the reduction is lower than the average \u00a3150 cut to bills pledged by the Chancellor in November, when she moved 75% of the cost of the renewables obligation from household bills onto general taxation and scrapped the energy company obligation (Eco) scheme.", - "media_hash": "d63c9f26221a61a320c6f86ee669369331a0943c18970784cabcff57", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", - "publication_date": "2026-03-31T12:13:11", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", - "media_type": "news_article", - "sentence": { - "text": "Of those, 120 were by oil tankers and gas carriers and most were travelling east out of the strait.", - "media_hash": "e11a09630c719b18e756c556502c2bb5a979cb17ea671e8dcdfc1bb3", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "The cheapest deals were fixed-rate tariffs, with variable rates normally reserved for households that had reached the end of their cheap tariff and not switched.", - "media_hash": "948af4c33a41d2ffed631be3da5837ef5b5ebb02740c0e4e3c9faa67", - "sequence": 164, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T11:38:39", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983732.donald-trump-tells-uk-starmer-go-get-oil/", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "d64e07ae7dd7ce98214883272f3913b5f63ca549cfc899fdcbb5db52", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "The relief package announced on Tuesday includes a 15 cent per litre reduction on petrol, 20 cent per litre off diesel and the removal of the two cent per litre National Oil Reserves Agency levy, all in effect until the end of May.", - "media_hash": "8c90b4c99d43c84a3c611823863c7b77a5445e441bc734fefacb659e", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "Figures collated by the MoS show that \u20ac4.456billion - 18 times the value of this week's package - was collected in energy taxes last year.", - "media_hash": "dfff0c95a8732946cad3ba60c5136f305189a0da29e54f5d7e474eaa", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's how much energy bills will go up by due to the Iran war", - "publication_date": "2026-03-31T10:29:56", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under the cap fall by 7% from April 1, or \u00a3117 a year to \u00a31641, driven by the UK Government's pledge to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "8d417375d87aeb5aaf4cefc0915d49ec9ff15832a6cf5792036ba777", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "This is an increase of \u00a3288 - or 18 per cent - on April's cap set by the energy regulator.", - "media_hash": "23ceb4e7d3cc859dc2fce4b1771b1edeb5f1dc1a1aecb93a28c2c24d", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The impact of the Iran war on Asia", - "publication_date": "2026-03-31T09:11:27", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c1450zj6n48o", - "media_type": "news_article", - "sentence": { - "text": "Roughly 60% of its liquefied petroleum gas (LPG) is imported, and about 90% of those shipments pass through the Strait of Hormuz.", - "media_hash": "23ed573b9f0de8b7ad100d1ae94cddcfe8eb791479ee9a57900981fb", - "sequence": 77, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 2.5459449999999997 - }, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": { - "digi___strait_of_hormuz": 4.545945 - } - } - } -}, -{ - "title": "Energy bills predicted to surge by nearly \u00a3300 a year from July", - "publication_date": "2026-03-31T09:06:20", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/energy-bills-predicted-to-surge-by-nearly-ps300-a-year-from-july-6529622", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under the cap fall by seven per cent from April 1, or \u00a3117 a year to \u00a31,641.", - "media_hash": "a2af2f35970d86461537354740db3e4a3187fcb02d897c3f99406514", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:02:22+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/Daily_Record/status/2038904727514103887", - "media_type": "social_post", - "sentence": { - "text": "British Gas, Octopus, Eon, EDF, and OVO customers face \u00a3288 surge in bills", - "media_hash": "9e7bd8214f5e723082c87dc58387d3183e610013d1289756eb419554", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "British Gas", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Octopus", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Eon", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "EDF", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "OVO", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Energy bills \u2018to rise by almost a fifth\u2019 in just three months", - "publication_date": "2026-03-31T08:33:01", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/energy-bills-to-rise-almost-a-fifth-just-three-months-27780822/", - "media_type": "news_article", - "sentence": { - "text": "The April price cap was set at \u00a31,641 per year for a typical UK home by energy regulator Ofgem before the war in Iran resulted in a spike in costs.", - "media_hash": "b81eff984dfabf20e6d0acb4ad43072033ca280bc80080388294a0ed", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an \u00a38billion windfall from soaring energy prices.", - "media_hash": "c400ac5e17c5872ae29de1234778ae6b029bd3113560f67441a4bcdf", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Tories call for more drilling in North Sea with new draft law", - "publication_date": "2026-03-31T05:45:45", - "publication": "3fe0c239-d2f0-420e-aa25-a7ab4af63a51", - "url": "https://news.stv.tv/politics/tories-call-for-more-drilling-in-north-sea-with-new-draft-law", - "media_type": "news_article", - "sentence": { - "text": "The field, which is about 80 miles north west of Shetland, is said to contain up to 300 million barrels of oil and some gas.", - "media_hash": "84f3c8641f0e1616bcd7185d92b204526f729cbc63c40de9579173d9", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "The nuclear Nimbys are coming \u2013 is the government prepared?", - "publication_date": "2026-03-31T04:01:00", - "publication": "cityam", - "url": "https://www.cityam.com/the-nuclear-nimbys-are-coming-is-the-government-prepared/", - "media_type": "news_article", - "sentence": { - "text": "It built 56 reactors in 25 years.", - "media_hash": "3366b74aeb559d8f18e396c37ddad9a9b94904a675361fd970945821", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chris Hockell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK energy firm to give customers 64 hours of free electricity", - "publication_date": "2026-03-31T03:30:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188430/energy-firm-give-free-electricity-edf-energy", - "media_type": "news_article", - "sentence": { - "text": "EDF claims the initiative can knock around \u00a396 a year off bills for the most committed users.", - "media_hash": "cd26c7660fc1278bc65e0e5930a15b1b608d8237b1774958a397bf1d", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40501, - "score": 0.20789999999999997 - }, - { - "tracked_claim_id": 104479, - "score": 0.22040000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "This amounts to approximately \u00a36.6 million in combined bill reductions", - "media_hash": "db8e17fc0ca10a0c10621e9cb6b6d1eccecd6f1537e95c08e35dee52", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.1189 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "29% of small businesses said monthly heating bills had gone up by up to \u00a3500, while 47% of respondents believed they would pay \u00a31,000 or more extra a month, with 21% citing a figure over \u00a32,000.", - "media_hash": "0440ad5f8fa2d51e8070ffd2f841b9ede9cef469f5c846e9807828fd", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "Drivers in the UK are already facing more than \u00a3500m in higher fuel prices owing to the oil crisis triggered by Iran's chokehold of global oil exports from the Gulf through the strait of Hormuz, according to the RAC Foundation.", - "media_hash": "efbafc9ecbad98dd5c0991233615952e7709936aac309a442085d814", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "It is the highest price for diesel since December 2022.", - "media_hash": "dba91147412c29c3514597d5dfd4baa7b059223935af54e2c2f433ee", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "This means it costs \u00a3100.52 to fill a 55-litre family car, breaching the \u00a3100 mark for the first time since December 2022.", - "media_hash": "b7fb493a4614b147c7fb6629f846a0f44b7648fe8ae3aec37c56c922", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The latest figures, released on Tuesday, show the average price per litre of standard grade burning oil stood at 104.1p in March.", - "media_hash": "cae580fce9fc66e8d09ac64512159fd29d5ba1f757a674954e759599", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Keir Starmer to chair Cobra as costs to households from...", - "publication_date": "2026-03-31T11:09:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694133/Keir-Starmer-chair-Cobra-costs-households-Iran-war-clear.html", - "media_type": "news_article", - "sentence": { - "text": "Forecasts for July now sit at \u00a31,929 per year for a typical dual\u2010fuel household.", - "media_hash": "a128791f44d2976803924689ec811d4329fa196d3f281a475afa5272", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million-a-day boost to revenues.", - "media_hash": "0bd490cf313b2567429cd9497bad26fd1a3a8e0b097c6cb39e564b21", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer holds another Cobra meeting", - "publication_date": "2026-03-31T10:09:22", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Hundreds of millions of pounds would also be raised in taxes from Britain's power generators, which have been charged excess profit levies since the outbreak of war in Ukraine.", - "media_hash": "9d41e4c0f0ca551e5b6721f5266b5063b94e3a576fa8399544202b38", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", - "media_hash": "ac834a8a8298695d5766e33ffbcf22a62365149712aeb90db079a446", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Institute of Directors", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "IoD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", - "publication_date": "2026-03-31T18:59:36", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695121/ontario-california-homeowner-solar-panel-instalation-money-job.html", - "media_type": "news_article", - "sentence": { - "text": "But a week later, after her lender paid the company $83,200 for the job, workers walked away, leaving their materials behind.", - "media_hash": "588b7df442b80ac72ac97b691e1813a9f56aa98cb4e9c2e389a69743", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T12:05:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "The Government is set to rake in well over \u20ac4.5billion in energy taxes this year, the Irish Mail on Sunday has learned.", - "media_hash": "d00c0d91fd59944a28d07af468e77d74ab521761e917ae3903b1cd4d", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a3114; Potential savings: \u00a3570", - "media_hash": "0388e263333f3cdd692486b4cbd1309a272e7e0c83e27f2064648dc5", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Industry body Water UK says bills are expected to increase by \u00a333 a year - 5.4 per cent - on average to \u00a3639 a year from \u00a3606.", - "media_hash": "5be4d9910e3348411d5a64826cc408fe4180f67c05c821906c032619", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Water UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of \u00a348 a year - an inflation-busting rise of 11 per cent.", - "media_hash": "b66b7359f7f918f5e8270da0a31ed248c25e77f53d966ff7816f9bc2", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by \u00a3332 in the summer to \u00a31,963 a year.", - "media_hash": "67a06c0bb22c38300905663da8c53062e1c6f70cfe9644a1157793bc", - "sequence": 70, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of petrol, diesel and heating oil: What the latest...", - "publication_date": "2026-03-31T13:04:31", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694803/Cost-petrol-diesel-heating-oil-What-latest-figures-show.html", - "media_type": "news_article", - "sentence": { - "text": "The survey also suggests the average price of a litre of diesel stood at 176.5p on Monday March 30, up 9.6p week on week and an increase of 34.4p, or 24%, since March 2.", - "media_hash": "25b0d7d6c423d03d5c6852b673dc1d423c006059b451872b00bf593f", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Energy Security & Net Zero", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "Ofgem's price cap will drop from the current \u00a31,758 to \u00a31,641 - a reduction of \u00a3117 or around \u00a310 a month for the average household using both electricity and gas.", - "media_hash": "0981d475e6e317136a6d45e65f591685798518c4cfe603ba5eb14595", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ofgem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asia to be hit hardest by Iran war energy crisis: Kpler...", - "publication_date": "2026-03-31T12:13:11", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694631/Asia-hit-hardest-Iran-war-energy-crisis-Kpler-AFP.html", - "media_type": "news_article", - "sentence": { - "text": "As of 1700 GMT on Monday, commodities vessels had made just 196 crossings of the waterway this month, a huge decrease from before the war.", - "media_hash": "a1571564cf9752cee9d3c044ef872a2c7950d483c025ef7bfb658f35", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kpler", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "The funding forms part of \u00a33.8m allocated by the UK government on 16 March and it's estimated that between 20,000 to 25,000 households will be eligible in Wales.", - "media_hash": "78e0355786f1dc0cd1801f386757737b71f69887199c19497f1d6f16", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "She said that while the oil company she used had offered her the chance to purchase 350 litres, it still cost \u00a3425, which was still a lot for half the amount she normally ordered.", - "media_hash": "cb11427fd4e53aef13e59ec07215a0d2bd968819588ee378c1712db8", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Holly Pugh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Low-income households to get help with surging fuel prices", - "publication_date": "2026-03-31T11:52:06", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/cp86v5gmygqo", - "media_type": "news_article", - "sentence": { - "text": "That number is even greater in certain communities away from the main towns.", - "media_hash": "a895ee1073dad5ebdeaf0ad942a64841a13b2fac3f312c82a3ec939e", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "The scheme was expected to cost up to \u00a3150billion, funded by borrowing.", - "media_hash": "920d93eb5d2338c539c145a5693518288e77ec7ce1d4cee31f7f0955", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases. HERE is the staggering figure the State is STILL set to pocket in energy taxes this year...", - "publication_date": "2026-03-31T10:35:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15688219/Before-Government-introduced-new-fuel-relief-package-taking-1million-euro-EXTRA-day-cut-price-increases-staggering-figure-State-set-pocket-energy-taxes-year.html", - "media_type": "news_article", - "sentence": { - "text": "The tax rate on the fuels such as home heating oil, green diesel, natural gas, and coal and peat, is due to increase from \u20ac63.50 per tonne to \u20ac71.", - "media_hash": "cbe3cdd8554ea60ea2d3981467f65bd397b0346538c6a10b160a77cc", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "The \u00a31,641 bill coming into effect from Wednesday will be a reduction of \u00a3117 from the first three months of the year due to Rachel Reeves' Budget moves to strip energy subsidy costs from the price cap and onto general taxation.", - "media_hash": "3585e1f1322cf8c30830fff72637257ca34c165a0947071c84f189e2", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Energy price cap set to jump as consumers brace for soaring bills", - "publication_date": "2026-03-31T10:30:32", - "publication": "cityam", - "url": "https://www.cityam.com/energy-price-cap-set-to-jump-as-consumers-brace-for-soaring-bills/", - "media_type": "news_article", - "sentence": { - "text": "\"While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18 per cent.", - "media_hash": "3a7f43160cc0da47dc116e409939baf627cac8950836c1ec05957e1a", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Craig Lowrey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's how much energy bills will go up by due to the Iran war", - "publication_date": "2026-03-31T10:29:56", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983242.energy-bills-will-go-due-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to \u00a31973 in July.", - "media_hash": "df841345d90ab7a4a3aa4ef6ac471ad52e298f7451efa65af3d1af83", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "Ofgem's price cap to drop by \u00a3117 from April 1, potentially lowering bills for standard variable tariff customers", - "media_hash": "56d34c12b986989fff7465fab1bb1510ee8a23b3ebb2477e54ade356", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u00a3400 plug-in solar panels will quietly change the whole country", - "publication_date": "2026-03-31T10:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/plug-in-solar-panels-change-whole-country-4319204", - "media_type": "news_article", - "sentence": { - "text": "With an average installation cost of around \u00a37,000, that means the investment is typically paid off in eight to 15 years, depending on the efficiency of the panels - and how much sun they see.", - "media_hash": "6691c5b710955bb6c7dd33f9160d7998ecceedce8db233daf17b72f5", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Inflation increases to 2.5% in Europe as Iran war...", - "publication_date": "2026-03-31T09:56:06", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15694157/Inflation-increases-2-5-Europe-Iran-war-boosts-energy-prices.html", - "media_type": "news_article", - "sentence": { - "text": "The annual rate for the 21 countries using the euro currency compared to 1.9% for February before the war started and blocked supplies of oil and gas from the Persian Gulf.", - "media_hash": "a828bb11271c7626b3f6e2fb14d08f9852039994a723176dbc68b39d", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Eurostat", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Household energy bills set to soar by \u00a3288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", - "publication_date": "2026-03-31T09:23:43", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693997/Household-energy-bills-set-soar-288-year-July-Iran-war-sends-wholesale-costs-rocketing-Brits-warned-bigger-hit-autumn.html", - "media_type": "news_article", - "sentence": { - "text": "'Shutting down the North Sea means we are losing out on \u00a325billion in tax receipts that we could use to cut bills and reduce the cost of living.", - "media_hash": "9732725ccd3a29fff7aae19f36536cedc7be338d605b8137b7d24f64", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Claire Coutinho", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.24170000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.698725 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Households can get free electricity on four days next month", - "publication_date": "2026-03-31T07:50:51", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/households-free-electricity-four-days-36946775", - "media_type": "news_article", - "sentence": { - "text": "Since launching in 2024, EDF says customers have earned more than 20.5 million hours of free electricity through the scheme, saving a combined \u00a36.6 million.", - "media_hash": "c56a41867b67b63fc9fbd0e679c09e88b0e6568bfc9126c017859fad", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Cornwall Insight's forecast is \u00a344 a year lower than its previous estimate of \u00a31,973 a year.", - "media_hash": "a8a0f2b010c1940e078ba2c4a118f12cd049558fc2388f7e95c12009", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T05:06:52+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/TheScotsman/status/2038845462459883830", - "media_type": "social_post", - "sentence": { - "text": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis https://t.co/gRaZuUZaTz", - "media_hash": "8a0b9015a933eb94a37b5b40fdf31ef95b7b530b036d1e0b25eaeeda", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Torness nuclear power station", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Anger over \u2018super-pylons\u2019 supercharges election contest in Angus", - "publication_date": "2026-03-31T05:02:20", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/politics/5461867/angus-super-pylons-election/", - "media_type": "news_article", - "sentence": { - "text": "More than 200 interested parties want to take part in the upcoming public inquiry into the row.", - "media_hash": "c5cce1c4759c498d59722aacb7e0e08ba6765a452699a4621e52295c", - "sequence": 69, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Torness nuclear power station has cut \u00a32bn from electricity costs since 2021 gas crisis", - "publication_date": "2026-03-31T05:00:29", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/torness-nuclear-power-station-has-cut-ps2bn-from-electricity-costs-since-2021-gas-crisis-6528492", - "media_type": "news_article", - "sentence": { - "text": "Recent polling showed more than half of Scots back nuclear as the most popular form of energy generation in Scotland.", - "media_hash": "e56aef9175442998a9fcb84475a94eb235cdedfc60d45ee07913cf24", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Michael Shanks", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "I was speaking to one retailer and he said, you know, people think we're we're profiteering here, we're not, we make about six pence a litre out of every litre that we sell or we we we gather six pence a litre for every litre that we sell, but the government is taking something like 97 pence for every every litre.", - "media_hash": "1cebd1100d7a69a3f9d3702288eee0a02052c1aae1fc4782959c915e", - "sequence": 1567, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - } - } - } -}, -{ - "title": "The Greens who want to drill the North Sea", - "publication_date": "2026-03-31T04:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", - "media_type": "news_article", - "sentence": { - "text": "More Green voters support drilling in the North Sea (38 per cent) than oppose it (33 per cent), and 29 per cent of the party's voters support fracking in principle.", - "media_hash": "b1be6cd6f5ebfe162e025cdce5ef4d720a687948f5e5c57d7866b0c2", - "sequence": 6, - "claim_type": [ - "quantity", - "opinion" - ], - "claimer": [ - { - "name": "Greens", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The Greens who want to drill the North Sea", - "publication_date": "2026-03-31T04:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/politics/uk-politics/2026/03/the-greens-who-want-to-drill-the-north-sea", - "media_type": "news_article", - "sentence": { - "text": "In fact, it is split - 36 per cent in favour to 35 per cent opposed.", - "media_hash": "e6e7f97a962ff7fd6d0b96c9663c867979c1daf3ce8f715f0e3d406f", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Britons", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "Customers have clocked up over 20.5 million free hours of electricity", - "media_hash": "1002191ed552479df642d51041809b9fa5cbcb19ea7bd5a7309a6c43", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.3196 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", - "publication_date": "2026-03-31T02:21:07", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", - "media_type": "news_article", - "sentence": { - "text": "Its oil imports from Russia jumped to roughly 1.9 million barrels a day in March, from about 1 million barrels before the Iran war.", - "media_hash": "460fd32f7efedae696cdca5f74580474e908d8223b6a21cb34396f8f", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Cost of filling a family car with diesel surpasses \u00a3100 for first time in years amid Iran conflict", - "publication_date": "2026-03-31T18:12:52", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/cost-filling-family-car-diesel-36951270", - "media_type": "news_article", - "sentence": { - "text": "From Wednesday, the amount most households pay for energy under Ofgem's cap will decrease by \u00a3117 per year to \u00a31,641, spurred by the Government's pledge to reduce bills by an average of \u00a3150 through the removal of green subsidies.", - "media_hash": "a6597a89152429ad967214dcae0a6f2a66ce8a0a6e4ff6663c588dc5", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Warning for millions as rising energy bills could hit \u00a327,286 per year", - "publication_date": "2026-03-31T17:37:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188953/warning-businesses-rising-energy-bills", - "media_type": "news_article", - "sentence": { - "text": "Small businesses also said that rising energy prices would cost them an average of \u00a3785.92 more per month to run machinery and equipment essential to their operations.", - "media_hash": "87c80c0fdb37e4d524a84a3120c36838ad60c7156ea5a72318b34add", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Small businesses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": { - "climate_misinformation": 2.5459449999999997 - } - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "Home to one of the largest deposits of freshwater on the planet, the Great Lakes region has on its shores some of the largest cities in North America in Chicago, Toronto, Montreal and Detroit, where electricity demand is growing.", - "media_hash": "d55be9bd39e4c922de53bce0815952daab82edeb48aac923cdab13d9", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", - "media_hash": "a14fcc0733b6613c9cb4462404658b65240184fa1c3d2e50c9824ef3", - "sequence": 75, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Demand for hydropower surges as Trump clamps down on clean energy", - "publication_date": "2026-03-31T14:38:52", - "publication": "guardian", - "url": "https://www.theguardian.com/us-news/2026/mar/30/hydropower-great-lakes-clean-energy", - "media_type": "news_article", - "sentence": { - "text": "In Scotland, the world's most powerful tidal hydro generator can power up to 2,000 homes.", - "media_hash": "d86a70ee9e3887c548bc160b36195bb31410e67743dfa84a1ee96148", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5408099999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "And and would they ever react more quickly than perhaps they need to, I wonder if there is a a kind of preemptive reasing of prices potentially ever.", - "media_hash": "22605602ae4100d80229b5c114ca84c5399da35040ce6772b02fe8e5", - "sequence": 1570, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.53941 - } - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "Keep in mind that the annual price quoted is only what the average household can expect to pay over the year.", - "media_hash": "4184926b147d0fc9dc8e3b8a08b12229a2e23f65d96df27880f5d49e", - "sequence": 138, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Suzanne Edwards", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5315000000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asia feels the sting of Trump-induced energy crisis", - "publication_date": "2026-03-31T17:27:12", - "publication": "thecanary", - "url": "https://www.thecanary.co/global/2026/03/31/asia-energy-shortages-iran-war/", - "media_type": "news_article", - "sentence": { - "text": "Currently, adequate coal stocks are available at all power plants across the country.", - "media_hash": "42c09590bea60fb338976f8049590f1fdb0e0ee62c48e283b9e68656", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104558, - "score": 0.39559999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5315000000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T11:51:43+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/thetimes/status/2038947344687751199", - "media_type": "social_post", - "sentence": { - "text": "Household energy prices are poised to surge by 18 per cent in July, adding \u00a3288 to a typical annual bill, as the war on Iran pushes up the cost of gas https://t.co/s3QnCqPk07", - "media_hash": "1d2769b5dcea034ce7b66fe48820195e4058fe912fe00057999d6ad9", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Household energy prices", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5175099999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "This is unrealistic and dangerous and you can have your say now in the usual places.", - "media_hash": "58c9a0ff305875b69e7885a7da5934e371cde0d2b88de7ededbd141b", - "sequence": 2508, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.516675 - } - } - } -}, -{ - "title": "Energy bills in Great Britain forecast to hit almost \u00a32,000 a year this summer", - "publication_date": "2026-03-31T14:17:51", - "publication": "guardian-news", - "url": "https://www.theguardian.com/money/2026/mar/31/energy-bills-great-britain-forecast-summer", - "media_type": "news_article", - "sentence": { - "text": "A typical gas and electricity bill is now forecast to reach \u00a31,929 a year from July under the industry regulator Ofgem's quarterly price cap, according to analysis by the energy consultancy Cornwall Insight.", - "media_hash": "8483c4c49a6b8a34af90a6df8df0275727ea1e5df21e0bf25d020b70", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.51499 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "EDF explains 'free electricity' scheme running in April 2026", - "publication_date": "2026-03-31T03:30:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/edf-explains-free-electricity-scheme-36944900", - "media_type": "news_article", - "sentence": { - "text": "While the headline promise of \"free electricity\" might appear attractive, it demands households proactively adjust when they consume power - and sometimes slash peak consumption by as much as 50%.", - "media_hash": "28ebbf6bbd4e36b9bf69da24fb866d0353ed7ccb20ca5ef0d70a2b22", - "sequence": 26, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.512925 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Look, higher energy prices are not good news for anyone.", - "media_hash": "b081fe0b5dcfe38836a6a2ba2742560ccd19647f23bd6126fec8a88e", - "sequence": 1333, - "checkworthiness": { - "fullfact": { - "energy": 2.50677, - "economy": 2.50677 - } - } - } -}, -{ - "publication_date": "2026-03-31T14:53:37+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Dan4Barnet/status/2038993121069904024", - "media_type": "social_post", - "sentence": { - "text": "We know people will be concerned about energy costs and rising prices at the pump.", - "media_hash": "798cb71751c05f19fc5ba7816db04cc052c7754a65ef273de8b1f531", - "sequence": 0, - "checkworthiness": { - "fullfact": { - "energy": 2.50677 - } - } - } -}, -{ - "title": "Energy bills forecast to surge by \u00a3288 a year from July due to Iran war", - "publication_date": "2026-03-31T07:11:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/money/breaking-energy-bills-forecast-surge-36946644", - "media_type": "news_article", - "sentence": { - "text": "Ofgem's cap limits the unit rate paid by tens of millions of households on standard variable tariffs.", - "media_hash": "f32e894afb3ea0ab8ae5ee7e430522c597f598df4417ae4254e68d6b", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Oil-thirsty Asian nations seek Russian crude as Iran...", - "publication_date": "2026-03-31T02:21:07", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693305/Oil-thirsty-Asian-nations-seek-Russian-crude-Iran-war-strains-supplies.html", - "media_type": "news_article", - "sentence": { - "text": "The nation of 117 million is an early warning for Southeast Asia.", - "media_hash": "41288f1d26dc16ea381d333f5289c806ca63cd5ccc4945ae2d6e4edc", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best fixed energy deals: Tariffs that beat the price cap", - "publication_date": "2026-03-31T11:53:52", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-14584131/best-fixed-energy-deals.html", - "media_type": "news_article", - "sentence": { - "text": "The cap doesn't limit your total bill - energy companies charge for energy by the kilowatt hour (kWh).", - "media_hash": "2f84ea864846a33f76319a711cac69db515dad32f695e86cadc29243", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Hospitality's tax burden - the highest in the economy - is suffocating the sector", - "media_hash": "2e8178257b2ba3727b77a8b312c181c2b2b4c7bbfcf385d4db4b2cf4", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 5.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Only must trust, it seems, needs to be reminded of what happened next with the national debt at a crippling 96% of gross domestic product.", - "media_hash": "d818b53f9d5ae463cf352425a51f441f2b23f96c09bc4c3f24b2f3b0", - "sequence": 2500, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 5.09725 - } - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, VCT tax relief will be slashed from 30 per cent to 20 per cent and inheritance tax relief on qualifying AIM shares will fall from 100 per cent to 50 per cent.", - "media_hash": "16baa9928e79c8e3272182ba529cea0bd9b1bfea7716f6ba30327519", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.970815 - }, - "demo": { - "finance": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "What do you think would happen if a country has a very high tax burden and some of the highest energy costs in the industrialized world?", - "media_hash": "da0b30b0bfe2b889e0672ce432c55ab9c54621065422137027b94132", - "sequence": 1008, - "checkworthiness": { - "fullfact": { - "economy": 4.9374 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", - "media_hash": "336a6928d49b7a82ebe9c693a9da906b56d671aaa44de361836ad840", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.801995, - "economy": 4.801995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "The tax year also begins with frozen inheritance tax (IHT) thresholds, at \u00a3325,000 nil rate band and \u00a3175,000 residence nil rate band, regardless of any possible rise in property and asset values.", - "media_hash": "7cce3dc947513d26f8ff33b613262ed8d14819efe8ef56b9616886b0", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.72968 - }, - "demo": { - "finance": 2.6987249999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "Most councils in England are hiking council tax by the maximum 4.99%, with seven councils given permission to exceed the cap, including North Somerset and Shropshire, which are nearly 9%.", - "media_hash": "a570047b8e0eee223062a0feef5cd58764a707e699ed293678c77797", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.72853 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Income tax rates remained unchanged in last year's Budget but the threshold freeze will remain until at least 2031, intensifying fiscal drag.", - "media_hash": "7e660a37ddd992dc84f7858776cb76bbb129764d402f7a998bfdbc7b", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "And households endured a grim 2025, with real disposable incomes falling.", - "media_hash": "4fc3f33b873a38ada2742b4248b5ecb7429dd7d3e326c185a386d5e6", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.698725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The Prime Minister pointed to the reduction of energy bills by \u00a3117 a year for the average household, a rise in the national minimum wage to \u00a310.85 and in the national living wage to \u00a312.71, the start of the \u00a31 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", - "media_hash": "e04699637004eba1e06da6b8f0a00e449370f9a255fbe16bbe299280", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.698725, - "energy": 4.698725, - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "GDP per capita is thought to have decreased by 0.1 per cent in the last quarter but it increased by 1.1 per cent on the year.", - "media_hash": "95beb1238bafc5c832e85a6371b09f77660cbd08208bffb8c1d9282b", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.19130000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "The growing squeeze is compounded by income tax thresholds being frozen, pushing more workers into higher-rate bands where the PSA is cut in half from \u00a31,000 to \u00a3500 - a 50% reduction.", - "media_hash": "de501c6d750013e4f7ac6ae37a9f758562c4a14b461c8ecc7d2ffe09", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Our new online calculator reveals how much household bills will rise from April 2026, as increases to council tax, water, broadband and mobile costs wipe out the benefits of falling energy prices for a typical household.", - "media_hash": "356326077c4e3e07d24fc2953f3f76bcc85b0083ee2149e2cb1b8217", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "economy": 4.698725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Best savings, deals and freebies for April 2026", - "publication_date": "2026-03-31T05:22:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2187686/best-savings-deals-freebies-april", - "media_type": "news_article", - "sentence": { - "text": "Council tax is increasing by 4.9% on average, adding around \u00a3111 a year for many households, while some areas are seeing rises of up to 8.9%.", - "media_hash": "c3b8a13458a2427777d8776369e85fe91c9d0efab4c41097e7def259", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.698725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Two-thirds of UK hospitality businesses plan to cut jobs and one in seven will close, survey finds", - "publication_date": "2026-03-31T23:01:31", - "publication": "guardian-news", - "url": "https://www.theguardian.com/business/2026/apr/01/two-thirds-of-uk-hospitality-businesses-plan-to-cut-jobs-and-one-in-seven-will-close-survey-finds", - "media_type": "news_article", - "sentence": { - "text": "The thinktank estimates that UK companies invest the equivalent of 11.1% of GDP, well behind countries such as Japan at 18.2%, and European nations including France, at 12.7%, and Germany, at 12%.", - "media_hash": "98f7261c3506436ca8d2ef670b55f07f65db6d75f7f2416e078337b6", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Institute for Public Policy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "Energy bills are falling from April 1, but are expected to rise by \u00a3332 per year from July, many broadband providers are hiking prices by almost \u00a350 per year, water bills are rising to an average of \u00a3639 per year (up to \u00a3759 in some areas) and most councils are hiking council tax by 4.99%, with some rising by more than 8%.", - "media_hash": "c91fd81aad6efd50e85d5894a834b2874c5729459a3cc8cf9f2cada2", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.66777 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be \u00a3300 a year.", - "media_hash": "857a5fd4df5a27b91cf0eba8bd13aa23521a406b1293bd98125f823e", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.649215, - "energy": 4.649215, - "economy": 4.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "In a joint plea for help, they said: 'Hospitality's tax burden - the highest in the economy - is suffocating the sector.", - "media_hash": "9224fd2037c23b817f5a6eb1ae1a10a81ea531f0c2f3cfa889e3c577", - "sequence": 12, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Hospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.638815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "\"Hospitality's tax burden - the highest in the economy - is suffocating the sector,\" UKHospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster said in a statement.", - "media_hash": "89cefa8f2185e6cda5e0d73a4c3c9c72b22f5201e7178e7b4a40d758", - "sequence": 25, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "British Beer and Pub Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Institute of Innkeeping", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hospitality Ulster", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.638815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", - "publication_date": "2026-03-31T20:21:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", - "media_type": "news_article", - "sentence": { - "text": "Justifying her decision in the Budget, Reeves said she was targeting the industry because it was 'associated with the highest levels of harm'.", - "media_hash": "fd69dfd0805944d4ef8cb3d7f336c5dba62309e441d4d042beeeb671", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Chancellor", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.598275 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", - "media_hash": "e8ebadafb2239713c195df95c7995b1a8c1bd4616f4bedcdd55ddb47", - "sequence": 2, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.58644, - "economy": 4.58644 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "Across England, the average Band D council tax in 2026/27 will be \u00a32,392 - an increase of \u00a3111 or 4.9% on 2025-26, according to the Ministry of Housing, Communities & Local Government.", - "media_hash": "13ee3902c2beae6c202b7fb1a0699e12fde03d8b51ebb11c7c6fe0bc", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ministry of Housing, Communities & Local Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The OECD predicted that gross domestic product (GDP) will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7% - the biggest cut to the growth outlook of all the countries in the G20.", - "media_hash": "ca77419e6d6f25d3cacdc31e586fab7a8da42824030208dc666460de", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Organisation of Economic Cooperation and Development", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More harm than good? Minimum wage hikes kick in from April", - "publication_date": "2026-03-31T09:20:28", - "publication": "cityam", - "url": "https://www.cityam.com/more-harm-than-good-minimum-wage-hikes-kick-in-from-april/", - "media_type": "news_article", - "sentence": { - "text": "The increases are on top of a 6.7 per cent rise for over 21s and 16.3 per cent rise for 18 to 20 year olds respectively in 2024, where there was also a spike in employers' National Insurance (NI) contributions.", - "media_hash": "eaf643c4605e5f22e9930c0e2345adb61557f974bbda23bf021c69f2", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:52:05", - "publication": "guardian", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "double quotation markGDP growth for Q4 was unchanged at 0.1% q/q, suggesting that the economy entered the current crisis with very little momentum, even though growth in 2025 as a whole was revised up slightly.", - "media_hash": "f3e63dcb04f425d7ebf7ae8c7dd8bad1df8561680388c299c20d731b", - "sequence": 83, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.3379 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.545945 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "A high-ranking DWP minister has discussed the future of the triple lock policy, which is set to boost payments by 4.8 percent from April.", - "media_hash": "44e9a439e92911dc8ba948e31bafb84e27795346160cda5d033e82a6", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Despite the widespread increases, nearly one in five councils chose to raise council tax by less than the maximum.", - "media_hash": "3edc725dff8f32d34a7ba37a726d5529d627096b3eed19a27fda0dec", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "The new post-2016 state pensioners will get up to \u00a347.91 extra per month, assuming they have a full National Insurance record.", - "media_hash": "b624bb9f34efd08761da2fb32c8e6256c46cc00e384467d49e75de00", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "New state pensioners", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "This payment is accessible for those who have reached the UK Government's qualifying retirement age, which is presently 66 for both men and women, and have contributed at least 10 years' worth of National Insurance (NI) payments.", - "media_hash": "c02780a01fbb4b8f83b824a57c30674a810aff26257344c90a0ad6af", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'Keir Starmer promised to ease the cost of living and freeze council tax, yet families now face back-to-back hikes and a total council tax take rising by \u00a32.7billion - another broken promise.", - "media_hash": "f1a0d5a11c826ecd71a62c11eccd530d330e4207e044c61f6d507bb2", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "James Cleverly", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": { - "economy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "\"The confirmation that real GDP grew by just 0.1 per cent in the fourth quarter of last year is a reminder that the economic backdrop is much weaker now than the last time energy prices surged in 2022,\" Dales said.", - "media_hash": "5dfc7076738c314e61a46599c9e43dfb7899921ebdd346a544147147", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Paul Dales", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to \u00a32,394 on average.", - "media_hash": "fe4be61db3841d5188c0df0e5fafa9ea85d14b15fdd17770e576daf3", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "GDP grew by just 0.1 per cent between October and December, the Office for National Statistics said, confirming its earlier estimate and matching the equally sluggish growth recorded in the third quarter.", - "media_hash": "d76345758febd252acf194c842be173e581d3c906be0414903190743", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Real GDP per head decreased by 0.1 per cent in the final quarter of 2025, but it was up 0.6 per cent compared with the same quarter a year earlier - in an apparent reflection of the increased tax burden.", - "media_hash": "c8b77ca50e7c66151d4528f3f671cf5c6173512cdc16144cc35eb774", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "A Canary Wharf in Scotland? That's what the Tories are now pledging", - "publication_date": "2026-03-31T04:00:00", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25981779.scottish-conservatives-pledge-create-canary-wharf/", - "media_type": "news_article", - "sentence": { - "text": "\"We've lifted 100,000 businesses out of rates, GDP figures show we outperformed the UK, Scotland has the highest levels of foreign direct investment outside of London and two global credit rating agencies have given Scotland a high investment grade - that's what you get with an SNP government on Scotland's side.", - "media_hash": "4d33405cb1cc2998666ff57973e294686f3b016a007215e7f667041c", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Calum Kerr", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - } - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "That means the average council tax for a Band D property in England will increase to \u00a32,392 a year, up \u00a3111 on last year.", - "media_hash": "6b693c4732bd2af8874bbf594d231766fce86cdf0412cc7162cdf0ef", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": { - "policy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "While the ONS increased its GDP estimates for the year to 1.4 per cent, up from its previous 1.3 per cent estimate, more recent figures show the economy flatlined in January.", - "media_hash": "8d1f803bab753d4f36a79193868514216aaea030cbf9eed3b4efaa2f", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "The ONS found that GDP rose 1.4 per cent across 2025, up from previous growth of 1.3 per cent.", - "media_hash": "68fcda6cca7f00057bb00ef6ec637ba108670bdbc584cda0f8603834", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The ONS also said real disposable income per head increased by 1.2% in the final quarter of last year, following a downwardly revised decrease of 1.2% in the third quarter.", - "media_hash": "1e4479db08c33dcab7d8eff11b43708b7f09ead59ec12dccb62f9d36", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:52:05", - "publication": "guardian", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "The Office for National Statistics confirmed that gross domestic product grew by just 0.1% in the October to December quarter.", - "media_hash": "168a5d2a5e8f14a99fe5e3ea68478f3235cdb17e296ed4a795e901a6", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.545945 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "It found that GDP increased by 0.1 per cent in the last quarter of the year, an unrevised figure on a previous estimate.", - "media_hash": "ff860d7b2e5838564d269b23bec51fa3478eaa8d55f561d337904c79", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "And real household disposable income expanded by 1.2 per cent in the last quarter, driven by an increase in wages and salaries.", - "media_hash": "84367e6a652e85408d5786660275134eb07a6a9a3335b63a12f96148", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.24250000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So interesting little snippet in it, GDP per capita, which has been a bit of a problem for the UK economy did go up in 2025, just grew by 1.1% and something which I think people will find very, uh, counterintuitive, the savings ratio. so the proportion of income that's being saved rather than spent for households has gone up again, a bit to 9.9%.", - "media_hash": "d8f08b77d62963af49c1e73dbaee01b3011b6867acb73c113489e953", - "sequence": 682, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", - "media_hash": "42e722b19c950ef9105c8ed1f347c6130eb1dabc2dce14f62e315a80", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.545945, - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "Older state pensioners will see their payments increase from \u00a3176.45 to \u00a3184.90, while new state pensioners will see theirs rise from the current \u00a3230.25 to \u00a3241.30 per week, for those with a full National Insurance record.", - "media_hash": "b0a712b6264dd261d8ee8a03c66bba6157c5e080938a47d67c4585da", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Older state pensioners", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "New state pensioners", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "Each 'qualifying year' you add to your National Insurance record after April 5, 2016 will add a certain amount (about \u00a36.57 a week in the 2025/26 financial year, this is \u00a3230.25 divided by 35) to your 'starting amount', until you reach the full amount of the new State Pension or you reach State Pension age, whichever happens first.", - "media_hash": "c2b4e3f74ff2496fe4b755afeaa3b63019c28455834fba29e83825a3", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "With national debt now almost 100% of GDP, another blanket bailout is simply not on the table.", - "media_hash": "047fec206bb9024d50b573cd2f2705f3bab6f284c723fc03db0eda3f", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Uh, the ONS looks again and comes back with a revision for GDP and often the numbers do get revised upwards when they take a second look, but unfortunately not this time, uh, in the last three months of last year, so the last quarter of 2025, the economy grew by 0.1% ONS says so they haven't changed the number on that, so it's hardly growing at all really.", - "media_hash": "2f084354d69c149f2af36a2fbf85db7b566da4a5260e85e9f533596b", - "sequence": 680, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - } - } - } -}, -{ - "title": "Minimum wage rises to \u00a312.71 an hour", - "publication_date": "2026-03-31T23:01:15", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c36r7jk6093o", - "media_type": "news_article", - "sentence": { - "text": "The minimum wage increases are on top of a 6.7% rise for over-21s and a 16.3% rise for 18 to 20-year-olds respectively last year, when there was also a rise in employers' National Insurance contributions.", - "media_hash": "f134a8c8d3382fae48688d46d5abb8dfce3bebaa46fe7c6eaa7f11e0", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:15:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/jamesowild/status/2039043920588345851", - "media_type": "social_post", - "sentence": { - "text": "RT @WilfredFrost: Important to note that debt is NOT lower today than July 2024, & indeed will be higher at the end of the parliament than today - it will be up from 93.2% of GDP to 95.1%.", - "media_hash": "d46914735436abfdd2bf7f5428913fb43c705e32377109b7d52bfac0", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Wilfred Frost", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.545945 - } - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Council tax increases for the new financial year have now been finalised across England, with all 153 top-tier local authorities confirming how much bills will rise from April 1.", - "media_hash": "8ea27eef2e25deaac78c3f15ce3ff53fc83cfad9dbd3f7f7a5136509", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.53035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The average council tax for a typical band D property in England is currently \u00a32,280.", - "media_hash": "5cf1f9cec337b8614f702e818bdd412846965bd1f581b09265c0a8b3", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.53035, - "economy": 4.53035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Yesterday was the first day in British history when the amount paid out in welfare exceeded what was brought in through income tax, as quoted on Call Chemy last night.", - "media_hash": "3ff09449555a53be9a66c07d6ddd6546b2d565d52dc21822e367703b", - "sequence": 894, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.486035 - } - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "William Hill is preparing to close 200 shops just hours before tax rises smash the gambling industry, the Daily Star can reveal.", - "media_hash": "93f4ff661aa48d9d04ab6416ce7dd674af4b1d9bd58fff4ee73fb7ee", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Daily Star", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", - "media_hash": "ea098b53ff1fe0586375c7e47d65ae44770e3dafa9feb4190b1b6a15", - "sequence": 69, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.46302, - "economy": 4.46302 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "The escalating cost of the state pension prompts questions about the sustainability of the triple lock and whether ministers will need to transition to a model with less generous increases.", - "media_hash": "3b085ed89c454587c6269df642f3219d7c480fc10475381e926ef26a", - "sequence": 8, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.386095 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", - "media_hash": "20d4a148d4e8c3057db0350353d67309d370b44c9ae6a208806ff023", - "sequence": 1393, - "checkworthiness": { - "fullfact": { - "energy": 4.386095, - "economy": 4.386095 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "The OECD predicted that GDP will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7 per cent.", - "media_hash": "f0971714bafcf2cc0a4361a4d29332efea0730145048dd27ff531153", - "sequence": 21, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Organisation of Economic Cooperation and Development", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.377125 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.377125 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The day your State Pension is paid depends on your National Insurance number.", - "media_hash": "12b604f11bb91385dea31f1573c61639fb9bab0b7478834454364244", - "sequence": 28, - "checkworthiness": { - "fullfact": { - "economy": 4.3705 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T21:03:10+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/HarrietCross_MP/status/2039086120386834437", - "media_type": "social_post", - "sentence": { - "text": "They've promised huge tax cuts and seem to think they would just pay for themselves...\ud83e\uddf5(1/7)", - "media_hash": "098cedbee358733fa8ea3efb4f45694e4b78e940892cd3ddfdbe4164", - "sequence": 3, - "claim_type": [ - "support" - ], - "claimer": [ - { - "name": "Mel Stride", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.329355 - } - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Cheng said: \"Each new tax year quietly brings more families into the inheritance tax net.", - "media_hash": "51ba164e323c0c995e59e181c2defab4422f3060a72985b64b304055", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Olly Cheng", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.326185 - }, - "demo": { - "finance": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases.", - "media_hash": "2d30c109d2db8a96d2dd0675d4934fd1eafe2134d6088467e21cacf8", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Andrew Prosser", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "InvestEngine", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.326185 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I see this in my constituency of Woking, but I talk to so many businesses who wanted to expand, wanted to grow our economy to lower that welfare bill, but because of national insurance increases, because of sort of Trump inflation, uh, the unpredictable world that we're in, then not growing.", - "media_hash": "789324c4e66bad8f4a43c2447bf02824c111a179d22573be11b1213c", - "sequence": 903, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.318895 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", - "media_hash": "e8971f18e2f4e5337d3b9cc53a27cd2f72431be62150b90abdc1991d", - "sequence": 1343, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.26484, - "economy": 4.26484, - "trending": 4.26484 - } - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "Council tax is a compulsory charge on properties in England, Scotland and Wales.", - "media_hash": "776d09b0f81e926e6d34c4679321b2a9794cf1db23e4f1d54b14aeec", - "sequence": 19, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.25617 - }, - "demo": { - "policy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Band D households in the London Borough of Wandsworth will see their council tax rise by just \u00a330 a year, compared to \u00a3209 in Shropshire.", - "media_hash": "66f21deb6400d6400d31305431c3b0af264a550052e5202f1230b1a4", - "sequence": 6, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.2553 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.224345 - }, - "pa-media": {}, - "maldita": { - "economy": 4.2553 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T14:30:47+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Imran_HussainMP/status/2038987375678763396", - "media_type": "social_post", - "sentence": { - "text": "They are massively out of step and siding with bad bosses, not working people.", - "media_hash": "199e67bf3ff32f8cca55ef9ea2557ae3a2d1e222c7e4f14ff5aac815", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.25444 - } - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Savers can also look to reduce their inheritance tax exposure by taking stock of estate values, as rising property prices can push estates closer to inheritance tax thresholds.", - "media_hash": "f383588bf0e9a1c2d6d29af46f0183dfd32b4a8c45629b4e4dc1a55e", - "sequence": 33, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.249805 - }, - "demo": { - "finance": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", - "media_hash": "13376fad5147cdf89f99da8b9cb0a3ac663cca80ad44b51c06f02b5f", - "sequence": 121, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "Crucially, both of these will still be below the \u00a312,570 Personal Allowance threshold for income tax.", - "media_hash": "2e5c42e054a68bec0191050588b05f5bced75ff93b9e72917d21e3b5", - "sequence": 11, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Older state pensioners", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The energy bills price cap is expected to increase in the summer by \u00a3332 to \u00a31,963 annually", - "media_hash": "4110f23e44f33924c32f2e0dee818b29281e298ccdf0ebd90d970a80", - "sequence": 63, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", - "media_hash": "f7d469200b180fd0c1e6048061009a544b7644b73eea38128fe6a6df", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Council tax bills will rise by as much as 15 per cent on April 1.", - "media_hash": "74cfb48d44176d46dc532ed02c25a2f0432b6c64b15b3054539f0a0b", - "sequence": 9, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "The DWP has confirmed that the Triple Lock will result in an approximate \u00a3575 increase for new state pensioners from April.", - "media_hash": "ed0fbbf970f3e91c54d6172370ec5018682087ec4ff5ca077a0bd8b7", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Eligibility for the over-80 pension doesn't depend on your National Insurance contribution record.", - "media_hash": "9520d2b3ec6c0b18017c4da8c5108ff6e3f7cefacabe41c4e4b371d2", - "sequence": 14, - "checkworthiness": { - "fullfact": { - "economy": 4.21887 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "She added: \"Interest rates are higher than back then, and more savers are expected to see their savings income taxed in the years ahead due to fiscal drag.", - "media_hash": "2ca1e1cfa0358ead8efd7e547e5316f5611f7157a86237c40acb38c1", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.213945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", - "media_hash": "99c5df1ab4c463156554f21683aa56fa8993c5a53ebc2a2031f1fc4d", - "sequence": 66, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.213945, - "economy": 4.213945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", - "media_hash": "f873b7e09186e01a43df2d71d78aa71c88d2714231828b0bbfa55b8f", - "sequence": 1384, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.206655, - "economy": 4.206655 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", - "media_hash": "6a797f10d01ef26a8b1b0c886084ac8c48dfe775acefc0118a7a7806", - "sequence": 318, - "claim_type": [ - "correlation", - "rules", - "support" - ], - "claimer": [ - { - "name": "Prime Minister", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.132820000000001, - "health": 4.132820000000001, - "leo_s_topic": 4.132820000000001 - } - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The money is not paid automatically when someone reaches State Pension age as some people choose to defer making a claim in order to keep working and generate more towards their pension pot, especially if they have not paid the full quota of 35 years' worth of National Insurance Contributions, or were 'contracted out'.", - "media_hash": "1482bfb2408d089d195c56dc18be17a456cd99fb6f53a5d4d5991553", - "sequence": 13, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.118985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "With bills set to rise from April, households across England are likely to see higher council tax charges, with the exact increase depending on where they live.", - "media_hash": "4f72480ca33a1bd115413ea91cc01f0ab7267bdddd86bbb067aca0ca", - "sequence": 13, - "claim_type": [ - "quantity", - "rules", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0944199999999995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'Council tax, water, broadband and mobile bills are all going up at the same time.", - "media_hash": "b73103ac97d7368fe453af3541ddf9806f3fe3cfbbe4306726833ff5", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Nous.co", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Greg Marsh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0839 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "economy": 4.0839 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", - "media_hash": "36d0dd517bae33d72a29cd280f0ad918956abb22450ec488b0531e48", - "sequence": 6, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.064495, - "energy": 4.064495 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.064495 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Undersupply, oil supply crisis fuel more housing pain", - "publication_date": "2026-03-31T16:37:29", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15695547/Undersupply-oil-supply-crisis-fuel-housing-pain.html", - "media_type": "news_article", - "sentence": { - "text": "Higher inflation will eat away at household disposable incomes and higher interest rates will diminish borrowing capacity, softening demand.", - "media_hash": "def5c71b82e530f6b23ff1657d0d14933c8e07a84c68fcbc51730d04", - "sequence": 16, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Tim Lawless", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.064495 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "The rising cost of the state pension raises the question of how long the triple lock will be sustainable and if ministers will need to move to a model with less generous increases.", - "media_hash": "8e1e8cefc0173f107cf9c4c0ebfbca046706f0aebfc87b802b985507", - "sequence": 9, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.064495 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "A host of local authorities in Scotland have increased council tax sharply.", - "media_hash": "627ce6b32e50d2b710087b7087b8272304fbdb024388446d14bed814", - "sequence": 24, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.061165 - }, - "demo": { - "policy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", - "media_hash": "6962ae9b2ee416759e0ad7d4a2d43cf577ae5f59b2bb08897e9ec0d2", - "sequence": 74, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Martin Whitfield", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Labour", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament. That is the \u00a330 billion increase in state pension expenditure over the course of this Parliament.\"", - "media_hash": "4cc717fbd6013fc43a631f8a9ce933b41d4d2b3f979a9cefec070a0b", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "DWP minister", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Torsten Bell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", - "media_hash": "ff53a3a7ad58317f37d43abf159f1a78b0bb8f5720600b0b964bb4b7", - "sequence": 70, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.2905 - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "ONS Director of Economic Statistics, Liz McKeown said: 'Our latest figures show GDP was unrevised in the last quarter of the year, with the economy growing a little.", - "media_hash": "c1f1ea6b94fc461561b8813d39a5d923dc6341b87ed498f8fdec8359", - "sequence": 26, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Liz McKeown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.061165 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", - "media_hash": "d1d6ab2c7753827a2517588a9688ce9d98dd550d1f3d778df8d709a6", - "sequence": 10, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 4.061165, - "energy": 4.061165, - "economy": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Even a small award can unlock help with housing costs, council tax and energy bills.", - "media_hash": "ebd55284fa780efe80ac0e306821d194d9df9cb6346cfdc37a59981e", - "sequence": 70, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0489 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Not quite right, I think it's the first time it's not a particular day where this happens, but it is now true that on an annualised basis, we're spending more on welfare benefits than we get through income tax.", - "media_hash": "3d0099d017d95c6e6e57f8b01cd5fe420f89461b1443e253b31c7327", - "sequence": 896, - "claim_type": [ - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.046805 - } - } - } -}, -{ - "title": "US consumers' inflation expectations surge on Mideast war", - "publication_date": "2026-03-31T15:33:13", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15695351/US-consumers-inflation-expectations-surge-Mideast-war.html", - "media_type": "news_article", - "sentence": { - "text": "\"It's almost certainly going to be a muted second quarter for spending and GDP growth as the worst of the inflation shock hits consumers,\" she warned.", - "media_hash": "b948be74ccd9e5955def1284ff7dc3a1741805048df73ba9c170eddd", - "sequence": 18, - "claim_type": [ - "quantity", - "correlation", - "predictions", - "support" - ], - "claimer": [ - { - "name": "Heather Long", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.037835 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", - "media_hash": "6b10a6165d9529ddf32e96060bd41b1c8fafedd43491fb829521a4d1", - "sequence": 1389, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 4.035135, - "economy": 4.035135 - } - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", - "media_hash": "0e5292f0da47b8acdac7a32f70b3575fc64ab53a414cd1ebb421ca57", - "sequence": 56, - "claimer": [ - { - "name": "James Murray", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 4.035135, - "economy": 4.035135 - } - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "If you have qualifying years on your National Insurance record as at April 5, 2016, DWP works out a 'starting amount' for you for the new State Pension.", - "media_hash": "1c179f092fe15b8178aaa921b39a143c64bd389639d5ddd057aa3071", - "sequence": 36, - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.035135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We've had some GDP numbers this morning, they're not new, but they are a bit of a fresh look at what happened at the end of last year, our business correspondent Dominica Connell is here, morning.", - "media_hash": "9512d24679873b42319b5227d1665b5bc6542e9483fd65f5a44c0e3b", - "sequence": 677, - "claim_type": [ - "quantity", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.008475 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "You have a completely rigid pension policy, which I don't agree with, and every time that there's somebody on pensions, they're not they're not earning and paying an income tax.", - "media_hash": "5e910ffd0d97d7fb4deb231cbd0d15cde42f40536387f75857df832b", - "sequence": 911, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 4.006385 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Martin Beck, chief economist at WPI Strategy, said: 'With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.", - "media_hash": "36b30e5bd5027c014b15b01fa524f0104e797ff1fa6bbdc763ba202a", - "sequence": 30, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Martin Beck", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0045850000000005 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 4.0045850000000005 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases. Analysts suggest this could become a significant strain over the next decade, forcing policymakers to review or amend the system to balance cost and fairness.\"", - "media_hash": "5eba18d7b6f9b7fcb3cd9537ea12844c4d2a0bde3939911981a9e68c", - "sequence": 24, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Andrew Prosser", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0045850000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "Martin Beck, chief economist at WPI Strategy, said: \"With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.\"", - "media_hash": "0dc75da8d5a77460bbc8032b74545e5aa91ce01046ba2ef24bca2db9", - "sequence": 17, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "WPI Strategy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 4.0045850000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis, figures showed today.", - "media_hash": "fbf5074e1ecd1eaf699a0a472f6535f57bdae11aebc6621ddb7a5e3b", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.975225, - "economy": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis", - "media_hash": "ffb61ed8ca1dc3b95c1c63e2d5861b20e7fbccaf5b4c60fb359abfcc", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.975225, - "economy": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "One Cuban family navigates daily life under a US oil...", - "publication_date": "2026-03-31T17:56:28", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695741/One-Cuban-family-navigates-daily-life-US-oil-embargo-deepening-economic-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Cuba \u0301s gross domestic product has plummeted by 15% over the last six years, triggering a historic exodus.", - "media_hash": "5900ae20580e0d06ff190d361516662394d4a971a12ead4639543b31", - "sequence": 38, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "This payment is available for those who have reached the UK Government's eligible retirement age and have paid at least 10 years' worth of National Insurance Contributions.", - "media_hash": "0554f4f1bb9a975bbe48ddec138e3f0b6195b553fa4ddbd1e4f5dfc4", - "sequence": 6, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.95176 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Deadline 6pm March 31 for vital winter fuel payment check for thousands", - "publication_date": "2026-03-31T06:39:36", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/deadline-6pm-march-31-vital-36946579", - "media_type": "news_article", - "sentence": { - "text": "The payment will typically appear in your bank account marked with a reference that begins with your National Insurance number followed by \"DWP WFP\".", - "media_hash": "a97eec35cf01ad822a9e95d89cc526848427a8ecd06e244cfd3444a1", - "sequence": 9, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.95176 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "It's also important to be aware deferred State Pensions increase each year in line with the September Consumer Price Index (CPI) inflation rate and not the highest measure of the Triple Lock policy.", - "media_hash": "3501bde63f21e4e22b6ac5783b20d370ca8ffec631c6c4fe55de99c7", - "sequence": 21, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.932475 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", - "media_hash": "2e56e9518645f1b0c47645577a08d7c696096885454881669561610f", - "sequence": 1347, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.911715, - "economy": 3.911715, - "leo_s_topic": 3.911715 - } - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The first State Pension payment might also be higher or lower than expected even with full National Insurance Contributions.", - "media_hash": "810f4d6d5c0e4b345c1348134da81d7ecd0326f8d4febdc1da3230ae", - "sequence": 1, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.911715 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "The growing squeeze is compounded by income tax thresholds being frozen (Image: Getty)", - "media_hash": "0d690e884427bbcaa16ef6a7b89d85e083e4903742a6d6fc4780b384", - "sequence": 9, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.901315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "In doing this, time and time again, after lockdown, after the crash, you end up with a government borrowing so much and so much in debt that the overall tax burden is crushing the growth out of the economy.", - "media_hash": "c474a6f283f53fa23c22cbd92680f573b761afb50e4c1b00cf4b4196", - "sequence": 894, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.901315 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'While council tax is an important funding stream, it cannot solve the long-term pressures facing councils, raising different amounts in different parts of the country - unrelated to need.", - "media_hash": "2e3982993a393557ed9e232d374698b4c6d440a80d5b4b24f0e17a28", - "sequence": 28, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Local Government Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.901315 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.901315 - }, - "pa-media": {}, - "maldita": { - "economy": 3.901315 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "They've got to start advertising them, they've got to put them in the budget for the next financial year, which as we know, we're coming to the end of that and the start of the next.", - "media_hash": "2136a7cc4d8aadb7a79be90f7c5932bf9e8a8f2d0126383f89bb4304", - "sequence": 333, - "checkworthiness": { - "fullfact": { - "economy": 3.898845 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But it's not all about the national insurance payments and it's not all about the rather small instruments that have been done by this government.", - "media_hash": "12da0ebf6c371a0194b9780e0cc02473ff0460bfb02517b4d6fba7bf", - "sequence": 986, - "claim_type": [ - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.894025 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Some good news for the government is that increased petrol price means more tax coming in to the Treasury, the bad news is, uncertainty means they're paying more to service the national debt.", - "media_hash": "d9441bc4e6a0ee525ffaf68df6eb8bb8ce659ec4e8b2ef8b01f1fbc4", - "sequence": 1309, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.894025 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "April will bring cost increases set to hit household bills and businesses, even as Sir Keir Starmer touts Government measures \"bearing down on the cost of living\".", - "media_hash": "1d89c0f0edaf216f981f5388a4759b31709c73b5c0c2c73416e087a7", - "sequence": 2, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.866315, - "economy": 3.866315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", - "publication_date": "2026-03-31T11:58:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", - "media_type": "news_article", - "sentence": { - "text": "\"Rachel Reeves appears to be overly influenced, if not controlled, by Ed Miliband's unfeasible Net Zero agenda, and remains determined to uphold the 5p increase in the Autumn Budget. She is either neglecting her responsibilities or acting ideologically by failing to do what her role requires: preventing inflation from rising, protecting jobs, supporting GDP growth, and maintaining consumer spending.\"", - "media_hash": "20ad674cfa77770bbabb178ffcccf80dfbb46f1b4ce3b9a1468c713c", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Ed Miliband", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.834115 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "Broadband Genie says that vulnerable customers and those with less disposable income are likely to be on the cheapest tariffs, so the new regulations are set to affect these people the most.", - "media_hash": "d500205cd03829a886ffb86c185819822145686ce2cab8b9d319f1a4", - "sequence": 12, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.786985 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "There isn't much you can do, of course, about council tax, but when it comes to your other bills, things like your energy and your broadband.", - "media_hash": "1ea95635f0d998639047d614e6f76ad46ef021070f1fd79cad02806d", - "sequence": 92, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.7796950000000002 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", - "media_hash": "1dbd00bad4aab01cfcb82c261d291861270e7c52a35f1b50f8d57dd6", - "sequence": 1395, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7577350000000003, - "economy": 3.7577350000000003 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "New figures show a spike in older Ford, VW and Vauxhall cars being scrapped due to Vehicle Excise Duty rises seeing owners facing big tax bills", - "media_hash": "842a2ce41a4bc1b6f9b8d938ab80fea363768264a57df905d1868ee4", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.748535 - } - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", - "media_hash": "002929fdc052da2c1c0be435aff697b1c0afcc16ce329618f20e4702", - "sequence": 76, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Malcolm Offord", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.748535, - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "media_hash": "d51d4346b0999cc6da7f35d97534411f594a7d5f315397e0043447fc", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament.", - "media_hash": "d9c6faf05d58ae2f3562ddbd83994bbf5e3f28cb3dc88e2c5826489b", - "sequence": 16, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "DWP minister Torsten Bell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too expensive for the Government.", - "media_hash": "a85ab84419156e5162924a030277f5f2b2c6490e37539c75396b5f25", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Historic UK company trading since 1809 'to fall into administration'", - "publication_date": "2026-03-31T12:00:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188763/historic-uk-company-to-enter-administration", - "media_type": "news_article", - "sentence": { - "text": "Reports of Denby's imminent collapse come at a challenging time for businesses in Britain, hit by increases in employer National Insurance contributions, minimum wage hikes and high energy costs.", - "media_hash": "fa63b5ee486bba212e556d18cd6a456dd19b87e09bc4f9a160eb0f2f", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 3.901315 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", - "media_hash": "616392e3d2df360f0851e7cd80dae7b149987736acba21efa5e180bc", - "sequence": 1349, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "economy": 3.7135350000000003, - "leo_s_topic": 3.7135350000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", - "media_hash": "24634f680700670725f9281cb717b50edc17f4aa717ee847eab16d04", - "sequence": 1354, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.7135350000000003, - "economy": 3.7135350000000003 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'Many councils have faced having to increase council tax bills to try and protect services from further cutbacks at a time when they are acutely aware of the financial pressures facing households,' a spokesman said.", - "media_hash": "010bf3bcd0b6de939d0322e4db9dccf49aa99583b8b42b9631e31b3e", - "sequence": 27, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Local Government Association", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.703135 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "economy": 3.901315 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "For months businesses have been anticipating the impact of a range of tax and regulatory measures announced by the government in the budget and in the weeks since.", - "media_hash": "5a5b073204f0760fc65b25978b2e635c9d7f34c2f4f40e6b172dac9b", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.703135 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "The government has kept in place the freeze on tax thresholds on income tax.", - "media_hash": "a9cf54cb26de7c0c2ed78b02d7d63c36d428d3515964ca44431b84a9", - "sequence": 46, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.703135 - }, - "demo": { - "policy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "Northern Ireland uses a domestic rates system instead of council tax.", - "media_hash": "3ff148f132d466e8a58344562d13867ca823cdb970c9f0bd520a2a6c", - "sequence": 25, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.61976 - }, - "demo": { - "policy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "He urged people to check if they have any gaps in their National Insurance (NI) records that they can voluntarily top up, which could increase their state pension payments.", - "media_hash": "36750d54ac3b9ebe4541b75a6b09099485ad46ed5ce15167a1fcbc3c", - "sequence": 25, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.612245 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "Motorists with the keys to older vehicles built between 1986 and 2001 are set to be face higher car tax bills within hours as changes come into effect from April 1.", - "media_hash": "b9f0c231c91cb8b4c4bc00c8a2e172f5c8161a703f8aa993dd3ede38", - "sequence": 4, - "claim_type": [ - "rules", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.599205 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "The GOV.UK website explains: \"You cannot use this service if Self Assessment is the only way you pay Income Tax.\"", - "media_hash": "e058a801343ce08199a842a0f94d9b4fedbb5836da7d9aa2e61fff31", - "sequence": 44, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "HMRC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.58131 - } - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "The Daily Star led a campaign last year to stop tax rises on horse racing bets.", - "media_hash": "3477c865e012a091c73ea1bab198973c67a8c472d5ff85fb40965e21", - "sequence": 12, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.58131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Minimum wage rises to \u00a312.71 an hour", - "publication_date": "2026-03-31T23:01:15", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c36r7jk6093o", - "media_type": "news_article", - "sentence": { - "text": "When Chancellor Rachel Reeves announced the increases in the Budget last year, she said the cost of living was still the biggest issue for working people.", - "media_hash": "b561a571cb987506ba16a4a428fec233416fc9bfbddb4cf870096423", - "sequence": 36, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "The Treasury", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.560815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "One question he was asked was whether or not he thinks the Government should keep the triple lock.", - "media_hash": "a59fba3dba9361dce39b7651ce89985ca351e53302327930a8e21237", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too costly for the Government.", - "media_hash": "5104367b43af39b1cbe1481813410ffad120a2f853b15b53875dffa3", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Sir Keir Starmer has highlighted the Government \u0301s cost-of-living measures (Stefan Rousseau/PA)", - "media_hash": "1b635481076099709677acd242d851f6f4a1bc9a53c8f879b4f4641f", - "sequence": 8, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.5503549999999997, - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Since the run up to the 2025 Autumn Budget, the conversation surrounding the income tax trap has gathered speed with families scrambling to sort their finances in a bid to prevent being dragged into a higher tax band.", - "media_hash": "29796b8cd45bf28a74d75181b3a5bca1a7b3e18d4271f40ec2f9895c", - "sequence": 11, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": { - "finance": 3.975225 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "In response to the question, Mr Bell stated: \"We going to be keeping the triple lock, yes, through this Parliament.\"", - "media_hash": "b231465fe42133f653b85268989890709f7661243feecf47feb6a151", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "DWP minister", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Torsten Bell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Minimum wage rises to \u00a312.71 an hour", - "publication_date": "2026-03-31T23:01:15", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c36r7jk6093o", - "media_type": "news_article", - "sentence": { - "text": "But Spencer says his business is being squeezed from every angle - as well as minimum wage, he has had increases in business rates, national insurance, and statutory sick pay.", - "media_hash": "04fb785f90ecdb5da76e2a507d0777708f2f274bdf10c42bc049fc62", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "In the run-up to the Budget last year, the Daily Star led a campaign to stop Rachel Reeves from introducing tax rises on horse racing bets.", - "media_hash": "be9e6154fc62971cf44a0c9d7e637f03f84ba3ef60d7d44848ba7050", - "sequence": 12, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Certain elderly people believe that having savings or being homeowners would disqualify them from the means-tested benefit, which can additionally grant access to assistance with accommodation expenses, winter heating support and Council Tax.", - "media_hash": "cc0ab210ea46c03a20c4817f1e05b77c86a6c67b934dfd004caf4c23", - "sequence": 38, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", - "media_hash": "8a830f711f819356088c50a7630d1c8f02d3cc5e1e952cb0c30bb749", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997, - "leo_s_topic": 3.5503549999999997, - "energy": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "Welsh Labour ministers say supporting people through cost of living pressures is a priority, and households receiving council tax support will be invited to apply for the payment if they rely on heating oil or LPG.", - "media_hash": "3d6cc219e744d9b1a24628cdb2a661929624cb4e581b9da0c137bf9a", - "sequence": 20, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Welsh government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - } - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "Mr Bell said in response: \"We going to be keeping the triple lock, yes, through this Parliament.\"", - "media_hash": "dbec3ff09d6374881f0fbe2ba162cddb6e70bcc34035f5223d67947a", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "DWP minister Torsten Bell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", - "media_hash": "3c1ef980a35ab4379d9557aa2987f4278ec251e2337c297445183160", - "sequence": 1357, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.5503549999999997, - "economy": 3.5503549999999997 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "This is part of Making Tax Digital (MTD) for Income Tax Self Assessment (ITSA).", - "media_hash": "bf432884f5d79e813d605118cf7b97b466551d385d4350da99010abe", - "sequence": 10, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", - "media_hash": "f543675647f69b6e1babf6c951ea028d19cb40083f64a0b938a8fc1a", - "sequence": 71, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Mairi McAllan", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "economy": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "The Guardian noted that manufacturing a medium-sized new vehicle may produce over 17 tonnes of CO2 - nearly equivalent to three years' worth of gas and electricity usage in the average UK household.", - "media_hash": "ba5f12deed26b8f0ed9a601487fcc4e0d153662c70e0cd5e76949be9", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.548465 - } - } - } -}, -{ - "title": "BBC Wales: Breakfast", - "publication_date": "2026-03-31T06:00:00+00:00", - "publication": "1-bbc_radio_wales", - "url": "/radio-transcript/403836", - "media_type": "transcript", - "sentence": { - "text": "The Welsh government says the one-off payment will be available to households which receive support from the council tax reduction scheme.", - "media_hash": "e1bdc3e4d93e5f6f7152bf8eec0265553029cbe43babae6795ee4115", - "sequence": 851, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.436025 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "One you have a note of your Personal Allowance tax code, you can go to the GOV.UK website and use the online \"Check your Income Tax for the current year\" service.", - "media_hash": "4263df56e599a943fb6388f634e7171aa8547864c136086f515ce27c", - "sequence": 40, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.414065 - } - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "\"Someone who has or is about to move up an income tax band would be wise to use up their cash ISA allowance, or lose it, as it resets on 6 April,\" she said.", - "media_hash": "fe56f257938afc3b20753efbebfd75c6a7f882eac6a302a20e9f538e", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "He encouraged people to find out whether there are any gaps in their National Insurance (NI) records which they can fill in, potentially boosting their state pension entitlement.", - "media_hash": "dfd2456b83943e8bccac385ecfc62de5823976bd761163b48483a3f9", - "sequence": 21, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.414065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Isabella Galliers-Pratt, investment director at Rathbones, said: \"AIM shares and VCTs haven't lost their place entirely, but the tax advantages that once justified the risk have been diluted. For many investors, the sums involved, including the prospect of a six-figure inheritance tax bill, mean these decisions now demand far more scrutiny.\"", - "media_hash": "179270bf96c2db0eb1c4f2108c55f8a13091ff883e81d71b3a0bc3c9", - "sequence": 28, - "claim_type": [ - "correlation", - "support", - "other" - ], - "claimer": [ - { - "name": "Isabella Galliers-Pratt", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.4092450000000003 - }, - "demo": { - "finance": 3.834115 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", - "media_hash": "4294a254b65a41dbe9d2d2d1191ead20bcb627c8bec692b38433256d", - "sequence": 71, - "claim_type": [ - "support", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104479, - "score": 0.20340000000000003 - }, - { - "tracked_claim_id": 104556, - "score": 0.10219999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.4092450000000003, - "economy": 3.4092450000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T19:27:41+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/AllisonPearson/status/2039062091479318744", - "media_type": "social_post", - "sentence": { - "text": "I thought Labour were supposed to be the party of working people.", - "media_hash": "df5cf6316f10425245a066a7a5d1249ae6a94277d5580ed9bffbd2f8", - "sequence": 1, - "claim_type": [ - "personal" - ], - "claimer": [ - { - "name": "7Kiwi", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.407405 - } - } - } -}, -{ - "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", - "publication_date": "2026-03-31T20:21:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", - "media_type": "news_article", - "sentence": { - "text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases.", - "media_hash": "32c895a9d0e309c15524246d6bae8abbbd48ab2552a4176ef039a232", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "Dext said the \"AI slop impact\" on tax is so bad that just over a fifth (21 per cent) of accountants in Scotland warn that relying on generic AI could actually trigger insolvency or business failures this year.", - "media_hash": "03b4c1f9209034e42eb18c5c8648709f4c42b2e98f31f591275ada0c", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dext", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 3.3956850000000003 - } - } - } -}, -{ - "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", - "publication_date": "2026-03-31T20:21:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", - "media_type": "news_article", - "sentence": { - "text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases", - "media_hash": "9bec875c5d660b34c91d42c261621ec701f8b34b76527dee50cc0912", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP tax changes to Motability will cost users \u00a3400 each", - "publication_date": "2026-03-31T14:21:45", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", - "media_type": "news_article", - "sentence": { - "text": "The Department for Work and Pensions (DWP) has announced tax changes that could cost disabled Motability users \u00a3400 each.", - "media_hash": "56664306fb3c3a1a82fd4ad88c63138a42672a5948b837e0a12a92a1", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "Some $250 million intended to feed children from low-income families during the pandemic was fraudulently taken, according to the Department of Justice.", - "media_hash": "710640409b27244ef96ee26381dee931854e1bc0f00ce1af5f92845b", - "sequence": 57, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department of Justice", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.3956850000000003 - }, - "demo": { - "finance": 3.09725 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The payment needs to be claimed, or retirees could face a delay in receiving their first payment of up to \u00a3230.25 each week, or \u00a3921.00 every four-week pay period.", - "media_hash": "01cbede40626d3df53e70a91c3f98cc55dd0576594088d17fa175947", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.38007 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", - "media_hash": "b3eed90ba12fac2b2d244930b333228f4e8a9fa5c47e95232b2bf448", - "sequence": 15, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 3.29984, - "energy": 3.29984, - "economy": 3.29984 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about \u00a340 from a DIY store, which can be used to water the garden rather than using a hosepipe.", - "media_hash": "2144ac481c0e7c762e77d3cf238ab75f7e3d6f9eb6ff6e46de2ba1be", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 3.2593950000000005, - "economy": 3.2593950000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", - "publication_date": "2026-03-31T11:58:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", - "media_type": "news_article", - "sentence": { - "text": "Howard Cox, the founder of FairFuelUK said that 36.4% of 3,678 sole traders, including bricklayers, plumbers, electricians, and others across the UK, have informed his organisation in an online survey that current pump prices could \"drive their businesses to the brink of collapse\" unless the Chancellor takes immediate action to reduce the cost of fuel, specifically diesel.", - "media_hash": "7fb75be47982b58ce45edcd42d75f00b66494415a541abe7107e454e", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Howard Cox", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "FairFuelUK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.2593950000000005 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "UK GDP figures out, we'll assess the state of the UK economy and growth with the economist and commentator Liam Halligan.", - "media_hash": "8957cb598757ff0d4872613fc6a30f006b8c3fc87312accb44760eba", - "sequence": 208, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.228755 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "Millions of workers are being urged to check their payslips before the end of the tax year, as one small error could leave them overpaying tax by thousands of pounds.", - "media_hash": "aaeeba1c7c238740e4f461feaf90bd454d277df295b08ee0626f2061", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.21125 - } - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", - "media_hash": "023e3e63fe3e678041d7fcfaf750c711047f86f44f2b370a0b4c250f", - "sequence": 46, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 3.211065, - "economy": 3.211065 - } - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "Labour pledged in its General Election campaign that it would keep the triple lock for the duration of this Parliament.", - "media_hash": "c271619ce8efc1f491846c3d52e57d391957812dc2238a55ad6544f5", - "sequence": 13, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "He was questioned about whether he believes the Government should maintain the triple lock.", - "media_hash": "96920fc58023c2dd9822fbf1610138d1c768d73952d43ed78aed62c4", - "sequence": 5, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "End `ridiculous\u00b4 royal tax breaks, Greens urge in...", - "publication_date": "2026-03-31T23:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696455/End-ridiculous-royal-tax-breaks-Greens-urge-election-pledge.html", - "media_type": "news_article", - "sentence": { - "text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", - "media_hash": "90b275fb62298fa1e30aaa8c12095bbad025b618b2b6be0e6250652b", - "sequence": 13, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065, - "scottish_elections": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "A senior DWP minister has spoken about the future of the triple lock policy.", - "media_hash": "27e37baae8e7468d55c99ea16bddfb7f331183d111bd7654b38de5f0", - "sequence": 2, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "Labour promised during its General Election campaign that it would maintain the triple lock throughout this Parliament.", - "media_hash": "57294435dad09f3d9613cd423155676300aa3d8227bdef9962d06682", - "sequence": 12, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But America's got better conditions for growth than Europe does, and if we'd only look across to our cousins in the US, we might actually be able to create the conditions needed for growth, a lower regulatory burden, a lower tax burden and lower energy costs.", - "media_hash": "1e8d1628450306534d19dcc7093dc4f158fd92d82ba8a49c83982f88", - "sequence": 1038, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.200295 - } - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "Millions are being pulled into paying tax on their nest eggs as frozen allowances and higher interest rates combine to erode protections once meant to shield them.", - "media_hash": "0ed2e35de59cd7c42ff6148c5c2e650fc7543a786098a8aa8145a9c5", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment inheritance rules after a spouse or loved one dies", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payments-rules-death-36941357", - "media_type": "news_article", - "sentence": { - "text": "Millions of people on State Pension face future tax risk after April increase", - "media_hash": "7c87d193244f9b91cdf6772939b0b499ada351416c3f977d5cc0f2bd", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.123595 - } - } - } -}, -{ - "publication_date": "2026-03-31T07:17:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", - "media_type": "social_post", - "sentence": { - "text": "\ud83d\udc67\ud83c\udffb Lifting 450,000 children out of poverty by removing the two-child cap", - "media_hash": "98411a8d0c31a38da64d7ba6371a2f2bed60e948bf8d0d3b14bf128b", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "josephpowell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.123595, - "poverty": 3.123595 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And I think the government has been given a really bad hand by events by the Conservative government, but they have made awful decisions on national insurance contributions and other things that has meant our economy isn't growing the way it should.", - "media_hash": "d59bc1642d6ee6bea5015964d66e75ca5e839b189d498659f90a5179", - "sequence": 904, - "claim_type": [ - "personal", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.120805 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I forgot how anti the national insurance rises the lib dems were.", - "media_hash": "0bdfe7dd4a45c8fbc5abee646bd61944dc6581b55598cca09c6ba24f", - "sequence": 906, - "claim_type": [ - "personal", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.09907 - } - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "As the organization raked in more than $3 million in reimbursements, he reportedly carved out at least $129,000 for himself.", - "media_hash": "0beebdfc68d546914eaa4d6cbd56e1cbee216b9728778bfe377229b3", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Abdul Abubakar Ali", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.09725 - }, - "demo": { - "finance": 3.09725 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", - "media_hash": "7091754801d02e06217bae835c2937684a0d8cbd9cd4265a9c31ddbb", - "sequence": 2, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "general": 3.09725, - "economy": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "but 25% are not yet ready and that and that's quite a scary thought, this comes into effect next month.", - "media_hash": "a2f00fa7de4b99fa3351f48bc277c053e5a6e55c91ef2b7e6f2352bd", - "sequence": 119, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Monzo Business", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.09725 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "The figures contrast with headline CPI inflation of 3 per cent last month - although that is now expected to rise in response to the Middle East turmoil.", - "media_hash": "12798d38c15f86a507afc16082ba2b8467f3bda0751fb69e98f033fb", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.09725 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "Wage expectations also inched up slightly, which could worry Bank of England policymakers concerned about inflation.", - "media_hash": "ce3d8a416831063e16ad8df27ff3e8a5015bf9feafec0068d78c3bb8", - "sequence": 21, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.083055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP tax changes to Motability will cost users \u00a3400 each", - "publication_date": "2026-03-31T14:21:45", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", - "media_type": "news_article", - "sentence": { - "text": "DWP tax changes to Motability will cost users \u00a3400 each", - "media_hash": "6b7dd87682e38161dfa387774393e7dafbefb07047a046ef8a53a272", - "sequence": 0, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Gary JJ Hedley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.074085 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Now I started off for good debate on national insurance, but speaking to businesses in my constituency and beyond, that has been awful for our economy.", - "media_hash": "78eaff3548c998cd25816993740d96feee01803fb4caa71737ab56a2", - "sequence": 1027, - "claim_type": [ - "personal", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.0681149999999997 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "Yeah, I agree with you, that's what I do the right thing and I get tax bills for it, whereas it's like said the barbershop or other service is like that.", - "media_hash": "22d3e962dc9c6fc827daa8c1a7edf243eccaf106c0a0e963f7523b00", - "sequence": 399, - "claim_type": [ - "personal", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 3.0681149999999997 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "One small mistake in your tax code could mean you are overpaying tax without realising and refunds from HMRc are not automatic.", - "media_hash": "abe47b9a6124bcff8cc6a16dcb7336f464fc243422881f1509015edb", - "sequence": 1, - "claim_type": [ - "rules" - ], - "claimer": [ - { - "name": "HMRC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.044 - } - } - } -}, -{ - "publication_date": "2026-03-31T06:32:07+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/AllisonPearson/status/2038866913430851723", - "media_type": "social_post", - "sentence": { - "text": "All this while tax thresholds for working British people have been frozen since 2021 and are set to remain frozen into the 2030s.", - "media_hash": "33391ed59e9ce642530ba44cedd215385461b36f31a49fd3cff21964", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "charliecolecc", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.0286850000000003 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Forecasts from the Organisation of Economic Cooperation and Development (OECD) last week gave Britain the biggest downgrade of all major economies.", - "media_hash": "26f00e9120fdbd3202ecc283b03949e6a3eff9b01e012f438269d3bc", - "sequence": 20, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.981275 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "State pension age to be reviewed by UK Government amid fears that 45% of workers are not saving", - "media_hash": "404b48afd3827f9ccc9c76de41cb7209433b4b523269b50b7a63db1f", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Despite pushing taxes to record highs, she's still spending \u00a3150billion more a year than she raises.", - "media_hash": "d988d9bfc270491b11c804d8db6d1057a99765e3fd6638f25a80668d", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "This is a government which is borrowing something like 400 a day.", - "media_hash": "58bd780d2b7e5250a2a18abe9409476e317a0a7ca0a0b78bc6a006ff", - "sequence": 875, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "Make UK estimate that the average cost to a manufacturer will be \u00a3100,000, rising to \u00a3250,000 by 2030.", - "media_hash": "42eacaf45ff12616e873e1c4870520a1ccb562de50616b4dc1a4be0f", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Make UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "The gambling sector is preparing for online gambling duty to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", - "media_hash": "9cac1d9f5c682f1ae2e6b5c20a4e8bf4b89f673c21ac436af36c7966", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "The popular bookies have around 1,300 shops in the UK with approximately 15% of them set to close from May due to increased cost pressures including significant tax increases in the gambling sector", - "media_hash": "35a615e123a7123431b4d9c2c0b7f8858df1802de73ec6126535c317", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", - "media_hash": "7ee60d472340e5a6169d594449470529ec8d11314140dbe43d85c3f7", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.970815, - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "I hate that. I hate the idea as shown by HMRC's forecast of this, that the government is going to make money on this, it's going to be 2.9 billion, the cost to the taxpayer and small businesses are buying software and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", - "media_hash": "9746354f04745861f5370fda34a618b40b75014279a00977965f3866", - "sequence": 142, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "A big change is on its way when it comes to how self-employed workers and landlords earning more than \u00a350,000 a year submit their tax returns and deal with HMRC.", - "media_hash": "97fe4aefba530c544a2bc9b7611f38819652f9dad2f4b9c00ef869ca", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "This compared to a surge of 0.7 per cent in the first quarter of the year before President Trump's Liberation Day.", - "media_hash": "92248b4d885302e71d4e2eb5ee51eb68f764ed94a25b89e26c9c8e89", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "The combination of a smaller multiplier with a much higher value meant higher bills, with publicans and hoteliers claiming average valuation increases of more than 30%.", - "media_hash": "70b7d0449bb2a06013cc52ea0e3735204596df2749ba4fc649b70f94", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "publicans and hoteliers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "HMRC has estimated that H M R C that introducing making tax tax digital will cost about 4.3 billion pounds, 1.4 billion of that being government spending and 2.9 billion being the cost to taxpayers and small businesses of buying software and employing accountants.", - "media_hash": "0c16810db18141bf4a97ba17e4ca0ba17b19080256a24be66db993c9", - "sequence": 63, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "HMRC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "But then HMRC estimates will cost taxpayers and small businesses some 2.9 billion because they will have to buy the software, in some cases on which they make their tax digital and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", - "media_hash": "b1c1dd0681870fe8b541a0c47066d7566ec7a436a7ad0cd35e00bc54", - "sequence": 187, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", - "media_hash": "2366f3bcead30a3c69969c3b4d708cce8894eaa831401c1443a8efa3", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", - "media_hash": "41affbdecfc8d59ba66c667c1a04b7cffca63c698680ab64100a134e", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "EDF Energy", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104448, - "score": 0.19320000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.970815, - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Rathbones estimates that more than 3,500 estates could face IHT bills breaching \u00a3500,000 by the end of the current tax year, up from 2,520 estates in the 2021 to 2022 tax year.", - "media_hash": "0548f6f8afa1086e63c05894af8638951d3e91c50ffadc24029da46a", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rathbones", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": { - "finance": 4.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves \u2018critical\u2019 warning as 1.3k businesses could be \u2018on brink of collapse\u2019", - "publication_date": "2026-03-31T11:58:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188649/rachel-reeves-critical-warning-businesses-collapse", - "media_type": "news_article", - "sentence": { - "text": "Rachel Reeves 'critical' warning as 1.3k businesses could be 'on brink of collapse'", - "media_hash": "506b88ecfbf90445412711b31d6e029300976e0c9df34af2b6916a81", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "The warning comes ahead of the April 5 deadline, with experts saying many people are on the wrong tax code without realising it - the average taxpayer could be owed more than \u00a33,000.", - "media_hash": "efa6de16b3a6f6c8fad77759b47c62d2990486e53863f1ac793044bf", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "Energy bills could go up by \u00a3300 in July (Image: Getty)", - "media_hash": "f8496ec245123b7c201724888df3e175f8f6284632949c873d149138", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "Now this does apply in the first instance to those with a gross income above 50,000 pounds, all of this is kicking in next week.", - "media_hash": "fe87f48a86b18c05b312aff6b62e646014dac46e7c20a9a2d505e552", - "sequence": 136, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "William Hill to close 200 high street stores in weeks as betting firm blames 'significant tax increases' under Labour", - "publication_date": "2026-03-31T20:21:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695639/William-Hill-close-200-high-street-stores-weeks-betting-firm-blames-significant-tax-increases-Labour.html", - "media_type": "news_article", - "sentence": { - "text": "The move comes just months after Chancellor Rachel Reeves made the decision to almost double taxes on online gambling from 21 to 40 per cent, while hiking sports betting from 15 to 25 per cent.", - "media_hash": "fb526e6da6403b065a8634e1b87c45503cd8d935d80c960894b755ef", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Think we need to acknowledge that the majority of that is on pensioners.", - "media_hash": "dda636fe4ce99a105aa4a62bdfc5ceaeb1a3b8bb54f23e08816554c8", - "sequence": 899, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.970815 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "There is going to be a degree of excitement or at least people are going to be excited about the fact that they are going to be made to make their tax digital four times a year, rather than one and for some people who don't aren't able to get it for free, you will have to pay on average about 300 pounds for the pleasure of registering your tax return four or five times a year.", - "media_hash": "ad3aa3c88d395dd4e822ddfb464122071b3aea7910072fc015b914f9", - "sequence": 135, - "claim_type": [ - "quantity", - "rules", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.9597550000000004 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The trade body warned that increases to employment costs and business rates from Wednesday will cause job losses and harm business viability.", - "media_hash": "a53dd790f17147446a9f0ba81583a26d9e72ceee4e3003d8abab781d", - "sequence": 20, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.9142349999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "Industry experts had warned the move could cost 40,000 jobs and risk consigning the 500-year-old sport to the knacker's yard.", - "media_hash": "92e7a2435bfd6e850f9c5514073dfa18068e4978bd809b6bf0a4660a", - "sequence": 13, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "He admitted using the nonprofit Youth Inventors Lab as a shell company to siphon millions of dollars through fraudulent reimbursement claims for roughly 1.5 million meals that were never served to children in need.", - "media_hash": "e8b57004aac08b2a7d30046f9819b5922d1b226a63357729170f4120", - "sequence": 4, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Abdul Abubakar Ali", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905 - }, - "demo": { - "finance": 2.910905 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "Ali admitted using a nonprofit as a shell company to siphon over $3 million in reimbursements for millions of meals that were never served to children, pocketing at least $129,000 for himself", - "media_hash": "3118ee445fbc54ad9fafdf97c85ae7221e30112fb348f976d96b697d", - "sequence": 11, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905 - }, - "demo": { - "finance": 2.87995 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "The DOJ said the scheme saw $250 million intended to feed children from low-income families during the pandemic fraudulently taken", - "media_hash": "986d45c4c7a3b0c1ea1a6ff4f53a0a96a28bcaf86a25a1fd20866a22", - "sequence": 45, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Department of Justice", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905 - }, - "demo": { - "finance": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", - "media_hash": "e32518c650b30323c84b14e3df63455fa8958cd352d4d9ae79457449", - "sequence": 314, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905, - "health": 2.910905, - "leo_s_topic": 2.910905 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "Almost half of Scottish accountants reported that clients trusting public AI have already been hit with real-world financial losses, from heavy HMRC penalties and overpaid tax to missed allowances.", - "media_hash": "b8797cec9d39dda9cf7a328220716affa4fef463233f3108d3440309", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.910905 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", - "media_hash": "5cce868ca8efd9b41db9d24d21054529319376fbb89b1ded771d6269", - "sequence": 292, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.885515, - "health": 2.885515, - "leo_s_topic": 2.885515 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "A bath typically uses 100 litres of water while taking a four-minute shower with a \u00a320 water-saving shower head uses just 32 litres.", - "media_hash": "e07f5f793a6bd9a27ffa3b60f452568dedef7161680a50bbbd801445", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131, - "economy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Minimum wage rises to \u00a312.71 an hour", - "publication_date": "2026-03-31T23:01:15", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c36r7jk6093o", - "media_type": "news_article", - "sentence": { - "text": "Around 2.7 million people are set to receive a pay rise this week as the national minimum wage goes up by 50p to \u00a312.71 for over 21s.", - "media_hash": "c76cc0c6b5fc93532f429242828195541212cbbf79b157949485fddb", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Treasury", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "A washing machine requires up to 150 litres of water per wash.", - "media_hash": "0ab511a7b85895b514e7743d810218beac852d340100c2b6f440c672", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.88131, - "economy": 2.88131 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", - "media_hash": "86a27ceed05145c49e4630b444b17b58075ef42a578d09157195487a", - "sequence": 1407, - "checkworthiness": { - "fullfact": { - "energy": 2.8610100000000003, - "economy": 2.8610100000000003 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "If you leave it, the mistake will simply roll into the next tax year - and you will keep overpaying without realising.", - "media_hash": "ba21462181826201932dc99a6fc39af576882d10ff8d60db0843e0fe", - "sequence": 37, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Jo Adams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.83673 - } - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "The national living wage for over-21s increases by more than 4% to \u00a312.71, and to \u00a310.85 for 18-20 year olds, an 8.5% hike.", - "media_hash": "96edcf218ddd62860d93b9895767ff657d0c4afd4e5d73e1118c2aa0", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.8194 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "It takes a couple of minutes to look at your payslip, and it could save you hundreds or even thousands of pounds.", - "media_hash": "7a87ed7e7e98ce6fc40cb90167e03b0ad3fcd333fa0a535831ad85fb", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Jo Adams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.8194 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "Having more than one job or pension can also cause problems.", - "media_hash": "9e98e09c2a867952985299c9cf5e3cb9da3108b15bc0b4a3d5f1732d", - "sequence": 23, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.810965 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "This can reduce your tax free allowance and result in higher deductions from your wages.", - "media_hash": "502d5e9852218f4d552286f491213d6d2b5493abee5ff90e7a4c6f23", - "sequence": 28, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.810965 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", - "media_hash": "c4145132ba7b006d21f8d80c44b970dfec84e420116506164213a9a5", - "sequence": 1398, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.810965, - "economy": 2.810965 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", - "media_hash": "4fed090c7516038c5440b72410678a5e4a2b89cbc8e8a2c98b815212", - "sequence": 1392, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.810965, - "economy": 2.810965 - } - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "\"Even with transitional caps in place limiting increases, those increases will still compound and bills can more than double by the end of the cycle.\"", - "media_hash": "3e5b3d313d7aa374d469aae2bf5ca2f6d1cab0806411f755c5dd06ac", - "sequence": 32, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Alex Probyn", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.801995 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:52:05", - "publication": "guardian", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "Of course, backward looking is an understatement for Q4 data, the outlook for growth is now materially weaker for this year and 2027 as higher energy prices will squeeze real incomes and further weigh on an already weak employment market.", - "media_hash": "0b10ada772b8a2f2c5216c7214f0cc82b70dbc385035096396af625d", - "sequence": 84, - "claim_type": [ - "quantity", - "predictions" - ], - "claims_matched": [ - { - "tracked_claim_id": 39629, - "score": 0.18110000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.801995 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "It kicks in for people, uh, with 50,000 pounds or more, but it is going to come down much, much lower over the course of the next few years, so it will get to you in the end.", - "media_hash": "f23aa89d1c46e453cecd99891414ccafda9bd6420c7857212ca11e9f", - "sequence": 88, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.801995 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Overall, a typical household is expected to be \u00a3143 worse off from the start of April.", - "media_hash": "de0ab89ad637f98a2dba0e53197ee0d283b78df85568bb318623159b", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.801995 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Indonesia rations fuel as prices soar over Mideast war", - "publication_date": "2026-03-31T13:03:14", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694797/Indonesia-rations-fuel-prices-soar-Mideast-war.html", - "media_type": "news_article", - "sentence": { - "text": "Observers say the government's hand may eventually be forced given that Indonesia is required by law to keep its fiscal deficit under three percent of gross domestic product.", - "media_hash": "64ec0b418aa6dd603991fc6052abf1f26be0cacece84e9ed3f879cb1", - "sequence": 9, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.786985 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", - "media_hash": "8c7a42ff28cf003199ccc9b149756bbf41b9621a223335d4f08b5027", - "sequence": 1404, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.7846200000000003, - "economy": 2.7846200000000003 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "However, there will barely be a chance to enjoy the savings, amounting to around \u00a310 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", - "media_hash": "abc32788f0e2da823cac45fc728a1c4febb7af1173ad2ff11f05cb68", - "sequence": 65, - "claim_type": [ - "quantity", - "predictions" - ], - "claims_matched": [ - { - "tracked_claim_id": 25099, - "score": 0.2639 - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.77565, - "economy": 2.77565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "media_hash": "4f0e1930159b55008e2fa6e8cd74360088e6058fe44c1f85595245fd", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.772635 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "Without it, you may be placed on an emergency tax code such as 1257L W1 or M1, which can result in higher deductions until the issue is resolved.", - "media_hash": "f8f08fd9dfb093b0806f528f6b3b7df0e01c1de5901e1d6bd0bd5c7c", - "sequence": 22, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.7705450000000003 - } - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "'F*** it, I'm opening a few daycares and a Medicare hospice care center, so you do a few years for several million dollars, which is a lot easier than working until you hit 70,' one comment read.", - "media_hash": "46ac52c34cc0a183817555e86c4dc6ef6932e692f05e70ab52263894", - "sequence": 48, - "claim_type": [ - "personal", - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.7679549999999997 - }, - "demo": { - "finance": 2.7679549999999997 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "The state pension is guaranteed to increase every year based on one of three metrics - inflation, wage growth or a flat 2.5%, and this is protected by law for both the new post-2016 state pension and the older, basic state pension.", - "media_hash": "92e101dab8469ff59d38a437b587b3fdea65615f11f6b86294abc836", - "sequence": 3, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.76698 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Um, and for the whole year, they've got a new number, 1.4% for the whole year of 2025.", - "media_hash": "ccd067ad6d054cb28b996ab43a6bf8ea966ab2bd5f79c529678ae706", - "sequence": 681, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.72968 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", - "media_hash": "812b460b7392f5dca5257da1e17967ad0a41f7c07975cb7156c40aa5", - "sequence": 1331, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72968, - "economy": 2.72968 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "The most common mistakes being found include incorrectly interpreting business expenses (61 per cent of cases), and messing up VAT claims (46 per cent).", - "media_hash": "7428947203acb47c915ab2d87461cf81c2ed85ff1d2ca78a9ce64c24", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.72968 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.6987249999999996 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Some households could also save costs by installing a water meter - those who switch typically save up to \u00a3100 a year.", - "media_hash": "091f2a9fe79c6cfe00659a0ba615c829a92a00179afaf70169290f98", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.72853, - "economy": 2.72853 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Indeed Britain spending about 112 billion pounds this year servicing debt.", - "media_hash": "7ca03fe7f56415fac5a56feeea47c2dc08133b1a32b74a45c489b2cb", - "sequence": 2503, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.72853 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "If you haven't given it enough information, you're really at a high risk of undertaking a task or an activity or making a decision that could ultimately lead to business failure.", - "media_hash": "a3e5122846148865cb2a4f99f8d51216b58c1450aaef41aa6cb96015", - "sequence": 24, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.716055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.716055 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "Accountants expect the risks to intensify this year if businesses continue relying on public AI tools without professional oversight.", - "media_hash": "200eb6e64990bc627ea506a3ddba0c1e7e2926e9dbaec8ab2d46e4db", - "sequence": 25, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.716055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.716055 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I think the question's quite right, so look, welfare spending is at a record high.", - "media_hash": "5af358d396371c1222c20e65b7583990b06aa72233744a101c467795", - "sequence": 898, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.7091849999999997 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "It means that cars which produce more than 225g of CO2 emissions per kilometre are hit by Vehicle Excise Duty (VED) - with those producing 201-225g/km paying \u00a3430, 226-255g/km \u00a3735 and over 255g/km \u00a3750.", - "media_hash": "c2f406689727e458d04fe13bd435d3685252f308f1cd16aa7079ed02", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "Over the past decade, basic-rate taxpayers alone have paid more than \u00a34.7bn in tax on their savings interest, underlining how the allowance has failed to keep pace.", - "media_hash": "fcf2757ceaf33dc5bb1729bbfe05c3fb376a9dad1a9cba54b1570070", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Minimum wage rises to \u00a312.71 an hour", - "publication_date": "2026-03-31T23:01:15", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c36r7jk6093o", - "media_type": "news_article", - "sentence": { - "text": "The Treasury said around 2.7 million people are on minimum wage", - "media_hash": "1332af9c90cb2a02de3d6fe8ca090a62aea1a3b2655b3e4571c98dca", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "I think we just need to put that in context that the majority of welfare spending is on on pensioners.", - "media_hash": "7b475447be63a6b4e7604893e0d69164441f7129ff55614af71977b6", - "sequence": 901, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "No, but the reason why this is such a huge increase in young people.", - "media_hash": "e9dda4e54ccb730637400c83b3206c647c5e22de860a6e80b709d520", - "sequence": 921, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "The cars affected are those which are older than 20 years - but they have to reach 40 to be considered 'classics' and be tax exempt.", - "media_hash": "2319d295ca907905bf684139492aee8ec54b0e7301cf57a5a5ade30f", - "sequence": 4, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "However, but more recent figures have shown the economy flatlined in January with zero output.", - "media_hash": "c8885c2dd9690eba98704864400738a07ebf883c25c4e7ee1eec7ef4", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "'Annual growth for the whole of 2025 was, however, revised up slightly.", - "media_hash": "66abfd59d3a7b3016a3f450a0479ef280e8056a7da611dcc5b7a3935", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Liz McKeown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "The overwhelming majority of town halls are imposing the maximum allowed without being obliged to trigger a referendum - with some strugglers given permission to smash the 5 per cent ceiling.", - "media_hash": "8e74e4aa42f4b1ade2d5d20565fe0f04160cf56679db5dce6c7c9d92", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 3.123595 - }, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:17:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", - "media_type": "social_post", - "sentence": { - "text": "\ud83e\udd63 Free breakfast clubs in schools - saving parents up to \u00a3450 a year", - "media_hash": "1a20fddce70639899a08cbb264f6e172362e58ade63f5074d0a95113", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "josephpowell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996, - "poverty": 2.6987249999999996 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But our economy's still growing faster than Europe.", - "media_hash": "6bc5acdc37b40e8c1a089be6e12da38727e475fe9ae5e2c16a0c291a", - "sequence": 1040, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 45073, - "score": 0.08811784092693131 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "There are also more than 700,000 older people eligible for a State Pension top-up of \u00a34,300 annual income top-up.", - "media_hash": "65493d6746f6e0b380b492bf451a3b66db45b2af2e6cacdae158b519", - "sequence": 44, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "But despite a sharp rise in interest rates over recent years, the thresholds have been left frozen - meaning more savers are now exceeding them.", - "media_hash": "e7208f79e91ecdf2a607a1cb76161e1ffe5c9bec745912ba041c700d", - "sequence": 5, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "\"Unfortunately, over a third (36%) of people have never heard of the PSA... This shows how the PSA has not moved along with the times.\"", - "media_hash": "b0dba19d254a22673794c44cd9938f8cd72800fa72331d48b0eb9234", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "This category is also set to be affected by annual inflationary price hikes this April, with fees up by as much as \u00a315.", - "media_hash": "5dce265a32f8bb16f8c24a84a6faf063bc97faeec81045b0344153e1", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "For metropolitan areas the increase will be a 5.2 per cent, ad in shire areas it will be 4.6 per cent.", - "media_hash": "432126624402c836d731852729a49fa8a0ab02aec57a3b6f1fe3073c", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "The full basic state pension will rise from \u00a3176.45 a week to \u00a3184.85 a week, or \u00a39,612 annually.", - "media_hash": "8fea78015e246a70b2a74c899f7218a14f157d8ae7adc2c3f6cf0979", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "Business rates, paid on bricks-and-mortar premises, are the means by which companies contribute to local government funding and are forecast to contribute \u00a334bn in 2026-27.", - "media_hash": "c4a8773a6ecdea38e2c0c4267a1257ce0e836d902d1d082e0d7f3d7e", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5315000000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "Really interesting, we've done some research on this and about 70% of business owners that are impacted by making tax digital are aware of it.", - "media_hash": "df0f99a43f5e84828fec7ca8789020cbe2d3edab51067e3a01ea2c2c", - "sequence": 118, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Monzo Business", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Gas and electricity bills are set to fall by \u00a3117 a year on average from April 1, to \u00a31,641 a year for a typical household.", - "media_hash": "9fc5bdd0c8a75354fc89bff6373ffa1ba064ec972dafbe15787065ad", - "sequence": 64, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, household spending rose by only 0.1 per cent, while business investment dropped by 2.5 per cent.", - "media_hash": "324dd594297c32378710c674e32e41fc395c7dde07b593c2e706cb08", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Pension Credit supplements weekly income to a guaranteed minimum threshold of \u00a3227.10 per week for individual pensioners or \u00a3346.60 for couples.", - "media_hash": "75b5702005cf1a74d72982da0c662c2127e91a6b79140bfa10b2ef62", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Services showed no growth, while production grew strongly, partially offset by a weak quarter from construction.", - "media_hash": "ac253ba2ba3bd69be1c33c8b01a35fef302fcb14593307aee355aee9", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Liz McKeown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "'Meanwhile, the household savings ratio increased and remains high by historic standards.", - "media_hash": "e00281c36f22d4a3de435e6c81a75a5cf08ac61912ccc7224f6b0707", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Liz McKeown", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'On top of that, many households are already overpaying by hundreds of pounds a year simply because it's so hard to keep track of everything.", - "media_hash": "f5b7148fca69453b8160ca1771e83377178961dc9bce80ad9a6d892a", - "sequence": 13, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Nous.co", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Greg Marsh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.500545 - }, - "pa-media": {}, - "maldita": { - "economy": 2.500545 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "We saw a huge increase in the number of people claiming entitlement related benefits particularly after the pandemic.", - "media_hash": "cce241ec8b35166fa0a8b559a9ca8ba4b9416e7f87ea39a6a42cbc90", - "sequence": 992, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Dividend tax is also set to increase by two percentage points for most investors, tightening the tax net on income held outside tax-free wrappers such as pensions and ISAs.", - "media_hash": "d46657be830a970666be1bb1ce573fa2b5e490f5a1f035bd9dc49920", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": { - "finance": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "But because these cars are now worth very little - often under \u00a31,500 - the annual tax bill can represent 25-50% of the car's total value and people are getting them scrapped.", - "media_hash": "f0a1a56302f3df881c930bb1ca3c973b6796a7baa186bb8266ea56f7", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "Your State Pension increases by the equivalent of 1% for every nine weeks you defer, this works out as just under 5.8 per cent for every 52 weeks.", - "media_hash": "aa56892924d90a29cf93e96888ec41ebf2617365cc13e243ab34c56e", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Debt interest alone is costing \u00a3112billion a year.", - "media_hash": "f674c7f6f0afeedf76e1c6b7e8698a7ad54d9bba0318544d685c4c67", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", - "media_hash": "9e3574c922321a880b23e9f356285ff07ee2913732f20c41250506cf", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996, - "leo_s_topic": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.698725 - }, - "pa-media": {}, - "maldita": { - "energy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:52:05", - "publication": "guardian", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "Inflation, meanwhile, has remained stubbornly above target, keeping interest rates higher for longer and tightening the squeeze on activity.", - "media_hash": "627ce9412bc214ea0e3517c697cf122a04b4a02ac7fe6f6e201e84c9", - "sequence": 48, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Jonathan Raymond", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104698, - "score": 0.39990000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "So people spent less on other items, so there's less VAT coming in on other purchases.", - "media_hash": "ced194e2faf7df5e9802f408f533eafa86e5a95f54ff6b6ad94c0392", - "sequence": 43, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "And on average, you will pay about 300 pounds a year for the privilege of doing something that was once free.", - "media_hash": "27d82f1316cf03e4ada903d2a4cf129ba399890ba1cb13587911c5be", - "sequence": 89, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - } - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "'From a business sense, coffee prices have gone up in the last three years by 40 per cent, milk has gone up from $2 to $3.15 and bacon has gone up from $46 to $59 - everything's going up.", - "media_hash": "4cea091e288b66cbefaba802d8a97c4460ca7a46076ecc0a855032e7", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Sam", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6987249999999996 - }, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Mobile customers can save an average of \u00a3304 switching from a handset contract to a SIM-only contract.", - "media_hash": "215d90b8b45740ee47f8a532d099de8ab25573592bc4447f3942d5e9", - "sequence": 53, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.6987249999999996, - "economy": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "So you think actually despite people not being ready, the system will allow for people to get used to this as it as it has becomes a necessity for people, not just in the first instance who aren't 50 grand a year, but 40, 30, 20 and then eventually to everybody.", - "media_hash": "963125be7ddbafe284ebc5e98f04832561f290b478ca22332565086c", - "sequence": 125, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6966349999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Greece can actually borrow more cheaply than the UK.", - "media_hash": "0b188234ae45ac287fdcef96dfb6391b019ff2cb49b0793e6f9bf884", - "sequence": 2502, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.66662 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Now, the staggering amount, rich relief is in no position to do a giveaway right now.", - "media_hash": "e796da23a5e0cb4c8243e78c69597bd0c51c4ba98c504e98891658c2", - "sequence": 876, - "checkworthiness": { - "fullfact": { - "economy": 2.658185 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "If you're not self-employed, do you see it as the right thing to do to self-employed people, to make them do their taxes more often to try and stop any, I don't know, what would we call it, any creativity in those accounts?", - "media_hash": "37f86ba3e4011690a02a1d1322bde84cc0601303b792553b9cfcfcaf", - "sequence": 84, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.658185 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "It is the end of the financial year and spirits are in the sky as a whole raft of changes are being brought in over the next few days and weeks that make life largely more expensive and more bureaucratic.", - "media_hash": "d8b73c39f9de5bf41d1329cff5acce82bb1b7e8776199c56d98b1dc8", - "sequence": 57, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.658185 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "First applied to those with a gross income above 50,000 pounds, but rolling out for everybody over the course of the next few years, a scheme which will cost the taxpayer some 1.4 billion in order to set it up.", - "media_hash": "ca76240e0dd803589f634b2c37c4b5be81d4b78df8c3833327794bab", - "sequence": 186, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.649215 - } - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "Some customers will see monthly costs rise by more than double than what they would've done under the previous system, according to Broadband Genie, with those on the cheapest packages hardest hit.", - "media_hash": "d0353f640be33219557ceaa3cc5e5947caf38440018e2fa676cb37f2", - "sequence": 10, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", - "media_hash": "34c35813d5befd06a9e4c04c9711f2e0dc698156a8a9c287a0bdb322", - "sequence": 1325, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.649215, - "economy": 2.649215 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "At first, you'll only have to do this if you make over 50,000 a year, but that amount will gradually come down over the next few years to mean that in effect, uh, even the children who come round offering to wash cars for pocket money will be feverishly been counting every quarter as the man from H M R C glowers at them.", - "media_hash": "f5d47b2e43b350da79368b80d04a9fd6338c26ab61f25a061068a60b", - "sequence": 62, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.649215 - } - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "'Providers have not hesitated to raise customers' prices far beyond the rate of inflation, costing bill payers millions.", - "media_hash": "15f00c1534f88ac99a028dba8ad849d8e6ea9faf5e7506c0b3b12c3c", - "sequence": 7, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Alex Tofts", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.638815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "'These are people trying to keep up with costs that are rising faster than their wages,' Compare Club's head of research, Kate Browne, told the Daily Mail.", - "media_hash": "124e492ab1a20027aed0417a07ded342b9c3c608776f5222abbd9dd9", - "sequence": 61, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Compare Club's head of research, Kate Browne", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.638815 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.638815 - }, - "pa-media": {}, - "maldita": { - "economy": 2.638815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "She needs to reverse her disastrous \u00a326billion jobs tax, cut red tape and get the economy moving.", - "media_hash": "03389e6ec751e1ad500c1ada3a618c679c26b6493b00b2d01ad11e65", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 39603, - "score": 0.3155 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.636345 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.636345, - "trending": 2.636345 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "'This is part of a very large fraud scheme, the largest in the District of Minnesota and one of the largest ever in the country,' Brasel said, according to KARE.", - "media_hash": "b5a5b11e8fcf96db81bbe1bb8d7981bff1409f3577bf4b58df8a16be", - "sequence": 28, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Judge Nancy Brasel", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.62293 - }, - "demo": { - "finance": 2.62293 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "Some of the most desirable cars from 20 years ago are now virtually worthless and being scrapped because it costs too much to tax them.", - "media_hash": "acf3939d8d36923ebfeaae48cedc3ba97163afc1fca8ffda83cb2a41", - "sequence": 7, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.62122 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "'The result is that most of us will be worse off overall - not better.", - "media_hash": "5cf6ceb446a522fd601729af2862869c403de0f98f243c3d6dfb73ee", - "sequence": 12, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Nous.co", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Greg Marsh", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6158 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.6158 - }, - "pa-media": {}, - "maldita": { - "economy": 2.6158 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "Industry experts had warned the move could cost 40,000 jobs and risked consigning the 500-year-old sport to the knacker's yard.", - "media_hash": "4d24d1fd82569bebaada9cbe9612cf71d6a99e2b85bb12a9e749cd55", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "Ali confessed that he and his co-conspirators relied on fake invoices for food and services, falsely claiming to have served over 1.5 million meals provided by S & S Catering in just seven months.", - "media_hash": "1e07410e69cd7279da909291fa5c448991d650ac71a0d97cfb5582e9", - "sequence": 43, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Abdul Abubakar Ali", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.61247 - }, - "demo": { - "finance": 2.61247 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "The criminals falsely claimed they had served 91 million meals.", - "media_hash": "ecf611b5503edf19082563aeb5bbf55255162300d3c724f09e66a991", - "sequence": 58, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.61247 - }, - "demo": { - "finance": 0.0 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And Trump's busy putting up tariffs that's damaging his economy and ours.", - "media_hash": "e51cb6cd6795b6136b0630baeba2d2cbabbec70b10dba90c885da616", - "sequence": 1039, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.598275 - } - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "The impact is clear: more lost jobs; less investment; and business closures.", - "media_hash": "8c9ea97d95135b7d909ce8d40f5d18aa4e3da8fb062cdb0b8da759da", - "sequence": 13, - "claim_type": [ - "correlation", - "support" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.59811 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "' And increasing energy prices now threaten to 'accelerate all of these impacts', they added.", - "media_hash": "b4a924468a181d07cf028dfb1a6d67d2153c71b3461a74f4c54a378e", - "sequence": 14, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "Hospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.59811 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "To what extent is it your fault because this has been in the making for some 10 years ago, there have been adverts about it, there have been conversations about it already.", - "media_hash": "21bd765f8c01498bbb27227904cc1fd2c68334da2bb7252267b62be1", - "sequence": 81, - "checkworthiness": { - "fullfact": { - "economy": 2.58644 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "You have you have actually outed yourself as the reason for why this has to happen because there is a person on payroll listening going, well hang on.", - "media_hash": "406462f169bb1165df3d4d5a01d9bf5f5d78e6fcc5e4a5495cd14db1", - "sequence": 390, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.58644 - } - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "You usually multiply the number in the tax code by 10 to get the total amount of income they can earn before being taxed.", - "media_hash": "1d233ceb6dcdb4ebd82e07a20c897d05dbb810dbd1d2fc7dcd644e43", - "sequence": 47, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - } - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "You typically need 35 years of NI contributions to get the full new state pension and 30 years of contributions to get the full basic state pension.", - "media_hash": "f8f5f3a663074a3fca26c35cfb20927211b1d0312ca94eb315769fd8", - "sequence": 26, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "Generally, 35 years of NI contributions are required for the full new state pension, while 30 years are needed for the full basic state pension.", - "media_hash": "901039e2837cdb7475eae570d78435693557d378b29b6eb013267bb3", - "sequence": 22, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Under existing rules, councils can raise tax by up to 4.99% without a local referendum.", - "media_hash": "17dd296908f06583cfafa1def30830281a6a1454a96b8efda0bd70a0", - "sequence": 3, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "Single-person households qualify for a 25% discount, full-time students can be fully exempt, and those on low incomes can apply for a reduction of up to 100%.", - "media_hash": "c086686cbcd2b02dc1d9ae776444d49c000c32ba2f85d061361c34c1", - "sequence": 9, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The planned change to the official age of retirement has been in legislation since 2014 with a further rise from 67 to 68 set to be implemented by the mid-2040s.", - "media_hash": "a7e2a8fa67982051b4082a4be17b43e3a2c7a9ccfcb3d70a460df4bc", - "sequence": 4, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "The policy ensures the state pension increases each April in line with the highest of inflation, the rise in average earnings or 2.5 percent.", - "media_hash": "58b5d73b522f30f68ccca4fcc195a33dc246bac9e959b443c65fca17", - "sequence": 4, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "The policy guarantees that the state pension rises each April in line with the highest of inflation, the increase in average earnings or 2.5 percent.", - "media_hash": "f6ca1db68ca208cbae9a9ed14b18ee5b6789beaae308cf51a4e6f04e", - "sequence": 3, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5843949999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", - "media_hash": "c0e57f6d3f0edf30285444e2d7eb86b9ea3eb60054f782c57940f058", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Treasury", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "general": 2.57747, - "economy": 2.57747 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "energy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "If they earn \u00a330,000 per year, taxable income is \u00a317,430 (\u00a330,000 - \u00a312,570).", - "media_hash": "8ecaf0552cc0b7bf25ddcc9490b2664f191182698e40a4bcb7e5dcb9", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - } - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Official figures show the average levy in England will rise 4.9 per cent next month, with a typical Band D property paying \u00a3111 more.", - "media_hash": "99cf1e502604de88147ef32af506e445e8c6b0544ee6373281cdc4da", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "In London the typical figure is set to see a smaller 4.4 per cent rise to \u00a32,068.", - "media_hash": "c1db65425567ac466c358dcadd2df219f7cb31a33c285e0edc3efeff", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5769 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:45:01", - "publication": "guardian-business", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "However, the ONS did revise annual growth for the whole of 2025 up slightly, from 1.3% to 1.4%.", - "media_hash": "c083c9f4fc56bba9bbfecbca9d2daa9aa32a6b6adaa9811f2380f4bf", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.2208 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It'll go up to 53, sorry, 54 pence a litre, at the moment it's 53 pence a litre, to fraction under on both, but, and then two pence a litre more, uh, in six months increments from then on.", - "media_hash": "a6e7e5238cc536ee79c57f790e455590470c9380843eadaade3b49cd", - "sequence": 1317, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "But if you wash using the eco-mode setting it can be just 50 litres.", - "media_hash": "8a671600aaded2440af66dc6b56ed049783d5e79e8baf9de6459dd31", - "sequence": 43, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "The Personal Savings Allowance (PSA), introduced in April 2016, allows basic-rate taxpayers to earn up to \u00a31,000 in savings interest tax-free, while higher-rate taxpayers can earn just \u00a3500.", - "media_hash": "02261571c907a11154bd0d8bc1ab080665257ae994b2bf4ff6d2cd70", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "According to analysis from motor experts Pete Barden, older cars registered before March 2001 with large engines above 1549cc will pay \u00a3375 per year.", - "media_hash": "0627876142c7ee17fff07c32baf8c3e91335175869fbbb8106bfd0c9", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pete Barden", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "Under the updates, owners of petrol and diesel cars with engines below 1549cc will pay \u00a3230 per year, a \u00a310 rise on the current \u00a3220 annual charge.", - "media_hash": "d790eb529714cc73e76fce7db27e35054be3dbccedf4ef73d1b55ae2", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pete Barden", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The household saving ratio increased this quarter by 0.8 percentage points to 9.9%, which the ONS said was caused by higher non-pension saving and \"remains high by historic standards\".", - "media_hash": "94bd7d7efcdf088b8ce4fcead82495114f086add617df5f469ada02c", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "The full-year growth was previously estimated at 1.3 per cent.", - "media_hash": "4ac25f5de40fba6f23d11cfdcfc3923e8989fb0cd7e04a51409065c7", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "Hagger added: 'You need an average balance across the whole month of a minimum of \u00a310 to enter the draw and each multiple of \u00a310 gives you another entry, so the more you put in, the more chances you have.", - "media_hash": "7d64ff4d2db455838336c2a47b3be0d488d74fd8b398e81f01db6159", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Andrew Hagger", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Bath & North East Somerset: 4.99%Bedford: 4.99%Blackburn with Darwen: 4.99%Blackpool: 4.99%Bournemouth, Christchurch & Poole: 6.74%Bracknell Forest: 4.99%Brighton & Hove: 4.99%Bristol: 4.99%Buckinghamshire: 4.99%Central Bedfordshire: 4.99%Cheshire East: 4.99%Cheshire West & Chester: 4.99%Cornwall: 4.99%Cumberland: 4.99%Darlington: 4.99%Derby: 4.99%Dorset: 4.99%Durham: 1.99%East Riding of Yorkshire: 4.99%Halton: 4.99%Hartlepool: 1.98%Herefordshire: 4.99%Hull: 4.99%Isle of Wight: 4.99%Isles of Scilly: 4.99%Leicester: 4.99%Luton: 4.99%Medway: 4.99%Middlesbrough: 2.00%Milton Keynes: 4.99%North East Lincolnshire: 4.50%North Lincolnshire: 4.70%North Northamptonshire: 4.99%North Somerset: 8.99%North Yorkshire: 4.99%Northumberland: 4.99%Nottingham: 3.50%Peterborough: 4.99%Plymouth: 4.99%Portsmouth: 4.99%Reading: 4.99%Redcar & Cleveland: 4.99%Rutland: 2.00%Shropshire: 8.99%Slough: 4.99%Somerset: 4.99%South Gloucestershire: 4.99%Southampton: 4.99%Southend-on-Sea: 4.99%Stockton-on-Tees: 4.95%Stoke-on-Trent: 4.99%Swindon: 4.99%Telford & Wrekin: 4.99%Thurrock: 4.99%Torbay: 4.99%Warrington: 7.48%West Berkshire: 4.99%West Northamptonshire: 4.95%Westmorland & Furness: 4.99%Wiltshire: 4.99%Windsor & Maidenhead: 7.49%Wokingham: 4.99%York: 4.99%", - "media_hash": "de1a3dfe2215d4d49bd78cdc63c8f2756ab2c50bb8020e0d90280e46", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bath & North East Somerset", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Blackburn with Darwen", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Blackpool", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Bracknell Forest", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Brighton & Hove", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Bristol", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Buckinghamshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Central Bedfordshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cheshire East", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cheshire West & Chester", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cornwall", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Cumberland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Durham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "East Riding of Yorkshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hartlepool", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Isle of Wight", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Isles of Scilly", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Medway", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Middlesbrough", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Milton Keynes", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North East Lincolnshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North Lincolnshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North Northamptonshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North Somerset", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "North Yorkshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Northumberland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nottingham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Peterborough", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Plymouth", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Portsmouth", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Redcar & Cleveland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Rutland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Slough", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Somerset", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Southend-on-Sea", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stockton-on-Tees", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stoke-on-Trent", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Telford & Wrekin", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Thurrock", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Torbay", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Warrington", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "West Northamptonshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Westmorland & Furness", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Windsor & Maidenhead", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "The saving ratio increased by 0.8 percentage points to 9.9 per cent in the fourth quarter.", - "media_hash": "a38c072ad6c0fefa31a777cd06e45dd45928d13016af477bda7191b5", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "We've got about eight or nine different bands.", - "media_hash": "86d9a8fd45f3989befb95be66b2a890aea6b9136e7c7f5190cd6c09b", - "sequence": 382, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - } - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "A \u00a34 monthly increase represents an 8 per cent increase on a \u00a350 deal, compared with a 20 per cent increase on a \u00a320 deal.", - "media_hash": "2ad528a0ae174c9a7eb0db9d45bd9ab549dd871674891407ae0128b1", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", - "publication_date": "2026-03-31T06:30:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", - "media_type": "news_article", - "sentence": { - "text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged, which followed unrevised growth of 0.1% in the previous three months.", - "media_hash": "e238a7ebb8d6b3a9d0cbe7e0afb33472e663f03c18ae74bad58278c4", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Across England, the pattern remains consistent, with most county councils, metropolitan boroughs and unitary authorities implementing rises of 4.99%.", - "media_hash": "c89c8d9843e95b9ad98c92efd2c7f5e8a9ad8dfe671d03834c0a132e", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "But Pension Credit tops up this amount up to \u00a3238 per week, which is only a few pounds less than the new state pension anyway (\u00a3241.30).", - "media_hash": "bb45dd9d405c0aa3ce68fd153bc710c0cf896a9917c279766ebb48f7", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Pension Credit", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "By contrast, the same \u00a320,000 placed in a leading cash ISA paying 4.45% would generate \u00a3890 completely tax-free.", - "media_hash": "ed268d5f60da29dd93cb73c00403ff1d9dda10a03d24eed24ba92469", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged at 0.1%, which followed unrevised growth of 0.1% in the previous three months.", - "media_hash": "272a80c9e7a09647bf09a0810d5349575292dae053c667940b5f6dee", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "It means the number of \u00a3100,000 prizes will fall from 78 in the most recent draw, to an estimated 71 in April.", - "media_hash": "0fe794207a78dfa3f9970173bceb4845cfe3bc8e46d6a5bc7d7176db", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Savings & Investments", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "For every \u00a310 you deposit, you get one entry into the monthly draw up to a maximum of \u00a385,000.", - "media_hash": "22e316e44ca27e22eead9661124e081b652282826a6a7d1687bf6780", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chip", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Bournemouth, Christchurch and Poole Council set an increase of 6.74%, while Trafford, Warrington and Windsor and Maidenhead approved rises of around 7.5%.", - "media_hash": "6453cd351777cbf38efb288df36a92ba189545eafeab93e3de4b26e1", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Bournemouth, Christchurch and Poole Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Trafford", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Warrington", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Windsor and Maidenhead", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Bournemouth, Christchurch & Poole", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Other lower rises include 1.99% in Durham and around 2% in several London boroughs, including Wandsworth and Westminster.", - "media_hash": "77576fe456f400edba363dbe4e76d42b2da6c60f86103b6941a09199", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Durham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Wandsworth", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Westminster", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", - "media_hash": "197c498503a7abad2d230377d1eb0902e9914c4a843924d354da4558", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5769, - "economy": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "For most people with one job or pension, the standard tax code is 1257L.", - "media_hash": "1175baaaf12c9409f2bdf41df4c5ec749dacdf13583d22c901e073bb", - "sequence": 14, - "claim_type": [ - "quantity", - "rules" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5688 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Look, higher energy prices are not good news for anyone.", - "media_hash": "b3853842f587fd0b5dc1c995bdbe32fa55b67d4df692ee9ee8387d06", - "sequence": 862, - "checkworthiness": { - "fullfact": { - "economy": 2.5686799999999996 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "An accountant and professional adviser will always ask you more questions until they've got enough information to be able to come to a conclusion or the best plan of action.", - "media_hash": "ef1b3a583be08c19245e61dffbe443a4efecaa12eb3d1c41b82b14f2", - "sequence": 22, - "checkworthiness": { - "fullfact": { - "economy": 2.5686799999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.5686799999999996 - } - } - } -}, -{ - "title": "State Pension payment delay for older people set to retire this year", - "publication_date": "2026-03-31T10:55:57", - "publication": "dailyrecord", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/state-pension-payment-delay-retirement-36948256", - "media_type": "news_article", - "sentence": { - "text": "The State Pension age is set to start rising from 66 to 67 in April, with the increase due to be completed for all men and women across the UK by 2028.", - "media_hash": "ae9f00eca0cddf94652788828a81b8a4a9b317fe1ef0b78c4a0ebf13", - "sequence": 3, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "UK Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.55971 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "Last week, OECD forecasts delivered the biggest downgrade to Britain compared with other major economies, slashing its growth prediction by 0.5 percentage points to just 0.7 per cent.", - "media_hash": "a6b025586be2b98c5f9085c28256ddc117aed96b76d689cc322ea9a2", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "OECD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "The policy has resulted in substantial increases in payments in recent years, including a record 10.1 percent surge in April 2023, due to skyrocketing inflation the previous year.", - "media_hash": "3221af13ac092920fbce7973aef1bdb5472b3f094202a5d19d0221ec", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "The OECD warned last week the UK would face the biggest hit from trade disruption in the Middle East as growth could come to 0.7 per cent.", - "media_hash": "b97f0f6d6d4508f0b4770cb712961a2d4dc5b04cb4bd040a209bc095", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "OECD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "The policy has delivered sizeable increases in payments in recent years, including a record 10.1 percent hike in April 2023, thanks to soaring inflation the year before.", - "media_hash": "1b6220d03f2ef75e0e0c6fb1a497d0d0d3fef9b45cb31ab3becd7737", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It's not the highest ever that was during the COVID pandemic, but it is still pretty high.", - "media_hash": "b8a74270523461b1f2c051584775672aec3d7b5839e6e8920dec55bc", - "sequence": 683, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.556405 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", - "media_hash": "c739ce8a295258f71a0dac70bc2128ea66f6848346384d0cdb360725", - "sequence": 1394, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5528750000000002, - "economy": 2.5528750000000002 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "Between 2024 and 2025, scrappage increased by 550%.", - "media_hash": "52e23bd880f07726a92d2be4e88dad43205f40304dbea2b92da17d13", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Car.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "Among the providers applying the largest price rises as a percentage of their average monthly costs include Three, Hyperoptic, Virgin Media and TalkTalk.", - "media_hash": "a8adfda79d91553dc372fec75065cba3f939c4df344a0495e4ec52f6", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "This represents an 18 per cent increase, as opposed to the 7.5 per cent rise that would've applied under the old rules.", - "media_hash": "22bc27f400b3ba1ffc6a99a431fb6500c00f82aad4b3cab1ec030101", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GDP growth was already fragile in 2025, figures confirm - as energy price hike raises recession risk", - "publication_date": "2026-03-31T09:49:05", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15693895/GDP-growth-fragile-2025-figures-confirm-energy-price-hike-raises-recession-risk.html", - "media_type": "news_article", - "sentence": { - "text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1 per cent to 1.5 per cent growth that had previously been widely expected.", - "media_hash": "83aee7874ad531994d7cb18f5ab7c9f2be119fef6dc912a619a4b5f0", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Martin Beck", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "WPI Strategy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "When you look at fuel prices, they're still lower than they were, um, three years ago.", - "media_hash": "b3772757917ac380e5254e6248ec0320dd24aa7840adee7c3a05d86d", - "sequence": 891, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "Household incomes are still marginally higher than when Labour came to power, but remain below pre-Covid levels.", - "media_hash": "d1151a9e716e3bbb2096cfe3c2166ee03a88cb743cd8bad07ca49c4f", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "It also puts the UK at second lowest in the G7 in terms of economic growth this year, behind only Italy.", - "media_hash": "c90cbe706b13c5964548b8112299383aff020da8c109cc9875ac90fa", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Organisation of Economic Cooperation and Development", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "This is a \u00a315 rise on the \u00a3360 fee currently paid by road users taxing one of these vehicles.", - "media_hash": "e1e8eff3ec89d46612a94ec0fd52ff593b3160e3d4fc1029ae886a85", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Use our calculator to reveal how you'll be hit in 'Awful April' as council tax, water, internet and mobile bills rise", - "publication_date": "2026-03-31T07:44:38", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691547/Use-calculator-reveal-youll-hit-Awful-April-council-tax-water-internet-mobile-bills-rise.html", - "media_type": "news_article", - "sentence": { - "text": "Customers served by Thames Water can expect their bills to rise by just \u00a33 a year, compared to \u00a357 for customers of United Utilities.", - "media_hash": "813dd1de9a9240ed4d66a558d79ade434c7d9ccb9715732fa3260be4", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The OECD forecast the UK would see inflation jump to 4% this year, up from 3% in the latest official figures.", - "media_hash": "68d968207da2e013c6156b62bca9dd8c30876e8ffb8d867a788711e6", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Organisation of Economic Cooperation and Development", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "But while surging oil costs have left motorists paying more than \u00a31.80 for a litre of diesel and \u00a31.52 for petrol, the Treasury is believed to be seeing a \u00a320million a day boost to revenues.", - "media_hash": "d7c62108ac49a30ea742cb6b3fbb6d54479a7f02a03277eef6256015", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "The RAC has also suggested the Government could earn an extra \u00a32billion from VAT on petrol sales.", - "media_hash": "0a5d6b9a39c50fd193c9455b36dad0b9eddcc5f09ec18d05e7492523", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "Business investment over the year was two per cent higher, with a fall of 2.5 per cent in the fourth quarter dragging down on the figure.", - "media_hash": "782bcd2bc5cb76be4b055b5eeeec45308bacddcd05e6686769654b9d", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.06479999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "Pensioners then experienced an 8.5 percent rise the following year, in line with the increase in earnings.", - "media_hash": "88c992fc5634c5ace8c28378e0f2ebc9495b87c5e9e33acfb9c15662", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", - "publication_date": "2026-03-31T16:22:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", - "media_type": "news_article", - "sentence": { - "text": "There will also be a new online sports betting duty of 25% from 2027, covering all sports except horse racing.", - "media_hash": "a4a8ab0415b9387c75cf54c6d7e62588b8990d66d5a8f0ba52cab945", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "So that's actually something that is really tough. We've recently done some research that said that the average business owners spending multiple across the UK, multiple millions of pounds on financial tools.", - "media_hash": "f3d0e413e19905f4157c4379d8cf59e93b59fff95d254463ad7d24ee", - "sequence": 106, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "More than nine in ten UK accountants believe public AI tools should be regulated and/or restricted when providing financial advice, with 70 per cent calling for regulation.", - "media_hash": "bcb68482535dd185540bd62fa3ffe1a79ea7f1aa307a1951c2e15c44", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK accountants", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.5459449999999997 - } - } - } -}, -{ - "title": "DWP tax changes to Motability will cost users \u00a3400 each", - "publication_date": "2026-03-31T14:21:45", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", - "media_type": "news_article", - "sentence": { - "text": "It is making these changes to offset an additional \u00a3300m in taxes introduced in last year's autumn budget.", - "media_hash": "b1b9a086b773d37c32a1950a512a6caf88cae230c2d2e9a8e17cd1c9", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "'Costs have doubled for us in the last month and we only do short trips in the car.", - "media_hash": "18b0c4bbf11b4ce3f615bf49d05a106df3ca1d4882aa013048bdcedb", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Peta", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "'Before the crisis, we used to fill up for $50 a day, now that's jumped up to $150 a day,' he said.", - "media_hash": "0a241e687521c9bac7f25c6a4d6c412954b66924c3788882e798df5a", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Sam", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104448, - "score": 0.15610000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "It would earn around \u00a33.5bn a year from the energy profits levy on North Sea oil and an extra \u00a32.4bn from gas sales.", - "media_hash": "5ec8157db89f6e06e2366aeb7bb49ceaa107dc15d471337a942aaaf3", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "general": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "William Hill is set to close 200 of its UK shops in a hammer blow to Britain's high street.", - "media_hash": "44a539727e2fc765a84be9b4e4472a1634cc03ad3258a78b1cb1463b", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The rises in national minimum wage and national living wage highlighted by Sir Keir represent a \u00a31.4 billion additional annual increase for hospitality businesses, the body said.", - "media_hash": "447824962c7b2b86757fc97706d1bc8d495788de2520e953aad281e3", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Show me, show me a government, any Prime Minister, you've had about seven of your guys in recent times, show me one of them who has actually created growth.", - "media_hash": "0792637e685f95781a27f93a1f3d2b585e5be6781a4b6e701a2f2965", - "sequence": 1012, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a333; Potential savings: \u00a3100", - "media_hash": "f6f9ec05b52ef7d6a593b90368bc3887aab98d88a4df3c7697b2ad0f", - "sequence": 44, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price 'hike': minus \u00a3117; Potential savings: \u00a3338", - "media_hash": "d3f7dd4f99d6ed60b095e6010c151190bc5b8e2b89d69e4cf7dddfd7", - "sequence": 79, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: brace for a wave of stealth tax rises", - "publication_date": "2026-03-31T13:47:00", - "publication": "cityam", - "url": "https://www.cityam.com/awful-april-brace-for-a-wave-of-stealth-tax-rises/", - "media_type": "news_article", - "sentence": { - "text": "Crossing the threshold triggers the tapering of the personal allowance, creating an effective 60 per cent marginal tax rate on income between \u00a3100,000 and \u00a3125,140, turning bonus and pay rises into a \"tax shock\".", - "media_hash": "ee348addf2ec16f20129fe199ac09530a018490173088319fe87182c", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Awful April: What is happening to household bills?", - "publication_date": "2026-03-31T12:34:35", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694683/Awful-April-What-happening-household-bills.html", - "media_type": "news_article", - "sentence": { - "text": "It is the fourth year in a row that the England-wide increase has averaged around 5%.", - "media_hash": "facce339c3da7206f2db52ebee956bb8ac2d849fad320a85fa0a2d38", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ministry of Housing, Communities & Local Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "Virgin Media's average monthly price is \u00a322.86, with prices rising by \u00a34 this year.", - "media_hash": "b2f2ac901e734a749725d15fdd2cb58d9c2b8b2f6935f4c2ba9fca4d", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "In April 2016, the state pension age was set at 66, which means that new state pensioners today are aged up to 76, though they could turn 77 just after April 6.", - "media_hash": "6e424f2937a371f5302e48004c150a23d14cfe2eb6324bbca425adf3", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "UK borrowing costs are already the highest in the G7, with 10-year gilt yields recently topping 5%.", - "media_hash": "677458742e9e5ccea38ed50944065b4e69eddb57944653561b64e01a", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Rachel Reeves is driving UK over a cliff \u2013 she hasn\u2019t got a penny to save us now", - "publication_date": "2026-03-31T10:36:00", - "publication": "express", - "url": "https://www.express.co.uk/finance/personalfinance/2188716/rachel-reeves-driving-uk-over-cliff-hasnt-got-penny-save-us-now", - "media_type": "news_article", - "sentence": { - "text": "Reeves once had around \u00a323.6billion of fiscal headroom.", - "media_hash": "19902ad813776d4e8f857c1515c4145fbcad888062a06de56af96a61", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Savings over \u00a310,000 are taken into account, but many people with modest savings still qualify.", - "media_hash": "a38e7c30210d1d568e51682ce0ffdcdc94dcb8790855c8a688149a19", - "sequence": 64, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "That comfortably breaches the \u00a3500 PSA for higher-rate taxpayers and comes close to the \u00a31,000 limit for basic-rate taxpayers.", - "media_hash": "972eaf5886f58f0e09201552bdf3177f2c81be4c478806fbfbb4a39f", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "\"This return in savings interest is shielded from tax due to the PSA for a basic-rate taxpayer, but only \u00a3500 is safe for higher-rate taxpayers.\"", - "media_hash": "ddf7d03546ac0d16f5d58972a727c775f51276f0d17065ce6501ae65", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "The broader trend highlights a shift in household finances, with the UK savings ratio rising to 10.2% in the second quarter of 2025, up from 6.8% in the same period in 2016, according to official figures.", - "media_hash": "526de9bfdaacb227d7853b44b81cba49c437bb13a8b292a9b97ff7da", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "We know that there are 25,101 prizes in total, ranging from \u00a35 to \u00a325,000 - but we don't know the number of customers that are eligible or how big their balances are.", - "media_hash": "32fe02eaa3f286f479cd3b31422eb5e9a92894f819f5484c59d91881", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chip", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "For every \u00a325 you invest in Premium Bonds, the likelihood of winning \u00a31million is 1 in 2,737,381,167.", - "media_hash": "9905e5c706d00f5b03affd69995d02aead1b2e20362cfb73eb323002", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Savings & Investments", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "This will lift payments by 4.8 percent this April, increasing the full new state pension from \u00a3230.25 a week to \u00a3241.30 a week, or \u00a312,548 a year.", - "media_hash": "08dc7cb1eeecd303b7c4df68995e29f0e73d86c2dfebde790790727d", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "The full basic state pension will go up from \u00a3176.45 a week to \u00a3184.85 a week, or 9,612 a year.", - "media_hash": "3f6c5995c4ea796a855c2125cbb71a2f152fc97fac655d01f7bd3ecd", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And, uh, Heathrow was wanting to put up prices as a result, the Civil Aviation Authority have come out this morning and said, in essence, you can't spend the 10 billion, we'll allow 5.8 billion, so quite a big reverse for Heathrow and we'd like per passenger charges to go up from the current 28 pounds 40 per passenger to just, well, actually they give a range, the midpoint of the range is 28 pounds 80, so pretty flat actually.", - "media_hash": "896eb2692dbabb0a4a5a6a4588de955a23601d82cee4ca5613ea5496", - "sequence": 701, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Uh, and Heathrow was asking for just over 33 pounds, so it's a big, a lot.", - "media_hash": "8300652d9aad0cc8fb12a44081fbd39a700ef15a2dcc964fb204a2f7", - "sequence": 702, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Revised figures suggest that the economy grew by just 0.1% in the last quarter of 2025, a period where there was no war in the Gulf, and the price of Brent crude was around $70 a barrel.", - "media_hash": "c17be3934133654b587d231ebb83e5c2537f1db587b103e40743e8d2", - "sequence": 1308, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", - "publication_date": "2026-03-31T01:59:00", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/state-pension-update-dwp-minister-36944529", - "media_type": "news_article", - "sentence": { - "text": "This will boost payments by 4.8 per cent this April, raising the full new state pension from \u00a3230.25 a week to \u00a3241.30 a week, or \u00a312,548 annually.", - "media_hash": "c090051e644a449ca5c21f28f5f24da772301d5bc9019aa6c9dca4cf", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or \u00a3117 a year, to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "3d68950982c026f689ec3634215de1d6628d81a36d3c0ae95be4068b", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "leo_s_topic": 2.5459449999999997, - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "In a member survey carried out by UKHospitality in February with other trade associations, 64% of hospitality businesses said they would slash jobs as a result of the cost increases, 51% said they would cancel investment plans, and 42% said they would reduce trading hours.", - "media_hash": "351bd2638bf5c430cfa795c32af14f85500a73b28f08239c3f6d1818", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "Today's rise in minimum wage rates will see pay for 18 to 20-year-olds jump by 8.5 per cent to \u00a310.85 an hour, while those aged 21 and over will get a 4.1 per cent hike to \u00a312.71.", - "media_hash": "141488352f1e664569b6117caad087f8779a46ea020d42b80b2c0ccd", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "Ryan, a consultancy, has calculated that the overall bill will rise by \u00a33.4billion.", - "media_hash": "d47accec295ace32ca78e1941ae99ca09b4fe97d2f4360dc381a74c9", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Seven councils were granted this special permission to raise bills by more than 4.99%, including North Somerset, Shropshire and Worcestershire, each approving rises of up to 8.99%.", - "media_hash": "64958e9eb8626493d61bb907d5b457f45d7334a0021722bc56303d6d", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "North Somerset", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Shropshire", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Worcestershire", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "Seven councils were granted this special permission to raise bills by more than 4.99% (Image: Getty)", - "media_hash": "982419cd4407879fd463f234e692b36a2df0ded8923a426471cbf729", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What business cost increases are being introduced in April?", - "publication_date": "2026-03-31T17:39:00", - "publication": "skynews", - "url": "https://news.sky.com/story/what-business-cost-increases-are-being-introduced-in-april-13526551", - "media_type": "news_article", - "sentence": { - "text": "Faced with a backlash from landlords and political opponents, Ms Reeves announced a 15% cut to rates for pubs and live music venues, plus a two-year rate freeze to mitigate the increases, until the next revaluation at least.", - "media_hash": "57c444486679b6cd7465188ca6d2779ea0d3683d1c2a4907cb7d3704", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Ms Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", - "media_hash": "8494762cf9de5b7f594c69a9698aebc635f1d3e09ccdb2a359ae4555", - "sequence": 50, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Switching can save broadband customers an average of \u00a3329, according to Uswitch.", - "media_hash": "530387204f36b9669f40dd2ea490e6eda9675d0607ce0ec637482fe6", - "sequence": 52, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Uswitch", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer calls emergency Cobra meeting today over crisis after saying Government 'can't do it on its own' - despite 'raking in \u00a320million a DAY in extra tax'", - "publication_date": "2026-03-31T07:30:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693107/Starmer-Reeves-Iran-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The RAC has also suggested the Government could earn an extra \u00a32bn from VAT on petrol sales.", - "media_hash": "30f3953eea29da37d47932ff3265b04d1136d624c32c14560e4612b8", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "general": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "In pounds and pence terms, prices would have risen \u00a31.71 previously on average, so customers are an extra \u00a32.29 a month out of pocket, Broadband Genie said.", - "media_hash": "cf60c5c4644dff1bc29ce4fcfc066e61b2ef549c1adf95fda1f93fe7", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "This reveals that 45 per cent of customers who took out a broadband contract after the introduction of fixed price rises didn't know their prices would rise annually, while 58 per cent were in the dark about how much their tariff would go up by in April.", - "media_hash": "f248d6693550ce43e8cf6c30973c8869f2424709d54ef11ff10c5f81", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "People urged to check payslips before tax year deadline or risk losing \u00a33,000", - "publication_date": "2026-03-31T09:49:33", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/money/workers-urged-check-payslips-errors-36947504", - "media_type": "news_article", - "sentence": { - "text": "For example, an employee with the tax code 1257L can earn \u00a312,570 before being taxed.", - "media_hash": "2528e07fbbc3ec237d8af34cfe14614a3c46bcf2b537efd8c3062b2b", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Category B (lower) Basic State Pension - spouse or civil Partner's insurance: \u00a3110.75 (from \u00a3105.70)", - "media_hash": "63e920ba494dccd24bac5d9bd5671cd52863d2eea27a7d2e00b2a397", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Almost 1.4m elderly people throughout Great Britain, including over 125,000 residing in Scotland, are presently receiving the means-tested benefit which could deliver an average of \u00a34,300 in assistance over the coming year.", - "media_hash": "009f86334ec27794cbc97b2c150fd026d3dcbb026048d6458578d4cf", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "Nevertheless, recent DWP statistics indicate that more than 700,000 qualifying pensioners remain without the benefit to which they're entitled.", - "media_hash": "b06837a5f2fbd6332698f9bf9613e8f8a31bf2a983349f06bdd213d1", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "The increase in interest rates that has happened for us means about \u00a312billion a year of additional interest payments.", - "media_hash": "14f99d12f50e7efa13b2951764047146013e1b342d69f2b374d27b71", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Howard Davies", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Five ways to save \u2018hundreds\u2019 of pounds before UK bills rise again on Wednesday", - "publication_date": "2026-03-31T07:47:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188567/save-hundreds-pounds-rising-bills-april", - "media_type": "news_article", - "sentence": { - "text": "In Scotland, some councils are pushing through rises of up to 10%.", - "media_hash": "61243f5f3ffafb80cea08e02be9222cb0c6f0c2049c64414e53cb2a4", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The ONS increased the out-turn for 2025 as a whole to 1.4%, up from previous growth of 1.3% recorded because of updated expenditure calculations, but more recent figures have shown the economy flatlined in January with zero output.", - "media_hash": "d2d8edbe6079a14f27fb48c67708967665484664d3bbbe494dda239e", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104453, - "score": 0.3345 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Meagre economic growth at end of 2025 confirmed amid...", - "publication_date": "2026-03-31T07:39:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15693743/Meagre-economic-growth-end-2025-confirmed-amid-fears-Iran-war-hit.html", - "media_type": "news_article", - "sentence": { - "text": "The figures showed the UK's dominant services sector flatlined in the fourth quarter with zero growth, while production expanded by 1.2% and construction fell by 2%.", - "media_hash": "532dc26dce250d60fab1b525e4f8478aca740848e74ffc121a0dec3d", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "According to analysis for The Times, the Government is set to get around \u00a33.5billion a year from the energy profits levy on North Sea oil and an extra \u00a32.4billion from gas sales.", - "media_hash": "c122ba792c8b157e572a9e9a010f3a376e3340d3d8d28e34dd01d22b", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK house prices rise and economic growth revised up but Iran clouds outlook \u2013 business live", - "publication_date": "2026-03-31T06:52:05", - "publication": "guardian", - "url": "https://www.theguardian.com/business/live/2026/mar/31/uk-house-prices-economic-growth-iran-outlook-business-news", - "media_type": "news_article", - "sentence": { - "text": "Inflation held steady at 3% in February, which was in line with expectations but still well above the government's 2% target.", - "media_hash": "4280d5e52b97396ee2a1dfa5c44d57a4065d6ca68308c743356ca5cc", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Jonathan Raymond", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "The UK economy grew 1.4 per cent in 2025, official data has shown as data analysts nudged up the estimate for the year.", - "media_hash": "0ab46bb1b1a0c8f18c6761bcf82428dce5ff448184f3ee4741c64f1c", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 45073, - "score": 0.08634989569837898 - }, - { - "tracked_claim_id": 104453, - "score": 0.29000000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "UK gas prices have risen by more than 70 per cent since the start of the war while the Brent Crude Oil benchmark surpassed $115 per barrel.", - "media_hash": "e8ccaced509012ea98ef120780ffd8369d727dc4f4872ff13e75e7b3", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "The Treasury-backed bank is cutting the rate from 3.6 per cent to 3.3 per cent, and also lengthening the odds for each \u00a31 bond winning a prize to 23,000 to 1 from the current 22,000 to 1.", - "media_hash": "72c70634bf8974a68e9eaf435bf03f80980efb8599d3b8c9eeedf8e1", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Savings & Investments", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 4.5769 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "But in this quarter's 'big prize draw' there are 100 prizes of \u00a31,000, 5,000 prizes of \u00a310 and 20,000 prizes of \u00a35 - as well as the grand prize of \u00a3250,000.", - "media_hash": "cbab477b6e512f96cfd6d639b55e099079dc3d247a0d23b793448ec0", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chip", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "April to bring price hikes as Keir Starmer touts...", - "publication_date": "2026-03-31T21:34:18", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15696255/April-bring-price-hikes-Keir-Starmer-touts-measures-ease-cost-living.html", - "media_type": "news_article", - "sentence": { - "text": "And it estimated that the average hike to business rates for a hotel in England totals \u00a3205,200, and \u00a314,300 for a restaurant.", - "media_hash": "ca6da78c4b9b35f23e3b9d28011e3a987ba64d38015005d3508b13f6", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UKHospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "The average English hotel's bill will rise by 30 per cent, or \u00a328,900, to \u00a3125,300 this April, and a typical restaurant faces an increase of \u00a31,800 on the current average of \u00a312,200, analysis by UK Hospitality showed.", - "media_hash": "ae9f2faf718df036b7810a8288cc0e8aa32e99b6fa2ef66bae86b786", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Hospitality", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "More than 60 people have been convicted in the case so far and a total of 79 have now pleaded guilty or been convicted", - "media_hash": "d9c80f6b9f7ed9b761065b4c8cc3a854893fd31b8596b092ec7e4ea7", - "sequence": 47, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", - "publication_date": "2026-03-31T16:22:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", - "media_type": "news_article", - "sentence": { - "text": "This comes following Rachel Reeves' Budget measures, which will see gambling duty shoot up from 21% to 40% from April 1.", - "media_hash": "8429bb527dd27c056e88e48a085dd245ee93614c0aa413e96ca484f7", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "We support currently over 800,000 businesses, we've built a waitlist at 50,000 businesses for making tax digital and I would have never thought that 50,000 people would be saying, I'm so excited for these changes and excited for these tax things.", - "media_hash": "2e51477226ea4e30d26fd49aea9bbe64b8316454db653387d29f4e0b", - "sequence": 128, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Monzo Business", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "DWP tax changes to Motability will cost users \u00a3400 each", - "publication_date": "2026-03-31T14:21:45", - "publication": "thecanary", - "url": "https://www.thecanary.co/uk/analysis/2026/03/31/dwp-tax/", - "media_type": "news_article", - "sentence": { - "text": "The Motability company, which administers the scheme, estimates that the scheme will cost the average customer around \u00a3400.", - "media_hash": "e4c03017fb7024c13c3d6f41f4a40c0415b3294da3e0c5495406af0d", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Motability", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "Apparently we had at least a month worth of fuel in the country, so for those 30 days, that fuel should have stayed the same price, but it hasn't.", - "media_hash": "2e36f611b0bfe6ed6784e94b56b7ed7795777c0cd487bf6105dbcecc", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Peta", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a372; Potential savings: \u00a3633", - "media_hash": "1f445bafa75b67d626111e5011a03da19e5c7d054504b52ebb3e0cbe", - "sequence": 59, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "media_hash": "1baeb46c51b06807f140f4645f76d0da0af5fcd8d27e5f96d7c350f3", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "An entitlement of merely \u00a31 weekly is sufficient to access additional help.", - "media_hash": "b7eeebfd9c97c53038e5c266ab8dfca4569e986fc18663234dae21b7", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP monthly payment boost State Pensioners born before one year may be missing out on", - "publication_date": "2026-03-31T09:42:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188651/dwp-monthly-payment-boost-state-pensioners", - "media_type": "news_article", - "sentence": { - "text": "The benefit boosts income to a minimum of \u00a3227.10 per week for single pensioners and \u00a3346.60 for couples - more if an individual has a disability or caring responsibilities.", - "media_hash": "a1b94954560413e3ccf34dfd6dbebf0fa07f02b2bebd1902b366aa80", - "sequence": 61, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Department for Work and Pensions", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain\u2019s most AI-exposed sectors foot biggest tax bill", - "publication_date": "2026-03-31T09:40:07", - "publication": "cityam", - "url": "https://www.cityam.com/britains-most-ai-exposed-sectors-foot-biggest-tax-bill/", - "media_type": "news_article", - "sentence": { - "text": "Financial and related professional services generated \u00a3110.2bn in tax in 2024, equivalent to 12.3 per cent of total receipts, making it one of the largest single contributors to the Exchequer.", - "media_hash": "256e102f6ed83a476e1fab5989c9f8d6b9cc431723033e138cb06f1d", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Which is about a third of the total raised by fuel duty last year according to the OBR.", - "media_hash": "8ec519c451aaa73a758ed31b936f7f77d4f0145c2c07fc658b79e0c7", - "sequence": 859, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "But even if there were 20 billion a day, which I don't doubt from, um, extra oil prices.", - "media_hash": "58cffa621bd1c63f89ba5871e6737d88edc4aa56dc7a6b9d52eaa45d", - "sequence": 874, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "While the final quarter saw a 1.2 per cent recovery in the key metric, the ONS revised the drop in the third quarter up from 0.8 per cent to 1.2 per cent.", - "media_hash": "1702ad59d21cde62545fdc74f7a11ac9448f16032ca8095ae8d683ad", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "RHDI per head - a measure of what is left after taxes and benefits and the effects of inflation - was \u00a36,353 at the end of 2025, compared to \u00a36,413 at the end of 2024.", - "media_hash": "8ae6fdd5ede9eb6c9b8326503aea7c62a66a382a6c1aa37ce9ff7de2", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104428, - "score": 0.21760000000000002 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Getting poorer under Labour? Household incomes fell across 2025 amid high-tax misery - with fears Iran carnage will make things worse", - "publication_date": "2026-03-31T08:54:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15693975/Getting-poorer-Labour-Household-incomes-fell-2025-amid-high-tax-misery-fears-Iran-carnage-make-things-worse.html", - "media_type": "news_article", - "sentence": { - "text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1% to 1.5 per cent growth that had previously been widely expected.", - "media_hash": "f936b0203e23a3d0d984cf31e3591dd71b12c9edfe25d24512754708", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Martin Beck", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "Analysis from Moneyfactscompare.co.uk shows someone who locked \u00a320,000 into a top one-year bond paying 4.58% would earn \u00a3916 in interest over a year.", - "media_hash": "bf7dd301d5d779e4fc680c63cc2917204bebf54d152364686909c6f8", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", - "publication_date": "2026-03-31T08:38:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/money/markets/article-15692365/IMF-warns-UK-faces-gas-shock-just-like-2022-gilts-suffer-worst-month-Liz-Trusss-disastrous-mini-Budget.html", - "media_type": "news_article", - "sentence": { - "text": "The increase in bond yields poses a major headache for Chancellor Rachel Reeves, knocking billions off her \u00a323.6billion 'headroom' against meeting tax-and-spend rules.", - "media_hash": "839f9243c12d32db2b72df2c5c2fdf807f5474ff8b2ad4c662718390", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chancellor Rachel Reeves", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "A \u00a315 and \u00a310 rise mirrors the increase paid by drivers this time last year, where fees jumped from \u00a3345 to \u00a3360 and \u00a3210 to \u00a3220.", - "media_hash": "62705e5328180824013bf2eb8a85cfe288a7036c4efd6271e559b7a2", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reeves in line for \u00a38BILLION tax windfall from soaring energy prices\u2026 but she STILL won't cut fuel duty for desperate drivers as Starmer hold another Cobra meeting", - "publication_date": "2026-03-31T07:34:00", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693705/Reeves-tax-windfall-energy-prices-fuel-duty-drivers-Starmer-Cobra-Trump.html", - "media_type": "news_article", - "sentence": { - "text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an \u00a38billion windfall from soaring energy prices.", - "media_hash": "c400ac5e17c5872ae29de1234778ae6b029bd3113560f67441a4bcdf", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", - "publication_date": "2026-03-31T06:30:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", - "media_type": "news_article", - "sentence": { - "text": "The UK economy grew by an unrevised 0.1% in the final quarter of 2025, official figures have confirmed.", - "media_hash": "723c6b8eef00fdc5f4d0fe081656c260704120f1b4b67326eae02c8d", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 45073, - "score": 0.12431003934759463 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Politics LIVE: Nigel Farage to make huge Reform announcement after Starmer attack", - "publication_date": "2026-03-31T06:30:00", - "publication": "express-politics", - "url": "https://www.express.co.uk/news/politics/2188300/politics-live-nigel-farage-reform-uk", - "media_type": "news_article", - "sentence": { - "text": "But it increased the out-turn for the year as a whole to 1.4%, up from previous growth of 1.3% recorded for 2025.", - "media_hash": "06a53eefe9a4126ffb36e8ee7e9d9d9d855436d97451ba4d5f33d4d5", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Office for National Statistics", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "'Whereas in a savings account paying 4 per cent you'd get the equivalent of \u00a316.66 per month or \u00a3200 per year.", - "media_hash": "bb586450ea817b7817e34eea8191dc47ac055f439a97d84eb517eeea", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Andrew Hagger", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "Two lucky savers a month can win \u00a31million, while 78 can win \u00a3100,000.", - "media_hash": "38c47a1679348b8fc054d627062d68fbddc162be79d2ecb0943cfdf2", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Savings & Investments", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 2.72853 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "DWP issues update over future of the triple lock", - "publication_date": "2026-03-31T05:55:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188374/dwp-triple-lock-state-pension", - "media_type": "news_article", - "sentence": { - "text": "Pensioners then enjoyed an 8.5 percent increase the next year, in line with the increase in earnings.", - "media_hash": "e659522c9a5693d9c860df9e8eecd8c935f7dfe4aa38072af9900275", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Somali fraudster handed laughably light sentence by Minneapolis judge over $3m taxpayer fraud", - "publication_date": "2026-03-31T17:02:03", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694469/Somali-fraudster-sentence-Minneapolis-judge.html", - "media_type": "news_article", - "sentence": { - "text": "To date, more than 60 people have been convicted in the case - most from Minnesota's Somali community - and a total of 79 have now pleaded guilty or been convicted.", - "media_hash": "0c71f1078e0840513d5c8ee7bdc174ac2316a905ff8e2fd170ad0644", - "sequence": 56, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 2.970815 - }, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill 'to close 200 shops' amid Reeves' tax hikes in major blow to high street", - "publication_date": "2026-03-31T16:22:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/uk/2188938/william-hill-store-closures-tax-hike", - "media_type": "news_article", - "sentence": { - "text": "The company said last year that changes to online gaming duties and a new online sports betting tax would see its duty costs rise by up to \u00a3135 million a year from 2027.", - "media_hash": "36e9714b4f44ba122ff1d4671d33efa384fe583b86cf95e879099a39", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Evoke", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "The popular bookmakers has around 1,300 shops in the UK, meaning approximately 15% of its stores are set to shutter for good in a hammer blow to Britain's high street.", - "media_hash": "47d6c87ae2ad31793c88e7dc319b9452b9ef3960c1684e1d4b79bb4b", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "William Hill closing 200 shops due to tax hikes in hammer blow to high street", - "publication_date": "2026-03-31T14:31:13", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/william-hill-closing-200-shops-36949565", - "media_type": "news_article", - "sentence": { - "text": "There were fears among racing chiefs the rate would rise to 21% but after the successful campaign, the rate remained at 15%.", - "media_hash": "fff7ee9bd4575628884688d0c5101024eb79092807e5ba97f879eae9", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Big change on way for landlords and self-employed earning over \u00a350,000", - "publication_date": "2026-03-31T14:25:51", - "publication": "scotsman", - "url": "https://www.scotsman.com/scotsman-money/big-change-on-way-for-landlords-and-self-employed-earning-over-ps50000-6530530", - "media_type": "news_article", - "sentence": { - "text": "Findings of Scottish research by Dext, based on consulting 29 accountants and bookkeepers in Scotland, found that 82 per cent reported a general surge in clients using \"public AI\", such as ChatGPT, for tax \"advice\".", - "media_hash": "7c4426579927f4fc86321c81abfacaf9d6afe20c3ae4c56825aedf2f", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "social_media_misinformation_": 2.970815 - } - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "You got to the supermarket and you come out with two bags and it's cost you $140.", - "media_hash": "d4e0907875f8d6e1fee2c6c71641830ad3b8da874f9da58e835bee32", - "sequence": 40, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Peta", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "economy": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "Fuel excise will be cut from 44.2 cents per litre to 22.1 cents for a period of three months", - "media_hash": "9d934c3f178cdcc8980349fba12e730bf5311a117235d4c47ea86733", - "sequence": 54, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "It comes after Compare Club's Financial Stress Index published in March this year, revealed that more than a third of Aussies (38 per cent) said they were financially worse off than the year before.", - "media_hash": "9c02b8687ecf708ccf5355370ff2e81de4b76fc62d1c80d080ce6a0d", - "sequence": 59, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Compare Club's head of research, Kate Browne", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.970815 - }, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", - "media_hash": "ac834a8a8298695d5766e33ffbcf22a62365149712aeb90db079a446", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Institute of Directors", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "IoD", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "It is rising by an average of 4.9% for households in England.", - "media_hash": "7761faa13e86996240993129394f98a4b1667abf8851c58c722ccb4c", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "policy": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "From water to council tax: How the bill rises (and one drop) affect you", - "publication_date": "2026-03-31T23:00:54", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/clyeke8z871o", - "media_type": "news_article", - "sentence": { - "text": "Many councils are allowed to increase bills by up to 5%, but seven have been given government permission to implement bigger hikes to help address a \"challenging financial position\".", - "media_hash": "f57cdcee414ad5937b86dba4bca5717c9903c27a9ca725399ebe456e", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Kevin Peachey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Full list of highest council tax bill rises in England from April 1", - "publication_date": "2026-03-31T20:10:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188968/highest-council-tax-bill-rises-england-wales", - "media_type": "news_article", - "sentence": { - "text": "In Hartlepool, bills will rise by just 1.98%, one of the lowest increases in the country.", - "media_hash": "eadbf8a8b136a70e1322d5a1013e86593c60a88982a3e9532300c7a6", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Hartlepool", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Typical price hike: \u00a3114; Potential savings: \u00a3570", - "media_hash": "0388e263333f3cdd692486b4cbd1309a272e7e0c83e27f2064648dc5", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Industry body Water UK says bills are expected to increase by \u00a333 a year - 5.4 per cent - on average to \u00a3639 a year from \u00a3606.", - "media_hash": "5be4d9910e3348411d5a64826cc408fe4180f67c05c821906c032619", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Water UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of \u00a348 a year - an inflation-busting rise of 11 per cent.", - "media_hash": "b66b7359f7f918f5e8270da0a31ed248c25e77f53d966ff7816f9bc2", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by \u00a3332 in the summer to \u00a31,963 a year.", - "media_hash": "67a06c0bb22c38300905663da8c53062e1c6f70cfe9644a1157793bc", - "sequence": 70, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Cornwall Insight", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "Car.co.uk's analysis demonstrates that scrap valuations for the VW Golf have jumped by 323% since the closing quarter of 2025, while the Land Rover Freelander trails closely with a 233% hike.", - "media_hash": "9368d1ac02912f3d5f936e4f0cc48f32e776e6fe8e61117d7c505876", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Car.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "A petition on the parliament website has now garnered nearly 50,000 signatures, demanding that the government slash Vehicle Excise Duty by 50% for vehicles aged 20 to 39 years.", - "media_hash": "4c4015e89620aa3d261fbe71e255e2f4870ea18752fe3f0639979fcf", - "sequence": 66, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Ford, VW and Vauxhall hit by \u00a3790 car tax trap 'being scrapped' new figures show ahead of April 2026", - "publication_date": "2026-03-31T12:05:42", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/lifestyle/motoring/ford-vw-vauxhall-hit-790-36949032", - "media_type": "news_article", - "sentence": { - "text": "As the petition surpassed 10,000 signatories, the Treasury has issued a response.", - "media_hash": "eb8045d1f7d139c15388e4c26097b0856950801bb9b4576ee6e59fae", - "sequence": 68, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "Internet providers are set to pocket an extra \u00a315.5million from their customers each month from April thanks to a change in billing rules, research claims.", - "media_hash": "507379024a896c327f0f330c21c241dabd7b8265ea8c2483980fb693", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Internet providers to make extra \u00a315.5million a MONTH... under new rules designed to make bills fairer", - "publication_date": "2026-03-31T11:57:48", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15692221/broadband-providers-collect-extra-following-inflation-pricing-ban.html", - "media_type": "news_article", - "sentence": { - "text": "According to broadband comparison platform Broadband Genie, they will make an additional \u00a3186million a year compared to what they would've collected under the old system of inflation-linked price hikes.", - "media_hash": "c031d6f2db0bde1552fc7ff2936222d67a9ad8fd280b41d7f4aea003", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Broadband Genie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "Those with incomplete records will see lower total take-home for their pension payments, depending on how far off the full record they are, which the DWP calculates on a case-by-case basis when you first hit state pension age.", - "media_hash": "bb9168f52b611b2c443ade95e32773ce37fc2f8c4b661947fd7d312e", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The DWP", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "State pensioners under 76 given \u00a347 extra cash every month from April", - "publication_date": "2026-03-31T11:40:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188694/state-pensioners-76-given-47", - "media_type": "news_article", - "sentence": { - "text": "For example, an older state pensioner who only qualifies for the basic state pension will get \u00a3184.90 per week.", - "media_hash": "258b3bc04b3a5b7af04456d6b0a88a10e06cb453e9e6fdb7d4c77b01", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Older state pensioners", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "Ms Springall said: \"Savers who locked \u00a320,000 into the top one-year fixed bond of 4.58% back in March 2025 would receive annual interest of around \u00a3916.", - "media_hash": "9a2894a73256583c0c94b0aa8a8ee8c6edf7a2916f4374610d15cf1d", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Moneyfactscompare.co.uk", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Owners of older vehicles built between these years to face 2026 car tax hike", - "publication_date": "2026-03-31T08:19:00", - "publication": "express-lifestyle", - "url": "https://www.express.co.uk/life-style/cars/2188596/older-vehicles-car-tax-hike-vehicle-excise-duty", - "media_type": "news_article", - "sentence": { - "text": "Less powerful cars are charged a lot less but are still facing higher prices as of April 1.", - "media_hash": "ebff9484a138af2cdc11ee4689cd1381e468c0c0ae327ea7be889ba6", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T06:32:07+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/AllisonPearson/status/2038866913430851723", - "media_type": "social_post", - "sentence": { - "text": "Just look at the number of people with ILR status who are claiming Universal Credit, in April 2022, it was 95,612, in January 2026, it's 222,076, that's a 132% increase.", - "media_hash": "24734615f1216feac69ce47fee0e4223a518b3b26438aa0b276e04cb", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "charliecolecc", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - } - } - } -}, -{ - "title": "UK economy grew 1.4 per cent in 2025", - "publication_date": "2026-03-31T06:23:12", - "publication": "cityam", - "url": "https://www.cityam.com/uk-economy-grew-1-4-per-cent-in-2025/", - "media_type": "news_article", - "sentence": { - "text": "The UK economy grew by 0.2 per cent and 0.1 per cent in the subsequent quarters.", - "media_hash": "69a8ab28ca64efcd4e69c0669e742838aab36ff9191205f7cf86ab5a", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "This little-known Premium Bonds alternative offers a \u00a3250,000 prize - but what are the odds of winning?", - "publication_date": "2026-03-31T06:00:49", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/article-15691455/This-little-known-Premium-Bonds-alternative-offers-250-000-prize-odds-winning.html", - "media_type": "news_article", - "sentence": { - "text": "Usually, Chip's monthly draw offers at least one grand prize of \u00a310,000 and 250 additional prizes of \u00a310.", - "media_hash": "fa2ac76eacb1a897e0d22c2288010b0aa0c0c448f52be123c9232960", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chip", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104482, - "score": 0.36460000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why Albo's fuel tax cut won't ease a thing when it kicks in today - as Aussies unload on the REAL bill bomb detonating that threatens to wreck lives across the nation", - "publication_date": "2026-03-31T13:10:28", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15692927/Why-Albos-fuel-tax-cut-wont-ease-thing-kicks-today-Aussies-unload-REAL-bill-bomb-detonating-threatens-wreck-lives-nation.html", - "media_type": "news_article", - "sentence": { - "text": "About 43 per cent of the 1000 Australians surveyed said they relied on credit at least occasionally to cover everyday household bills.", - "media_hash": "d93799115bce8d82ac35617c5e58a0f1ae0516ec1b07efc14a6dc67b", - "sequence": 60, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Compare Club's head of research, Kate Browne", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "economy": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK business confidence plunges to another record low", - "publication_date": "2026-03-31T23:03:00", - "publication": "cityam", - "url": "https://www.cityam.com/uk-business-confidence-plunges-to-another-record-low/", - "media_type": "news_article", - "sentence": { - "text": "Cost expectations rose to the second highest level on record after last September at the height of pre-Budget tax speculation while revenue expectations for the year dipped.", - "media_hash": "031e84d00b808f77903d41327c703bc0e61bb276b29d6580eb49da73", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", - "publication_date": "2026-03-31T21:41:25", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/news/latest-news/heres-william-hill-closing-200-36951883", - "media_type": "news_article", - "sentence": { - "text": "Online gambling duty is set to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", - "media_hash": "10e30dfd1110c194fd5ea5d0c29f46f38dc64c3da50c885fd595fa11", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war sends business confidence to all-time low as firms face billions in Labour's cost hikes", - "publication_date": "2026-03-31T21:06:23", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/markets/article-15695659/Iran-war-sends-business-confidence-time-low-firms-face-billions-Labours-cost-hikes.html", - "media_type": "news_article", - "sentence": { - "text": "The survey, by UK Hospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster, also found 42 per cent will reduce trading hours while 15 per cent of venues will be forced to close.", - "media_hash": "07599691f0cdc0e0e1126d44e010caf894e64d6bcec2be4b2b3246b7", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Hospitality", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Beer and Pub Association", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "British Institute of Innkeeping", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hospitality Ulster", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Beat Billmageddon: From council tax to broadband, costs are set to soar - here's how to save up to \u00a31,641", - "publication_date": "2026-03-31T08:55:25", - "publication": "dailymail-money", - "url": "https://www.dailymail.co.uk/money/bills/article-15684561/save-iran-war-financial-meltdown-act-money-expert-helen-kirrane.html", - "media_type": "news_article", - "sentence": { - "text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", - "media_hash": "a14fcc0733b6613c9cb4462404658b65240184fa1c3d2e50c9824ef3", - "sequence": 75, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "energy": 2.5459449999999997, - "economy": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Higher energy prices, um, are not good for households, or good for businesses.", - "media_hash": "5a92d6306b21ea36d0a8512c2de26cca9566111c575a390e4171cb70", - "sequence": 864, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.5324400000000002 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And but we do have an increase in youth unemployment.", - "media_hash": "3f5d95733ec06dadfcd2730dc7245c33076efd13d7d120c2942317ad", - "sequence": 902, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.500545 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "And, um, the other thing is that historically, the cost of motoring is really quite low.", - "media_hash": "037fe433bfab84adea7b10a706ccda3270eaf72d57945082666cc7b1", - "sequence": 888, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "economy": 2.500545 - } - } - } -}, -{ - "title": "Millions face savings tax bill as they are dragged into HMRC net", - "publication_date": "2026-03-31T08:50:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188613/millions-face-savings-tax-bill-hmrc", - "media_type": "news_article", - "sentence": { - "text": "Research by Yorkshire Building Society found 36% of people have never heard of the PSA.", - "media_hash": "5592e08ecd9716df4b638331f44dda1d63766440d646a502be983de8", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Yorkshire Building Society", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.500545 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "At least 1,411 people have been killed by illegal migrants, nearly all of whom have been killed during the last 25 years, according to a list assembled by a grassroots group that opposes mass migration.", - "media_hash": "00efa42fd6511b2b67c4821af864ea70d6142bdd3d76a5f092428255", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "grassroots group that opposes mass migration", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Americans for Legal Immigration PAC", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.40490000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.648555 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 5.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "He has memorialized 1,280 deaths since 2018, all of which are based on reports from government agencies or reliable media outlets that declare the murderers to be illegal migrants.", - "media_hash": "6fcfdd7c254449f5dc847b37489c492b36f60066a03c80c07871d9cb", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Orrin on X", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.34419999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.648555 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 5.648555 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "That analysis likely understates crime by migrants, but Cato admitted on March 30 that illegal migrants from Latino and African countries are more criminal than citizens with roots in Europe or Asia.", - "media_hash": "a2c048b6dc3a5fd2dc6b9626991e64e1c2257c758f93612fa48d949b", - "sequence": 70, - "claim_type": [ - "quantity", - "correlation", - "support" - ], - "claimer": [ - { - "name": "Cato Institute", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.4183 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.309265 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 5.309265 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T18:35:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/PJFerguson18/status/2039048981565657226", - "media_type": "social_post", - "sentence": { - "text": "RT @ukhomeoffice: Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", - "media_hash": "b371c4b0a80fad2ed16b21cd3f54abecc6312c22e1961a8945bc5e0f", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.09725 - } - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "The UK government claims the deal has prevented 42,000 illegal migrants getting on boats, although the overall number making the journey across the Channel has continued to increase.", - "media_hash": "513f220309e9276fa036e7eccf18903318ad5fe45dd7c461fb559c6d", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.09725 - }, - "demo": {}, - "dev": { - "blah": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "The program uses tax dollars to help illegal migrants game the system to attain legal status despite having broken our laws to get here in the first place.", - "media_hash": "c89490440897044fcdab570c559300495b4a5677bd61b8f4b938a389", - "sequence": 10, - "claim_type": [ - "rules" - ], - "claims_matched": [ - { - "tracked_claim_id": 44970, - "score": 0.38539999999999996 - }, - { - "tracked_claim_id": 104465, - "score": 0.3207 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 5.023415 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 5.023415 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "'Keir Starmer has now presided over the most Channel crossings of any Prime Minister - up 45 per cent since the election.", - "media_hash": "d862f23aa18ac4642fd0c21282f77fa75029baa1b8a6e3cd04ddbfb2", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chris Philp", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.981275, - "starmer": 4.981275 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 2.556405 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.556405 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "This office has had far-reaching consequences for decades aiding tens of thousands of illegal migrants to attain legal status each year.", - "media_hash": "34eef07fdc9e30abb9a0d0710a627e6acb4076ec8b9b99acbd8618a9", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 4.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "\"We have prevented over 40,000 crossing attempts by illegal migrants since this government took office. Our landmark deal means illegal migrants who arrive on small boats are being sent back to France.\"", - "media_hash": "4e861950c9e7e2b42f92bbcf4c6e23b6b570581c79fc18f8b8df6835", - "sequence": 22, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Home Office spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.4023 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.910905 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "it had been due to expire tonight ministers claim 42,000 illegal migrants have been stopped from crossing the channel in the 21st month since Labour's election", - "media_hash": "f1b45d61c79e4409c554ec353f56bf2034ab1e686c0ed42308649b4e", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.89907 - } - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "She was allegedly led down a ramp onto the beach at Brighton and raped by Alshafe and two other asylum seekers - Iranian Abdulla Ahmadi, 26, and Karin Al-Danasurt, 20, from Egypt.", - "media_hash": "be4118dfcb5ea958ca9ac0d6d2fdfc3099e9cca874d8e916bfae958d", - "sequence": 5, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.652965 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.652965 - }, - "pa-media": {}, - "maldita": { - "asylum": 4.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "And there's forcibly removing women and children asylum seekers who arrive illegally.", - "media_hash": "66cabcbf17c50a692048e50649c5217bf455969aab1af79be6e97982", - "sequence": 140, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "Nearly 700 officers from units dedicated to intercepting small boats will continue to patrol the French coastline.", - "media_hash": "60739d2a9c1fda7da531540b33242f824dc169b8dd90236fc0e2ec09", - "sequence": 26, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T05:09:17+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/afneil/status/2038846067387547872", - "media_type": "social_post", - "sentence": { - "text": "Illegal migrants used to come in large numbers as stowaways on trucks etc.", - "media_hash": "c1d5792c3fa5436fb02a32e4c2aa59fdc4babb296858632c4a76efa7", - "sequence": 1, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Illegal migrants", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.638815 - } - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "The Dublin Convention did nothing to make it easier to return asylum seekers.", - "media_hash": "29e00aea7b969c69974f02fcf6e30122ef51acd26213f34c99d74b45", - "sequence": 12, - "checkworthiness": { - "fullfact": { - "asylum": 4.612785 - } - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "is published on Tuesday and who is also a member of the government's independent Migration Advisory Committee, said: \"Governments of all stripes like to make bold claims, from 'stop the boats' and 'smash the gangs' to 'net migration falling below 100,000'.", - "media_hash": "2a9a538decf8540327dee0a95611bc66a49ed7c943a1aac8cc31f4b5", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Madeleine Sumption", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "A huge share of the deaths are Latinos, including some who are illegal migrants, he added.", - "media_hash": "d56bb2a8753f5f70c3d595f887b453093fca4b27c270a91ce82149df", - "sequence": 13, - "claim_type": [ - "quantity", - "support" - ], - "claimer": [ - { - "name": "Orrin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.55978 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 4.55978 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "We made 5,500 requests for asylum seekers to be returned.", - "media_hash": "692c4224dfad3937997bfeb03455efecb316e7f2a72a86625ff59022", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - } - } - } -}, -{ - "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T16:37:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "Last year, the French stopped around 35% of people smuggler small boats - carrying around 22,500 migrants - from getting across the English Channel.", - "media_hash": "37845f7e0d17fc3721b0d56a1735761c40955106d9456301ae4fdc66", - "sequence": 41, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.5459449999999997 - }, - "pa-media": {}, - "maldita": { - "asylum": 3.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "It was the lowest rate of interceptions since the small boats began arriving in 2018, down from a peak of 46.9% in 2023.", - "media_hash": "0131cdad0ddb6c190c2a12e2b4cb4879340f01ee6747447292eb37d6", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.01739999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "In the same year, under the same convention we accepted 1,215 asylum seekers.", - "media_hash": "4a6f269e1e9d435ed1067ff0c9599dcdffd5b3fabaaae7cf979f1ea1", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - } - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "But reports show that in the first 12 weeks of 2026 the number of small boat crossings being stopped by France has dropped to 33.1%, the lowest rate since 2018 when the crisis began.", - "media_hash": "64cdc4a2f02c517a0153d40fd45cb293cc2a28a45cfe90e6222a6f9c", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "As of 25 February, 2,209 people had arrived in the UK in small boats in 2026 - up by about 7% compared with the same period in 2025.", - "media_hash": "59f0ad02447045201771e308412d3c4122f30e04dc5494db6e8c8bd1", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "PM", - "publication_date": "2026-03-31T16:00:00+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404361", - "media_type": "transcript", - "sentence": { - "text": "Talks with France on a deal to tackle small boat crossings have been extended by two months, with the UK set to pay more than 16 million pounds for French beach patrols during that period.", - "media_hash": "094816da3bc8af4ef3ec1de7e62923c85ea6964b75c13c813dd944cf", - "sequence": 405, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.545945 - } - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "The French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", - "media_hash": "6db55bb799dcd8bce3bc572d370eeac5fdafb25eef69d8613c0f8c64", - "sequence": 16, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "French authorities", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.529545 - }, - "demo": {}, - "dev": { - "blah": 2.5295449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "A man used Facebook to advertise 'dangerous' small boats crossings, urging migrants to 'hurry and get a seat'.", - "media_hash": "2c212af17fc28bda68f76d57e514797b30ceaa3d136a0aa0886c8c2d", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.52653 - } - } - } -}, -{ - "title": "Majority of Syrian migrants should return home \u2013 Merz", - "publication_date": "2026-03-31T00:58:26", - "publication": "rtuk", - "url": "https://www.rt.com/news/636781-merz-expects-syrian-migrants-return-home/", - "media_type": "news_article", - "sentence": { - "text": "The influx of asylum seekers from civil war-torn Syria to the European Union peaked in 2014-2015, with Germany being one of the top destinations thanks to the welcoming policies of former Chancellor Angela Merkel.", - "media_hash": "7f53e1081fbff08f7089d4c2068de041916baf4443f03fc4719f22f8", - "sequence": 4, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "Cameron, who was prime minister between 2010 and 2016, promised to reduce annual net migration from \"hundreds of thousands\" to \"tens of thousands\".", - "media_hash": "ea8f1c0250d7b4f4016daea59e80ca7d728e226ead52d98578288cd3", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "David Cameron", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.486035 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "There have been just three interceptions at sea since Mr Macron announced last July that France would modify its maritime policy to allow officers to board small boats.", - "media_hash": "470952cbc201ee5224dc87eac1a8f0628553c91f82f3fad36512a450", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Mr Macron", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.059799999999999964 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "So far this year, some 4,441 people have arrived in the UK on small boats.", - "media_hash": "87068d99bcb1555ab7e959d521995630c95bdf4704d2bf78d02340d5", - "sequence": 30, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "But the French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", - "media_hash": "5e690138d9537e5e412011b71164408aef4a39acf5075fa6a25cec12", - "sequence": 13, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.331365 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "Xavier Ducept, France's junior minister for the sea, has criticised the UK for making demands that risk the lives of asylum seekers.", - "media_hash": "04ae617e88846377b0b6b664a49eecc5015426f5a9e1f8e9e5948292", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.313675 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "If the UK accepts illegal migrants or legalizes them or gives them work permits, of course this is going to encourage other people to come.", - "media_hash": "b39a1ce95a1f96e9e25acea0617a08d1bcb66e58f2fced724df5da5b", - "sequence": 608, - "claim_type": [ - "correlation", - "rules", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.30329 - } - } - } -}, -{ - "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "publication_date": "2026-03-31T12:47:34", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "National Crime Agency Branch Commander Saju Sasikumar said: 'These defendants used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", - "media_hash": "d93e5bf868843e029705ef25be3ca62927be0ab93f86dea0e1cf64dc", - "sequence": 32, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "National Crime Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.29984 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.29984 - }, - "pa-media": {}, - "maldita": { - "asylum": 4.29984 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "The jury of seven women and five men was told the three asylum seekers had been partying at Horizon on the seafront during the evening in question.", - "media_hash": "9e17608eeae27fe9644cf6ddfc4973c7299b097706e33d1889a47b1e", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.287855 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.862985 - }, - "pa-media": {}, - "maldita": { - "asylum": 3.862985 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", - "media_hash": "13376fad5147cdf89f99da8b9cb0a3ac663cca80ad44b51c06f02b5f", - "sequence": 121, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.224345, - "economy": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "The UK is to pay France \u00a316.2m to patrol beaches for the next two months, as the two sides continue to hammer out a new deal to intercept small boats attempting to cross the English Channel.", - "media_hash": "3766dacd4af86b78c3653a7fe8a4b7efd52bcf0067305de16ed8de25", - "sequence": 9, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.224345 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "It said 700 officers from units dedicated to intercepting small boats will patrol the French coastline round-the-clock.", - "media_hash": "ee77905e00c26079ab0998846bfcb31f11169bcd16a76e4fd1b1f981", - "sequence": 6, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.224345 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "Paris is concerned that UK demands could put the lives of asylum seekers and French officers at greater risk.", - "media_hash": "b2947cef86d3e5e5c6f25d77b7f24078373374185b33a08dda04d70a", - "sequence": 6, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Xavier Ducept", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "France", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.20493 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "NCA Branch Commander Saju Sasikumar said: \"This group used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", - "media_hash": "6660ee96d315447dd358c6183a14e11b5b1ef8a718bb99fadd54954a", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Saju Sasikumar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.173405 - } - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "But he argues the same welcoming nature that propelled his family to success is now being taken for granted by asylum seekers living on welfare in tax-payer funded accommodation, while the very fabric of Britain is torn apart by high levels of legal migration.", - "media_hash": "efbe700a465700e90e2922f92e76bfaaa36ce0005d6da7eb80f46252", - "sequence": 30, - "claim_type": [ - "correlation", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104470, - "score": 0.25970000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": { - "race__ethinicy__religion": 2.851145 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "The Trump administration has gutted a Justice Department program that helped many thousands of illegal migrants fight the department's own deportation cases.", - "media_hash": "598935227a8bcb12773ff78bad4a7730fb659379f75fc14d77e007ed", - "sequence": 1, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Danielle DeWinter", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "The pugnacious 39-year-old tech millionaire delivers his Dover assault on migration in the gravest of terms to a room of Reform enthusiasts, hitting out at the \"invasion\" of people who have arrived in the U.K. without permission on small boats.", - "media_hash": "8f58b7dcdc3061987ff07dae23756b9f8252eb5d9f3d7b43c1dc19b2", - "sequence": 11, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "Hove Crown Court heard the three asylum seekers then targeted the lone drunk woman in a 'cynical, predatory and callous' attack.", - "media_hash": "1a0302fc8a0cb901a33042f2d098b6251d24820d78c72c693da97b94", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.10166 - }, - "pa-media": {}, - "maldita": { - "asylum": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Reform UK leader Nigel Farage said the UK needed to pull out of the European Convention on Human Rights (ECHR) to stop small boat crossings.", - "media_hash": "a814c02d0f16449b9e08a75251af89389eae0690c0ec7c7509e17f60", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "Keir Starmer's pledge to \"smash the gangs\" profiting from small boat crossings has followed a pattern set by Conservative-led governments of employing \"bullish rhetoric\" with little evidence that it can be delivered, an expert has claimed.", - "media_hash": "a2849692e9e234e8e4bd553b1d0677fd6545a42514148f8062ddfbc5", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166, - "starmer": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "'She is determined to deliver the best deal for the British people to prevent illegal migrants getting to Britain,' the source said.", - "media_hash": "1796a592716720401678eb0d1f43a8d0ada83083dcab41253bb6c93b", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.3215 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.10166 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.10166 - }, - "pa-media": {}, - "maldita": { - "asylum": 3.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "The Home Secretary said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", - "media_hash": "80f3f2c66cca8b67fe67550fc583fd656dbc601589454bfbc76b13d2", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Home Secretary Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Bruce Springsteen brings 'Streets of Minneapolis' home...", - "publication_date": "2026-03-31T04:12:15", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693491/Bruce-Springsteen-brings-Streets-Minneapolis-home-launch-political-US-tour.html", - "media_type": "news_article", - "sentence": { - "text": "The gritty video that Springsteen released for \"Streets of Minneapolis\" captured a city under siege by 3,000 federal officers, which President Donald Trump's administration called its largest immigration enforcement action anywhere in the country.", - "media_hash": "d1a50046db1b31a2ea6cd6bfba86281df91aa133fd95917584c72e96", - "sequence": 15, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.061165, - "trending": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "The Home Secretary has agreed a two-month extension to the small boats deal with France, just hours before it was due to expire.", - "media_hash": "2be8c829ee1fe8f1272f5d74b7dbca8edef5707b1134206e6c7a0e06", - "sequence": 827, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.061165 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "One of the things that Shamal Ameen would like to see happen is to have this more closely related, relate the money to the effectiveness of the patrols in stopping migrants crossing in small boats.", - "media_hash": "b14948557cec7b60e7d72f9e51f66e488241c79e6da84573d06f8a3c", - "sequence": 893, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 4.037115 - } - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "RT @afneil: Keir Starmer claims Nigel Farage is to blame for the boat people because Brexit took us out of the Dublin Convention (in 2020), which allowed us to return asylum seekers to the EU countries from whence they came.", - "media_hash": "48e8db76dce309f212ee501ced449b33293ca882c1c5a9547c5e3926", - "sequence": 0, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.98733, - "asylum": 3.98733 - } - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Nigel Farage said the UK needs to come out of the European Convention on Human Rights to stop small boat crossings.", - "media_hash": "8c65a262232e6146adb92ec4eeffc03f32dc7a35af19691bfe7eb122", - "sequence": 25, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.98733 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:01:32+00:00", - "publication": "6ded12f0-cdc0-4e64-9da6-4aa97d977cfc", - "url": "https://x.com/NCA_UK/status/2038904516146315511", - "media_type": "social_post", - "sentence": { - "text": "Two Vietnamese nationals who advertised small boats people smuggling on Facebook have been sentenced following a major UK-French investigation.", - "media_hash": "b0b2e09db4bdbde059056c58590dc71675cb881750c647aaa1119df6", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Two Vietnamese nationals", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.975225 - } - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "The gang shared video clips of people travelling on small boats and posted UK mobile numbers for migrants to arrange travel via Zalo, a Vietnamese instant messaging app similar to WhatsApp.", - "media_hash": "afce5c4efe007ac661f03f7676e1441fe1d68aae606c3ad8eada143f", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.975225 - } - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "After the Horizon nightclub closed at 5am the three asylum seekers left the club and CCTV played to the jury allegedly showed them on the street outside the club.", - "media_hash": "9daf1711e5aab20b3208e48ddbcf5fb8b3802428ad51025d59927339", - "sequence": 36, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.975225 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.975225 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "Among other services, the representatives accredited by the office helped illegal migrants appeal their immigration denials and ward off deportations.", - "media_hash": "87757edcd7798c6a52c63314ff4788760b40ad89f29c906715494cbc", - "sequence": 12, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 3.975225 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "media_hash": "e88ae902849aea502db1832e64601111e030b145d89c55002d81d0d7", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.975225 - } - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "As a result the Dublin Agreement actually made us a net recipient of asylum seekers.", - "media_hash": "42ea9a6b89d9a817c4b9cc7ff4e71ce96f4ad3649f52511298edbfe1", - "sequence": 6, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.920805 - } - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "He said a Reform UK government would order the Royal Navy to tow small boats back to northern France, which he claimed would be possible if the UK pulled out of the ECHR.", - "media_hash": "b8cefafc8db07ea680322b5e667e7ea8932df6e09d901ffd2e111b1d", - "sequence": 26, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Home Office sources slammed those proposals saying they were \"completely reckless\" and would lead to a \"surge in illegal migrants getting to Britian\".", - "media_hash": "3b8d7daa80c6692715f49da87bd16509fecb6cb9059c63026903cc70", - "sequence": 9, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Home Office sources", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Mr Farage warned the government's failure to strike a deal by the deadline could trigger a fresh wave of illegal migrants crossing the English Channel.", - "media_hash": "fb8cd70fe8feec368a130474a49b7c94634acec950f7298d49893531", - "sequence": 5, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.7800599999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T12:37:44+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038958925496615052", - "media_type": "social_post", - "sentence": { - "text": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade https://t.co/TUA0rJfxPV", - "media_hash": "49b11d17b91b827e3fc386c6ab7f64f8897f42a3c79a23d57cd9e668", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Vietnamese people smugglers", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.772635 - } - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Speaking to the media at Heathrow Airport, Mr Farage demanded the UK leave the European Convention on Human Rights (ECHR) to bring an end to small boat crossings.", - "media_hash": "7f4c3bf5c0446fbcc35ba34e51ec7d7a0ca120c8a8460d26ffecd681", - "sequence": 28, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.7623699999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Six O'Clock News", - "publication_date": "2026-03-31T17:07:29+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404372", - "media_type": "transcript", - "sentence": { - "text": "A Home Office spokesman called France the UK's most important migration partner and said joint efforts were helping to reduce small boat crossings.", - "media_hash": "7a0f83dcfd64ade97c76b18d15dd3f52bb043cfe3e0c1bb504ae605b", - "sequence": 35, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.748535 - } - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "A Home Office spokesperson said: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", - "media_hash": "00154ec67fd529af920642458c4e9806b4e3196c1d79a7dee2038878", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Home Secretary", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28819, - "score": 0.4003 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "A Home Office spokesperson told the Press Association: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", - "media_hash": "712ba81d6a156eb6556329919a662d08ed27d608cf733ae2806cdd2a", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Home Office spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We'll also look into the UK's deal with France to combat small boats.", - "media_hash": "aa5a05c93569beac0f64aef304e97acedcf202da9013c96eed8bedc5", - "sequence": 425, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.7135350000000003 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So I mean, I think what what's clear amongst all this is the entire strategy of stop small boats is this smoldering wreck.", - "media_hash": "84a31219bf15626a4a55111f376fdefe6379d5296f42d5345071f7e4", - "sequence": 461, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.703135 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "These charges or convictions included serious and violent offenses, including 57,081 assaults; 18,579 sexual assault and sex offenses; 12,895 weapons offenses; 11,822 burglaries; 5,462 robberies; 2,894 homicides; and 2,766 kidnappings ...", - "media_hash": "bf30cc1dd8926752eaa4845a71acb89a5342b3eb0c3d3beaa133dbe9", - "sequence": 58, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Immigration and Customs Enforcement Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.2804 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.648555 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 3.648555 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "The Dublin Convention was a two-way street for asylum seekers.", - "media_hash": "8706e4559c0db561e8e9e3a35bd0cb737d173a20ad95b75c136550d7", - "sequence": 3, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - } - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "The court heard Alshafe and Ahmadi had arrived in the UK by small boats in June 2025, while Al-Danasurt had arrived by the same method in September 2024.", - "media_hash": "551b2d46cd4fa05c9b3cd1f555ca09093e7cb7fe42d1c5df56a09d16", - "sequence": 7, - "claim_type": [ - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104411, - "score": 0.020100000000000007 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Six O'Clock News", - "publication_date": "2026-03-31T17:07:29+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404372", - "media_type": "transcript", - "sentence": { - "text": "The UK has failed to renew a deal with France to pay for beach patrols to intercept small boats attempting to cross the English Channel.", - "media_hash": "9045e8a2164498e3283ff9e95ec1a33402f54a45ac14fe6b3902f0ba", - "sequence": 33, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Now, that deal that Kate was talking about, the UK French deal on patrolling beaches to stop small boats.", - "media_hash": "5c69e5c217720d1f9017b89106be3f3697f4f4b199550bf5e3fd8311", - "sequence": 439, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - } - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "UK and France extend talks over new small boats deal", - "media_hash": "940b8ae05a535e4a107ba315f9c3b52d66f92a54876fd2c22f9c91ed", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Shabana Mahmood, the Home Secretary said that a \"new and improved UK-France deal\" was yet to be finalised but stressed that whilst negotiations took place \"French law enforcement operations to stop illegal migrants in France will continue.\"", - "media_hash": "b3b9cfcb4a1f897abd2cbb2137a4a82cccb96cfbbcd5c724735439c8", - "sequence": 14, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Home Secretary", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "The UK is locked in last-minute talks with France over the renewal of a deal to pay for beach patrols to intercept small boats in the English Channel.", - "media_hash": "a785cbb3931e3f2cce608fdd6d7eed32c895b1b637f7a86d7fdf15a1", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel", - "media_hash": "2b05b33d3ca4640e7ac556a62e01da4633080c2d8549d6872c645d98", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Home Secretary Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked.", - "media_hash": "aa66813f7983b2a9bb91de1b019525ba9707134defdd07debd963572", - "sequence": 603, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.486035 - } - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T17:36:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "In a statement, Ms Mahmood said: 'Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", - "media_hash": "66ff53e8977cf2d4c1bef0d6e8d9501e1a7269ea1e1085209d541c0d", - "sequence": 25, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 25034, - "score": 0.34609999999999996 - }, - { - "tracked_claim_id": 25138, - "score": 0.29569999999999996 - }, - { - "tracked_claim_id": 104465, - "score": 0.34809999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.486035 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "maldita": { - "asylum": 3.486035 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "In a statement, Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", - "media_hash": "8438debb4fda454c9bd5ba06f1b861edcf93ae349ebce6f177220b34", - "sequence": 20, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.486035 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "She lives in the area where small boats are now leaving from.", - "media_hash": "1b74771ebd3cc8cf63ff959b410ded53c600a38ce51df8e452e516d7", - "sequence": 1158, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.47393 - } - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "The stopgap arrangement, which will last for two months, comes after French negotiators refused to agree to UK demands for further interventions and patrols to stop asylum seekers from reaching the UK via the Channel.", - "media_hash": "5b3e95dcb0766fd66ab03168bd554968d3a3d8f01b7340e04cfd6040", - "sequence": 2, - "claim_type": [ - "correlation", - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.436025 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "publication_date": "2026-03-31T12:47:34", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "media_hash": "dc0d08c3c40610cd68de99a26a958d9ec73553a23f8d8305fcb7362c", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.287855 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.862985 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T16:37:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "'If there are eighty people on an overcrowded boat, including women and children, then it is extremely dangerous to try and stop them.", - "media_hash": "b5098273f4cd067c1f2599ce69575bcf93c11435c0938d075f9aa314", - "sequence": 45, - "claim_type": [ - "quantity", - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Alliance", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.281555 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "asylum": 3.4797350000000007 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "At midnight tonight, the deal between the UK and France designed to combat small boat crossings is due to end.", - "media_hash": "6b9892856dd281fee9389cb7d2158b783ff4f9763e2f5f49a412f397", - "sequence": 1137, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.228755 - } - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "'While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", - "media_hash": "6c1af22e5358339b56d4496fe7b51078d9acc1f2d3ba85dabd32ded6", - "sequence": 25, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.3266 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.228755 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", - "media_hash": "0635de656c00c4014124ebe8302dfcaaa25fe5e767f7302ed188a4de", - "sequence": 21, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.228755 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "In this half hour, the UK and France remain locked in last-minute talks over a new deal to tackle small boat crossings across the channel.", - "media_hash": "2c6fb46f779412686ca1fa6f54e0ce67ce50cf427cad6398253d26b8", - "sequence": 2417, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.228755 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "French police will continue to patrol beaches where small boats are launched from after the British government extended the agreement covering it for two months", - "media_hash": "5620fefe0572419c462b3eae795f1292ac3f347dc563fcee131ffde2", - "sequence": 21, - "claim_type": [ - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.228755 - } - } - } -}, -{ - "title": "Syrian president meets King Charles, Starmer on London...", - "publication_date": "2026-03-31T17:08:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15695633/Syrian-president-meets-King-Charles-Starmer-London-visit.html", - "media_type": "news_article", - "sentence": { - "text": "The British prime minister urged \"closer work together on returns (of illegal migrants), on border security, and on tackling people smuggling networks\".", - "media_hash": "5bfda03bc2117baba140682d6ecc10adb3e7f586a99aaa85f66fff1a", - "sequence": 11, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.211065 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", - "publication_date": "2026-03-31T01:15:21", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", - "media_type": "news_article", - "sentence": { - "text": "Many claim they are asylum seekers, despite the Balkan country being categorised as a safe place to live.", - "media_hash": "2e496a55f1f8d47048086e2512703ebd934a5d9134501e8054af5b66", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Albanians", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28819, - "score": 0.31200000000000006 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.128005 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.10166 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "The NCA said it worked with social media networks in 2025 to have more than 10,000 posts, pages or accounts linked to organised immigration crime removed from platforms, a record number.", - "media_hash": "d0940c791936c51b84162ea5b1391fbcd79dbc50f1b9c4f76df1a88d", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Crime Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.10771 - } - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "It's a key part of the operations of the, of the anti, anti-immigration, uh, service, seeking to root out and remove those judged guilty of being illegal migrants in America.", - "media_hash": "4c85dcdc4fe12ad93f35d272110a76f990c77b675d2fd77e8e208085", - "sequence": 1081, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.10166 - } - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "\"In practice the results have disappointed, because factors outside their control have played a huge role. That included EU membership; in the case of net migration, France's willingness to cooperate on asylum policy; or the sprawling, decentralised activities of smuggling gangs that are very difficult for government to contain.\"", - "media_hash": "ee5e341870da238a3c05f8c35456537b451d2940cd526729481353b8", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Madeleine Sumption", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "During FY 2024, the 81,312 criminal noncitizens ERO arrested had 516,050 charges and convictions, for an average of 6.3 charges or convictions per person.", - "media_hash": "dd69d31d238057856e6a6ad180b131b72815ca63eec7134651ef9472", - "sequence": 57, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.2522 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "publication_date": "2026-03-31T12:47:34", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "Hop Can Nguyen, 46, and Hoang My Tra Nguyen, 25, helped traffic at least 250 migrants into the UK - offering journeys costing up to \u00a318,000 - before disappearing from Home Office accommodation.", - "media_hash": "15c37aaac05ae9930ea51b50ed78866bbb876a80fce9691171ac99bd", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.2116 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 5.09725 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "When it was announced in 2023, the previous Tory government said the \u00a3478 million package would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", - "media_hash": "7b9ac9fb4ccedcf655cb4ef2973263c230c366c8c507971252b7251b", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Officials pointed to some 42,000 illegals having been stopped from making the crossing.", - "media_hash": "f5519bbd6de756b5b809ed3ae63540c07ea1422a1086fa0f82d5f989", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Officials", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 25034, - "score": 0.4505 - }, - { - "tracked_claim_id": 25138, - "score": 0.4555 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "publication_date": "2026-03-31T12:47:34", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "Hop Nguyen was jailed for 12 years after he helped traffic at least 250 migrants into the UK - offering journeys costing up to \u00a318,000", - "media_hash": "69e7137c4d19f5d9d88b2bf5707ff968f63d83508c4fca67433c72da", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.32620000000000005 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 5.09725 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "A five-month NCA investigation found the group facilitated crossings for at least 250 people between January 2023 and April 2024.", - "media_hash": "62ac959b24407e947a3211993ee00cea57e84d07c1225ec8394dc9e6", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Crime Agency", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - } - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Home Office officials insist that nearly 60,000 migrants who have made the illegal channel crossing have been deported since the general election.", - "media_hash": "130cfd0c721084eacf3529abcef94a19b0cabb7297bcc0f3690e600f", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 40728, - "score": 0.4192 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "For example, a 2011 study by the Government Accountability Office reported 25,064 foreigners arrested for homicide from 2001 to 2004.", - "media_hash": "a501c7a25d115cedc1b5d4bdbbe29747679b332dafb87cc99bc4742b", - "sequence": 51, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government Accountability Office", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.27649999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 3.09725 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue. I will do whatever it takes to restore order and control at our borders.\"", - "media_hash": "610f060917b8782010237ef182198b7beb2a71d8dfba2a84d2ba563b", - "sequence": 9, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28819, - "score": 0.18920000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.092465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "And talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", - "media_hash": "8b0584f517af30c64a99072a42550dd5c183ad323131de2223127922", - "sequence": 305, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.061165 - } - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "Ms Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", - "media_hash": "8c41b317da966e4c16d4f8034fdaa162005f223b34bac157401ddf24", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.36360000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.061165 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio: Andrew Neil Show", - "publication_date": "2026-03-31T12:00:01+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404201", - "media_type": "transcript", - "sentence": { - "text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", - "media_hash": "02863a2d79d5fa53dd9d100591fe25ed291e970cc014491049dd4a5e", - "sequence": 9, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "The French", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.061165 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "Americans are being slaughtered in massive numbers by the non-enforcement of our existing border immigration laws ... and it's all 100 percent preventable through the adequate enforcement of our existing laws.", - "media_hash": "88c0a6845736fd8126d29eb27f8d9674477c9712385af237c521db39", - "sequence": 17, - "claim_type": [ - "correlation", - "rules" - ], - "claimer": [ - { - "name": "Bill Gheen", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.3597 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.039905 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", - "publication_date": "2026-03-31T11:20:25", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", - "media_type": "news_article", - "sentence": { - "text": "Yusuf has called for US Immigration and Customs Enforcement (ICE) style removals to deport 600,000 people from the UK over five years.", - "media_hash": "a15aa7ceddd9c0f5914499354c0a56def4cd9b3968219b0d7455d712", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.0274850000000004 - } - } - } -}, -{ - "title": "Retired NYPD sergeant arrested in corruption probe...", - "publication_date": "2026-03-31T14:46:17", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "According to St. Fort \u0301s arrest warrant, he is under indictment on charges of conspiracy to commit offenses against the United States, bribery involving programs receiving federal funds, and violating a law prohibiting interstate travel for unlawful activities.", - "media_hash": "93a003c03337184789af59f848ada7013cf057d01a961007809fdcd4", - "sequence": 9, - "claim_type": [ - "correlation", - "rules" - ], - "claimer": [ - { - "name": "Edouardo St. Fort", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 3.023415 - }, - "demo": { - "politics": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "\"Starmer has now presided over the most Channel crossings of any Prime Minister - up 45% since the election.", - "media_hash": "00fb8763e3105d008a5b436f86c2ef55318e9c325daf233765682018", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chris Philp", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.981275 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "Shabana Mahmood has extended a deal with France attempting to stop migrants boarding small boats in Northern France.", - "media_hash": "edf73b13bb9cca1d816a958baeaeda67e36bfc137b9cb6400530cf85", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Yes, you can, and certainly, you know, the idea that there have been thousands of people crossing, uh, you know, the channel and the government wants to point out it's prevented 40,000 crossing attempts, but equally there have been pretty much 40,000 successful crossing attempts in the last year.", - "media_hash": "0ea76dbb182470e9ee823ca98f439a37e548d3280cd98928e954262a", - "sequence": 2471, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "Only a third of the migrants who tried to cross illegally between January and March were stopped.", - "media_hash": "993a4ceab10ca6102cea7e54f667bc9af75e33bb87fcddc17cfb1ea5", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.4014 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "Ultimately, does Nigel Farage really want 42,000 more migrants coming to Britain?", - "media_hash": "012c5cf8deb5ddba9e0333979090de2bbfcc8854d2b8ba81af4d1279", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Shabana Mahmood", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "They are now going to pay \u00a32 million a week for continued failure.", - "media_hash": "1ad7d386517816369c8555148efb9e3efcc56a11ae0ada4ea82a082b", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Chris Philp", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.09725 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", - "publication_date": "2026-03-31T01:15:21", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", - "media_type": "news_article", - "sentence": { - "text": "The number of Albanians entering Britain via the Channel route spiked in 2022, with more than 17,000 individuals applying for asylum.", - "media_hash": "c8318d43a65ac6390f3026a0668c8f974ddb6db927d16688487a282e", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Migration Observatory", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 42109, - "score": 0.4154 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "Ledgers recovered from their homes showed payment amounts against 250 names, meaning the pair stood to make around \u00a3750,000 from those crossings alone.", - "media_hash": "12fc5b880d2680ccf1f3a4d3ad4af55d108f1c8cf302476a5664ac65", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "\"They are now going to pay \u00a32m a week for continued failure.", - "media_hash": "7a344f7bad73b92bf5948f721dd7f11d44d58feec7ba0ba52b05e2dc", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "dev": { - "blah": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Home Secretary Shabana Mahmood is under pressure to bring numbers down.", - "media_hash": "0355d6681f164e61b4e15a0347605d46951498ec1e4c2eca7a75f9ef", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Because I mean, numbers don't seem to have significantly dipped in in illegal migration while that deal was in place.", - "media_hash": "26ba8879b0075a834f22535bdfc28a33f432ebc2e94d88f21c0530d4", - "sequence": 2458, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "Britain is to pay millions more to France to police the Channel - despite the French refusing to accept targets to stop the boats.", - "media_hash": "8eda6c6f133eefd8463dae25f4a9c87945f05f72c78e1b15a18af98d", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "France", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "Over the four weeks ending March 22 this year, just 23.2% of migrants attempting to cross the Channel were prevented by French police.", - "media_hash": "f825ed6f6f0d1c1436a7c491307bff4044f828e19474b1d4c2405b16", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.23860000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "I mean, the argument from the British side here is that we've paid over 400 million pounds to the French for this previous three-year deal and yet the rates of boats being stopped has actually gone down, the success rate is worse.", - "media_hash": "2e1f47e8920178359f8124ee604bbab68b13c76950fe01f43a21ef71", - "sequence": 1185, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Saying the English Channel would be \"busy\" once the deal expired, the Reform UK leader said \"it wouldn't make any difference whether we agreed to a further \u00a3365 million or not\" adding that those who make the crossing have a 97.5% chance of staying in the UK.", - "media_hash": "27b8a00af9b3991d32edde2d9642c085e3d7771b631ef2f51ca565d6", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28819, - "score": 0.2619 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "By 2023 the office had greatly increased the number of accredited representatives dealing with illegals.", - "media_hash": "1a450953dcb6812d47d6d6c3d89921948f434bb4fe9b916e2442fc65", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "I mean, if you look at the most recent weeks figures, um, there were 272 migrants who crossed in four boats just over a week ago on the 23rd of March.", - "media_hash": "b682e781a372c53b3e5c72e2145cf2895323e0e5d0844034c13ae8cc", - "sequence": 2460, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "Six O'Clock News", - "publication_date": "2026-03-31T17:07:29+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404372", - "media_type": "transcript", - "sentence": { - "text": "French authorities have prevented around one in three attempted channel crossings, but the interception rate was higher two years ago at around 45%.", - "media_hash": "d4d277cb931177431159b9b564a65483cc0b383953329504e980039f", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - } - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025, and Ms Mahmood is under pressure to bring numbers down.", - "media_hash": "74f15444e419950ed8ae7610bed5038ce376a0a5fb3f6e7e43bb70bd", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Mahmood is under pressure to bring numbers down.", - "media_hash": "2dc64f56dbd578feaace8439f3bda5496f67313ad3dc475545f7675d", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.970815 - }, - "demo": {}, - "dev": { - "blah": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "This issue may have gone off the back on the back burner a little because of the war, but conflict brings more immigration.", - "media_hash": "8a84239c95acb53d4c33398bef2ea11b2f6e2f0e6f16945dc8aa4f9b", - "sequence": 1226, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.9374000000000002 - } - } - } -}, -{ - "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", - "publication_date": "2026-03-31T16:59:32", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", - "media_type": "news_article", - "sentence": { - "text": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", - "media_hash": "7c3b2fd5d6117619b33e51c3d5d6d8eae187cb68318cc0cd70850aa4", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.93464 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.965595 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "I heard the deal between the UK and France on stopping small boats crossing the channel comes to an end today.", - "media_hash": "06ba33afc16ce036ff80f1ac98d84420db01e8564a45cc6f06c11b50", - "sequence": 1061, - "claim_type": [ - "personal", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.922625 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "ALIPAC posted a list of 1,409 victims of migrants last week and has been forced to add new names over the weekend.", - "media_hash": "9947b08e3a5d2f4df01e203ff2b4fa0dde547abf647e4071c40638e6", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Americans for Legal Immigration PAC", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.29869999999999997 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.89907 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Something which hasn't particularly worked to be frank, because numbers have not gone down since then.", - "media_hash": "8df6ca371e2bd9254db45a5323d6738906f4ad191bf97b328f604d40", - "sequence": 444, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.89907 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "But none of the establishment media sites track the growing number of Americans killed by the federal and state governments' refusal to exclude migrants from American communities.", - "media_hash": "80843cbe2cd37646e350461a07feb7e6df4fa21aaf38886bcb13005e", - "sequence": 64, - "claim_type": [ - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.23729999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", - "publication_date": "2026-03-31T11:54:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", - "media_type": "news_article", - "sentence": { - "text": "More messages were exchanged where the victim accused him of raping her.", - "media_hash": "f3bc337bc650570c12163d6c4e426968c9bffd106707e1a6b77852ec", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "We've had many incidents, uh people dying of course in in the water, and I think the responsibility that the European Union, um carries in this issue and the fact that we are not addressing the roots of the problem of this, these my these migration these migration fluxes are really, are at the at the core and and the people who have not decided to stop immigration are greatly responsible for this tragedy that's happening on the French coast and on the channel with all these people going to the UK.", - "media_hash": "19ce0687dfa34808774fae97feede5509b72763fec80a69372dcd384", - "sequence": 1171, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.851145 - } - } - } -}, -{ - "title": "Breitbart Business Digest: This Is What Full Employment Looks Like", - "publication_date": "2026-03-31T21:43:27", - "publication": "breitbart", - "url": "https://www.breitbart.com/economy/2026/03/31/breitbart-business-digest-this-is-what-full-employment-looks-like/", - "media_type": "news_article", - "sentence": { - "text": "Immigration enforcement has sharply reduced the flow of migrant workers, and the labor market is adjusting to the new arithmetic.", - "media_hash": "8dea087ea3053d53d027c6d8c5abd57a364bda59f54e19687e7380aa", - "sequence": 16, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Breitbart Business Digest", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.810965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "The Villanova report, titled \"The Crisis of Unrepresented Immigrants: Vastly Increasing the Number of Accredited Representatives Offers the Best Hope for Resolving It,\" says:", - "media_hash": "4bcbbbcb21484192f0efdf620974a3bf649ab5941b3363e3101bd1f9", - "sequence": 15, - "checkworthiness": { - "fullfact": { - "asylum": 2.7846200000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "Similarly, Reuters and ABC News are tracking deaths in migrant detention centers, and as of March 31, have reported 14 deaths.", - "media_hash": "713d9df5c16e21860315e5204557b25b92d92e53290e85ef35b0fa66", - "sequence": 62, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Reuters", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "ABC News", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.772635 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", - "publication_date": "2026-03-31T11:20:25", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", - "media_type": "news_article", - "sentence": { - "text": "Migrants who have legally lived and worked in the UK for years could see themselves deported if Reform scraps permanent settled status.", - "media_hash": "7676de25befbd6fe482f903c6c2d8e300cdb451f9f60f16d4863b84b", - "sequence": 19, - "claim_type": [ - "correlation", - "rules" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Politico", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.7705450000000003 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "The business-backed Cato Institute downplays the scale of deaths by arguing that migrants' arrest rates are lower than those of the U.S. population.", - "media_hash": "4e4e40cb73f5e10dc2979d3c05bba2e2b8568734b7e76baae82de789", - "sequence": 69, - "claim_type": [ - "quantity", - "support" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.3328 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.75796 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.75796 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T17:36:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "It comes as specialist French police units attempt to intercept small boats on canals and within 300 metres of the shore.", - "media_hash": "8be62b914e39a3912e4bf9fcd601f1172076b689f50a04aebfe5d170", - "sequence": 43, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.748535 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 0.0 - }, - "maldita": { - "asylum": 2.748535 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "A Home Office spokesperson said: \"France is our most important migration partner and together our joint work is bearing down on small boat crossings.", - "media_hash": "a0df3c35dd6f2df9f61023ecc16a6781670dce376fbb6a4da3265701", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Home Office spokesperson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Normally during the winter months we see a drop in the amount of boats making the journey.", - "media_hash": "70e36eb4c9a5aa9da8c9baa754c19fafb45cec8bf5905d85eb1c1455", - "sequence": 309, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.72968 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "Normally during the winter months, we see a drop in the amount of boats making the journey.", - "media_hash": "8d7686119bfcc72ddf4e65fb7b30f3be8f9ecb4b785e73701e05de30", - "sequence": 1147, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.72968 - } - } - } -}, -{ - "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", - "publication_date": "2026-03-31T16:59:32", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", - "media_type": "news_article", - "sentence": { - "text": "A migrant who raped a customer while he was working as an Uber Eats delivery driver has been jailed for 44 months.", - "media_hash": "c75a6cfaacca8e5b9ad15dcd27850ecfea32013bba28b36a9349dc59", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.3781 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.712725 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.712725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "In all, just 2,064 out of 6,233 attempted crossings have been stopped.", - "media_hash": "d837b97c295d9d1dffc39d1eaf8c0302882a7445991251093065b5ef", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.6987249999999996 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 3.2500299999999998 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.6987249999999996 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "And it wouldn't make any difference whether we agreed to a further 365 million or not.", - "media_hash": "6804478c228b0fc26ca9f908872fbf8f60bb54667dbbf441b12030c1", - "sequence": 2466, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.6987249999999996 - } - } - } -}, -{ - "title": "Breitbart Business Digest: This Is What Full Employment Looks Like", - "publication_date": "2026-03-31T21:43:27", - "publication": "breitbart", - "url": "https://www.breitbart.com/economy/2026/03/31/breitbart-business-digest-this-is-what-full-employment-looks-like/", - "media_type": "news_article", - "sentence": { - "text": "Net immigration ran at roughly three million a year, creating a labor supply so abundant that employers could hire aggressively while workers cycled rapidly from job to job.", - "media_hash": "5e4d00479295a9a95ac52c99c7e73890b87b6c146309b8349d5d0e19", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And of course, we need to have much stronger policies in saying if you are caught, uh being illegal as an illegal migrant, you cannot, you will be sent back.", - "media_hash": "1a9c5744a5406a321f35dc53cd7ebf7bc1b3454fc998ef6d8ddc7d2e", - "sequence": 1176, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.6867799999999997 - } - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Britain is on a \"catastrophic\" path headed for \"sectarian violence,\" says the entrepreneur tasked with selling Reform UK's hardline migration policies - and talking up Christianity.", - "media_hash": "9c7b82a0766ff18b87e963f697c1b098853225b14e0c5cbe8456253a", - "sequence": 1, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Yusuf says if Britain stays on its current trajectory \"we're headed to sectarian violence in this country.\"", - "media_hash": "263078a517738e373243986dd0af0ed12b95094f1891007062c99389", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", - "publication_date": "2026-03-31T11:54:38", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694329/Migrant-Uber-Eats-delivery-driver-jailed-raping-female-customer.html", - "media_type": "news_article", - "sentence": { - "text": "After delivering the food at midday he returned to the property at 5pm where the harrowing sexual assault took place (file image)", - "media_hash": "e210741d3b11d57cce5bc610124c6b7b3263718c3cf414ccbead144f", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jitendrakumar Prajapati", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32 million a week to police the Channel -despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T16:37:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "He told a French parliamentary committee last week that such funding would 'be extremely dangerous for migrants, for the security services, and for France.", - "media_hash": "ff0ea8f13dcaf16b28b2a0633915b8a5a8ee4013baacec99014f5e69", - "sequence": 38, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "France", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Xavier Ducept", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "French parliamentary committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.652965 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "Just 90 minutes later at around 6am he allegedly helped target a 'visibly intoxicated' female as she was leaving the club before raping her with two others on the beach, pictured", - "media_hash": "3e8a0fa6e46e31dd5873c6e43230e92904a15cfb1f5ab23382be653f", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Ibrahim Alshafe", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Abdulla Ahmadi", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Karin Al-Danasurt", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 2.652965 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "ICE Urges Virginia Gov. Abigail Spanberger to Honor Detainer for Illegal Alien Accused of Murder", - "publication_date": "2026-03-31T23:19:26", - "publication": "breitbart", - "url": "https://www.breitbart.com/politics/2026/03/31/ice-urges-virginia-gov-abigail-spanberger-to-honor-detainer-for-illegal-alien-accused-of-murder/", - "media_type": "news_article", - "sentence": { - "text": "ICE is calling on Virginia Governor Abigail Spanberger and Virginia's sanctuary politicians to not release this murderer back into our communities.", - "media_hash": "e2d005a82a0dcc2cce2ea4b7142b27b4c7ae0bf3eaa5bb9115d12e2d", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Immigration and Customs Enforcement", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "These crossings are extremely dangerous and the defendants had no interest in the safety of those making the journey aside from ensuring they received their payment and made significant profits.", - "media_hash": "ae35f64dedfa7580c56ad95c9faff9704bc1b70bcae01250b54df992", - "sequence": 29, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Hop Nguyen", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hoang Nguyen", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Saju Sasikumar", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.652965 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "As weather improves, we'll hear from a fisherman in the channel this morning in about five minutes time, who says he's seen more crossings in the last few days than at the same time in the last few years.", - "media_hash": "8833a41eb50326c17cc0378d7cf54a2d7c3f4b37685929e88fef5baa", - "sequence": 1119, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.649215 - } - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "British taxpayers will now be forced to fork out an extra \u00a316 million over the next two months while negotiations continue.", - "media_hash": "9612e1e765d0d96a8cf197bd036fab62255227db8d5816e1fadf53f6", - "sequence": 4, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.649215 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Then there's scrapping Britain's permanent settled status for migrants, a move that could see people who have legally lived and worked in the U.K. for years deported.", - "media_hash": "22055ba89bff8ede10559b0601425b21df6acec2d080eb74c3dbd1c7", - "sequence": 138, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.62201 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Vietnamese people smugglers who advertised small boat crossings for \u00a315,000 on Facebook are jailed for a decade", - "publication_date": "2026-03-31T12:47:34", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694351/Vietnamese-people-smugglers-advertised-small-boat-crossings-Facebook-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Dutka added: 'The boats were managed by third party criminal syndicates after deducting those costs, for example accommodation, profit per migrant would be \u00a31,500 to \u00a32,000.'", - "media_hash": "a2a9a7804c9f652ff0764e52dc05839d74d0f5c4f7b05665c0f59e54", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Anna Dutka", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.61247 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.61247 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.61247 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "At a press conference at Heathrow on Tuesday, he said: \"Tomorrow will be a very busy day in the English Channel, and it wouldn't make any difference whether we agreed to a further \u00a3365m or not. Even if the French do stop boats from crossing, the same people come back the next time there is a calm day, and it's all about pull factors, it's all about the fact you've got a 97.5% chance, whoever you are, of staying in the United Kingdom if you illegally cross the Channel in a small boat.\"", - "media_hash": "e6da619b9d485acb5d3f0697330845d927ce0ba3607f6e475626bb50", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Nigel Farage", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant ran Facebook network to lure hundreds to the UK in small boats", - "publication_date": "2026-03-31T20:30:30", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/uk-news/migrant-ran-facebook-network-lure-33694285", - "media_type": "news_article", - "sentence": { - "text": "The two were part of a larger international organised crime group bringing Vietnamese migrants into the continent, with Ramal Briem jailed for more than 10 years on March 26 for his role in the same crime group.", - "media_hash": "cefa6d8e1d9a13999736203f050df9ca70f783e5966ad09f7926dc9f", - "sequence": 17, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Ramal Briem", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.61247 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "It is a huge problem, it will not get better until we address the roots of this problem and until we stem the influxes upstream.", - "media_hash": "287333c9f7ee7bedb4ba883a8d7121511931dec3213c1914228cd88e", - "sequence": 1205, - "checkworthiness": { - "fullfact": { - "asylum": 2.6029299999999997 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "I also think the UK government needs to do more of course, they need to say any illegal any illegal migrant in the UK that's found in the UK is going to be sent back and cannot come back to the UK.", - "media_hash": "6a98f6bada7bc7ce3c205e8584c220bca6abbb7adfbdcdfa55d52588", - "sequence": 1180, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.600525 - } - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "\"We're headed for not just a bad outcome, but a catastrophic one, where everybody's now divided amongst racial or religious lines, voting accordingly, the economy is not growing, the most productive people are leaving,\" he warns.", - "media_hash": "3c88d95d980b423700e5ab0cad9f147826e1177cf9f75c1a8b54dbfb", - "sequence": 23, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.59811 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "As long as the the the the people know, the human traffics know and these people know, once I'm in Europe, once I'm in France or once I'm in the UK, I will not get sent back.", - "media_hash": "86ba571ccf91af22e18d648d23dae918a72ad02cb64c1ce5ac9f001d", - "sequence": 1177, - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - } - } - } -}, -{ - "title": "Volunteers Count 1,200+ Killings by Migrants Amid Silence from Agencies, Media", - "publication_date": "2026-03-31T21:57:07", - "publication": "breitbart", - "url": "https://www.breitbart.com/crime/2026/03/31/volunteers-count-1200-killings-by-migrants-amid-silence-from-agencies-media/", - "media_type": "news_article", - "sentence": { - "text": "But it likely has missed many American victims because police, politicians, and the media do not want to know the murderers' legal status, he told Breitbart News.", - "media_hash": "0437488329f3188829b892e50ce69ebdbd3d6bdbbdfba2c4fb74dee8", - "sequence": 15, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Orrin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "But this month, the senior DOJ attorneys who oversaw the program were reassigned and the program was effectively neutered.", - "media_hash": "1571d6e0c86a97c4eff0a6f38b7b4d654260bedc9661c9991a931473", - "sequence": 6, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform plan to stuff Lords with '900 peers' to push through deportation plans", - "publication_date": "2026-03-31T11:20:25", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25983618.reform-plan-stuff-lords-900-peers-push-deportation-plans/", - "media_type": "news_article", - "sentence": { - "text": "Reform plan to stuff Lords with '900 peers' to push deportation plans", - "media_hash": "ac3593e4fd69fd5d8a10f98b815815c91a1e84149b04eb899c974882", - "sequence": 0, - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Is there a sense that the last deal, I mean, everyone's very concerned about it coming to an end, but did it actually work?", - "media_hash": "49cd27e6a62f5ed4df525b0df35ee3dbebd1fea5393b76c84d6bda84", - "sequence": 2457, - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - } - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "So I think it's it's a problem that we share and that we cannot solve by by trying to send the people back once they've traveled so far, um, and when there's so many of them on the French coastline.", - "media_hash": "c6b83527834f028f566802e5449992d212b0b7d29b690f0ea5534288", - "sequence": 1204, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.58644 - } - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "Only 209 transfers were agreed.", - "media_hash": "86cb207a63483aa1aa6c60406e6f559f9ef327c6e3c1e07f069b49f8", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5769 - } - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "The two month extension to the patrol deal is being backed by \u00a316.2m in UK funding, according to the Home Office.", - "media_hash": "db31695f62e79aa831f096fba8dacf57d3a19b5fe808a68f000bc742", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5769 - }, - "demo": {}, - "dev": { - "blah": 2.5769 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "There was a really interesting argument made yesterday in a French parliamentary committee by the French, by the man responsible for but basically for boats and and this, boat security policy, small boats.", - "media_hash": "e685bbf7069148101ece166da040da1339d192ff8776bb75fe9ad7e9", - "sequence": 1208, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5503549999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "Negotiations for a new 650 million pound channel migration deal are currently deadlocked hours before the current three-year deal expires at midnight tonight.", - "media_hash": "370347f06e03e70a6cc24be9d0d8805b9c8502b4563163c2a70b3900", - "sequence": 2436, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "As you just heard, you know, as you just said, the 650 million pound cost over three years compared with the last deal which cost 475 million pounds.", - "media_hash": "213a186c7ba92d7ab6daa8cc7801cd062503e9a59607a3b41521e77e", - "sequence": 2443, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "Out of 6,233 attempted crossings in the first 12 weeks of this year, some 2,064 (33.1%) were stopped.", - "media_hash": "9831beb872044c95d25abac87b65d6c7326e9db4747d306013d47c46", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.030299999999999994 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "More than 4,400 migrants have crossed the Channel this year by the end of last week.", - "media_hash": "d30d80c002db1933e6f11f1b18f6e85968f7ebe0f5768eaa5a53b299", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.28159999999999996 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "That has only had about 300 people who have left the UK from it and the same amount of people are coming in return.", - "media_hash": "f95d31947f977e0ce84fbafbedb7c8566d5dda2bd380f0a23c952e2c", - "sequence": 458, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T17:36:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "More than 4,400 have already made the crossing since the start of the year, despite poor weather.", - "media_hash": "171077844980ca1a3553b92e1d2ee7c368d9c127a38e78e711121eef", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "maldita": { - "asylum": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "The program was huge and involved more than 850 nonprofit migrants' rights organizations.", - "media_hash": "75038e2400e3c6f5b3834983279534c2148e4e8d5f19a930acb772ec", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T20:48:20", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "Figures published by the UK Home Office show that French interception rates have fallen to the lowest on record so far this year.", - "media_hash": "b23b6bcd2629cfc8f09332954f8a6a80d2fe07880ae4bfa68fbf6e59", - "sequence": 38, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "UK Home Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 0.0 - }, - "pa-media": {}, - "maldita": { - "asylum": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France in last-minute talks to renew small boats deal", - "publication_date": "2026-03-31T11:51:51", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Under a 2023 agreement signed by then Prime Minister Rishi Sunak, the UK has paid \u00a3476m to France for extra patrols to disrupt smuggling gangs.", - "media_hash": "d7677834d5b2d04b4f1c0dae926564a115386510b418ada4ff6ecd2c", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC morning: Main interview", - "publication_date": "2026-03-31T06:49:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/403741", - "media_type": "transcript", - "sentence": { - "text": "This is the original three-year deal, 475 million pounds, struck by Rishi Sunak, I must add, comes to an end I understand at midnight.", - "media_hash": "e408888e913160d2f76307712853e71f1846c451baf960627631877b", - "sequence": 61, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Sir Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "That's down from 35.1% last year and 36.7% in 2024.", - "media_hash": "f5d11e08fc2436ebb2d89128281cb7167415f3aac9fbf087fac4d39c", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Starmer\u2019s immigration rhetoric follows familiar pattern of bold claims but few results, expert says", - "publication_date": "2026-03-31T04:00:31", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/starmer-immigration-rhetoric-familiar-pattern-bold-claims-few-results", - "media_type": "news_article", - "sentence": { - "text": "The figure reached more than 300,000 by 2015.", - "media_hash": "7a4c3b8954fb9420143941ff06d7c9a92b539b4238a6147494edd691", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "The then Tory government announced the \u00a3478m package in 2023, saying it would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", - "media_hash": "04608a74036d16f5094be9e756864230aa19bbfcc4b3e4448845e5d2", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour hands France another \u00a32million a week to police the Channel - despite Paris refusing to accept targets to stop the boats", - "publication_date": "2026-03-31T17:36:12", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15695407/Labour-hands-France-2-million-week-police-Channel-despite-Paris-refusing-accept-targets-stop-boats.html", - "media_type": "news_article", - "sentence": { - "text": "Shabana Mahmood has signed off a \u00a316.2 million cheque for a two-month extension to the current deal with Paris, which subsidises French beach patrols.", - "media_hash": "e881c63242095cf0d917c8738ba7150948eb30894e2bbf86688ab69b", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": { - "politics_of_food": 2.5459449999999997 - }, - "maldita": { - "asylum": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Migrant small boats beach patrol deal with France extended hours before deadline", - "publication_date": "2026-03-31T16:26:00", - "publication": "mirror-politics", - "url": "https://www.mirror.co.uk/news/politics/migrant-small-boats-beach-patrol-36950948", - "media_type": "news_article", - "sentence": { - "text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025.", - "media_hash": "9dcb08b7f8a62955f5c4c2ef078965357524a400a000882449b217a3", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "He's told Times Radio the number of crossings is going up.", - "media_hash": "f36cc96270e8f48ae86b4715a3a8f856197408a70baa5a412a04a666", - "sequence": 308, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "These accredited non-attorney representatives, for instance, helped 7,779 migrants with their removal cases between 2010 and 2020, Villanova added.", - "media_hash": "4351e1ef71ec691823fcc558f8980eb2c98bb4ed4a1552cb31d039ca", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Only 33% of crossings are now being stopped (Image: Getty)", - "media_hash": "159ff6aaa172d3be6ae4ca336a304340f51c5c0a6a558ec16bef3a1c", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "It saw the UK paying \u00a3476million to France to fund extra patrols to catch smuggling gangs.", - "media_hash": "e7360dc4e2366eecaf426b0783c5b0de889c5ad0932a658b75fa906b", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Under the current deal, nearly 700 law enforcement officers are on the ground patrolling beaches, using drones and buggies to stop people getting on boats.", - "media_hash": "40e9d534c0cdceed69a69b2d41fd154f5cfb5fa6d2dc8c3609933b75", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Britain pays France \u00a3650 million - but they're not stopping migrant crossings", - "publication_date": "2026-03-31T05:21:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188486/britain-pay-france-650-million", - "media_type": "news_article", - "sentence": { - "text": "The number intercepted as they tried to cross the Channel in the first three months of the year was the lowest on record.", - "media_hash": "28201be9c81b8f95e1806fed5292e6dfd8a5670b84a3fba930a32cf8", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 104465, - "score": 0.04600000000000004 - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "The government is trying to renew it, try and, you know, even potentially putting in extra money into it, 650 million over three years.", - "media_hash": "4b2ac835aae544617b0307cf6d62b1ddee041f37f66e1426abb67751", - "sequence": 446, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "Since then, the number of crossings has increased, with 41,472 people arriving in the UK by small boat in 2025.", - "media_hash": "667d16251071efe4057aa12be56872b293f482646a425a9a1c8c79cb", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T16:38:28+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/sarah_bool/status/2039019506199073104", - "media_type": "social_post", - "sentence": { - "text": "Since Labour came into power, numbers in such accommodation have increased by over 6,000, with continued pressure on communities like ours in South Northamptonshire.", - "media_hash": "707c30be589a0db317595fffdc04ee6534551ae14e27f89d561fe2f5", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "Home Secretary signs last-minute France migrant deal as...", - "publication_date": "2026-03-31T16:34:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15695505/Home-Secretary-signs-minute-France-migrant-deal-negotiations-continue.html", - "media_type": "news_article", - "sentence": { - "text": "The existing near \u00a3500 million arrangement was due to end at midnight on Wednesday morning and the extension has been signed while the UK and France continue to thrash out a deal.", - "media_hash": "0ae145907e6996f877a0be2dd01162e9dbbe5a96679b2e6290d9794e", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "But wouldn't that involve appointing 900 or so new Reform peers to get a majority from a baseline of zero, I ask?", - "media_hash": "c44518368e9ee769b3f07e83918d331fd2d29b708bc27afd9bf37ce4", - "sequence": 132, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Two 'Albanian gangsters' are caught in the back of a lorry trying to enter Britain 'with gun and silencer'", - "publication_date": "2026-03-31T01:15:21", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15692951/Two-Albanian-gangsters-caught-lorry-trying-enter-Britain-gun-silencer.html", - "media_type": "news_article", - "sentence": { - "text": "By 2024, that had fallen to below 3,000, according to Migration Observatory analysis of Home Office numbers in October.", - "media_hash": "87d62197d2c9f49b064231b15f4e8f3fd937422cec4d7d8bf0b7b212", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T01:07:13+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BobBlackman/status/2038785150012502264", - "media_type": "social_post", - "sentence": { - "text": "So we were net recipients by over 1,000.", - "media_hash": "278429a97be7ee2e159dfcb7549f15c335ea78dc99beecefbc770ace", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - } - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "media_hash": "8dc2e75142868d7ad6c53191efdad547865c06986da91860022566d9", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "The UK will pay France an extra \u00a316.2m to keep police patrolling Channel beaches and prevent a surge in small-boat crossings after negotiators failed to agree a permanent deal before a midnight deadline.", - "media_hash": "5fb3790ae1e8bb2b20647589135125e0c0b58b39173f23415731b5c5", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to pay France extra \u00a316m in stopgap deal to patrol Channel beaches", - "publication_date": "2026-03-31T18:01:06", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/uk-pay-france-extra-patrol-channel-beaches", - "media_type": "news_article", - "sentence": { - "text": "At present, the UK pays nearly two-thirds of the annual cost of patrols in northern France.", - "media_hash": "1dc4fbd1e902fd894c15d1acc732ac0e59cce8ef968c814c6d96fea7", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Labour to hand France another \u00a316million as migrant deal farce goes on", - "publication_date": "2026-03-31T16:33:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188945/labour-hand-france-another-16", - "media_type": "news_article", - "sentence": { - "text": "Some 6,233 attempted crossings took place in the first 12 weeks of the year, with only 2,064 being stopped according to reports by the Telegraph.", - "media_hash": "b8b657a295f40d26caf6f537de73a2f8a614758af0410a155580e9a3", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK and France extend talks over new small boats deal", - "publication_date": "2026-03-31T16:17:07", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/c3exveglpe3o", - "media_type": "news_article", - "sentence": { - "text": "Under a three-year agreement signed in 2023, the UK has paid \u00a3476m to France for extra patrols to disrupt migrant smuggling gangs.", - "media_hash": "9989b5d386ca865718628a2d75fc80457cbb440164e3e02fd587e52b", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "dev": { - "blah": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Retired NYPD sergeant arrested in corruption probe...", - "publication_date": "2026-03-31T14:46:17", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "According to city records, the city agreed to pay Fort NYC Security more than $7 million to provide security services from 2023 to 2027, including at a Bronx hotel used as a homeless shelter.", - "media_hash": "88f009690e57bbf8531f26bfbc4721a980f77c2c1ef9e531415aead0", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": { - "politics": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "Activists in Illinois note that they have served approximately 948 individuals in Central and Southern Illinois, according to WGLT.org.", - "media_hash": "0a3636d1a88d76952727b20183bafb59185ecff718da493a508496f1", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T09:30:05+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/spectator/status/2038911700590617073", - "media_type": "social_post", - "sentence": { - "text": "And now the Boriswave, the low-paid millions who arrived earlier this decade, are soon to be granted Indefinite Leave to Remain (ILR), giving them access to benefits and housing at taxpayers' expense forever.", - "media_hash": "6b3bca40f6b4d04c2d41182c6e2949c622e22397900c14c946dc1b8d", - "sequence": 3, - "claim_type": [ - "correlation", - "support" - ], - "claimer": [ - { - "name": "David Shipley", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.545585 - } - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "All three men are charged with rape while Al-Danasurt - who is said to have filmed the attack and egged them on - is additionally charged with sharing intimate videos of the attack.", - "media_hash": "139ec611426a3a19f07a928298eb006b3c14fb4bcd1abdc12f697cb5", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.540725 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 2.540725 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pam Bondi Guts DOJ Program that Helps Illegal Migrants Fight Deportation Cases", - "publication_date": "2026-03-31T21:23:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/immigration/2026/03/31/pam-bondi-guts-doj-program-that-helps-illegal-migrants-fight-deportation-cases/", - "media_type": "news_article", - "sentence": { - "text": "The roster of approximately 850 recognized organizations includes public libraries, job training and workforce development programs, domestic violence shelters and treatment programs, English language programs, labor unions, parishand faith unit-based charitable organizations and ethnic ministries, family resource centers, DREAMer programs, and other student groups.", - "media_hash": "0719f1a6b3f418b1daaa0016e2774785300962f94cab708b8a9752bd", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5315000000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "asylum": 2.5315000000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Zia Yusuf, the \u2018British Muslim patriot\u2019 Nigel Farage trusts with the border", - "publication_date": "2026-03-31T02:00:00", - "publication": "politico", - "url": "https://www.politico.eu/article/zia-yusuf-british-muslim-patriot-nigel-farage-trusts-border/", - "media_type": "news_article", - "sentence": { - "text": "Yusuf doubles down on his pledge to embark on an unprecedented mass deportation program and rip Britain out of its international human rights treaties.", - "media_hash": "14e29886d470667050747fb30f72ddaebc99461977f5461c410b838b", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Zia Yusuf", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.5271350000000004 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Asylum seeker chatted up blonde woman at nightclub before 'targeting drunk female and gang-raping her on Brighton beach', court hears", - "publication_date": "2026-03-31T00:46:37", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15691929/Asylum-seeker-blonde-woman-nightclub-gang-raping-Brighton-beach.html", - "media_type": "news_article", - "sentence": { - "text": "He allegedly raped a lone drunk female on a beach after spending part of the evening chatting up another woman", - "media_hash": "e0d4bc970efa8c19335a795e7e72e36164b733f83aa8f16302bc7440", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "asylum": 2.52653 - }, - "demo": {}, - "aapfactcheck": { - "ethnic-minorities-immigrants-race": 2.652965 - }, - "pa-media": {}, - "maldita": { - "asylum": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Average energy bills are forecast to rise by almost \u00a3300 from July while motorists are already counting the cost of the war, with drivers paying \u00a3544 million extra for fuel since the US-Israeli bombing campaign began.", - "media_hash": "10be2818fd3b8c65be2b7964a7719dae9df7f9341ccb2e4623b3977d", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 5.36473, - "energy": 5.36473 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "He's twice in the last week, or at least his administration has, mocked our armed forces once again.", - "media_hash": "061a58d830b6a32637eac7cb9f89c1d0602c25e1fef3129a7831dd28", - "sequence": 450, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.61247, - "trending": 4.61247 - } - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", - "media_hash": "32b8b12fe5b9ad894802d26b6f80a43dbba07e0e52246e634d1bbedd", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.556405, - "energy": 4.556405 - }, - "demo": { - "politics_of_food": 2.556405 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T15:03:10+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/jcartlidgemp/status/2038995523269480851", - "media_type": "social_post", - "sentence": { - "text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", - "media_hash": "fabe7c09c45efe890a986c3c7e29dd896d0c00fe58aeeedaffb2841e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 4.545945, - "defence": 4.545945 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Well, what I've just been saying, we need to increase our defence spending, a fair bit, not to the full 3%.", - "media_hash": "50e53cefea79765421c61c0963079f61e8eb1d413f8ac06599b80bbc", - "sequence": 665, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Alby Amankona", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.409655 - } - } - } -}, -{ - "publication_date": "2026-03-31T14:29:31+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/TanDhesi/status/2038987056915894780", - "media_type": "social_post", - "sentence": { - "text": "Our changing world and increased #threats mean that historic #defence spending targets are no longer enough.", - "media_hash": "a52bb4d43eb775d24911d10fa9448406e7ccb4125576493967796e5b", - "sequence": 0, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Our changing world and increased #threats", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.386095 - } - } - } -}, -{ - "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", - "publication_date": "2026-03-31T05:00:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", - "media_type": "news_article", - "sentence": { - "text": "The former EastEnders actor and friend of the Armed Forces is behind a drive, launching today, to secure the final \u00a32.5m needed to open the Royal Marines Experience at the National Museum of the Royal Navy.", - "media_hash": "a19bfb82ee9919852cc9e970d236365d047ad454c206f10ccc815ba9", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "National Museum of the Royal Navy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Donald Trump tells UK to secure Strait of Hormuz and 'go get your own oil \u0301", - "media_hash": "b9fbe87bdfbac8598b0857773a1f9f39ad96e50a0d2de3b201c229e2", - "sequence": 0, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 4.29984, - "defence": 4.29984 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Russia hit by brutal crime wave after Putin frees criminals to fight in Ukraine war", - "publication_date": "2026-03-31T07:38:54", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/breaking-russia-hit-brutal-crime-36946830", - "media_type": "news_article", - "sentence": { - "text": "Putin has released tens of thousands of killers, rapists and thugs on condition that they are conscripted into the Russian armed forces.", - "media_hash": "9bac114385a5c934f7aafb16009fc20510edafb104b593298f65c2cc", - "sequence": 23, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.163775 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I lost friends in Iraq. Trump is making the same mistakes", - "publication_date": "2026-03-31T11:30:00", - "publication": "inews", - "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", - "media_type": "news_article", - "sentence": { - "text": "President Trump is right, the US armed forces are the best equipped, best trained, and most effective in the world.", - "media_hash": "848be15b6f5f4f6d70816fefc7a06734a2db978f0046bee239dc2683", - "sequence": 2, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.12379 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I lost friends in Iraq. Trump is making the same mistakes", - "publication_date": "2026-03-31T11:30:00", - "publication": "inews", - "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", - "media_type": "news_article", - "sentence": { - "text": "Donald Trump shows absolutely no sign that he realises he's got to avoid it.", - "media_hash": "16d30f7e1741a4ded543b0c7939ed1c0d8aa1d9d4013dac19fe8ce3e", - "sequence": 45, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.10166, - "trending": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "Where our armed forces are being insulted routinely by Donald Trump, where today we have a threat that the US won't come to our defense in our time of need, because of Donald Trump.", - "media_hash": "ed2cd0d83230f484ef4684a301eeadd9ae74988ab5ae7bb35496271c", - "sequence": 252, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.10166 - } - } - } -}, -{ - "title": "Russian war machine blasted by missiles and drones as insiders slam Kremlin army", - "publication_date": "2026-03-31T09:07:19", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/russian-war-machine-blasted-missiles-36945331", - "media_type": "news_article", - "sentence": { - "text": "Podolyaka's report reversed years of messaging that the Armed Forces of Ukraine (AFU) troops were inferior to Russia's military.", - "media_hash": "e0f942483edee527b1d75b9c60f5eea018f4c3d0a32213907e773599", - "sequence": 16, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Donald Trump said the UK and other countries which did not take part in strikes against Iran should secure the Strait of Hormuz themselves.", - "media_hash": "2c23ec91f59c98872c71333f282a2991eccb1cbdf60ab1354339a626", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.10166, - "defence": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "Donald Trump dramatically washed his hands of the crisis and told the UK to 'go get your own oil' today as the strategic Strait of Hormuz remains blocked.", - "media_hash": "b9aca7609adae73af0c7bc344e1c4f0424261234f3d037b6ae241ef6", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 4.10166, - "defence": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "trending": 3.975225 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "King Charles\u2019s state visit to US will be \u2018humiliation\u2019 amid Iran war", - "publication_date": "2026-03-31T13:39:13", - "publication": "guardian", - "url": "https://www.theguardian.com/uk-news/2026/mar/31/king-charles-state-visit-to-us-to-go-ahead-buckingham-palace-confirms", - "media_type": "news_article", - "sentence": { - "text": "MPs have privately expressed concerns there is potential to embarrass the king if the US president continues his criticisms of the UK's armed forces before or during the trip.", - "media_hash": "5b3ac0a290f2504983fbda7d7a8b9ad149528ee3da2a79db138e14ed", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 4.10166 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 3.10166 - }, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Moment British warship crew scramble to intercept Russian submarine 'at risk of exploding' before tracking it through English Channel", - "publication_date": "2026-03-31T16:57:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694227/Moment-British-warship-crew-scramble-intercept-Russian-submarine-risk-exploding-tracking-English-Channel.html", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Keir Starmer said on Thursday he had authorised the military to board and detain Russian ships in British waters to disrupt a network of vessels that his government says enables Moscow to export oil despite Western sanctions.", - "media_hash": "4ee21050393bdbe46ee01b1b7d9f1567b1dd5edb38bd395b38487d8e", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Prime Minister Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.10166, - "starmer": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", - "publication_date": "2026-03-31T05:00:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", - "media_type": "news_article", - "sentence": { - "text": "Lieutenant General Sir Robert Fulton, former Commandant General Royal Marines, said: \"This \u00a32.5m target represents more than a financial goal - it represents a national commitment to our Armed Forces and remembrance.", - "media_hash": "cb69123a263a54439819b2bf84ea8b6756fa6e558387a833b654ffca", - "sequence": 23, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Lieutenant General Sir Robert Fulton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 4.061165 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 4.061165 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And I don't really see the right level of seriousness when it comes to approaching those issues, whether or not they're security issues, to do with defence spending, economic issues, to becoming more economically independent of the US.", - "media_hash": "9af0d326a2f43f75ef1ef21480a28fc12e3d914843fb6508d4aa655f", - "sequence": 650, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Alby Amankona", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.96055 - } - } - } -}, -{ - "title": "Petrol for ambulances and new speed limits - the UK's fuel shortage plan", - "publication_date": "2026-03-31T13:11:52", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/petrol-ambulances-new-speed-limits-36947969", - "media_type": "news_article", - "sentence": { - "text": "A reserve fleet of fuel tankers can be deployed at short notice to increase distribution capacity, while the Armed Forces could also be called upon to assist with deliveries if required.", - "media_hash": "9e5446e16b0841c0e8590b3602bb2132a23e09a28220826e755e4eed", - "sequence": 32, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.866315 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Diplomatic nightmare\u2019 for King as he is sent to try and fix Trump fallout", - "publication_date": "2026-03-31T17:38:47", - "publication": "inews", - "url": "https://inews.co.uk/news/kings-mission-fix-trump-fallout-revealed-from-banquet-to-congress-speech-4328034", - "media_type": "news_article", - "sentence": { - "text": "But as if to highlight the diplomatic tight rope Charles and Queen Camilla must walk, the announcement came less than an hour after President Donald Trump launched another blistering attack on the UK for failing to give more direct help on his attack on Iran.", - "media_hash": "8d0040153c4e1b1fdd1dbb5ed4ad9d2d035bf3c20f6c2e809be9e8dc", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.748535, - "defence": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Keir Starmer has made announcements about increasing defence spending, but actually in the financial statements that we've heard so far, it's not clear how we're going to meet those new targets that have been set.", - "media_hash": "d7bfc7a6591e8b274c19dc04c6b22c633f5ce7cfe6f15d491c2c659b", - "sequence": 646, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Alby Amankona", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.748535 - } - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Of course, this administration and the United States Armed Forces will always act within the confines of the law.", - "media_hash": "7e9aca20c19fe091f61d2279b868ea466b94e6581dd219d4ed26eeb6", - "sequence": 103, - "claim_type": [ - "rules", - "support" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.734295 - } - } - } -}, -{ - "title": "The incredible new tourist attraction that will celebrate 360 years of UK's Royal Marines", - "publication_date": "2026-03-31T05:00:00", - "publication": "express", - "url": "https://www.express.co.uk/news/uk/2188033/Royal-Marines-Royal-Navy-King-Charles-Ross-Kemp-armed-forces", - "media_type": "news_article", - "sentence": { - "text": "Designed as a place of inspiration, the experience will ensure extraordinary stories from the Napoleonic Wars, both world wars, the Falklands War, Northern Ireland, operations in Iraq, Afghanistan, and global humanitarian missions can continue to be told.", - "media_hash": "d5a28de067b2ee79c03a6fa2740130ca37ddcb948e3cf7bcdf5dbbe4", - "sequence": 7, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.7135350000000003 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 3.7135350000000003 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", - "publication_date": "2026-03-31T16:48:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", - "media_type": "news_article", - "sentence": { - "text": "\"We recognise the interest that the Royal Family takes in us, and that is reflective of the armed forces' relationship with the nation. That's what it symbolises, that's what it signifies, and that's why it's so important.\"", - "media_hash": "a1fa544c7fc41a9ce56fa86ba0f686c1b59b388a8ef495d8c4b6de6a", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Admiral Sir Tony Radakin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.703135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump tells Starmer to \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T12:00:00", - "publication": "cityam", - "url": "https://www.cityam.com/trump-tells-starmer-to-go-get-your-own-oil/", - "media_type": "news_article", - "sentence": { - "text": "President Donald Trump has told Sir Keir Starmer that the UK will have to \"fight for yourself\" as the US would not provide any support in fuel supplies.", - "media_hash": "2d4faff07143dff1f45e8f5acf015e8f7fb9159eade650f1ef62e1f5", - "sequence": 4, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.653625, - "starmer": 3.653625 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "Despite the drop in 2024, suicide rates among active duty troops overall still have gradually increased between 2011 and 2024, while the National Guard and Reserve have stayed largely stable, the report said.", - "media_hash": "2bcf6edd96fcac228367ce8646ea209ca5a6c40e80c81096258d432f", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.648555 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", - "publication_date": "2026-03-31T18:54:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", - "media_type": "news_article", - "sentence": { - "text": "Donald Trump told countries including the UK 'go get your own oil' as he challenged nations to get supplies straight from the Strait of Hormuz", - "media_hash": "d1c791f931c5f5b8ebf991cc3f00274f60f44c4172a61090cbb45eec", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997, - "trending": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "King reflects on `difficult time\u00b4 in Middle East as...", - "publication_date": "2026-03-31T12:44:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694717/King-reflects-difficult-time-Middle-East-ex-forces-chief-honoured.html", - "media_type": "news_article", - "sentence": { - "text": "The King reflected on the UK's relationship with its allies at a \"difficult time\" amid war in the Middle East, the former head of the armed forces said as he attended Windsor Castle for his investiture.", - "media_hash": "33f12b22d3da1617c8ba3d34fa0d3c0b6af79c0b0a1ee56079a63a0c", - "sequence": 2, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "King", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Admiral Sir Tony Radakin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Submarine captain steps back after probe into contact with MP wife of alleged spy", - "publication_date": "2026-03-31T22:32:01", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25985953.royal-navy-probed-officer-contact-mp-joani-reid/", - "media_type": "news_article", - "sentence": { - "text": "Separately, the Times reported that Ms Reid, the MP for East Kilbride and Strathaven, left the Armed Forces Parliamentary Scheme (AFPS) last year following an alleged incident at Faslane with a different officer.", - "media_hash": "d91f90b574fbe688bc57f063ea11baab86950c76f563ef79b57df70e", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "NATO without America? A slow shift is already underway", - "publication_date": "2026-03-31T22:19:52", - "publication": "rtuk", - "url": "https://www.rt.com/news/636893-nato-without-america-shift/", - "media_type": "news_article", - "sentence": { - "text": "US President Donald Trump's approach to foreign policy is often dismissed as chaotic or erratic.", - "media_hash": "5efb265ebd81c87a520ab68390512a4f7fdccfe3baaa4d640b59eccc", - "sequence": 4, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "US President Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997, - "trending": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", - "publication_date": "2026-03-31T16:48:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", - "media_type": "news_article", - "sentence": { - "text": "Speaking to the Press Association after the ceremony, Sir Tony said: \"He reflected on my service and I reflected on his support to the armed forces, and how grateful I am for all that he and the royal family do for us.", - "media_hash": "6e4b8f96a1ba24fd63384061a9865c51cf1155c4aeed673427346024", - "sequence": 9, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018Diplomatic nightmare\u2019 for King as he is sent to try and fix Trump fallout", - "publication_date": "2026-03-31T17:38:47", - "publication": "inews", - "url": "https://inews.co.uk/news/kings-mission-fix-trump-fallout-revealed-from-banquet-to-congress-speech-4328034", - "media_type": "news_article", - "sentence": { - "text": "Ingrid Seward, editor-in-chief of Majesty Magazine, said: \"It's going to be a slightly tense situation because of his dissing of Starmer and British institutions starting with the armed forces.\".", - "media_hash": "44946d2058b6ab8afac8a46d49adb465f7bf689d1c53f64b0d2cb96d", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Ingrid Seward", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.5503549999999997, - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "King Charles 'reflects on difficult time' in Middle East as Trump visit looms", - "publication_date": "2026-03-31T16:48:56", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/royals/king-charles-reflects-difficult-time-36950730", - "media_type": "news_article", - "sentence": { - "text": "Sir Tony described the relationship between the Royal Family and the armed forces as \"extraordinary\" and said their visits boost morale, adding: \"I think the armed forces really covet their relationship with the Royal Family and with His Majesty the King.", - "media_hash": "c8c47446d5baa601420577ba74a6a692ab09f9293b6baeecee8b4396", - "sequence": 12, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Admiral Sir Tony Radakin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More UK troops to be sent to Middle East, defence secretary announces", - "publication_date": "2026-03-31T15:49:58", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c7vq76g45rvo", - "media_type": "news_article", - "sentence": { - "text": "Visiting the UK Armed Forces at Dukhan air base, Healey said the government has extended the deployment of UK Typhoon jets to Qatar.", - "media_hash": "d0b575a458092b1209b2cb2d0bf74442acbc5a66f49e28eca7002b69", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Weak' Starmer faces fury for sending King Charles on official state visit to woo Donald Trump in the middle of major transatlantic rift caused by president bad-mouthing Britain", - "publication_date": "2026-03-31T15:04:03", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/royals/article-15695039/Weak-Starmer-faces-fury-sending-King-Charles-official-state-visit-woo-Donald-Trump-middle-major-transatlantic-rift-caused-president-bad-mouthing-Britain.html", - "media_type": "news_article", - "sentence": { - "text": "The King himself today reflected on the UK's relationship with its allies at a 'difficult time' as he gave a knighthood to a former head of the armed forces at Windsor Castle today.", - "media_hash": "a0f4df9d066214e194f2b30d82489a325f5cf55cdbcf78cafcdc7e63", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "King Charles", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "King reflects on `difficult time\u00b4 in Middle East as...", - "publication_date": "2026-03-31T12:44:49", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694717/King-reflects-difficult-time-Middle-East-ex-forces-chief-honoured.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Tony described the relationship between the royal family and the armed forces as \"extraordinary\" and said their visits boost morale.", - "media_hash": "cc3dfaf4f0fa7e471c1886e392cde8237cc5943be5bdd1a47983e002", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "King", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Admiral Sir Tony Radakin", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:18:20+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/BenObeseJecty/status/2038878547180237226", - "media_type": "social_post", - "sentence": { - "text": "Last week Keir Starmer made a point of announcing that he would allow our forces to conduct maritime interdiction operations to board Russian Shadow Fleet vessels in the Channel.", - "media_hash": "789f1ed51a8ed1e0ce76b084950b07a3ae2fcc4758c7e5b635d75ed1", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Keir Starmer", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997, - "starmer": 3.5503549999999997 - } - } - } -}, -{ - "title": "How Pakistan won over Trump to become an unlikely mediator in the Iran war", - "publication_date": "2026-03-31T02:33:18", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cy91vrzxn34o", - "media_type": "news_article", - "sentence": { - "text": "The head of its armed forces, Field Marshall Asim Munir, is in US President Donald Trump's favour.", - "media_hash": "4417d2b4d53ed64298c37f9d995354468b07173ea6cd0bf494914aed", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - }, - "demo": {}, - "dev": { - "blah": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "The Tories and Reform have been very clear about how they would get the money for defence spending, but actually, Labour and the Greens, how are they going to, how are they going to get that?", - "media_hash": "28a21747f1ceb8bf01652bac9d43e12fe370180b5e26a8519a01feb2", - "sequence": 673, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Alby Amankona", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.5503549999999997 - } - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "The overall trend in suicide rates for active duty service members \"mirrors the increase in the U.S. population suicide rates over time,\" the report said.", - "media_hash": "ea68f7379d4d2769e4b4f1e6d012f33fbec970896fb9bfcc977b6f84", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.548465 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Europe\u2019s escape plan from Trump\u2019s chaos machine", - "publication_date": "2026-03-31T23:00:00", - "publication": "neweuropean", - "url": "https://www.thenewworld.co.uk/paul-mason-europes-escape-plan-from-trumps-chaos-machine/", - "media_type": "news_article", - "sentence": { - "text": "Germany's decision to remove defence spending from its fiscal rules will put it on a course for debt to reach 100% of GDP.", - "media_hash": "da3b34fbea160f5fa97c618bc4607f09f27a6848be8fbed3e42c291f", - "sequence": 31, - "claim_type": [ - "quantity", - "rules", - "predictions" - ], - "claimer": [ - { - "name": "European governments", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Germany", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.534885 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", - "publication_date": "2026-03-31T11:35:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", - "media_type": "news_article", - "sentence": { - "text": "Ministers also have a series of measures to maintain supply in the event of a shortage - such as a fleet of reserve fuel tanker vehicles; calling on the Armed Forces to make deliveries; or releasing emergency oil stocks which the UK is obligated to hold.", - "media_hash": "0999e4bcc71fef834056284328aa5a31a31a340aae6f44c9d480a93f", - "sequence": 34, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.436025 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "WASHINGTON (AP) - Fewer American service members died by suicide in 2024, with the number of deaths falling by 11% to 471 from a year earlier, according to a Pentagon report released Tuesday.", - "media_hash": "99b274d5366dba6bc363772ae2ce6a44934ba0d037499bc6453cc421", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "According to the report, nearly half of the active duty service members who died by suicide in 2024 had a mental health diagnosis such as alcohol use disorder, depression or anxiety.", - "media_hash": "13b6f4977a4c699e3c96c7472ee80ed4ef24da67bdf26d55cd7ea47a", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.3956850000000003 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'A million things could go wrong' - why seizing Iran's uranium would be so risky for the US", - "publication_date": "2026-03-31T23:16:15", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cvglv5v4yvpo", - "media_type": "news_article", - "sentence": { - "text": "The material can be fairly quickly enriched to the 90% threshold needed for weapons-grade uranium.", - "media_hash": "5ed680d89c33d6a6440fa4b2636a89722f518b3308a2fc1a9aba7147", - "sequence": 23, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.281555 - }, - "demo": {}, - "dev": { - "blah": 3.326955 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Germansplaining: Face to face with Trump, what do you do?", - "publication_date": "2026-03-31T23:00:00", - "publication": "neweuropean", - "url": "https://www.thenewworld.co.uk/tanit-koch-germansplaining-face-to-face-with-trump-what-do-you-do/", - "media_type": "news_article", - "sentence": { - "text": "During Merz's last visit to Washington DC in early March, Trump laid into Spain's PM, Pedro S\u00e1nchez, over his refusal to allow US access to Spanish air bases for strikes on Iran, and for failing to meet Nato's defence spending target of 5% of GDP.", - "media_hash": "a6d291e685444543cf1750dbb4d6e5a086587209c0acacc6342b3f4a", - "sequence": 5, - "claim_type": [ - "quantity", - "support", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.27318 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump tells Starmer to \u2018go get your own oil\u2019", - "publication_date": "2026-03-31T12:00:00", - "publication": "cityam", - "url": "https://www.cityam.com/trump-tells-starmer-to-go-get-your-own-oil/", - "media_type": "news_article", - "sentence": { - "text": "The continued blockage of the Strait of Hormuz and threats to shipping routes in the Red Sea have led oil prices to jump above $100 per barrel.", - "media_hash": "a0b65086076c20857bf934944643575d484afb9ae76074b5bfe6af52", - "sequence": 16, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.2500299999999998, - "starmer": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Matt Chorley", - "publication_date": "2026-03-31T09:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404134", - "media_type": "transcript", - "sentence": { - "text": "But in the same breath, Donald Trump has threatened to obliterate Iran's power plants and oil wells if a deal isn't reached soon.", - "media_hash": "8e86e0e0d72fc4d2771811e266450c53db5aac4777fbc4ed98da1e46", - "sequence": 102, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Hugo Rifkind", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.2280949999999997, - "trending": 3.2280949999999997 - } - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Even the UK talks the talk, but still hasn't released its plans for the future of the armed forces.", - "media_hash": "90e7ff18d7cc59777d848df1a6fdc420eaf1d7b9f746b883368caa67", - "sequence": 254, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Les", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.211065 - } - } - } -}, -{ - "title": "How Europe has turned its back on Trump: Italy blocks US bomber from landing, Spain closes airspace and Poland 'denies Patriots request' as furious president lashes out at UK and EU", - "publication_date": "2026-03-31T12:35:54", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694313/How-Europe-turned-Trump-Italy-blocks-US-bomber-landing-Spain-closes-airspace-Poland-denies-Patriots-request-furious-president-lashes-UK-EU.html", - "media_type": "news_article", - "sentence": { - "text": "The US and Israel began attacking Iran in late February, striking the mullah regime's leadership, nuclear and ballistic missile programme and armed forces.", - "media_hash": "1769de439e8718fb6ea4032ef5da3f24420862cb0ec0787adad3a08a", - "sequence": 2, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "defence": 3.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", - "publication_date": "2026-03-31T05:39:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", - "media_type": "news_article", - "sentence": { - "text": "The move risks further alienating US president Donald Trump, who has threatened to cut trade with Spain for denying the US' use of Spain's bases during the Middle East war.", - "media_hash": "94123e4c548a87738acaf66738bca09b704d7e56423fca3c7ad73ebd", - "sequence": 4, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 3.10166, - "defence": 3.10166 - }, - "demo": {}, - "aapfactcheck": { - "crisis": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump says other countries should 'just take' the...", - "publication_date": "2026-03-31T13:43:12", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694951/Trump-says-countries-just-Strait-Hormuz.html", - "media_type": "news_article", - "sentence": { - "text": "Asked about concerns among some of President Donald Trump's base about the possible use of ground troops in Iran, Hegseth declined to tip his hand.", - "media_hash": "60336760c1f809092958c4ce4293bb9608ca840b74557f1931d99993", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "trending": 3.10166, - "defence": 3.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump says other countries should 'just take' the...", - "publication_date": "2026-03-31T13:43:12", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694951/Trump-says-countries-just-Strait-Hormuz.html", - "media_type": "news_article", - "sentence": { - "text": "US President Donald Trump said Tuesday the countries that have not joined the Middle East war but are struggling with fuel shortages should \"go get your own oil\" in the Strait of Hormuz.", - "media_hash": "aafbecf7e5b2679c3f37d7fb2b4ef7e9770b1cfc96c738d703f14092", - "sequence": 3, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 3.10166, - "defence": 3.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer discussed the Middle East crisis with Syrian President Ahmed al-Sharaa (Justin Tallils/PA)", - "media_hash": "dbcb445aeca5568ad681fc7dac581824c473c7c63f75aecda6f4a51d", - "sequence": 17, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 3.10166, - "defence": 3.10166 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Seized weapons on display after India declares end to...", - "publication_date": "2026-03-31T10:13:10", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/afp/article-15694229/Seized-weapons-display-India-declares-end-Maoist-insurgency.html", - "media_type": "news_article", - "sentence": { - "text": "The rebellion controlled nearly a third of the country with an estimated 15,000 to 20,000 fighters at its peak in the mid-2000s.", - "media_hash": "f14a40deaa3ec95945b5a8c356ceeae721f5eacaaebf83153f1c8bec", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:09:56+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/TanDhesi/status/2038891529947763069", - "media_type": "social_post", - "sentence": { - "text": "RT @ModernNavy: There's been a tenfold increase in security incidents at Britain's nuclear submarine base since #Russia's invasion of #Ukraine (16 to 149 last year).", - "media_hash": "942d60c6ad467398c00c94440ec72cf0af6e0cf97b28714f5ca1c6ec", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Modern Navy", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - } - } - } -}, -{ - "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", - "publication_date": "2026-03-31T05:39:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", - "media_type": "news_article", - "sentence": { - "text": "The arrival of 2,500 Marines and another 2,500 sailors is keeping the number of US soldiers in the Mideast region at over 50,000, while last week the Pentagon also ordered about 2,000 soldiers from the Army's 82nd Airborne Division to the region in order to give Trump additional military options.", - "media_hash": "82b7f5d50bf731e14278cbe107d215c5a7496d06a937a830173409d2", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "trending": 3.09725, - "defence": 3.09725 - }, - "demo": {}, - "aapfactcheck": { - "crisis": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", - "publication_date": "2026-03-31T19:04:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", - "media_type": "news_article", - "sentence": { - "text": "\"If you drop 2,000 guys on there, you need 8,000 liters of water every single day... never mind food, ammunition... never mind how you're going to evacuate the wounded,\" he said.", - "media_hash": "35c6d3620af290b4471db68cc0da5c50e9ca62833b0040225813fe44", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Stanislav Krapivnik", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Good Morning Scotland", - "publication_date": "2026-03-31T05:00:00+00:00", - "publication": "1-bbc_radio_scotland", - "url": "/radio-transcript/403837", - "media_type": "transcript", - "sentence": { - "text": "Um, we've seen uh thousands of additional troops sent.", - "media_hash": "abcd33a23cd4fbaf088c6b7ec50aaf6adf3e0a720ba26e2a3a2c2a3a", - "sequence": 114, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - } - } - } -}, -{ - "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", - "publication_date": "2026-03-31T19:04:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", - "media_type": "news_article", - "sentence": { - "text": "\". Support is at 30% and falling. They don't know what to do.\"", - "media_hash": "aa9e7b12471f35e87bae1fea85dcb2bf3c2f4def04ad9f8302002184", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump voices frustration with allies as Iran war and...", - "publication_date": "2026-03-31T13:26:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", - "media_type": "news_article", - "sentence": { - "text": "The conflict has left more than 3,000 dead and caused major disruptions to the world \u0301s supply of oil and natural gas, roiling global markets.", - "media_hash": "5fb122b07dbf644182376aeb6e0fecbb1f03099aaa6ca1101c5b7bcb", - "sequence": 5, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - }, - "demo": { - "environment": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "Most service members who died by suicide in 2024 were enlisted men under the age of 30, the report said.", - "media_hash": "96e69f8e9f48a29f0ba1bc8bc75067ec10c6fcef6465b4865e58f060", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Taxpayers stung for Defence mistake on Redback vehicles", - "publication_date": "2026-03-31T05:30:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", - "media_type": "news_article", - "sentence": { - "text": "\"Billions of public funds have been poured into defence, with next to no oversight.\"", - "media_hash": "9d264eef9b6dd5758498b63d57c876678ff1e4f87d423f85061558d8", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "David Shoebridge", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 3.05185 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Japan deploys its first long-range missiles", - "publication_date": "2026-03-31T06:36:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693695/Japan-deploys-long-range-missiles.html", - "media_type": "news_article", - "sentence": { - "text": "Prime Minister Sanae Takaichi 's Cabinet in December approved a record defense budget plan exceeding 9 trillion yen ($58 billion) for the fiscal year beginning April and aims to fortify its strike-back capability and coastal defense with cruise missiles and unmanned arsenals.", - "media_hash": "3843d0733617226bcce6fff7d80b6daa13702d6fc20efefb4b9887f3", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Japan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "The decrease emerged under Defense Secretary Lloyd Austin during the Biden administration and followed a rise in the number of military suicides in 2023.", - "media_hash": "192472a4623695228d58b07a499209ae8c3d91546db191eda1fa46d1", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at \u00a31,929 for a typical dual fuel household - an increase of \u00a3288 or 18% on April's cap.", - "media_hash": "5f76ec41c120474bd2f456d6d80bc5cdbb27746137330400a50a526a", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.970815, - "energy": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "The rate of suicides per 100,000 service members also dropped that year compared to 2023, the report said.", - "media_hash": "8ed615af1a77db5b380c5e8447636af99c4418f9e7f4c1b7b35982ef", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.970815 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", - "publication_date": "2026-03-31T19:04:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", - "media_type": "news_article", - "sentence": { - "text": "The notoriously unreliable vertical takeoff and landing (VTOL) aircraft has earned the nickname 'widow maker,' having led to 30 deaths before it even entered active service in 2007.", - "media_hash": "2e2992d6e670281b0b5e32a3874481acf8aba7c35e9608fb2d444d71", - "sequence": 16, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.959835 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "And we've only got limited amount, not not enough.", - "media_hash": "cc5ec3724a4ed1e506ffc599ff0f188aa642a93f9f7ce664af4d3c35", - "sequence": 1305, - "checkworthiness": { - "fullfact": { - "defence": 2.9374000000000002 - } - } - } -}, -{ - "title": "US seeks to pass the buck on Hormuz crisis", - "publication_date": "2026-03-31T08:39:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636812-homuz-control-coalition-rubio/", - "media_type": "news_article", - "sentence": { - "text": "Reduced flows of hydrocarbons and other essential commodities from the Persian Gulf have pushed global prices higher, raising the risk of significant economic disruption.", - "media_hash": "be54ac2849819c65dd4cb41fb7ad005e0f3e4aaf50c36496f3ecd5e1", - "sequence": 6, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.9374000000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK sends extra troops and air defence systems to Gulf allies to bolster protection against Iranian suicide drones", - "publication_date": "2026-03-31T15:41:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", - "media_type": "news_article", - "sentence": { - "text": "'I am proud of the courage and professionalism our armed forces have shown since the start of the war and my message to Gulf partners is Britain's best will help you defend your skies.", - "media_hash": "806ca45eb30bcf55bf0a029e202bb0df6df49f2337397ef45d2b14a0", - "sequence": 8, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "John Healey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.922625 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "U.S. Bombers Heading to Middle East Refused Permission to Land at Italian Airbase: Report", - "publication_date": "2026-03-31T13:15:41", - "publication": "breitbart", - "url": "https://www.breitbart.com/europe/2026/03/31/u-s-bombers-refused-permission-to-land-at-italian-airbase-report/", - "media_type": "news_article", - "sentence": { - "text": "The use of the base is governed by a treaty between Rome and Washington: routine armed forces flights and work are permitted including operational and logistical, but warfighting activity requires the express permission of the Italian government.", - "media_hash": "7efff41150e3774375ab6e63083a27b299c0b403c580a6cd2691d345", - "sequence": 6, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.920805 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 3.345675 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "I lost friends in Iraq. Trump is making the same mistakes", - "publication_date": "2026-03-31T11:30:00", - "publication": "inews", - "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", - "media_type": "news_article", - "sentence": { - "text": "Many of the other 16 who died were burned alive.", - "media_hash": "bbd4f9141edee708962af760393e836bc4c59ff36b08de12b4c43211", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Army suspends helicopter crews that flew near Kid Rock's home", - "publication_date": "2026-03-31T20:18:00", - "publication": "skynews", - "url": "https://news.sky.com/story/us-army-suspends-helicopter-crews-that-flew-near-kid-rocks-home-13526628", - "media_type": "news_article", - "sentence": { - "text": "Authorities name 16 killed in Tennessee explosives factory blast", - "media_hash": "a6e479a5dc41036ce2d329cda1c141adf166452b8e67ea3b3767512d", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump voices frustration with allies as Iran war and...", - "publication_date": "2026-03-31T13:26:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", - "media_type": "news_article", - "sentence": { - "text": "Two dozen people have died in Gulf states and the occupied West Bank.", - "media_hash": "feab8da174425a7f24c94fda2d56ce6165036c5d2e21f5641c6c75dc", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.89907 - }, - "demo": { - "environment": 3.3239400000000003 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth v The Pope", - "publication_date": "2026-03-31T13:05:12", - "publication": "neweuropean", - "url": "https://www.thenewworld.co.uk/rats-in-a-sack-pete-hegseth-v-the-pope/", - "media_type": "news_article", - "sentence": { - "text": "According to the FT, the $3.2bn equity fund pursues \"growth opportunities by investing in companies that may benefit from increased government spending on defense and security amid geopolitical fragmentation and economic competition\".", - "media_hash": "8f6d1d28a4ad9c6ad33a00b9e73952ff049150fa349f4a64551a1b6d", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Financial Times", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to send more troops to Middle East to defend against Iran attacks", - "publication_date": "2026-03-31T16:47:34", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", - "media_type": "news_article", - "sentence": { - "text": "Britain will send more troops armed with air defence systems to the Middle East to help blow Iranian missiles out of the sky.", - "media_hash": "6bf900327b1eeed9d48b827a85f06d6e6c4f3e68431b6700347791b1", - "sequence": 2, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.8878899999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "How Europe has turned its back on Trump: Italy blocks US bomber from landing, Spain closes airspace and Poland 'denies Patriots request' as furious president lashes out at UK and EU", - "publication_date": "2026-03-31T14:39:23", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694313/How-Europe-turned-Trump-Italy-blocks-US-bomber-landing-Spain-closes-airspace-Poland-denies-Patriots-request-furious-president-lashes-UK-EU.html", - "media_type": "news_article", - "sentence": { - "text": "Last week, the head of France's armed forces held a videoconference with 35 nations to discuss restoring movement through the Strait of Hormuz, according to the nation's defence ministry.", - "media_hash": "c683d54b451face1d19e1a10783368b043cb5615fbf36284eeab66d4", - "sequence": 51, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.862985 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "I lost friends in Iraq. Trump is making the same mistakes", - "publication_date": "2026-03-31T11:30:00", - "publication": "inews", - "url": "https://inews.co.uk/news/world/lost-friends-iraq-trump-making-same-mistakes-4325400", - "media_type": "news_article", - "sentence": { - "text": "The Pentagon demands gigantic build-ups costing billions, the generals never seem prepared for what happens after phase one, the soldiers are far too keen to kill people - not just enemy soldiers but enemy civilians.", - "media_hash": "1212d29c22efefc3df925676f1f4a134b8335ebae8d461d77166ff78", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "What would a US invasion of Iran\u2019s Kharg Island look like? (VIDEO)", - "publication_date": "2026-03-31T19:04:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636849-krapivnik-us-invasion-kharg-island-interview/", - "media_type": "news_article", - "sentence": { - "text": "\"They'd have to clear the city, every building... They're gonna have casualties, and a lot of casualties,\" Krapivnik said.", - "media_hash": "aed1f1d994f462d4a327200e273ffca19573c832054e4decc569548e", - "sequence": 21, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Stanislav Krapivnik", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Krapivnik", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.851145 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "Food costs could also surge as fertiliser supplies are choked off, and the region is a huge source of aluminium.", - "media_hash": "df6dba499e58ace5d6bc75552337ce9348dee0fe44f9d859335d54ff", - "sequence": 34, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.810965 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.73922 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Spain closes airspace to US planes involved in attacks on Iran risking fresh row with Trump weeks after he threatened to cut trade with Madrid", - "publication_date": "2026-03-31T05:39:41", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15691257/Spain-closes-airspace-US-planes-involved-attacks-Iran-risking-fresh-row-Trump-weeks-threatened-cut-trade-Madrid.html", - "media_type": "news_article", - "sentence": { - "text": "Such a move would involve raiding Kharg Island, the 'crown jewel' of the regime where 90 per cent of its oil is loaded on to tankers.", - "media_hash": "94da96a267b084b9ba3abea2015b203541ed3e2111de1901bad09313", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.77565 - }, - "demo": {}, - "aapfactcheck": { - "crisis": 2.77565 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to send more troops to Middle East to defend against Iran attacks", - "publication_date": "2026-03-31T16:47:34", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", - "media_type": "news_article", - "sentence": { - "text": "It is believed almost 8,000 Marines and Paratroopers will soon be gathered in the Gulf, with a further 10,000 on standby for deployment.", - "media_hash": "fb35122b086d657bc31e2a389c5ce45d061828adc22454575028fdcd", - "sequence": 17, - "claim_type": [ - "quantity", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.77565 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "Hundreds of flights operated by the flag carrier for Sweden, Denmark and Norway are said to be scrapped.", - "media_hash": "a22bb7170c5ef270e16ce543018cda1e147a5da3d22ca54118e152cb", - "sequence": 48, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.772635 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", - "publication_date": "2026-03-31T11:35:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", - "media_type": "news_article", - "sentence": { - "text": "Some 7 per cent of diesel is imported from the Middle East.", - "media_hash": "578e27a21b237d7f1e196412827b94a5b4f03aaacd8fca029310e3ca", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.72968 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.72968 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "Exactly, which is why we need to have stronger defenses.", - "media_hash": "f50dbdae77bded4b2912917016a84ce3b9e517d7af031ada384b5ca6", - "sequence": 689, - "claimer": [ - { - "name": "Alby Amankona", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.72472 - } - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "The British government would be duty bound to respond in some way militarily to that act of military aggression.", - "media_hash": "aeb10ef1d3305acd96525365b92c2acc7905a3748eea8a9bc351523c", - "sequence": 1230, - "checkworthiness": { - "fullfact": { - "defence": 2.712875 - } - } - } -}, -{ - "title": "Army suspends helicopter crews that flew near Kid Rock's home", - "publication_date": "2026-03-31T20:18:00", - "publication": "skynews", - "url": "https://news.sky.com/story/us-army-suspends-helicopter-crews-that-flew-near-kid-rocks-home-13526628", - "media_type": "news_article", - "sentence": { - "text": "'No survivors' in munitions factory explosion after 16 killed, police say", - "media_hash": "2b2b2978ee4d7dc1684afd3a02128f055f3a037a3687c3c26c376357", - "sequence": 14, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.712725 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran war LIVE: Trump willing to end war 'without opening Strait of Hormuz'", - "publication_date": "2026-03-31T08:15:15", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/uk-world-news/iran-trump-strait-hormuz-live-36947092", - "media_type": "news_article", - "sentence": { - "text": "UN's Interim Force in Lebanon (UNIFIL) wrote online: \"Two UNIFIL peacekeepers were tragically killed in south Lebanon today, when an explosion of unknown origin destroyed their vehicle near Bani Hayyan.", - "media_hash": "f24819f289553cf48d229720825f862e11845c665ddb737c5f3a3bf0", - "sequence": 188, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "United Nations Interim Force in Lebanon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.712725 - } - } - } -}, -{ - "title": "Sailor who sexually assaulted female colleagues on Royal Navy nuclear submarine is jailed and kicked out of Royal Navy", - "publication_date": "2026-03-31T17:49:59", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695277/Sailor-sexually-assaulted-female-colleagues-nuclear-submarine-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "A former Royal Navy officer who put his erect penis through a shower curtain where a female colleague was washing has been jailed for two-and-a-half years.", - "media_hash": "4189ce13aa624df61b5cb8309ad0706d2d16ecb87291066fdcc78f0c", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.712725 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump criticizes European allies for not helping fix...", - "publication_date": "2026-03-31T23:56:37", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696521/Trump-lashes-Europe-not-helping-fix-damage-war-against-Iran-caused.html", - "media_type": "news_article", - "sentence": { - "text": "More than a decade of civil war in Syria led more than 5 million people to flee and a significant number to seek asylum in Europe, with social and political ripples for the continent.", - "media_hash": "b5fe2ca5b0fb5934c2a28e25e42c8b7a8b7a916a9155fe0e54703101", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "And many other countries have now exceeded the 2% target which was set many, many years ago.", - "media_hash": "e5d70c6563ae24b3bfe5d85a29cef0363a86e235c46351b3ce85faf8", - "sequence": 260, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - } - } - } -}, -{ - "title": "Poland won\u2019t divert Patriot air defense systems to Gulf", - "publication_date": "2026-03-31T12:14:04", - "publication": "politico", - "url": "https://www.politico.eu/article/poland-wont-divert-patriot-air-defense-systems-to-gulf/", - "media_type": "news_article", - "sentence": { - "text": "While all allies reached the 2 percent of GDP spending target on defense last year, there's still a big gap in how much countries shell out.", - "media_hash": "15d94bd25e08700ce5984de90210d3ab7ee73291f1225590ffbf9a45", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "NATO", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "A third had workplace difficulties, while 45% had intimate relationship problems.", - "media_hash": "65e4028c73db02322d109891e14d8126feb6166c5a8604454f9d1423", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands more US troops are heading to the Middle East", - "publication_date": "2026-03-31T22:41:45", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", - "media_type": "news_article", - "sentence": { - "text": "The carrier strike group consists of more than 6,000 sailors.", - "media_hash": "11e82103eade43fa5dcc561fb9500e42b16e06fd5905166f706fea75", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", - "media_hash": "a1def2285f1e0feb06a3afc1cdf0fa1116dca20d21e317947546fd6c", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996, - "energy": 2.6987249999999996 - }, - "demo": { - "politics_of_food": 2.6987249999999996 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "But many European nations have increased the amount that they're spending on defense.", - "media_hash": "0cfd6cabad83887a37c2f118adc7d4bd225214fad4f110afaf6ab43d", - "sequence": 257, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6987249999999996 - } - } - } -}, -{ - "title": "The World Tonight", - "publication_date": "2026-03-31T21:01:01+00:00", - "publication": "1-bbc_radio_4", - "url": "/radio-transcript/404462", - "media_type": "transcript", - "sentence": { - "text": "More British troops are being sent to the Middle East, bringing the number of UK service personnel in the region to nearly 1,000.", - "media_hash": "9974847f665a70922f6d989a9e87186940f54a429eea17fb6c6395e6", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.6975749999999996 - } - } - } -}, -{ - "title": "Ben Kentish", - "publication_date": "2026-03-31T21:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404509", - "media_type": "transcript", - "sentence": { - "text": "So far be it for me to start jumping to the defense of Donald Trump but I'm going to on this one when he says it's about time you started looking out for yourself a bit more and stopped relying on us.", - "media_hash": "c112f81f94ebd214eb6612e7397ebee934d53ddc8b5228d2f2dcb1b0", - "sequence": 167, - "checkworthiness": { - "fullfact": { - "defence": 2.658185 - } - } - } -}, -{ - "title": "Moment British warship crew scramble to intercept Russian submarine 'at risk of exploding' before tracking it through English Channel", - "publication_date": "2026-03-31T13:53:09", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694227/Moment-British-warship-crew-scramble-intercept-Russian-submarine-risk-exploding-tracking-English-Channel.html", - "media_type": "news_article", - "sentence": { - "text": "Navigation becomes unsafe in British waters, where any vessel may be subject to piratical seizure.", - "media_hash": "9aa6819283ac265f30b7b7375734c0009bbb2bdf69d7eaabef5af462", - "sequence": 60, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.652965 - }, - "demo": {}, - "aapfactcheck": { - "crisis": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", - "publication_date": "2026-03-31T18:54:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", - "media_type": "news_article", - "sentence": { - "text": "\"Its application to residents of the occupied Palestinian territory would constitute a war crime,\" he said.", - "media_hash": "d62465cec8a2b16d510c977337e203ef19770dc5c2d0d49356e5295e", - "sequence": 87, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Sailor who sexually assaulted female colleagues on Royal Navy nuclear submarine is jailed and kicked out of Royal Navy", - "publication_date": "2026-03-31T17:49:59", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695277/Sailor-sexually-assaulted-female-colleagues-nuclear-submarine-jailed.html", - "media_type": "news_article", - "sentence": { - "text": "He groped other officers without permission, including one attack where he 'put his hand down the back' of a woman's swimming costume 'around her bottom and on to her vagina'.", - "media_hash": "099f1ca5ee32da9ad38b41e666b9e1c3c8a9ce88b8484efa4823d634", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iran remains a stubborn foe after absorbing massive...", - "publication_date": "2026-03-31T15:46:23", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695393/Iran-remains-stubborn-foe-absorbing-massive-US-Israeli-attacks.html", - "media_type": "news_article", - "sentence": { - "text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", - "media_hash": "b899ad4209da633a9fb0ec9b0227641187fc44e0f3084bd923a36af5", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "general": 2.652965, - "defence": 2.652965 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Britain sending air defence systems to Gulf allies as Iranian missile and drone attacks continue to target natural energy infrastructures", - "publication_date": "2026-03-31T15:00:46", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", - "media_type": "news_article", - "sentence": { - "text": "The visit comes as Iran continues its aggressive missile and drone campaign against civilian infrastructure, military sites and critical national assets across the Gulf, with more than 3,500 missiles and drones fired to date.", - "media_hash": "97ed6ee0d1fa86e85f62cd278862ed5765ccb5b0a411e4a00d8102a0", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Iran", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.648555 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "defence": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'A million things could go wrong' - why seizing Iran's uranium would be so risky for the US", - "publication_date": "2026-03-31T23:16:15", - "publication": "bbc", - "url": "https://www.bbc.com/news/articles/cvglv5v4yvpo", - "media_type": "news_article", - "sentence": { - "text": "\"You've got basically a half ton of what's effectively weapons grade uranium that you've got to extricate,\" Ruhe said.", - "media_hash": "1af4041f9a47380bb9f2369bcdd1717310219da65c17a576cb04b25d", - "sequence": 58, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Mick Mulroy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jonathan Ruhe", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.61247 - }, - "demo": {}, - "dev": { - "blah": 2.61247 - }, - "pa-media": {}, - "fullfact-policy": {}, - "mediacorp": {} - } - } -}, -{ - "title": "Taxpayers stung for Defence mistake on Redback vehicles", - "publication_date": "2026-03-31T05:30:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", - "media_type": "news_article", - "sentence": { - "text": "There were two \"very high risks\" to vehicle mobility and lethality that were unresolved as at February.", - "media_hash": "c397431775867042bdde6c73e1a32c72327b14665d135f0f59683a1e", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Defence", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Australian National Audit Office", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth secretly traveled to the Middle East to meet US troops ahead of possible Iran ground invasion", - "publication_date": "2026-03-31T14:10:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694443/Pete-Hegseth-secretly-traveled-Middle-East-meet-US-troops-ahead-possible-Iran-ground-invasion.html", - "media_type": "news_article", - "sentence": { - "text": "Hegseth added: 'Our adversary right now thinks there are 15 different ways we could come at them with boots on the ground.", - "media_hash": "756da0f9d78833a570e90eb1364c1e31d09c9e3169b63676dd171611", - "sequence": 20, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Pete Hegseth", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Thousands more US troops are heading to the Middle East", - "publication_date": "2026-03-31T22:41:45", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", - "media_type": "news_article", - "sentence": { - "text": "While the majority of those troops are part of a rotation of forces planned before the war, some are among roughly 1,500 paratroopers the Trump administration decided to surge into the region last week.", - "media_hash": "f215b4733786582b67b538bfeac13726773de2ab45c9f4b3829601d1", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Trump administration", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Times Radio breakfast", - "publication_date": "2026-03-31T05:00:10+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/403848", - "media_type": "transcript", - "sentence": { - "text": "And either there is one, like there is now, in which case it's unsafe to go in at all, no, very few merchant vessels except the ones that are run or are allowing, and no US warships.", - "media_hash": "6ba46fbbdaebe4fd50c5901619cbd7361467ca20b3b088043de7d683", - "sequence": 1518, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.598275 - } - } - } -}, -{ - "title": "The axis of autocracies is winning", - "publication_date": "2026-03-31T05:00:00", - "publication": "newstatesman", - "url": "https://www.newstatesman.com/international-politics/2026/03/the-axis-of-autocracies-is-winning", - "media_type": "news_article", - "sentence": { - "text": "Ultimately, the biggest boost to the axis of autocracies might be the stress that the Iran war has put on the dynamic between the United States and its allies.", - "media_hash": "9d06a77b396f33f9556846a6974b69686d9f5477f918542ab034404b", - "sequence": 41, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5968999999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "LBC: Tom Swarbrick", - "publication_date": "2026-03-31T15:00:24+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404369", - "media_type": "transcript", - "sentence": { - "text": "And then when we're in the conflict, we are dragged in massively.", - "media_hash": "805b886b5895a2722fa96fb1ce52a0dd7ebd45d26a8ed69ac30f7ed3", - "sequence": 1231, - "checkworthiness": { - "fullfact": { - "defence": 2.58644 - } - } - } -}, -{ - "title": "Taxpayers stung for Defence mistake on Redback vehicles", - "publication_date": "2026-03-31T05:30:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", - "media_type": "news_article", - "sentence": { - "text": "Defence had paid Hanwha a total of $148,129 in interest penalties as at October 2025, with $335,889 in payments remaining, according to the audit office report released on Monday.", - "media_hash": "bd4a39bf1a537ca73b0bbed46003e07d706e9867c20be83f2fa51f71", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Defence", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Australian National Audit Office", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Hanwha", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth secretly traveled to the Middle East to meet US troops ahead of possible Iran ground invasion", - "publication_date": "2026-03-31T14:10:44", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694443/Pete-Hegseth-secretly-traveled-Middle-East-meet-US-troops-ahead-possible-Iran-ground-invasion.html", - "media_type": "news_article", - "sentence": { - "text": "Special operations forces and conventional infantry units could be deployed if the President chooses to escalate the war.", - "media_hash": "85d5ed32c0a043e86977383a45b8538c55627cdd054c7dcbd2049b87", - "sequence": 14, - "checkworthiness": { - "fullfact": { - "defence": 2.5765849999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "Trump has maintained the US has 'plenty' jet fuel, but airline bosses say firms are facing an 'existential challenge' with depleting supply pushing up the cost of flying.", - "media_hash": "30ff0bdcb41dca9c46a6d52c90089870472cfc4a0c35766dd5d7b1bd", - "sequence": 5, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "airline bosses", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.56732 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "maldita": { - "trending": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "The military's statistics generally reflect suicide rates for society as a whole, when adjusted for age and gender, because a majority of those in the military are young and male.", - "media_hash": "51b1f1f86f5c8ec704e9b15ae34190797c09c4621152bbe4b7ea60a1", - "sequence": 6, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.56707 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "Diesel and petrol prices are running at the highest levels since 2022, and projections this morning suggest typical energy bills will increase by \u00a3288 in July when the cap next changes.", - "media_hash": "b294392da97c63ba26f35a368f2a5766f56da29fb3f19debf00f3f90", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.556405 - }, - "demo": {}, - "aapfactcheck": { - "economy": 2.7091849999999997 - }, - "pa-media": {}, - "maldita": { - "energy": 4.981275 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Trump criticizes European allies for not helping fix...", - "publication_date": "2026-03-31T23:56:37", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696521/Trump-lashes-Europe-not-helping-fix-damage-war-against-Iran-caused.html", - "media_type": "news_article", - "sentence": { - "text": "The S&P 500 surged 2.9% to its biggest gain since last spring, while the Dow industrials advanced more than 2.5% as doubt about a possible end to the war swung back to hope on Wall Street.", - "media_hash": "4a9cf23b2585b917198c94d6484540f37b5bcbe1f179cb76e39d2ed7", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Sir Keir Starmer discussed the situation with Syrian President Ahmed al-Sharaa in Downing Street.", - "media_hash": "8a1cf9c1b45da984bc089bf6ae50fccc40cb23e847d7996249a5dd57", - "sequence": 18, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "starmer": 2.5503549999999997, - "defence": 2.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "US seeks to pass the buck on Hormuz crisis", - "publication_date": "2026-03-31T08:39:02", - "publication": "rtuk", - "url": "https://www.rt.com/news/636812-homuz-control-coalition-rubio/", - "media_type": "news_article", - "sentence": { - "text": "Beijing has boosted the share of non-fossil energy sources in its mix from 26% a decade ago to 40% now, the analysis said.", - "media_hash": "4251d86df8776ad9ed3c1daf67537c1b953de7a03e4007a35e0dd1b5", - "sequence": 28, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Beijing", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK sends extra troops and air defence systems to Gulf allies to bolster protection against Iranian suicide drones", - "publication_date": "2026-03-31T15:41:43", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15694771/Britain-sending-air-defence-systems-Gulf-allies-Iranian-missile-drone-attacks-continue-target-natural-energy-infrastructures.html", - "media_type": "news_article", - "sentence": { - "text": "Have racked up more than 1,280 hours protecting British nationals, bases and partners.", - "media_hash": "f7d3e6e59f136d47e5afe212b7e74628b96b0a4a31cfc75ef6e4e921", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "defence": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "NATO without America? A slow shift is already underway", - "publication_date": "2026-03-31T22:19:52", - "publication": "rtuk", - "url": "https://www.rt.com/news/636893-nato-without-america-shift/", - "media_type": "news_article", - "sentence": { - "text": "The restriction on cutting troop levels below 76,000 slows the process, but doesn't change its direction.", - "media_hash": "11ced93f561da8ed5ef3f797ee3ea558eb4dc933ecb55cecfe256fd1", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997, - "trending": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK to send more troops to Middle East to defend against Iran attacks", - "publication_date": "2026-03-31T16:47:34", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/world-news/uk-send-more-troops-middle-36950882", - "media_type": "news_article", - "sentence": { - "text": "At least 3,500 Marines have arrived on USS Tripoli , an amphibious assault warship.", - "media_hash": "9c9c16a2e0b74ba772da26b00186caae4ff4fa2b7ef8d12994b0486c", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "The Government has announced a \u00a353 million package of support for heating oil customers.", - "media_hash": "017c1d1958625ae7146a2e5e63ea749445a3827edbd9c72099b88717", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "I'm telling to you, sir, more than 10 verbal notes, official notes, we declared to the FCDO, we sent to the FCDO to give me some to give us some evidences.", - "media_hash": "b7f9bcebf3a7e529e94e3b56808c5b2e15c0c6e12e5655c0f0969be1", - "sequence": 553, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - } - } - } -}, -{ - "title": "Israeli major 'made $160,000 in Polymarket bet using classified information on Israeli bombing campaign in Iran'", - "publication_date": "2026-03-31T10:58:48", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693941/Israeli-major-160-000-Polymarket-bet-using-classified-information-Israeli-bombing-campaign-Iran.html", - "media_type": "news_article", - "sentence": { - "text": "The pair are accused of pocketing $162,663 in winnings, which they agreed to split, with the reservist's share transferred via cryptocurrency.", - "media_hash": "d87634a34a912f3f8a556ba90fc7dfb1093a20e719bc76c8015a6fbf", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Israeli air force major", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Prosecutors", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "crisis": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", - "publication_date": "2026-03-31T11:35:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", - "media_type": "news_article", - "sentence": { - "text": "Ministers also cite how around 90 per cent of the crude oil refined in the UK was imported in 2025, but only around 1 per cent of this came from the Middle East.", - "media_hash": "8fae6c26d8b7fc5c5a3aff9e944f3ee28612cf68c3ec9ca612cb31e0", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Military suicides fell in 2024 but long-term rate for...", - "publication_date": "2026-03-31T23:46:25", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696545/Military-suicides-fell-2024-long-term-rate-active-duty-troops-rising-Pentagon-says.html", - "media_type": "news_article", - "sentence": { - "text": "The number of active duty service members who died by suicide that year was 302, while 64 were reservists and 105 were in the National Guard.", - "media_hash": "15135a4a7d212e3acd6d767326ea27ebaded0c5a1b45b13e6f999d34", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Pentagon", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "The price most households pay for energy under regulator Ofgem's cap will fall by \u00a3117-a-year to \u00a31,641 from Wednesday, driven by the Government's promise to cut bills by an average of \u00a3150 by removing green subsidies.", - "media_hash": "db7ecd8c22514c9889bf0c4aa479e5eee666cf1216d026df25f414b7", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Airlines start racheting up their flight prices after Trump tells the UK 'get your own oil' and jet fuel runs out", - "publication_date": "2026-03-31T15:08:09", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694911/Airlines-flight-prices-Trump-UK-oil-jet-fuel.html", - "media_type": "news_article", - "sentence": { - "text": "The UK is currently sourcing at least half its jet fuel from the Middle East amid a fall in domestic refining and a halt on Russian imports since the Ukraine invasion in 2022.", - "media_hash": "6fb8903821c1f83a60b129aa49d268da5dc6c457fb264083626a0e2b", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 4.545945 - }, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "And they were able to get about three to four vessels out a day, uh, whereas the total is about 135 when the straits is functioning normally.", - "media_hash": "e11bcb2f2d4e1ce0c81988540c4e720ead630763c0083af44be53ade", - "sequence": 492, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - } - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional \u00a3409 million for diesel and \u00a3135 million for petrol.", - "media_hash": "46de5d49efd8605e12c488d0ee2b81d7fe00675efb7ed39fa7a55a71", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "RAC Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997, - "energy": 2.5459449999999997 - }, - "demo": { - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "John Pienaar with Times Radio Drive", - "publication_date": "2026-03-31T15:00:00+00:00", - "publication": "1-times_radio", - "url": "/radio-transcript/404363", - "media_type": "transcript", - "sentence": { - "text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", - "media_hash": "d890ddea0a76a50b14701aad4ced28675909d7311f94cafc9555937b", - "sequence": 461, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "health": 2.5459449999999997, - "defence": 2.5459449999999997 - } - } - } -}, -{ - "title": "Trump voices frustration with allies as Iran war and...", - "publication_date": "2026-03-31T13:26:22", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15693641/US-attacks-Iranian-nuclear-site-Tehran-hits-oil-tanker-Dubai-coast.html", - "media_type": "news_article", - "sentence": { - "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel Tuesday, up more than 45% since the war started Feb. 28.", - "media_hash": "f2ca3d550620be92b84e712b23de1e0726c2394cbf66d3aeaf7b1b1a", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": { - "environment": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Poland won\u2019t divert Patriot air defense systems to Gulf", - "publication_date": "2026-03-31T12:14:04", - "publication": "politico", - "url": "https://www.politico.eu/article/poland-wont-divert-patriot-air-defense-systems-to-gulf/", - "media_type": "news_article", - "sentence": { - "text": "NATO countries hit 2 percent of GDP spending target", - "media_hash": "bb1ae91e9f73791a47ac541982b0b717f24c9eb252b2a6c3fc445e60", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Diesel prices soar by 40p to 183p a litre - amid plans to give key workers priority if pumps run dry", - "publication_date": "2026-03-31T11:35:59", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15694005/Diesel-petrol-prices-soar-Iran-war-bills-UK.html", - "media_type": "news_article", - "sentence": { - "text": "This final measure was enacted on March 11 as part of the UK's coordinated release with the International Energy Agency (IEA) of 400million barrels of oil to the market.", - "media_hash": "ef6c06034c2c942e7184e5e56f023ad19128b79fcfe92554e43dbc36", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": { - "economy": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pentagon denies claim Pete Hegseth's broker attempted to make large investment in major defence companies weeks before US attacked Iran", - "publication_date": "2026-03-31T08:53:33", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15693993/Pentagon-denies-claim-Pete-Hegseths-broker-attempted-investment-defence-companies-Iran.html", - "media_type": "news_article", - "sentence": { - "text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started on February 28, when the U.S. and Israel attacked Iran.", - "media_hash": "10dd4214283bc8aaa9898cd33ae4b3e050fe21621c420b604b8cb4db", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Taxpayers stung for Defence mistake on Redback vehicles", - "publication_date": "2026-03-31T05:30:39", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/aap/article-15693617/Taxpayers-stung-Defence-mistake-Redback-vehicles.html", - "media_type": "news_article", - "sentence": { - "text": "Taxpayers will be slugged hundreds of thousands of dollars in penalty payments after Defence bungled the procurement of a $7 billion contract for infantry fighting vehicles.", - "media_hash": "45001b610758576f7e12f715e1480c8c333de58de896591c47a52c3d", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Defence", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Iain Dale", - "publication_date": "2026-03-31T18:00:00+00:00", - "publication": "1-lbc", - "url": "/radio-transcript/404449", - "media_type": "transcript", - "sentence": { - "text": "We were the number two contributor to NATO, we're now something like number 12.", - "media_hash": "f7b080afbd2b967fecaf5ca3ebc3d8c98c5d5c062f2428ff20763bf0", - "sequence": 259, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "defence": 2.5459449999999997 - } - } - } -}, -{ - "title": "Thousands more US troops are heading to the Middle East", - "publication_date": "2026-03-31T22:41:45", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15696427/Thousands-US-troops-heading-Middle-East.html", - "media_type": "news_article", - "sentence": { - "text": "WASHINGTON (AP) - Thousands of additional U.S. troops are heading to the Middle East as the Trump administration has insisted that progress has been made in talks with Iran and has threatened to escalate the war if a deal is not reached soon.", - "media_hash": "f62cef42d5fbbf1c5032d77770290cd5405684b63c44b537c15c3ff1", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Trump administration", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "U.S. officials", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.540725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Pete Hegseth says US 'knows exactly what Russia and China are doing' amid claims they are supporting Iran - live updates", - "publication_date": "2026-03-31T18:54:57", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693703/us-israel-iran-war-trump-gulf-oil-netanyahu-live-updates.html", - "media_type": "news_article", - "sentence": { - "text": "The United Nations rights chief has slammed the Israeli parliament's approval of a 'deeply discriminatory' new death penalty bill, warning that applying it in the occupied Palestinian territory 'would constitute a war crime'.", - "media_hash": "b539e1b4d2d84043de77ea4f6a014a8f791ea95750023ed25d45455c", - "sequence": 85, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "United Nations rights chief", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.538635 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Donald Trump tells UK to secure Strait of Hormuz and...", - "publication_date": "2026-03-31T16:04:19", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694497/Trump-tells-UK-secure-Strait-Hormuz-oil.html", - "media_type": "news_article", - "sentence": { - "text": "Mr Trump wrote: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", - "media_hash": "f8468d77e5b23aec48a007549c1286131cda01a54d8ea4bd015dd441", - "sequence": 7, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "trending": 2.516675, - "defence": 2.516675 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "More UK troops to be sent to Middle East, defence secretary announces", - "publication_date": "2026-03-31T15:49:58", - "publication": "bbc-politics", - "url": "https://www.bbc.com/news/articles/c7vq76g45rvo", - "media_type": "news_article", - "sentence": { - "text": "In a post on his social media platform Truth Social, the US president said: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", - "media_hash": "6cb02273de63c798acb602f2875c74b9622b0d3d7ff2f9bb4e5db9fb", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "US President Donald Trump", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "defence": 2.516675 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", - "publication_date": "2026-03-31T12:42:24", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", - "media_type": "news_article", - "sentence": { - "text": "According to a report from the Los Angeles Homeless Services Authority (LAHSA), homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", - "media_hash": "9bf885121597909d3bd8e5a169712db49194ab3e21618d3c41953048", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.970815 - }, - "demo": {}, - "aapfactcheck": { - "polls": 2.970815 - }, - "pa-media": {}, - "maldita": { - "housing": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", - "publication_date": "2026-03-31T12:42:24", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", - "media_type": "news_article", - "sentence": { - "text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured over $500 million into fixing it", - "media_hash": "087e2d32ba3ad2e794daae5c83d49c3eec400bd17cab584e8a4b6448", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.970815 - }, - "demo": {}, - "aapfactcheck": { - "polls": 2.970815 - }, - "pa-media": {}, - "maldita": { - "housing": 4.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", - "publication_date": "2026-03-31T20:50:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", - "media_type": "news_article", - "sentence": { - "text": "According to a report from the Los Angeles Homeless Services Authority, homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", - "media_hash": "91c69aae1cf0d8364ac9b652f06077ff16b9f5338f8a8f598d77f7fd", - "sequence": 39, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Los Angeles Homeless Services Authority", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 4.545945 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "The data shows that while the population of people experiencing homelessness in Savannah rose from 579 in 2024 to 628 in 2025, the number of people living unsheltered decreased, the Current reports.", - "media_hash": "6a359adb5432dc9862d41583ba59682a020ce467bb3820511ae39c28", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 4.970815 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "\"No party has put forward a credible plan to deliver the homes Scotland needs, meaning politicians of all parties are planning for more people to be pushed into homelessness.", - "media_hash": "82bba6cbce6224e1370260c2b77a15abf4b85efa45b99b1a4cbb9411", - "sequence": 24, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Shelter Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alison Watson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.751055 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", - "media_hash": "100af847f6668a7d1f2fafdc857572d77000e15ff174bea3397f1ecb", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.698725, - "scottish_elections": 4.698725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Fewer houses are being built across Scotland.", - "media_hash": "342b75aeb205a5d36a1e5c7c142c8883d37a1d582cb0445055524184", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.5769, - "scottish_elections": 4.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "In 2025 the Affordable Housing Supply Programme delivered 6,289 affordable completed homes, approved 5,833 homes, and started 5,856 homes.", - "media_hash": "c4b32351b419971797ded9ff9459ac2311d2c3217bca2d4267e53312", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Annual decreases were reported for approvals (9% decrease), starts (15% decrease), and completions (25% decrease) of homes provided via the Affordable Housing Supply Programme between 2024 and 2025.", - "media_hash": "9ba5b7d292d2423e87e106ee206f87f25abd2731c310fcf8b6044b41", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "media_hash": "97e06701f4afc3537fff344c720bd9dfc26d4666a6cfd00dd610558e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another \u00a3150m added (to the \u00a31.1bn forecast).", - "media_hash": "a548162e66678724fc52130304025c60248738e32de1e97e6410abe4", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "senedd_election": 4.545945 - } - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "The First Minister added that his Government had put more than \u00a3900 million into the affordable housing sector for the next financial year and there was an uptick in housebuilding in recent months.", - "media_hash": "bd8e151ea63327a4168dbc13e8883cb46688ad243e2b7e26fac864b8", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Scottish social housing builds fall to lowest level since 2014", - "media_hash": "e26ab068c6cacaca523ace35ae70e3cc60ef0b5b6a0e67925aa64332", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", - "media_hash": "ce125bfcca3bd148604aa672cc71ccb57b435addd135db195f8303f6", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", - "media_hash": "8d924471eb470cdf421ef9d21a7ed9335d69c43f9fbaf1f019a59645", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "4 charged in corruption investigation linked to NYC...", - "publication_date": "2026-03-31T19:41:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "Prosecutors said the nonprofit's executive director, Roberto Samedy, 50, and its former board chairman, Jean Ronald Tirelus, 50, embezzled from the organization - at one point pocketing $800,000 earmarked for \"economic growth and affordable housing\" in distressed Brooklyn neighborhoods.", - "media_hash": "2de7d7055eb86997252f3c89ae24c228967f22f40abfdea2b251d1cd", - "sequence": 8, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Roberto Samedy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jean Ronald Tirelus", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.486035 - }, - "demo": { - "politics": 0.0 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Indirect investments from the Savannah Affordable Housing fund further helped support applications for three low-income housing tax credits, service centers and infrastructure.", - "media_hash": "b116590dae7d0b4826ec48e18146a5fbc4649f7a414c0f2ffea6d44d", - "sequence": 48, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.3787199999999995 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 4.3787199999999995 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Across the network, Transport for Wales, via the Welsh Government, has invested \u00a3800m in brand new rolling stock.", - "media_hash": "deb1d28b7151066ba26d0a716bbe5fc4088a6e5b57b1e2b1111364a7", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.3787199999999995, - "senedd_election": 4.3787199999999995 - } - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Those tax credits will now help developers build 41 new affordable units for people experiencing homelessness, officials said.", - "media_hash": "c325908e7afe7675ffaf70bc58457e8122a47962ea17c7e6ada4a54b", - "sequence": 49, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.347765 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 4.347765 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The dearth of affordable housing made the state \u0301s Division of Housing move quickly on releasing AB540 funds.", - "media_hash": "75c1db372e88a57d88933bb7e4195b63ff74d48eb676b7974c0be271", - "sequence": 31, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.347765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", - "media_hash": "5efbf740e399c74f90322a3b727665855b05d792d9fa5305688acf39", - "sequence": 12, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.347765, - "senedd_election": 4.347765 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around \u00a31.3bn, nearly double its initial estimate.", - "media_hash": "19984977ee13d7b9a89dca728c6ae1fca5e898f958574fe7fc979f09", - "sequence": 1, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.224345, - "senedd_election": 4.224345 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", - "media_hash": "723a4073ac83b157ce9ce2c829fef1c007c0ffa8387deec8bb340c13", - "sequence": 18, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 4.213945, - "senedd_election": 4.213945 - } - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "There was also a fall in affordable housing.", - "media_hash": "56edfb468ea662bf109b146089a3d69be53afaea35c2ab5f2944a679", - "sequence": 24, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.187915 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Hyperwoke Democrat who shrugs shoulders at social decay is on track to beat Karen Bass to be next mayor of LA, shock new poll claims", - "publication_date": "2026-03-31T12:42:24", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15694369/Los-Angeles-Mayor-Nithya-Raman-Karen-Bass-poll.html", - "media_type": "news_article", - "sentence": { - "text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured huge funds into fixing it.", - "media_hash": "4d87519ef921210866eb22bb2e86d7cecbb9d66a7a41f898383e0b1f", - "sequence": 25, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.173405 - }, - "demo": {}, - "aapfactcheck": { - "polls": 0.0 - }, - "pa-media": {}, - "maldita": { - "housing": 3.748535 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "An idyllic city known for its historic buildings and Southern charm has been beset by homelessness and drug use under a Democratic mayor.", - "media_hash": "87ec4b136c5ff738135c773b9f4f9d41f9f8242862c3ec2c8efdfef4", - "sequence": 2, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.10166 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 4.10166 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", - "media_hash": "8bfca18fbf84b97920d21b6ed7a0e629c08aa6a8109b2671f9818000", - "sequence": 17, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 4.061165, - "senedd_election": 4.061165 - } - } - } -}, -{ - "title": "The Guardian view on Welsh language learning: cultural shifts can deliver a bright future for Cymraeg | Editorial", - "publication_date": "2026-03-31T18:04:14", - "publication": "guardian-politics", - "url": "https://www.theguardian.com/commentisfree/2026/mar/31/the-guardian-view-on-welsh-language-learning-cultural-shifts-can-deliver-a-bright-future-for-cymraeg", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, in heartland regions such as Anglesey (Ynys M\u00f4n) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", - "media_hash": "8ec504c78c4850ebad34b6394d97b1703c8b1447ea2580eb0eb21304", - "sequence": 18, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.975225, - "clinical_health": 3.975225 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "California considering a first of its kind idea to...", - "publication_date": "2026-03-31T17:50:57", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", - "media_type": "news_article", - "sentence": { - "text": "A bill last year that would have replicated the model for affordable housing projects died without a full vote in the Assembly.", - "media_hash": "959b2da550377157f494fd9163a96698b8ce59623f4e6dea553e7231", - "sequence": 44, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.920805 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Authorities have also implemented a City of Savannah's Top 10 Most Wanted list, the mayor said, as he applauded the Dundee Cottages project comprising 39 new cottages and 16 brand new apartments for people experiencing homelessness.", - "media_hash": "2900df147bb5f0cb97dc906f3bf94ddb08fe494a7d12488b157bda50", - "sequence": 46, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.862985 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.862985 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", - "media_type": "news_article", - "sentence": { - "text": "Just days before the Labour Yimby curry night, to the dismay of some councils and social housing groups, Reed announced \"emergency measures\" to cut the amount of affordable housing that developers were required to build in London.", - "media_hash": "47236be493e2a9fc654916db26c3d5f6faf3befab2d53e438d3477d2", - "sequence": 35, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.748535 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", - "media_hash": "dd7fa4c05e4853cd8e48af38f594720ac09b3e705427a66cdefcdc09", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.748535, - "senedd_election": 3.748535 - } - } - } -}, -{ - "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", - "publication_date": "2026-03-31T15:52:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", - "media_type": "news_article", - "sentence": { - "text": "The Powderhall project in Edinburgh, centred on the grounds of a former waste transfer station, bowling greens and adjacent stables, will deliver a mix of affordable housing, community facilities and green space as part of a long-term transformation.", - "media_hash": "745e9ff6ca52c77808418587f7dbe76c4748f57bbb0c1813b3b58c77", - "sequence": 2, - "claim_type": [ - "predictions" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.74449 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", - "media_hash": "2673585d7ff5fa0234fc017c81f719afa40d136638c868b1624c1fff", - "sequence": 35, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.739565, - "senedd_election": 3.739565 - } - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "The West Wemyss mass evictions controversy could be the first of many unless politicians act, a major homelessness charity has warned.", - "media_hash": "637f793bb3c2c14b191057df7d15026690401da1d32ecfcb3e7e7ab2", - "sequence": 5, - "claim_type": [ - "correlation", - "predictions" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.7135350000000003 - } - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "\"It's all because we find it too difficult to build the volume of social housing that would change the game.", - "media_hash": "455e88a8807088da6c1aa5eb38e8960cd22edf36b245995a7b8cf7d0", - "sequence": 29, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Gordon Llewellyn-McRae", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.703135 - } - } - } -}, -{ - "title": "Scottish tech accelerator that\u2019s helped create 400 jobs backs three new ventures", - "publication_date": "2026-03-31T11:32:07", - "publication": "scotsman", - "url": "https://www.scotsman.com/business/scottish-tech-accelerator-thats-helped-create-400-jobs-backs-three-new-ventures-6530109", - "media_type": "news_article", - "sentence": { - "text": "One is giving people in social housing the right to a healthy, sustainable home.", - "media_hash": "9e0ff278c501499dd6606a62a2b2fb49148812237370b3c507aff45a", - "sequence": 25, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Paul Wilson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.703135, - "housing": 3.703135 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T06:20:06+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038863891778691276", - "media_type": "social_post", - "sentence": { - "text": "'America's prettiest city' beset by homelessness and drugs nightmare under woke mayor: 'They're injecting in broad daylight' https://t.co/UTYgfC7MqM", - "media_hash": "043c103d37dd44d07eedf5da0f4fc6fd89cfeff972f4ee5020d4a852", - "sequence": 0, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "woke mayor", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.62201 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", - "media_hash": "58358ea3e614030f18193aa7f5e2368d39bc5a42b77fe1d4e68fa826", - "sequence": 4, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.58131, - "senedd_election": 3.58131 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", - "media_hash": "27e4a3f1581447eb536556e314efc4eb5694e2819e33dede6df8ffbe", - "sequence": 26, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.58131, - "senedd_election": 3.58131 - } - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "Fife Council housing spokesperson Judy Hamilton gave an update on new builds.", - "media_hash": "a39c58e0067e0eb998ca48d93cf4e1144af7b818b4f3ddd73f6cd8d0", - "sequence": 30, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.58131 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", - "media_hash": "2148e03f5a316c96d45041dd4c587be626eebd57a33651a007df1db5", - "sequence": 28, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.566845, - "senedd_election": 3.566845 - } - } - } -}, -{ - "title": "California considering a first of its kind idea to...", - "publication_date": "2026-03-31T17:50:57", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", - "media_type": "news_article", - "sentence": { - "text": "The housing factory surety guarantee idea is \"super innovative,\" said Jan Lindenthal-Cox, chief investment officer at the San Francisco Housing Accelerator Fund, a nonprofit that directs philanthropic money toward cost-cutting affordable housing projects.", - "media_hash": "6bc141b7fcc824bbf26b982fbaf5f336dcc9b0202044e5ae56a1a823", - "sequence": 45, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jan Lindenthal-Cox", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "San Francisco Housing Accelerator Fund", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", - "publication_date": "2026-03-31T15:52:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", - "media_type": "news_article", - "sentence": { - "text": "Councillor Tim Pogson, convener for housing, homelessness and fair work at the City of Edinburgh Council, said: \"This is a very exciting moment for the Powderhall regeneration.", - "media_hash": "7e3784f5a8002136e5f358cd287be4a8d3aa2a5c1a13b3501190f3e4", - "sequence": 9, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Councillor Tim Pogson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "City of Edinburgh Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "When it was built in the late 1960s and early 70s, its concrete expanses and 'walkways in the sky' were touted as a modern British success story, where the poor were to be supported by access to decent social housing.", - "media_hash": "906c850ff4b5e8ab88b15d23f649d99194f88ef73472a2807d8a10ec", - "sequence": 73, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "housing": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "The homelessness charity says other corporate landlords will be watching the West Wemyss situation with interest.", - "media_hash": "4df64ce49ed06382c750558eb7ba3539ce685bc74a6f11b518400be6", - "sequence": 1, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - } - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", - "media_hash": "225f398a9c173c03c7d4f4abbf2b8ffc518f20852ecdc157df373c45", - "sequence": 60, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.5503549999999997, - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "\"So, there has to be a combination of interventions: the Government's affordable housing programme; the attractiveness of Scotland for investment purposes; and also, for example, bring void accommodation into use by the public sector.\"", - "media_hash": "00c4cc6c8d5e63535f13a351afda531f5229386d8ee5f76e824e08ce", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", - "publication_date": "2026-03-31T20:50:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", - "media_type": "news_article", - "sentence": { - "text": "Raman has been labeled a 'progressive' member of city council, whose main policies involve affordability and tackling the homelessness crisis.", - "media_hash": "d385d1083ce773f4482f04d1f236242ee14398d34f74a2269b986542", - "sequence": 21, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Disturbing new poll shows Los Angeles residents want an even WOKER mayor than Karen Bass in upcoming election", - "publication_date": "2026-03-31T20:50:29", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15695847/los-angeles-mayor-karen-bass-election-poll.html", - "media_type": "news_article", - "sentence": { - "text": "Bass, on the other hand, was labeled as an incumbent and a 'veteran legislator' who is also focusing on homelessness.", - "media_hash": "b06a32eba819861e231c8307fb2abd385814705e4c27e7eec0bf6afb", - "sequence": 25, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", - "media_hash": "f53b2ae83cbb151ae7c9721d1b15c6a5e5ff13daef3d596f7c5f43c3", - "sequence": 13, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alison Watson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Shelter Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997, - "scottish_elections": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Reform UK eye historic upset to hit Labour where it would hit hardest", - "publication_date": "2026-03-31T07:23:00", - "publication": "express-showbiz", - "url": "https://www.express.co.uk/news/politics/2188571/reform-uk-eye-historic-upset", - "media_type": "news_article", - "sentence": { - "text": "In London and other major cities Reform of course needs to make a pitch on the cost of living, including affordable housing.", - "media_hash": "25a19995e7a21b79eaead0980dd733de5dcbda3ee75b8fe9d7a20a7e", - "sequence": 10, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Reform UK", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "A major operation was launched by the council in partnership with police, homelessness charities, gang crime experts and drug specialists to tackle the 'out of control' antisocial behaviour.", - "media_hash": "1761f70f8bd6b38af4bc9af26279e1597952b2371d355d792d4c5874", - "sequence": 48, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", - "media_type": "news_article", - "sentence": { - "text": "The move followed a meeting between government housing officials and several firms represented by the LPDF - including Barratt and Vistry Group - in which developers asked for affordable housing requirements to be slashed.", - "media_hash": "40886c64a87e3ec529a2fec24d28e090dcd8e180118ce8f6e614120c", - "sequence": 36, - "claim_type": [ - "correlation", - "opinion", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Housing Secretary had \u2018curry night\u2019 with developers who could benefit from planning rules", - "publication_date": "2026-03-31T11:00:00", - "publication": "inews", - "url": "https://inews.co.uk/news/housing-ministers-curry-night-developers-benefit-new-planning-rules-4229556", - "media_type": "news_article", - "sentence": { - "text": "A number of social housing groups and homeless charities who spoke to The i Paper said they are concerned at not being granted the same access to the Housing Secretary as private developers.", - "media_hash": "053bf5a2d7d80566d5424d1ae4e02805940916ae7321272d6548c00a", - "sequence": 43, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "social housing groups", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "homeless charities", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", - "media_hash": "02befcea8b75930565027e0a883c97662112260256f7e28092732a76", - "sequence": 33, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997, - "senedd_election": 3.5503549999999997 - } - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "There has to be a combination of interventions - the Government's affordable housing programme, the attractiveness of Scotland for investment purposes and, also, for example, bring void accommodation into use by the public sector", - "media_hash": "8fab3bdd5f239138c0d3250ebe6dc3c3127571dcdc13dcd439adaadf", - "sequence": 11, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "'With a plan like this, we can actually really effectively remove and resolve homelessness,' added Stephanie Kaple, the Executive Director of the Savannah Chatham County Interagency Council on Homelessness, the lead organization in the plan's development.", - "media_hash": "884155499e1e34bdbb2272a74d0c68f302ebf9bea6a42cba52961063", - "sequence": 18, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jennifer DuLong", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Stephanie Kaple", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Savannah Chatham County Interagency Council on Homelessness", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5503549999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.5503549999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "They also put together a five-year strategic plan to end homelessness in the city.", - "media_hash": "14319656ce93d52619f16dc3b4c6d96aff776769e57d41280aed8465", - "sequence": 16, - "claim_type": [ - "quantity", - "predictions", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.541385 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.541385 - }, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T11:29:34+00:00", - "publication": "4e754715-42d0-4bbb-87e4-3341577480e5", - "url": "https://x.com/sinnfeinireland/status/2038941769794982143", - "media_type": "social_post", - "sentence": { - "text": "This government wants you to believe it's normal that over 17,000 people, including nearly 5,500 children, are now homeless.", - "media_hash": "0daa5ed5073496a79d51a73a6ba3fd62795538250c217965d478d377", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.5175099999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", - "media_hash": "cd06ed5004f404717f563a41c98f8290b205fbedbe0dfdd6c61f7e25", - "sequence": 16, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.436025, - "senedd_election": 3.436025 - } - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The Legislature authorized a wide-ranging study in 2017 that determined the state \u0301s supply of affordable housing was in crisis.", - "media_hash": "b136e3deb59dfc61cb96b7e400403e397168d23dd35f2852ba336994", - "sequence": 41, - "claim_type": [ - "rules", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.436025 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", - "media_hash": "a5a6e1aec007a74d87cdb081bdc25bf760fbca0b00fa022854411817", - "sequence": 31, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.419705, - "senedd_election": 3.419705 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", - "media_hash": "39bf9f789c5f9f7143aab76d89496a5d9e29741c06422b5be5f24ed8", - "sequence": 30, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.414065, - "senedd_election": 3.414065 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", - "media_hash": "f16a963461e2d5b708e3a168a2feb7b4990a19962140cf19fb92600e", - "sequence": 32, - "claim_type": [ - "predictions", - "other" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.381535, - "senedd_election": 3.381535 - } - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Yet problems have persisted, as residents started mixing Xylazine, also known as tranq, with fentanyl in February 2025 for a stronger high, according to WSAV.", - "media_hash": "217c1beb9365f8b61b4f1a86a7f298b37dbdbe2a5c772aa09c398d20", - "sequence": 19, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.3239400000000003 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 3.450375 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Homeless numbers are rising every month, demand from the council on housing associations for temporary accommodation means more than half of all lets are for people who are homeless.", - "media_hash": "9a5a41c378cec28435b87dd423ab7803067aefadce266cf8efcc8741", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Glasgow City Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.2500299999999998 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T13:04:14+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/PeterKLamb/status/2038965596130324762", - "media_type": "social_post", - "sentence": { - "text": "RT @ChamberVoice: We've spent \u00a320bn on fibre - yet 90% of social homes are still offline.", - "media_hash": "a23ec8e18dcb55d5cc2df09fad8d06c2dff09277039462c99bcb5383", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "ChamberVoice", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.123595 - } - } - } -}, -{ - "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", - "publication_date": "2026-03-31T23:00:31", - "publication": "guardian-society", - "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", - "media_type": "news_article", - "sentence": { - "text": "In recent years, the share of this group - non-graduates in their late 20s - who are in private rented accommodation, which can be costly and insecure, has doubled, from 16% in 1998-99, to 33% in 2023-24.", - "media_hash": "4329a591e6fdcd227c32965f6ca1b4c2434d2a61e04ff7803106fde3", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Resolution Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Only 14 affordable rental units are available for every 100 extremely low-income households.", - "media_hash": "7d27753df9f6f12ebb22f078079eda97b89cc6a84caeb45d24609562", - "sequence": 26, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.123595 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "4 charged in corruption investigation linked to NYC...", - "publication_date": "2026-03-31T19:41:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "The pair also received more than $200,000 in kickbacks in exchange for steering contracts worth millions of dollars to businesses controlled by Edouardo St. Fort and Miguel Jorge, the indictment said.", - "media_hash": "269efae657657796f554837fe66846c34c198e037df2a0a136313332", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Roberto Samedy", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Jean Ronald Tirelus", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Edouardo St. Fort", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Miguel Jorge", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 3.09725 - }, - "demo": { - "politics": 3.09725 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "It is the lowest in six years.", - "media_hash": "8735c440d036f8666daa45053b5344401f4ff428aa1c254222a5d817", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 3.09725 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "4 charged in corruption investigation linked to NYC...", - "publication_date": "2026-03-31T19:41:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "St. Fort and Jorge were charged with federal program bribery and related charges, and face up to 10 years each.", - "media_hash": "17a5d845b48cec7c46fab107ebbec877a67587b3b032557ed91900de", - "sequence": 23, - "checkworthiness": { - "fullfact": { - "housing": 3.083055 - }, - "demo": { - "politics": 2.7846200000000003 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Scotsman hustings RECAP: Politicians battle it out in the race for Holyrood 2026", - "publication_date": "2026-03-31T19:10:45", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/scotsman-hustings-recap-politicians-battle-it-out-in-the-race-for-holyrood-2026-6530800", - "media_type": "news_article", - "sentence": { - "text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", - "media_hash": "5f1fde4db51650778b64b784c3a487b3c8477bd3152bd0313aae5cb1", - "sequence": 61, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Murdo Fraser", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Scottish Conservatives", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "scottish_elections": 3.063685, - "housing": 3.063685 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "City officials said they have since issued 41 citations, 30 in 2025 alone, to assuage the authorities as 153 firearms were reported stolen.", - "media_hash": "daf717223d1b1b8fbfc70244143483907e9f5628b02da7f09d90daf9", - "sequence": 44, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.970815 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "California considering a first of its kind idea to...", - "publication_date": "2026-03-31T17:50:57", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", - "media_type": "news_article", - "sentence": { - "text": "Most would do so by standardizing or trimming regulation.", - "media_hash": "70fa345524a696165d41db40259522f891faba15783879abdce2fd3a", - "sequence": 8, - "checkworthiness": { - "fullfact": { - "housing": 2.9374000000000002 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Susan Boyle wows with dramatic makeover as fans say she 'aged backwards'", - "publication_date": "2026-03-31T04:05:00", - "publication": "mirror", - "url": "https://www.mirror.co.uk/3am/celebrity-news/susan-boyle-wows-dramatic-makeover-36876666", - "media_type": "news_article", - "sentence": { - "text": "Susan continued her charitable promotion: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", - "media_hash": "17ff8d76907f04aa65fcc0e44d834280e16bd021658adad24ca8cbdf", - "sequence": 10, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Susan Boyle", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Street Soccer Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.922625 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Susan Boyle fans say she's 'aged backwards' after dramatic makeover", - "publication_date": "2026-03-31T06:05:00", - "publication": "dailystar", - "url": "https://www.dailystar.co.uk/showbiz/susan-boyle-fans-say-shes-36889400", - "media_type": "news_article", - "sentence": { - "text": "Susan continued her charitable endorsement: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", - "media_hash": "eb13ae5f6541c2f2f8f6abed9b809395144be474422d869e46d6f78f", - "sequence": 10, - "claim_type": [ - "personal", - "other" - ], - "claimer": [ - { - "name": "Susan Boyle", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Street Soccer Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.922625 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "media_hash": "84e06b784f1aca1504fbeb16ed7c4ce2f86e63f37a782d6d503a1873", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 42115, - "score": 0.06530000000000002 - }, - { - "tracked_claim_id": 42165, - "score": 0.10399999999999998 - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.89907 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "media_hash": "234f104d5df2b9b1b30675ddedd773d291b7b055a33cac174dc6011e", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.89907 - }, - "demo": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T00:31:39+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/DailyMail/status/2038776200454127967", - "media_type": "social_post", - "sentence": { - "text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs https://t.co/fvof91NBRy", - "media_hash": "28044902560498254a50491ac82664b70c46a7440c23d7b1188637a2", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "residents", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.868115 - } - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "A young family have been left homeless and a couple forced to use tarpaulin sheets for windows after a cowboy builder allegedly conned them out of \u00a3100,000.", - "media_hash": "79f78b37b861abdd87534488fd4efde6b35429291574d4b9acb39f02", - "sequence": 2, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.8334 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.68177 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "'If people are being moved out of council houses, and they are being replaced with a higher number of private residences - that's a problem.", - "media_hash": "c4f5541621be7046cb2386f75b1db0fc94d790bd968a3768a25c91f1", - "sequence": 66, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Denise Williams", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.810965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "The mother of three paid \u00a345,000 for a bungalow extension but said when she returned home after four weeks and there 'was nothing left'", - "media_hash": "c98c5d89862d4024b1afba8410ddf7f9ead464d8b46059ec6dc86c60", - "sequence": 31, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Yasmin Taylor", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.772635 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "Six months later she is still sharing a bedroom with her partner and three children with her house left in a pile of rubble", - "media_hash": "28389249e5aad52e8e8347d8d7eae9efb7805e03e408df8b941ce22d", - "sequence": 32, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.772635 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "\"What we see in the construction sector are some of the challenges about the cost of construction of houses, because the cost of construction of houses has gone up significantly as a consequence of the global pressures around about the access to raw materials following the invasion of Ukraine, so general construction costs have increased,\" he said.", - "media_hash": "62a21fe8ac6efe09f3d9e62f0b3157e188fd7852f5139f037bf756c7", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "John Swinney", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.76525 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", - "publication_date": "2026-03-31T23:00:31", - "publication": "guardian-society", - "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", - "media_type": "news_article", - "sentence": { - "text": "Home ownership over the same period halved.", - "media_hash": "8db1fe105d7af1a0acbacbb315dbe38e4af672a64591b1d098cdcd90", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Resolution Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Most of the dollars that have been distributed so far are loans, which recipients are required to repay within two years.", - "media_hash": "0efbfa77105fe89961534f72dfbdc0c1213c8e1ff414ecb242f6589d", - "sequence": 36, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "A whopping 67 per cent of over-65s live in homes with two or more spare rooms - far higher than any other age group.", - "media_hash": "ea3ab597321cdd5e41b76305d697d5d3caae9dd828d54f5ee523e4ca", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "An annual decrease was reported for all-sector starts (6% decrease) and completions (13% decrease) between 2024 and 2025.", - "media_hash": "b87fba689b9b6b628f7708cc26f692621a1384ff7f1ebbe324100be8", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "claims_matched": [ - { - "tracked_claim_id": 28741, - "score": 0.15600000000000003 - }, - { - "tracked_claim_id": 28743, - "score": 0.23129999999999995 - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", - "media_hash": "784e0d930b5c73351a6c477e8f3b69476b0d89820ea583ee8b125ed6", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "In every single region of the country, there are more homes than households: even in London, the epicentre of the housing crisis, there was an excess of 250,000 properties in 2021.", - "media_hash": "77cd2459b15aafa3663c8062295a49c95544445899455b6116f380bb", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "That is a staggering statistic in the middle of a housing emergency in which 8.9 per cent of households in the social rented sector and 5.8 per cent of private rented households are classed as officially \"over-crowded\".", - "media_hash": "13dc1912663ca070425147f30b392b403fe9fb8a23176c5d2f66a9d2", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", - "media_hash": "1ccd5bc5d40ea0949a101c238d1e556667b785ada7dcfdba34fae724", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "media_hash": "efcb2ed19649a98a79a62775e4cd487234bee9398d990d396da7a473", - "sequence": 0, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.68177 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.68177 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "Still, if there was a water shortage not of my causing and I had more bottles gathering dust in the garage than my family needed, at a time when others were going thirsty, would I not have a moral obligation to offload my excess to help those in desperate need?", - "media_hash": "be25134d02aab8a7adab9bb96796fdb36f9ff0c16bbae1aea96253c6", - "sequence": 31, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.658185 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "Ms Taylor has since shared negative reviews on Facebook, which Mr Bishop claims have led to his house being attacked and his life being put at risk.", - "media_hash": "7e6ea202546784d6813b05b6e2ddae0f929bc48aba52e5c24116928c", - "sequence": 53, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.652965 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Low supply is causing prices to spike.", - "media_hash": "c2ab82335b75959141cea42a41bbe703f9e31899be9ba1a8c68dc6a5", - "sequence": 27, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.6127849999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "Neither party will go on record to explain what went so wrong that more than half of that deal has been torn up, but the council admitted 'progress has been too slow', and this has caused 'serious problems including anti-social behaviour in and around the vacant blocks'.", - "media_hash": "0bb150fd5828d3d215f9d6a55f537ddb0940df47fc909553b1400226", - "sequence": 36, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Southwark Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Notting Hill Genesis", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.61247 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "housing": 2.61247 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "'We know that these firearms are being stolen to defend public safety,' Mayor Johnson said, noting that in just one year the city has seen a nearly 40 percent decline in firearms being stolen from unlocked vehicles.", - "media_hash": "ee05cc68a1ba072923c05764045280ed8826605ff71b346cedbf12ee", - "sequence": 45, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Van Johnson", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.61247 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.61247 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "Michael Bishop has been accused of taking \u00a364,500 and \u00a345,000 from the two families before wrecking their houses and running away", - "media_hash": "4f3c4c48baa368a5086f5c89fb4b4b7aaec70e9c45251aa496ccf2b2", - "sequence": 29, - "claim_type": [ - "quantity", - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.61247 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.61247 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "There were 430 social sector starts last year in Glasgow last year, up from 309 the year before and the highest in the last four years.", - "media_hash": "40d38b906bd3f638a81a726cadcfadbf68b9cc11f26f4bbadc45de08", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claims_matched": [ - { - "tracked_claim_id": 25138, - "score": 0.40900000000000003 - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.58736 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "So far, Notting Hill Genesis has built 703 homes, with another 321 currently under construction.", - "media_hash": "a4ee431fd833924a66954ff90b88ea5cd418223e8db46b7929c2caa5", - "sequence": 104, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "It was estimated in 2005 that fully retrofitting the estate would cost \u00a3350m, exactly the same amount as has been spent to date - although the former figure would now be higher, accounting for inflation.", - "media_hash": "3fae69c9f70011e9261e10dff9822a62793c32028f6f76923872cf11", - "sequence": 70, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "The 29 single-family homes in Paradise Trails - which are now available for purchase - are in line with Nevada \u0301s average housing costs.", - "media_hash": "a887d8afbe9b5d8c6cf43366ba48f541be8f52f1e43b9181e97cbd01", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Small Scottish town makes land buyout to build affordable homes for locals", - "publication_date": "2026-03-31T12:01:55", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983890.gatehouse-fleet-makes-land-buyout-build-homes-locals/", - "media_type": "news_article", - "sentence": { - "text": "Gatehouse of Fleet has a population of just over 1,000 and is named after the old tollhouse on the River Fleet.", - "media_hash": "dafb38609697675b8e752c9b919b5ada05caaa4bbac0403d8d9b1b8c", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "But Southwark Council insisted it was more economical to start again, signing a blueprint from Notting Hill Genesis in 2014 to rebuild the estate with 4,200 new homes by 2036 - with the total project estimated at \u00a31.5billion.", - "media_hash": "3048d9d51c00a025165a3670a3e3d54818d68b4ae04bda70b87ddd6c", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Southwark Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "California considering a first of its kind idea to...", - "publication_date": "2026-03-31T17:50:57", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695723/California-considering-kind-idea-boost-factory-built-housing.html", - "media_type": "news_article", - "sentence": { - "text": "Depending on the nature of the project and the contract, a bond might cost a factory anywhere from three-quarters of a percentage point to 3% of a contract \u0301s entire cost, he said.", - "media_hash": "16cee858a8aef24b6ecb07f6319eac11571f1e1c01d10de5e206e519", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "We haven't got 100 per cent brilliant reviews.", - "media_hash": "1195ec3958c3c9e028fc43cb23e04297d2a79db1590c37435f87c130", - "sequence": 57, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Michael Bishop", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "In terms of starts, building work on 11,929 was started by the private sector and 3,070 homes by the social sector.", - "media_hash": "485e657d6ce847e735502b46b46e969e363d7e2a0f4da68827973734", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "Fife Council's current new-build housing programme includes 1,200 homes either planned or already under construction.", - "media_hash": "a3c0201411a4ed1a8d3946a2221fc12c04c114c5bb04e629885857d3", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - } - } - } -}, -{ - "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", - "publication_date": "2026-03-31T15:52:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", - "media_type": "news_article", - "sentence": { - "text": "The latest construction phase includes 27 council homes for older people, 19 of which are wheelchair-adapted, as well as a 128-place early years centre.", - "media_hash": "ab61950e44ab60077ff2665c65eedd02a92fe1582f2c7cd77d16bfdf", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5769 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "New build social homes completed in Glasgow last year have plummeted to the lowest level in decades.", - "media_hash": "64902929181acb04f47135dccef66dd77e328bd34e4795455af86d90", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", - "media_hash": "2ad4946c1e63d014883a6bfebd2a7dbd9231791f4e4a19fce3738292", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "In England alone, there are 1.4 million more properties than households needing them, according to the 2021 census.", - "media_hash": "ea5e7a30fed2320b82179b0b89d8fe04373ec374d47f22dce5f42d0e", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Refusing to downsize? You\u2019re a selfish citizen", - "publication_date": "2026-03-31T09:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/refusing-to-downsize-youre-a-selfish-citizen-4274693", - "media_type": "news_article", - "sentence": { - "text": "So severe is this problem that, according to government data, 72 per cent of homes in England are now classed as \"under-occupied\", meaning they have at least two bedrooms more than their occupants need.", - "media_hash": "4128353385370c0fc9318aa44cd75a03f4ec83978332e3213b8ed502", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Economists", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here\u2019s how to get London building now", - "publication_date": "2026-03-31T04:21:00", - "publication": "cityam", - "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", - "media_type": "news_article", - "sentence": { - "text": "As of last October, new housing construction per 1,000 residents over the past 12 months stood at 0.58 in London, compared with 2.35 in New York and 5.27 in Paris.", - "media_hash": "899eef65bf4fec70dae06d509f0dbe93b9ee571551639799f1aaed57", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "Aylesbury, which housed more than 10,000 at its peak, is one of the largest and most notorious council estates in the country.", - "media_hash": "5794abf1e26cc2e122cc2a72dba5fff767f46a53a8233074359a2598", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "With more than 2,700 homes across dozens of large blocks, it was one of the largest council estates in Europe - but its decline has since become a symbol of the long-term failures of the post-war housing project.", - "media_hash": "565db8a46cbbe563108dd6f32bf41995b4a954c8c577a05389999689", - "sequence": 74, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "Two of those are almost complete, while the proposal for Phase 2B, which includes the empty Wendover block, is still awaiting planning permission from the council.", - "media_hash": "e72a95d2cb793fa99ecb084b38a3a5b06dc63272c8db8ef54913cc77", - "sequence": 107, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", - "media_hash": "ccb61923a8122037970ff5be668dabf65abb8a65293ac17254684c4c", - "sequence": 42, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "That was part of the impetus for AB540, which focuses on middle-income housing but includes millions of dollars for low-income rentals as well.", - "media_hash": "c5cad5298efb92ad3e7a7b89cb658194fcfdff7bc1ec1b8ff1626f11", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Official figures show the number of homes for social rent completed in the city in 2025 was just 235.", - "media_hash": "156f5c2e9e88f2e355973f6453c936d7dcdd1a8fa44d30bbf4fe9078", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Across Scotland, social sector new home completions fell to 3611 last year from 4835 in 2024 and the number started was also down.", - "media_hash": "171a897824742296579b362230a2b8110368d2280715c20deddc256e", - "sequence": 16, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Social housing builds fall to lowest level since 2014 despite 'homeless catastrophe'", - "publication_date": "2026-03-31T10:28:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983123.scottish-social-housing-builds-drop-lowest-level-since-2014/", - "media_type": "news_article", - "sentence": { - "text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", - "media_hash": "b55a04b734e8aa027139021f331c325b82d94fd97facc2b0f8406bab", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "My parents went from a three-bed to a bungalow \u2013 and lost my million-pound inheritance", - "publication_date": "2026-03-31T07:00:00", - "publication": "inews", - "url": "https://inews.co.uk/opinion/parents-three-bed-bungalow-million-pound-inheritance-4274690", - "media_type": "news_article", - "sentence": { - "text": "Still, at least they had tens of thousands of pounds in the bank to see them comfortably through their twilight years, right?", - "media_hash": "31ce7f66a590c8e76f50ddad64d9b2f8daaefbe2b4cf1c6523434b90", - "sequence": 29, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "'Since the partnership between Notting Hill Genesis and Southwark Council was established in 2014, we've built over 700 homes on the estate, 581 of which the council has bought to utilise as council homes.", - "media_hash": "244e4f7c90bbf5719604ab552e064af3582e161b57ee630d92aa2422", - "sequence": 115, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Notting Hill Genesis", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Matthew Cornwall Jones", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here\u2019s how to get London building now", - "publication_date": "2026-03-31T04:21:00", - "publication": "cityam", - "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", - "media_type": "news_article", - "sentence": { - "text": "Last year fewer than 6,000 started construction.", - "media_hash": "f22714bd951d0e6f55d91d9c3ec6bf754426dde527026dc3cb6237e1", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", - "publication_date": "2026-03-31T00:31:02", - "publication": "dailymail-articles", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "With \u00a3350million spent so far, fewer than a quarter of the new homes have materialised, and more than a third of the original dwellings stand empty, awaiting demolition that has repeatedly been delayed.", - "media_hash": "f18e8b9a87aa74c896e98057fc57affb07f1547c7610169e04da9cdb", - "sequence": 37, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "His office announced in February it had awarded $86.1 million of the $133 million in the bill.", - "media_hash": "64c8beeaae406809ed0d8976ed87b5301e3771e9754f300d079691cc", - "sequence": 33, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "It has dropped steadily since 2019 when there was 1000 completions.", - "media_hash": "ebd102b281d2c793bab369ad6a81e2dd4582b189c72794ed9f1710d5", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Across all housing sectors, there were fewer homes completed in Glasgow, with 1530, down from 2301 the year before.", - "media_hash": "43db08102883af73bfaf747c4dbbf4a7e8db8aa75fd054ba35767c5f", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "Leaving out 2020, when Covid\u201019 affected building activity, the private sector completed fewer homes in 2025 than in any year since 2017 and started fewer homes than in any year since 2013.", - "media_hash": "bb4c668d805cf49ffef4afbc70de33bcafc0f9301327599e19cfe626", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "In Fife, almost 41,000 homes were sold and a housing emergency was declared in 2024.", - "media_hash": "a37e1186dfff2b1c52c958800ef31215b8ad4b3fb92ff01df84e8ff3", - "sequence": 24, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - } - } - } -}, -{ - "title": "Here\u2019s how to get London building now", - "publication_date": "2026-03-31T04:21:00", - "publication": "cityam", - "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", - "media_type": "news_article", - "sentence": { - "text": "We have an ambitious target agreed between the Mayor and the government of 88,000 new homes a year.", - "media_hash": "ab377ad484a2c4a9fbebf20ff434dad23c9fbf80862a46d789579197", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Here\u2019s how to get London building now", - "publication_date": "2026-03-31T04:21:00", - "publication": "cityam", - "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", - "media_type": "news_article", - "sentence": { - "text": "We surveyed our members on the initial proposals, set out in October, and found that across 67 development sites in London, representing over 86,000 homes, only 17 per cent - less than 15,000 homes - could potentially benefit from the original emergency measures.", - "media_hash": "7b7ab9ed56cc816961e038566efb47d6920ca9d8b561a469e1d0f8ae", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Of the money that \u0301s been spent, $22 million was earmarked for homebuyers who work in the fields of health care, education, public safety or construction.", - "media_hash": "1298275bbc6d6aea6d00671603cbd0c3b0117dd86ecf1152ff17155e", - "sequence": 34, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "Other spending so far has included $15 million on low-income housing specifically, $9 million in grants to local governments and $11 million on land purchases (all of which have been in Clark County).", - "media_hash": "a3b3e6716bdb7ab0f387dd45f0f3b5cb2e2bb689a1ebbfecc2199c3f", - "sequence": 35, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Projects partly funded by Nevada governor's housing...", - "publication_date": "2026-03-31T19:12:36", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695909/Projects-partly-funded-Nevada-governors-housing-bill-aiming-affordability-crisis.html", - "media_type": "news_article", - "sentence": { - "text": "It provided $23 million worth of loans so construction companies can purchase land for development and $25 million in grants to local governments to cover building and permitting fees.", - "media_hash": "f71f358a7d2cfbfbe1005ddd9d639211d48695459119bf78faf3647d", - "sequence": 46, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "The Homeless Authority also reported 457 sheltered and 172 unsheltered people during last year's point-in-time survey, which is required by the federal Housing and Urban Development to allow organizations and agencies to receive federal funds.", - "media_hash": "68dc1b6d44283b93b41db331f09f9a7d29eaa79fe69270a05e2f93be", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "The Homeless Authority", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, records show the number of recorded encampments in Chatham County plummeted from 80 in 2023 to 39 in 2025.", - "media_hash": "db414027f8ce13110e614a2631db07c1f3721388cc32f760a5e4d10d", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "The charity Shelter Scotland warned the Scottish Government risked missing its target of 110,000 new affordable homes by 2032.", - "media_hash": "3f240be9fea4df022a32a44b3d9a39118c99444f616f9d723eca0741", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Shelter Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "It is down from 408 the year before and the lowest on record since 1996.", - "media_hash": "2d1fb3e28135f15d92bffbb512f554f7f393a5be39575dee18397dae", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "There was a drop in all housebuilding starts and completions across Scotland.", - "media_hash": "a9bb2f8f262eff110d9ce76e668480c27d6cd9a89906ab6e0b46703b", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The 'forgotten' residents on Britain's most notorious housing estate: How failed \u00a31.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", - "publication_date": "2026-03-31T06:28:36", - "publication": "dailymail", - "url": "https://www.dailymail.co.uk/news/article-15681319/housing-estate-delayed-regeneration-tower-blocks-squatters-criminals.html", - "media_type": "news_article", - "sentence": { - "text": "Of the 240 flats, just six still have tenants, while the sister block is completely empty.", - "media_hash": "dac23e014108c60afa2503e3424d26f381e24eeb48bfd7cec4720362", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "housing": 2.5769 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of \u00a3734m.", - "media_hash": "47080177b9a9766661fcbc56b5e8a3762d314eac6f83eee50d724e9f", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", - "media_hash": "c67679ac07dc8f9eba19de30f771b4bb7ec7c7992b1c313903b7fa97", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The budget had already been revised upwards to \u00a31.1bn in 2023.", - "media_hash": "5db2c65d4bce5a9c2600ba4cbbe5b076bcb0fb2d84f4fd4d506feebd", - "sequence": 6, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "The original budget, set back in 2016, consisted of \u00a3164m from the European Union, \u00a3445m from the Welsh Government and the \u00a31.3bn City Deal for the Cardiff Capital Region, and \u00a3125m from the UK Government.", - "media_hash": "49944e632af0943a9b5637ee742a48a4d07670e31f72f1e18a278a94", - "sequence": 7, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Welsh Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of \u00a3100,000'", - "publication_date": "2026-03-31T15:34:50", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15676439/cowboy-builder-family-homeless-couple-tarp-windows.html", - "media_type": "news_article", - "sentence": { - "text": "Steph Morley, from Barnsley, and her husband Karl Younger paid Bishop \u00a364,500 to renovate their house", - "media_hash": "76ac23a5f4a33106d8cbfcdf1353ec5a2cc8b5c2651c4bf0d9a12790", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 0.0 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Small Scottish town makes land buyout to build affordable homes for locals", - "publication_date": "2026-03-31T12:01:55", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25983890.gatehouse-fleet-makes-land-buyout-build-homes-locals/", - "media_type": "news_article", - "sentence": { - "text": "The project has also received strong support from the local authority, including \u00a3300,000 in backing from Dumfries and Galloway Council's Town Centre Living Fund.", - "media_hash": "01167d70696c952237ec542805cdf79572992f0f7dc7747c19773e03", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "There were 17,336 new homes built and 14,999 new builds started across the social and private sector in 2025.", - "media_hash": "45e3030361887b672a987352eab8e58d6d97ba696503c140dd8d4319", - "sequence": 18, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "New build social housing completions plummet in Glasgow to record low", - "publication_date": "2026-03-31T10:29:51", - "publication": "eveningtimes", - "url": "https://www.glasgowtimes.co.uk/news/25983238.new-build-social-housing-completions-plummet-glasgow/", - "media_type": "news_article", - "sentence": { - "text": "The private sector built 13,725 homes and the social sector built 3,611 homes.", - "media_hash": "8d17a52ee242f25feaa93f645a2ee96ba5b3789f8fdaec6618fe661c", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Charity warns Fife evictions may be first of many unless politicians act", - "publication_date": "2026-03-31T05:03:02", - "publication": "ab4b6b4a-6750-463c-9872-98bbedc7b6bc", - "url": "https://www.thecourier.co.uk/fp/news/fife/5461622/west-wemyss-evictions-shelter-scotland-warning/", - "media_type": "news_article", - "sentence": { - "text": "Scotland lost around 500,000 council houses under the Right to Buy scheme between 1980 and 2016.", - "media_hash": "6226f637c02eeed02bd9d1a74e55aea95613f1f6d16a84818ba25fc5", - "sequence": 23, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - } - } - } -}, -{ - "title": "Here\u2019s how to get London building now", - "publication_date": "2026-03-31T04:21:00", - "publication": "cityam", - "url": "https://www.cityam.com/heres-how-to-get-london-building-now/", - "media_type": "news_article", - "sentence": { - "text": "The need for new homes in London is high, but effective demand is low given the cost buyers face.", - "media_hash": "1c799e0bb8689f48e87e4382b2434ba4332b88c0a0bc8fd3ace029e8", - "sequence": 33, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "200 new homes in Edinburgh to be built as part of Powderhall regeneration", - "publication_date": "2026-03-31T15:52:00", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984323.edinburgh-site-regenerated-new-neighbourhood/", - "media_type": "news_article", - "sentence": { - "text": "Edinburgh unveils \u00a3350m plan to fast-track thousands of affordable homes", - "media_hash": "c9d384f1d455c4a15417b6d22e827b2da14fca0aae2c6e1bd676a097", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "The expected final cost of the South Wales Metro soars to \u00a31.3bn", - "publication_date": "2026-03-31T15:44:41", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/south-wales-metro-massively-over-33692966", - "media_type": "news_article", - "sentence": { - "text": "That final projected cost has now edged up to around \u00a31.3bn.", - "media_hash": "bd8297e1114fc62c46bed5d670f749300b4d964bb7c623928cda9e2c", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Transport for Wales", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "James Price", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997, - "senedd_election": 2.5459449999999997 - } - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "Last year, the private sector completed the least amount of homes since 2017, with just 13,725 built, while the social sector completed just 3,611, the lowest since 2014.", - "media_hash": "7841c490a5ca561e5b3b4c75c0cff027653c52f6203f84d8a8723950", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "The number of social homes which began construction in Scotland last year was also the lowest figure on record at 3,070.", - "media_hash": "7a754536c9a28c978a04baaafc4ea03cb662bb6edb5ac59276365445", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Swinney: Government in extensive discussions with...", - "publication_date": "2026-03-31T13:59:48", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/pa/article-15694989/Swinney-Government-extensive-discussions-private-housebuilders.html", - "media_type": "news_article", - "sentence": { - "text": "\"The Scottish Government pledged 110,000 affordable homes by 2032 - 70 per cent of which should be for social rent.", - "media_hash": "7f53c508497775fb7368de7fbd3e7b4cdfe600e26beb9cdc71c764a8", - "sequence": 22, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Scottish Government", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Want to boost the UK\u2019s birthrate? Fix the housing crisis, research suggests", - "publication_date": "2026-03-31T23:00:31", - "publication": "guardian-society", - "url": "https://www.theguardian.com/world/2026/apr/01/uk-birthrate-fix-housing-crisis-research", - "media_type": "news_article", - "sentence": { - "text": "It found that among 32-year-olds who are not yet parents, for example, twice the proportion of those in the lowest quarter of earners said they intended to remain permanently childless, compared with those in the top quarter of earners.", - "media_hash": "c4324724d5231249664c75bdbe723307c22fee9a67b15a294dce2966", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Resolution Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "4 charged in corruption investigation linked to NYC...", - "publication_date": "2026-03-31T19:41:20", - "publication": "dailymail-wires", - "url": "https://www.dailymail.co.uk/wires/ap/article-15695161/Retired-NYPD-sergeant-arrested-corruption-probe-linked-city-lawmaker-governors-aide.html", - "media_type": "news_article", - "sentence": { - "text": "Since 2023, the city has agreed to pay more than $7 million to Fort NYC Security to provide security services at homeless shelters, often as a subcontractor for BHRAGS.", - "media_hash": "6a11d2b38952ab18df9b7e8f3a8153b1ba49c4fab40045051d690c2f", - "sequence": 25, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Fort NYC Security", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.5459449999999997 - }, - "demo": { - "politics": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T08:41:14+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Margaret4DR/status/2038899407467245786", - "media_type": "social_post", - "sentence": { - "text": "RT @The_TUC: Farage's Reform has pledged to rip up legal protections for workers and renters - handing power to bad bosses and rogue landlords.", - "media_hash": "a16bab836b4c18ed84334444da77fb7deb21584946976ab58e9e559d", - "sequence": 0, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "The TUC", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "housing": 2.538635 - } - } - } -}, -{ - "title": "America's prettiest city overrun with homeless 'drug zombies' under nightmare woke mayor", - "publication_date": "2026-03-31T15:26:12", - "publication": "dailymail-news", - "url": "https://www.dailymail.co.uk/news/article-15693147/Savannah-Georgia-homelessness-drugs.html", - "media_type": "news_article", - "sentence": { - "text": "Residents in Savannah have started mixing Xylazine, also known as tranq, with fentanyl.", - "media_hash": "0defd895afe01e1d52fe81dc970c452d780126c1e9295cef8453b9eb", - "sequence": 25, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "housing": 2.52653 - }, - "demo": {}, - "aapfactcheck": {}, - "pa-media": {}, - "maldita": { - "housing": 2.652965 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", - "media_hash": "5b1f8a3f3ebc92e7f4f51c90f63b97b892e32e998fd4725b1e03cdef", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.51636, - "senedd_election": 5.51636, - "scottish_elections": 5.51636 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", - "media_hash": "08075f10b4fd2a9883281cb48c2f823e77c357a7e467e414eca49636", - "sequence": 11, - "claim_type": [ - "quantity", - "correlation" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 5.36473 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.395685 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", - "media_hash": "f842ffa9ab9e50b685989960f426d1743cea0ad7677a11c55fb03f82", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.395685, - "scottish_elections": 5.395685, - "clinical_health": 5.395685 - }, - "demo": { - "health": 3.3956850000000003 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.3956850000000003 - } - } - } -}, -{ - "title": "Oil, energy and how we pay for it will be at the heart of May's Holyrood elections", - "publication_date": "2026-03-31T03:30:00", - "publication": "6e1db5c5-8b6b-42a0-9584-2dc7b6baeee4", - "url": "https://www.dailyrecord.co.uk/news/scottish-news/oil-energy-how-pay-heart-36946116", - "media_type": "news_article", - "sentence": { - "text": "Parents unable to enter the workplace because of care commitments is one of the most common drivers of child poverty.", - "media_hash": "a18de04cfb86874f3c7de87c3b1c1e1b0d180f5d0e96905f674eb7cb", - "sequence": 22, - "claim_type": [ - "correlation" - ], - "claimer": [ - { - "name": "Parents", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.35651 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", - "media_hash": "9a42539cee1cc966a3c1122eedc314cc0efa32ecfa2b4739b55accd2", - "sequence": 4, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 5.2593950000000005, - "senedd_election": 5.2593950000000005, - "scottish_elections": 5.2593950000000005 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", - "media_hash": "8db15d4ee847c78a64dd06f12e97c28b15a8c08a7827c77370319024", - "sequence": 3, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.910905, - "senedd_election": 4.910905, - "scottish_elections": 4.910905 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", - "media_hash": "fe9800e738840cc27bacdfa3fffe8b9e6e2b4943e2041967eb4271de", - "sequence": 37, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.89529, - "scottish_elections": 4.89529, - "clinical_health": 4.89529 - }, - "demo": { - "health": 4.89644 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.89529 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", - "media_hash": "41a80cac8c78a7a397698797ba76261502647c33948888ea7e2c0f11", - "sequence": 29, - "claim_type": [ - "correlation", - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.761455, - "scottish_elections": 4.761455, - "clinical_health": 4.761455 - }, - "demo": { - "health": 4.914235 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.914235 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", - "media_hash": "23c6fc7f1a5203bd7309cfa1790d7e445ebbee14ba91edf8cf40f3f9", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Trussell Trust", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", - "media_hash": "1a81704af34a31ec960d5d018c8352e50ace43871e077fa83aa7bbbb", - "sequence": 17, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945, - "clinical_health": 4.545945 - }, - "demo": { - "health": 3.123595 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", - "media_hash": "0692d4b29d4d6a04e64057f461ad72382349124a8e881c1b2ff6c0e4", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Trussell Trust", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.545945, - "scottish_elections": 4.545945 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", - "media_hash": "6142b387ad4609024014acee795098b1e186bc99bddad4bb1e472f29", - "sequence": 42, - "claim_type": [ - "correlation", - "predictions", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.429455, - "scottish_elections": 4.429455, - "clinical_health": 4.429455 - }, - "demo": { - "health": 4.094984999999999 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.429455 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", - "media_hash": "fe158d7a65f17b099e246165fab989d2d6db4d16f4c160b7ad400ddb", - "sequence": 6, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Food for Thought report", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.400095, - "senedd_election": 4.400095, - "scottish_elections": 4.400095 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", - "media_hash": "fd6136869b9b62d77d42ff7007b79321d337343dc2b40c7be2c474dd", - "sequence": 11, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Fair Feast", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.347765, - "scottish_elections": 4.347765 - }, - "demo": { - "nutrition_": 2.5459449999999997, - "politics_of_food": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", - "media_hash": "7d1d322bdb15d6b07156522d77bdae5e72b9ab414d8c83c27f8b79da", - "sequence": 19, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.326185, - "scottish_elections": 4.326185, - "clinical_health": 4.326185 - }, - "demo": { - "health": 4.326185 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.326185 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", - "media_hash": "5b0417f2c9fcae6acfa20e0161a4686474b4f89bcb1e5b1c110759a0", - "sequence": 20, - "claim_type": [ - "rules", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.285765, - "senedd_election": 4.285765, - "scottish_elections": 4.285765 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", - "media_hash": "c90a4326a87a43704dd53e0973cf34a95b923512369e4e511b4e94a4", - "sequence": 43, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.224345, - "scottish_elections": 4.224345, - "clinical_health": 4.224345 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", - "media_hash": "af0df4c9870637d55c7bd63ede069069d812abae9d97b6285db9b789", - "sequence": 35, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jackie Baillie", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.173405, - "scottish_elections": 4.173405, - "clinical_health": 4.173405 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", - "media_hash": "9f6ae987c0baca74357aa22a06172ada9354698ae722bb0b0c9eeede", - "sequence": 22, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.128005, - "scottish_elections": 4.128005 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", - "media_hash": "7d8461cf000551b38600715f6f54024d111962adc25927841762ce16", - "sequence": 41, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "SNP", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Clare Haughey", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.061165, - "scottish_elections": 4.061165, - "clinical_health": 4.061165 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", - "media_hash": "1b54f26520edbcc346fb2c8d155c5f29d7877674c0075e788b8c690c", - "sequence": 37, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 4.061165, - "scottish_elections": 4.061165 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", - "media_hash": "b57d5be833b52020235188215fc83747d4ea69030a7f8b4e8dbf3cd4", - "sequence": 31, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.975225, - "scottish_elections": 3.975225 - }, - "demo": { - "nutrition_": 2.7201, - "politics_of_food": 2.7201 - }, - "pa-media": { - "nutrition": 0.0 - }, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", - "media_hash": "4855da35f9d96863f06f7743bf9cd80285cfe25f3723237bbdd2b48d", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.748535, - "senedd_election": 3.748535, - "scottish_elections": 3.748535 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", - "media_hash": "b89c04b51de045c663054fbfc6865a27fbc198eaed8d44ca6fa5e307", - "sequence": 35, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Farming groups", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "National Farmers Union Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.748535, - "scottish_elections": 3.748535 - }, - "demo": { - "nutrition_": 0.0, - "politics_of_food": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", - "media_hash": "97cc92f6053feb345c6d695ad48e2d246d3836868429c1f6d8e2c62d", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.51751 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", - "media_hash": "a67638e863a53d142c66a3f8f855a13c983ffe73cad25295d63a1837", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 3.5175099999999997 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.548465 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", - "media_hash": "d464495b7443028ae4ba50e8c8bf87b3d32aa7fb59d2b653e593c535", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "scottish_elections": 3.548465, - "clinical_health": 3.548465 - }, - "demo": { - "health": 5.548465 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 5.548465 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", - "media_hash": "91daefa5e3fb66910461d37d12383bc0a089245dec22fef8a9a59329", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.548465, - "senedd_election": 3.548465, - "scottish_elections": 3.548465 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", - "media_hash": "86d362a210c7cecf9869a88f456e410bb08f46380093f35448d292e5", - "sequence": 13, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.4184200000000002, - "clinical_health": 3.4184200000000002 - }, - "demo": { - "health": 3.35651 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.4184200000000002 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", - "media_hash": "a22de2844828205f13b7cc92496532e38edad62c15d2af3d4656727e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.414065, - "senedd_election": 3.414065, - "scottish_elections": 3.414065 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", - "media_hash": "078f9443b16bcb39e2fe1df3ad5e44f407bad386dba3c7bc15e2fcf2", - "sequence": 10, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.3956850000000003, - "senedd_election": 3.3956850000000003, - "scottish_elections": 3.3956850000000003 - } - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "Alarmingly, more than 140,000 of these were for families with at least one child.", - "media_hash": "1b7e0b9c1f1eda1988c4cc7faf19ffa9e421899da274aecf24748d1a", - "sequence": 20, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.2500299999999998, - "scottish_elections": 3.2500299999999998 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 3.2500299999999998 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "The conflict has reportedly led to a 33% contraction in the global fertiliser supply chain.", - "media_hash": "3f7f25f3f23aac9c8a037837037f4890e39ad0df06fade57f7c720af", - "sequence": 12, - "claim_type": [ - "quantity", - "correlation" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.2500299999999998 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", - "media_hash": "09b5db0b6f25b309c768bfa61e2dc46565754c6462494e259a6c3558", - "sequence": 14, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.226865, - "senedd_election": 3.226865, - "scottish_elections": 3.226865 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", - "media_hash": "9ecf157b8873edd92640a15ffd1e37b577c667fc3365e6c66cfb3711", - "sequence": 18, - "claim_type": [ - "support", - "other" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.211065, - "scottish_elections": 3.211065, - "clinical_health": 3.211065 - }, - "demo": { - "health": 0.0 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 0.0 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", - "media_hash": "83232e6a9bd0a23b719c88c7b2b0d600adcea90b96e0a09e150a952f", - "sequence": 1, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.18436, - "senedd_election": 3.18436, - "scottish_elections": 3.18436 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "Scots council pays \u00a330k after child given food they were allergic to", - "media_hash": "4103c42e04a2f9598a31600ecb80a061fe123e17f14e587229ec6cea", - "sequence": 0, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.16655, - "scottish_elections": 3.16655 - }, - "demo": { - "politics_of_food": 3.31818 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "Dumfries and Galloway Council recently forked out \u00a330,000 in compensation to a family after a child was repeatedly given food they were allergic to.", - "media_hash": "b22da22d3aef3cb1feaaf1ba686fc6d15f5b157595eb265f81a97258", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.16655, - "scottish_elections": 3.16655 - }, - "demo": { - "politics_of_food": 3.16655 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "publication_date": "2026-03-31T07:17:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", - "media_type": "social_post", - "sentence": { - "text": "\ud83d\udc67\ud83c\udffb Lifting 450,000 children out of poverty by removing the two-child cap", - "media_hash": "98411a8d0c31a38da64d7ba6371a2f2bed60e948bf8d0d3b14bf128b", - "sequence": 5, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "josephpowell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 3.123595, - "poverty": 3.123595 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", - "media_hash": "ce51dc6607ce83d9d3eeea7cfeaf8481386a5b550de3e1025a8d0dad", - "sequence": 8, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.063685, - "senedd_election": 3.063685, - "scottish_elections": 3.063685 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "\"And given that the council recently paid out \u00a330,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", - "media_hash": "12314b755594ea761309afedca6739fde76c88e89a7abbcdc6038b75", - "sequence": 19, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dumfries and Galloway Council", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Annandale North Councillor Carolyne Wilson", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Labour Group", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 3.061215, - "scottish_elections": 3.061215 - }, - "demo": { - "health": 3.061215, - "politics_of_food": 3.061215, - "nutrition_": 3.061215 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", - "media_hash": "4eb4fd584f3661e67a582fb133079fa8c3f1386cdc9d38b6bb7a85a4", - "sequence": 18, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Janet Hayward", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Big Bocs Bwyd", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", - "media_hash": "4672abe6c1cc02784b9e8a5cb12a4bf25ce694564d9d3956a24e06c5", - "sequence": 9, - "claim_type": [ - "quantity", - "other" - ], - "claimer": [ - { - "name": "Chris Nottingham", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Blaenau Gwent Food Partnership", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.910905, - "senedd_election": 2.910905, - "scottish_elections": 2.910905 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", - "media_hash": "d67001aca2252dd49bf370081950349046bbd8c57fd30728f8cd2a30", - "sequence": 5, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Equality and Social Justice Committee", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", - "media_hash": "ccd046f25e8392854d2000fc5eebb28eed42b1185efdb3a6baa6e5fe", - "sequence": 16, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Jenny Rathbone MS", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.8717300000000003, - "senedd_election": 2.8717300000000003, - "scottish_elections": 2.8717300000000003 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", - "media_hash": "113ed8227b2c75f26f99988771a6c54a839ab086e635ff7fe37cbe1e", - "sequence": 23, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.799985, - "scottish_elections": 2.799985, - "clinical_health": 2.799985 - }, - "demo": { - "health": 2.53726 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.53726 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", - "media_hash": "83728f80c921392f0e1de0806a15d7fd0c958229cd3b1d2075f578af", - "sequence": 40, - "claim_type": [ - "quantity", - "correlation", - "other" - ], - "claimer": [ - { - "name": "Scottish Liberal Democrat", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Alex Cole-Hamilton", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.712725, - "scottish_elections": 2.712725, - "clinical_health": 2.712725 - }, - "demo": { - "health": 4.41429 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.712725 - } - } - } -}, -{ - "publication_date": "2026-03-31T07:17:35+00:00", - "publication": "7d63dcf0-f35e-4377-8104-26e31f4fe048", - "url": "https://x.com/Jess4Lowestoft/status/2038878355060113467", - "media_type": "social_post", - "sentence": { - "text": "\ud83e\udd63 Free breakfast clubs in schools - saving parents up to \u00a3450 a year", - "media_hash": "1a20fddce70639899a08cbb264f6e172362e58ade63f5074d0a95113", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Labour government", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "josephpowell", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "economy": 2.6987249999999996, - "poverty": 2.6987249999999996 - } - } - } -}, -{ - "title": "'Shameful' number of families in Wales can't afford healthy food", - "publication_date": "2026-03-31T07:40:45", - "publication": "60185e49-0b47-4958-a84c-b7d4bcd2e7f4", - "url": "https://www.walesonline.co.uk/news/wales-news/shameful-number-families-wales-cant-33684599", - "media_type": "news_article", - "sentence": { - "text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging \u00a38.80 per 1,000 kcal compared to \u00a34.30 for less healthy foods.", - "media_hash": "6c6ab44f1c43496acf6675fd4baf1d8fbf6278cd881579e389395675", - "sequence": 13, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Food Foundation", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6987249999999996, - "senedd_election": 2.6987249999999996, - "scottish_elections": 2.6987249999999996 - } - } - } -}, -{ - "publication_date": "2026-03-31T06:32:07+00:00", - "publication": "abb66fb2-fe30-4fa9-bb54-6c4524cc7926", - "url": "https://x.com/AllisonPearson/status/2038866913430851723", - "media_type": "social_post", - "sentence": { - "text": "The UK defines relative poverty as living in a household with income below 60% of the median income in that year.", - "media_hash": "712d614a62afdd74254f5e6833bea175ed861f19861c6467ed25c16c", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "charliecolecc", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6987249999999996 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Food and drink prices have continued to rise in recent years, with retail prices now at around 38% higher than they were before the pandemic.", - "media_hash": "48c0c82858775226094b0455e8323ad68ea9c76d1daad95f68487917", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Institute of Grocery Distribution", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6987249999999996 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", - "media_hash": "8bd6e950d54bc24043cbccd201c460db26bf05fa26f2f902f5c2b8c0", - "sequence": 39, - "claim_type": [ - "other" - ], - "claimer": [ - { - "name": "Scottish Conservative", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Sandesh Gulhane", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.799985 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", - "media_hash": "0d0952eb40dd865b43b2b10a74b4240039809d5b5f9f74e5380f5534", - "sequence": 36, - "claim_type": [ - "correlation", - "other" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6735499999999996, - "scottish_elections": 2.6735499999999996, - "clinical_health": 2.6735499999999996 - }, - "demo": { - "health": 2.5528750000000002 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.6735499999999996 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Households could face food inflation above 8% within months, according to the Institute of Grocery Distribution (IGD), which could add more than \u00a3150 a year to the average household's shopping bill.", - "media_hash": "f0e7eda71739045900892bec04cc5a61c0854b3d40005615b7b59601", - "sequence": 2, - "claim_type": [ - "quantity", - "predictions" - ], - "claimer": [ - { - "name": "Institute of Grocery Distribution", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.649215 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "FOOD prices in Scotland are set to spike, again.", - "media_hash": "f873d000f167390ecdf266d780455aade8ebd739b1996689dfaa1cee", - "sequence": 1, - "checkworthiness": { - "fullfact": { - "poverty": 2.6127849999999997 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "This closure and knock-on effect of oil supplies does have an impact on prices, as food production is energy intensive and is particularly exposed to sudden change in oil and gas prices.", - "media_hash": "2079d80cafd55baf6b592a33a670e97f7fa5b23b49b06b2ed25d563c", - "sequence": 10, - "claim_type": [ - "correlation" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6127849999999997 - } - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", - "media_hash": "44cff915e887c599b0181fc2171610160b7b03bb19c11e2301e0b4be", - "sequence": 33, - "claimer": [ - { - "name": "GPs", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.6127849999999997, - "scottish_elections": 2.6127849999999997, - "clinical_health": 2.6127849999999997 - }, - "demo": { - "health": 2.6127849999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "GPs urge next Scottish government to take drastic action on poverty", - "publication_date": "2026-03-31T05:00:32", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/politics/gps-urge-next-scottish-government-to-take-drastic-action-on-poverty-6529002", - "media_type": "news_article", - "sentence": { - "text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", - "media_hash": "f4cd9377ebba67eee31fb19d2d33a063420aad636a905d25ce3049f8", - "sequence": 30, - "claim_type": [ - "predictions" - ], - "claimer": [ - { - "name": "Royal College of General Practitioners Scotland", - "link": "", - "entity_type": "GENAI" - }, - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.579765, - "scottish_elections": 2.579765, - "clinical_health": 2.579765 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.579765 - } - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "Up to 30% of processed ammonia, used as the raw material in fertiliser, passes through the Gulf.", - "media_hash": "62511a379abfa1d64292cd41b219b223c5e8d1d4cca5a4def1295ebe", - "sequence": 14, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5769 - } - } - } -}, -{ - "title": "Online tool finds \u00a384,800 in unclaimed benefits", - "publication_date": "2026-03-31T05:00:47", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", - "media_type": "news_article", - "sentence": { - "text": "Peterborough City Council says it has helped 68 households claim \u00a384,000 in unclaimed benefits", - "media_hash": "7c8ef629f9b0d60929049359e1496995db5f51422f7ec9b29942eef7", - "sequence": 8, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5769 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "HMRC Child Benefit rates going up from April 6 and how much you'll get", - "publication_date": "2026-03-31T12:53:32", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/personal-finance/hmrc-child-benefit-rates-going-36949200", - "media_type": "news_article", - "sentence": { - "text": "Since April 2025, over 928,000 parents have utilised the HMRC app to manage their Child Benefit account, including:", - "media_hash": "f4452a773532ec0377acfc5c18750e178027c108134df429c0dbead9", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Online tool finds \u00a384,800 in unclaimed benefits", - "publication_date": "2026-03-31T05:00:47", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", - "media_type": "news_article", - "sentence": { - "text": "An online tool has identified more than \u00a384,800 in unclaimed benefits since it went live in January, a local authority has said.", - "media_hash": "cb079d1aef8353227e266fdbc2c7ad2ffa4ce45606820623cb90c661", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Peterborough City Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997 - }, - "demo": { - "finance": 2.5459449999999997 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "HMRC Child Benefit rates going up from April 6 and how much you'll get", - "publication_date": "2026-03-31T12:53:32", - "publication": "mirror-money", - "url": "https://www.mirror.co.uk/money/personal-finance/hmrc-child-benefit-rates-going-36949200", - "media_type": "news_article", - "sentence": { - "text": "Recent statistics found that, while over 6.9 million families receive Child Benefit payments, only 72% of families claimed it during their baby's first year.", - "media_hash": "47bafe0c2e845f66227898c9f4d7badf72d8eb9c82c89a1df58050af", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Why are food prices set to spike in Scotland?", - "publication_date": "2026-03-31T15:18:35", - "publication": "885ca8a7-24f9-478d-b140-ddb0076a03df", - "url": "https://www.thenational.scot/news/25985229.food-prices-set-spike-scotland/", - "media_type": "news_article", - "sentence": { - "text": "The key shipping route sees around one fifth of the UK's oil consumption pass through the Strait, on average around 20 million barrels of crude oil per day.", - "media_hash": "e075650a2b031411122ede4a28c429519bbf3b487afd25eb1aac32ba", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997 - } - } - } -}, -{ - "title": "Council pays \u00a330k to family after child repeatedly given food they were allergic to", - "publication_date": "2026-03-31T13:42:58", - "publication": "heraldscotland", - "url": "https://www.heraldscotland.com/news/25984488.scots-council-pays-30k-child-given-food-allergic/", - "media_type": "news_article", - "sentence": { - "text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", - "media_hash": "9cef34f6bfc4e4b0fe9d04700870d76316ef410ee522304c6ccb16e3", - "sequence": 3, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Dumfries and Galloway Council", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "health": 4.834525, - "politics_of_food": 4.834525, - "nutrition_": 4.834525 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", - "media_hash": "f5e55bce795c0f0df9a6882b9a033678d5a3e4edab983fc4d2fbab35", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.51499, - "politics_of_food": 2.51499 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Online tool finds \u00a384,800 in unclaimed benefits", - "publication_date": "2026-03-31T05:00:47", - "publication": "bbc-business", - "url": "https://www.bbc.com/news/articles/c30rqj6lqrno", - "media_type": "news_article", - "sentence": { - "text": "A report by the analytics company, Policy in Practice, estimated there may be about 31,000 people across Peterborough that were entitled to unclaimed benefits they have not yet claimed.", - "media_hash": "80bd404baac0233d4122fe655a925542772df89912e3c6307a272d1c", - "sequence": 15, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Policy in Practice", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997 - }, - "demo": { - "finance": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "20,000 meals and counting: A 400-year-old Scottish farm's solution to food poverty", - "publication_date": "2026-03-31T05:00:15", - "publication": "scotsman", - "url": "https://www.scotsman.com/hays-way/the-400-year-old-scottish-farm-showing-a-straightforward-solution-to-food-security-concerns-6529026", - "media_type": "news_article", - "sentence": { - "text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", - "media_hash": "e8dc3bfc8a9d48d61488b1cbe8cb37d9a58a8b1627948729f1a80f57", - "sequence": 27, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Helen Stewart", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5459449999999997, - "scottish_elections": 2.5459449999999997 - }, - "demo": { - "nutrition_": 2.970815, - "politics_of_food": 2.970815 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 2.5459449999999997 - } - } - } -}, -{ - "title": "Shocking warning from GPs about diseases of poverty in Scotland should shame the SNP", - "publication_date": "2026-03-31T05:00:34", - "publication": "scotsman", - "url": "https://www.scotsman.com/news/opinion/columnists/shocking-warning-from-gps-about-diseases-of-poverty-in-scotland-should-shame-the-snp-6529262", - "media_type": "news_article", - "sentence": { - "text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", - "media_hash": "53e476109777e393fe8c484ecc8d69c8d79804c00cddfb880ae741dd", - "sequence": 17, - "claim_type": [ - "correlation", - "other" - ], - "claimer": [ - { - "name": "Dr Chris Provan", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "poverty": 2.5219199999999997, - "clinical_health": 2.5219199999999997 - }, - "demo": { - "health": 4.52192 - }, - "pa-media": {}, - "fullfact-policy": { - "climate_change": 4.7201 - } - } - } -}, -{ - "title": "Frail mum's screams as XL bullies son-in-law left her with mauled her to death", - "publication_date": "2026-03-31T14:09:05", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/frail-mums-screams-xl-bullies-36949914", - "media_type": "news_article", - "sentence": { - "text": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", - "media_hash": "41c2dcd2ba839f2fe7afadfe71b15673123ae283e6ef629b0b838377", - "sequence": 9, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "transport": 4.66662 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "\u2018What Labour can learn from Denmark\u2019s \u2018pigs and water\u2019 election?\u2019", - "publication_date": "2026-03-31T05:00:06", - "publication": "labourlist", - "url": "https://labourlist.org/2026/03/what-labour-can-learn-from-denmarks-pigs-and-water-election/", - "media_type": "news_article", - "sentence": { - "text": "Political trust tends to scale: if a governing party - be it the Social Democrats or Labour - is seen as not being able to deal with the potholes on our roads and the price of our groceries, why trust it to manage public service reform or geopolitical turmoil?", - "media_hash": "4383f814493dab90f440c62e4090f0d04f09a704dc79053b4909856e", - "sequence": 25, - "checkworthiness": { - "fullfact": { - "transport": 4.386095 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", - "publication_date": "2026-03-31T11:15:43", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/uk-drivers-getting-up-2500-36948211", - "media_type": "news_article", - "sentence": { - "text": "If an accident occurs due to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", - "media_hash": "5d7bd4cc8f75516b1926b846e036cfe9e8e18ebb8883d6092824294d", - "sequence": 12, - "claim_type": [ - "correlation", - "rules" - ], - "checkworthiness": { - "fullfact": { - "transport": 4.073585 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", - "publication_date": "2026-03-31T11:35:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", - "media_type": "news_article", - "sentence": { - "text": "Should an accident occur owing to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", - "media_hash": "07877ddaf535ead3f05156cd78c98b8e17c0c89aab1ce272a054263b", - "sequence": 11, - "claim_type": [ - "rules" - ], - "checkworthiness": { - "fullfact": { - "transport": 3.95176 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", - "publication_date": "2026-03-31T11:35:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", - "media_type": "news_article", - "sentence": { - "text": "This follows MSE publishing fresh guidance encouraging motorists to contemplate submitting claims if their vehicles sustain damage from hitting potholes.", - "media_hash": "9665de0a256c28a82714c0c028dd37cc94346442fa0f792858e90c80", - "sequence": 6, - "claim_type": [ - "other" - ], - "checkworthiness": { - "fullfact": { - "transport": 3.5503549999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", - "publication_date": "2026-03-31T11:35:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", - "media_type": "news_article", - "sentence": { - "text": "The latest figures show there's a record \u00a318 billion pothole repair backlog!", - "media_hash": "c096f81c2f87eb807eaeaff1094f59d4a6b49a48af73b88b7477c762", - "sequence": 21, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "transport": 2.7091849999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", - "publication_date": "2026-03-31T11:35:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", - "media_type": "news_article", - "sentence": { - "text": "There's a record \u00a318 billion backlog of damage to local roads in England and Wales (stock image) (Image: Getty )", - "media_hash": "80818a2d9be4b40ee000a6c95b1d37b1284144df587f73d85d375e03", - "sequence": 1, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "transport": 2.556405 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "Money experts issue Easter energy warning as millions of Brits could be \u2018overcharged\u2019", - "publication_date": "2026-03-31T10:09:35", - "publication": "metro", - "url": "https://metro.co.uk/2026/03/31/money-experts-issue-easter-energy-warning-millions-brits-overcharged-27781759/", - "media_type": "news_article", - "sentence": { - "text": "Arrow MORE: A massive pothole wrecked my van and I'm over \u00a31,000 out of pocket", - "media_hash": "d1c583b7d0bea0b7acbd47b5b69ff0f31431188515c088f61c5763df", - "sequence": 57, - "claim_type": [ - "quantity" - ], - "checkworthiness": { - "fullfact": { - "transport": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "maldita": { - "transport": 2.5459449999999997 - }, - "fullfact-policy": {} - } - } -}, -{ - "title": "Martin Lewis advice as drivers getting \u00a31,000s back after going over potholes", - "publication_date": "2026-03-31T11:35:00", - "publication": "express-finance", - "url": "https://www.express.co.uk/finance/personalfinance/2188759/martin-lewis-advice-drivers-getting-1-000s-back-after-going-over-potholes", - "media_type": "news_article", - "sentence": { - "text": "Motorists who have lodged claims following pothole-related vehicle damage have secured compensation payments of up to \u00a32,500, according to Money Saving Expert (MSE).", - "media_hash": "2d21797735c5c1153101bbb2f8c8a42ff0a3be85e49f4a321dae2e01", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Money Saving Expert", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "transport": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -}, -{ - "title": "UK drivers getting up to \u00a32,500 in compensation after going over potholes", - "publication_date": "2026-03-31T11:15:43", - "publication": "mirror-news", - "url": "https://www.mirror.co.uk/news/uk-news/uk-drivers-getting-up-2500-36948211", - "media_type": "news_article", - "sentence": { - "text": "Some UK drivers who have put in a claim after a pothole caused damage to their car have been paid up to \u00a32,500 in compensation, according to Money Saving Expert (MSE).", - "media_hash": "ec2c07a56465796d956eec3ee3b15405fee9d16d40b2d1c1657a4e8a", - "sequence": 2, - "claim_type": [ - "quantity" - ], - "claimer": [ - { - "name": "Money Saving Expert", - "link": "", - "entity_type": "GENAI" - } - ], - "checkworthiness": { - "fullfact": { - "transport": 2.5459449999999997 - }, - "demo": {}, - "pa-media": {}, - "fullfact-policy": {} - } - } -} -] \ No newline at end of file diff --git a/scripts/encoder_experiment/label_sentences.py b/scripts/encoder_experiment/label_sentences.py index 982d41f..2b48184 100644 --- a/scripts/encoder_experiment/label_sentences.py +++ b/scripts/encoder_experiment/label_sentences.py @@ -1,14 +1,17 @@ -# Claude-created +# Claude-created script """Script 1: Use Gemini (via Pastel) to label sentences with yes/no answers to a fixed question list. Output is a JSONL file with one record per sentence, each containing a `question_answers` dict. The script is restart-safe: sentences already written to the output file are skipped. Supports two input formats (auto-detected by file extension): - - .jsonl pastel training format: {"sentence_text": ..., "score": ..., "claim_types": [...]} + - .jsonl Pastel training format: {"sentence_text": ..., "score": ..., "claim_types": [...]} - .json FullFact claims export: [{"sentence": {"text": ..., "claim_type": [...], "checkworthiness": {"fullfact": {...}}}, ...}] +Outputs JSONL file, one sentence per line, e.g: +{"sentence_text": ..., "score": 5.0, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, ...}} + Usage: python scripts/encoder_experiment/label_sentences.py \\ --input /path/to/fullfact-2026-03-16-claims.json \\ @@ -37,7 +40,7 @@ def load_fullfact_claims(filename: str) -> list[dict]: - """Load the FullFact claims JSON export (a JSON array of article/sentence objects). + """Load the Full Fact claims JSON export (a JSON array of article/sentence objects). Maps to the same internal format as load_examples(): {"sentence_text": ..., "score": ..., "claim_types": [...]} diff --git a/scripts/encoder_experiment/local_answerer.py b/scripts/encoder_experiment/local_answerer.py new file mode 100644 index 0000000..269e57a --- /dev/null +++ b/scripts/encoder_experiment/local_answerer.py @@ -0,0 +1,83 @@ +# Uses local, pre-trained encoder models to answer questions about sentences. + +from pathlib import Path + +from questions import QUESTIONS + +MODELS: dict[str, str] = { + "ModernBERT-multilingual": "jhu-clsp/mmBERT-base", + "mDeBERTa-v3-base": "microsoft/mdeberta-v3-base", + "XLM-RoBERTa-base": "FacebookAI/xlm-roberta-base", +} + +MODEL_CATEGORY = "ModernBERT-multilingual" +RESULTS_DIR = Path(__file__).parent / "results" +MAX_LENGTH = 128 + +_model_cache: dict[int, tuple] = {} + + +def _load_model_for_question(question_index: int) -> tuple: + from transformers import AutoModelForSequenceClassification, AutoTokenizer + + question_label = f"q{question_index:02d}" + checkpoint_dir = RESULTS_DIR / MODEL_CATEGORY / question_label + + checkpoints = sorted( + checkpoint_dir.glob("checkpoint-*"), + key=lambda p: int(p.name.split("-")[1]), + ) + if not checkpoints: + raise FileNotFoundError(f"No checkpoints found in {checkpoint_dir}") + latest = checkpoints[-1] + print(f"Loading model from {latest}") + + model_id = MODELS[MODEL_CATEGORY] + tokenizer = AutoTokenizer.from_pretrained(model_id) + model = AutoModelForSequenceClassification.from_pretrained(str(latest)) + model.eval() + return model, tokenizer + + +def preload_models(): + """Load all models into cache to save time later""" + for question_index in range(0, len(QUESTIONS)): + _model_cache[question_index] = _load_model_for_question(question_index) + + +def answer_question(question: str, sentence: str) -> float: + import torch + + question_index = QUESTIONS.index(question) + + if question_index not in _model_cache: + _model_cache[question_index] = _load_model_for_question(question_index) + + model, tokenizer = _model_cache[question_index] + + input_text = question + " " + sentence + inputs = tokenizer( + input_text, + truncation=True, + max_length=MAX_LENGTH, + return_tensors="pt", + ) + + with torch.no_grad(): + logits = model(**inputs).logits + + return float(torch.argmax(logits, dim=-1).item()) + + +if __name__ == "__main__": + + preload_models() + sentences = [ + "Scientists have shown that tamoxifen patients are more likely to develop deadly blood clots and cancer.", + "Rubbing olive oil onto a lump under your skin will make it disappear in a few days.", + ] + for sentence in sentences: + print(f"\n{"*"*80}\n{sentence}\n") + for question in QUESTIONS: + response = answer_question(question, sentence) + print(f"{question[:60]:60s} {response}") diff --git a/src/pastel/pastel.py b/src/pastel/pastel.py index 55dd1dc..baebce8 100644 --- a/src/pastel/pastel.py +++ b/src/pastel/pastel.py @@ -207,8 +207,10 @@ async def _get_llm_answers_for_single_sentence( """Runs all genAI questions on the given sentence.""" sent_answers: dict[FEATURE_TYPE, float] = {} prompt = self.make_prompt(sentence) + raw_output = await run_prompt_async(prompt) raw_output = raw_output.strip().lower() + if "question" in raw_output: output = raw_output[raw_output.index("0") :] else: diff --git a/src/training/beam_search.py b/src/training/beam_search.py index 5231a1a..4c2e9ff 100644 --- a/src/training/beam_search.py +++ b/src/training/beam_search.py @@ -24,10 +24,17 @@ def load_data( - num_splits: int = 1, data_filename: str = "data/example_training_data.jsonl" + num_splits: int = 1, data_filename: str = "data/ff_merged_ct_less_health.jsonl" ) -> list[SplitData]: """Load labelled data set & split into train and test sets""" all_examples = load_examples(data_filename) + score_counts: dict[int, int] = {} + for _, score in all_examples: + rounded = int(round(score)) + score_counts[rounded] = score_counts.get(rounded, 0) + 1 + print(f"Loaded {len(all_examples)} examples. Score distribution:") + for val in sorted(score_counts): + print(f" {val}: {score_counts[val]}") all_splits = [] for _ in range(num_splits): train_examples, test_examples = train_test_split(all_examples, test_size=0.5) @@ -69,6 +76,8 @@ def run_beam_search( """Main feature selection algorithm. Systematically add more and more features, but only keep the best 'beta' models at each iteration. See https://en.wikipedia.org/wiki/Beam_search for background. + beta is the "beam width", i.e. the number of solutions carried forward from + each iteration to the next. Each iteration adds one new feature, so max_iter is also the maximum number of features to be considered. If set to None, defaults to 'try all features'.""" @@ -183,12 +192,69 @@ def evaluate_pastel_set( for key in all_metrics[0].keys(): mean_metrics[key] = sum(d[key] for d in all_metrics) / len(all_metrics) - print("\nF1 scores:") - _ = [print(m["f1"], end="\t") for m in all_metrics] - print(mean_metrics["f1"]) + print(f"F1 scores ({len(all_splits)} splits):\t", end="") + _ = [print(f'{m["f1"]:4.3f}', end="\t") for m in all_metrics] + print(f"Mean: {mean_metrics["f1"]:4.3f}") # combine train & test data to optimise best model with this feature set all_examples = all_splits[0][0] + all_splits[0][1] final_trained_model = train_model_from_examples(cached_train_model, all_examples) return mean_metrics, final_trained_model + + +if __name__ == "__main__": + from dotenv import load_dotenv + + load_dotenv() + all_features = [ + "Could believing this claim harm someone's health?", + "Does this sentence relate to many people?", + "Is this sentence likely to be believed by many people?", + "is_claim_type_quantity", + "Could believing this claim lead to violence?", + "Does the sentence contain compare quantities, such as 'more' or 'less'?", + "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual", + "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?", + "is_claim_type_rules", + "Is this sentence interesting to the average reader?", + "Does the sentence suggest a course of action?", + "is_claim_type_support", + "is_claim_type_other", + "is_claim_type_not_claim", + "is_claim_type_personal", + "is_claim_type_predictions", + ] + import json + + results = {} + for max_iter in range(3, 11): + finished = False + loop = 0 + while not finished: + try: + _best_features, _best_f1 = run_beam_search( + all_features, beta=5, max_iter=max_iter + ) + print(f"\n\nBest model at end of max_iter={max_iter}:") + if _best_features: + print(_best_f1) + _best_features.display_model() + model_dict = { + ( + "BIAS" + if isinstance(k, BiasType) + else (k.__name__ if callable(k) else k) + ): v + for k, v in _best_features.model.items() + } + else: + model_dict = None + results[max_iter] = {"best_f1": _best_f1, "best_features": model_dict} + with open("results.json", "w") as f: + json.dump(results, f, indent=2) + finished = True + + except Exception as e: + print(loop, e) + loop += 1 diff --git a/uv.lock b/uv.lock index a2b516d..31e48ff 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 2 +revision = 3 requires-python = ">=3.12, <3.14" resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'win32'", @@ -121,16 +121,39 @@ wheels = [ [[package]] name = "anyio" -version = "4.11.0" +version = "4.13.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, - { name = "sniffio" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c6/78/7d432127c41b50bccba979505f272c16cbcadcc33645d5fa3a738110ae75/anyio-4.11.0.tar.gz", hash = "sha256:82a8d0b81e318cc5ce71a5f1f8b5c4e63619620b63141ef8c995fa0db95a57c4", size = 219094, upload-time = "2025-09-23T09:19:12.58Z" } +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "ast-serialize" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/9d/09e27731bd5864a9ce04e3244074e674bb8936bf62b45e0357248717adac/ast_serialize-0.5.0.tar.gz", hash = "sha256:5880091bfe6f4f986f22866375c2e884843e7a0b6343ae41aeea659613d879b6", size = 61157, upload-time = "2026-05-17T17:48:29.429Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl", hash = "sha256:0287e96f4d26d4149305414d4e3bc32f0dcd0862365a4bddea19d7a1ec38c4fc", size = 109097, upload-time = "2025-09-23T09:19:10.601Z" }, + { url = "https://files.pythonhosted.org/packages/e0/9e/dc2530acb3a60dc6e46d65abf27d1d9f86721694757906a148d90a6860de/ast_serialize-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:0668aa9459cfa8c9c49ddd2163ebcf43088ba045ef7492af6fe22e0098303101", size = 1191380, upload-time = "2026-05-17T17:48:03.738Z" }, + { url = "https://files.pythonhosted.org/packages/26/0a/bd3d18a582f273d6c843d16bb9e22e9e16365ff7991e92f18f798e9f1224/ast_serialize-0.5.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:bf683d6363edf2b39eed6b6d4fe22d34b6203867a67e27134d9e2a2680c4bc4a", size = 1183879, upload-time = "2026-05-17T17:48:05.463Z" }, + { url = "https://files.pythonhosted.org/packages/40/ae/1f919100f8620887af58fcc381c61a1f218cdf89c6e155f87b213e61010a/ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc22cf0c9be65e71cf88fda130af60d61eb4a79370ad4cfe7900d48a4aa2211", size = 1244529, upload-time = "2026-05-17T17:48:07.008Z" }, + { url = "https://files.pythonhosted.org/packages/c6/ca/6376559dcce707cdbc1d0d9a13c8d3baaaa501e949ce0ebdc4230cd881aa/ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f66173891548c9f2726bf27957b41cabce12fa679dc6da505ddbde4d4b3b31cf", size = 1240560, upload-time = "2026-05-17T17:48:08.46Z" }, + { url = "https://files.pythonhosted.org/packages/35/b2/a620e206b5aeb7efbf2710336df57d457cffbb3991076bbcc1147ef9abd4/ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e42d729ef2be96a14efbad355093284739e3670ece3e534f82cc8832790911d9", size = 1451172, upload-time = "2026-05-17T17:48:09.922Z" }, + { url = "https://files.pythonhosted.org/packages/fa/e0/4ad5c04c24a40481b2935ce9a0ccdb6023dc8b667167d06ae530cc3512f2/ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b725026bafa801dbd7310eb13a75f0a2e370e7e51b2cb225f9d21fcfadf919ee", size = 1265072, upload-time = "2026-05-17T17:48:11.469Z" }, + { url = "https://files.pythonhosted.org/packages/b2/71/4d1d479aa56d0101c40e17720c3d6ac2af7269ea0487a80b18e7bfd1a5b7/ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b54f60c1d78767a53b67eaa663f0dfac3afe606aa07f1301572f588b73d64809", size = 1270488, upload-time = "2026-05-17T17:48:13.575Z" }, + { url = "https://files.pythonhosted.org/packages/6d/4f/0de1bbe06f6edef9fde4ed12ca8e7b3ec7e6e2bd4e672c5af487f7957665/ast_serialize-0.5.0-cp39-abi3-manylinux_2_31_riscv64.whl", hash = "sha256:27d51654fc240a1e87e742d353d98eb45b75f62f129086b3596ab53df2ac2a43", size = 1260702, upload-time = "2026-05-17T17:48:15.141Z" }, + { url = "https://files.pythonhosted.org/packages/75/61/e00872439cfdddcc3c1b6cdaa6e5d904ba8e26a18807c67c4e14409d0ca8/ast_serialize-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c36237c46dd1674542f2109740ea5ea485a169bf1431939ada0434e17934", size = 1311182, upload-time = "2026-05-17T17:48:16.779Z" }, + { url = "https://files.pythonhosted.org/packages/76/8e/699a5b955f7926956c95e9e1d74132acad73c2fe7a426f94da89123c20aa/ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1943db345233cc7194a470f13afa9c59772c0b123dea0c9414c4d4ca54369759", size = 1421410, upload-time = "2026-05-17T17:48:18.527Z" }, + { url = "https://files.pythonhosted.org/packages/a9/ae/d5b7626874478997adc7a29ab28accf21e596fb590c944290401dfd0b29e/ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:df1c00022cbbcb064bfaa505aa9c9295362443ce5dacb459d1331d3da353f887", size = 1516587, upload-time = "2026-05-17T17:48:20.133Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ce/b59e02a82d9c4244d64cde502e0b00e83e38816abe19155ceb5437402c7f/ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:cae65289fc456fde04af979a2be09302ef5d8ab92ef23e596d6746dc267ada27", size = 1515171, upload-time = "2026-05-17T17:48:21.921Z" }, + { url = "https://files.pythonhosted.org/packages/8b/38/d8d90042747d05aa08d4efcf1c99035a5f670a6bf4c214d31644392afbca/ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:239a4c354e8d676e9d94631d1d4a64edc6b266f86ff3a5a80aedd344f342c01d", size = 1464668, upload-time = "2026-05-17T17:48:23.544Z" }, + { url = "https://files.pythonhosted.org/packages/dd/51/5b840c4df7334104cecffa28f23904fe81ca89ca223d2450e288de39fd3c/ast_serialize-0.5.0-cp39-abi3-win32.whl", hash = "sha256:143a4ef63285a075871908fda3672dc21864b83a8ec3ee12304aa3e4c5387b9a", size = 1068311, upload-time = "2026-05-17T17:48:25.027Z" }, + { url = "https://files.pythonhosted.org/packages/41/11/ca5672c7d491825bc4cd6702dea106a6b60d928707712ec257c7833ae476/ast_serialize-0.5.0-cp39-abi3-win_amd64.whl", hash = "sha256:cf25572c526add400f26a4750dc6ce0c3bb93fc1f75e7ae0cad4ce4f2cd5c590", size = 1108931, upload-time = "2026-05-17T17:48:26.591Z" }, + { url = "https://files.pythonhosted.org/packages/45/19/cc8bd127d28a43da249aa955cfd164cf8fd534e79e42cea96c4854d72fd0/ast_serialize-0.5.0-cp39-abi3-win_arm64.whl", hash = "sha256:92a31c9c20d25a076edaeec76b128a3535d74a24f340b9a8a7e96c9b86dc9642", size = 1081181, upload-time = "2026-05-17T17:48:28.122Z" }, ] [[package]] @@ -144,7 +167,7 @@ wheels = [ [[package]] name = "black" -version = "25.11.0" +version = "26.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, @@ -154,88 +177,125 @@ dependencies = [ { name = "platformdirs" }, { name = "pytokens" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8c/ad/33adf4708633d047950ff2dfdea2e215d84ac50ef95aff14a614e4b6e9b2/black-25.11.0.tar.gz", hash = "sha256:9a323ac32f5dc75ce7470501b887250be5005a01602e931a15e45593f70f6e08", size = 655669, upload-time = "2025-11-10T01:53:50.558Z" } +sdist = { url = "https://files.pythonhosted.org/packages/22/58/0a9d9b1195c159d206000c541c3e05897e339be754f0e4d8b29445ab536e/black-26.5.0.tar.gz", hash = "sha256:5cbe4cc4037ffca34cdb0a6a9a046f104b262d0bd63c30fd4a88c7adc2049b1d", size = 677762, upload-time = "2026-05-16T17:57:12.54Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7f/12/5c35e600b515f35ffd737da7febdb2ab66bb8c24d88560d5e3ef3d28c3fd/black-25.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:80e7486ad3535636657aa180ad32a7d67d7c273a80e12f1b4bfa0823d54e8fac", size = 1772831, upload-time = "2025-11-10T02:03:47Z" }, - { url = "https://files.pythonhosted.org/packages/1a/75/b3896bec5a2bb9ed2f989a970ea40e7062f8936f95425879bbe162746fe5/black-25.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6cced12b747c4c76bc09b4db057c319d8545307266f41aaee665540bc0e04e96", size = 1608520, upload-time = "2025-11-10T01:58:46.895Z" }, - { url = "https://files.pythonhosted.org/packages/f3/b5/2bfc18330eddbcfb5aab8d2d720663cd410f51b2ed01375f5be3751595b0/black-25.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6cb2d54a39e0ef021d6c5eef442e10fd71fcb491be6413d083a320ee768329dd", size = 1682719, upload-time = "2025-11-10T01:56:55.24Z" }, - { url = "https://files.pythonhosted.org/packages/96/fb/f7dc2793a22cdf74a72114b5ed77fe3349a2e09ef34565857a2f917abdf2/black-25.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae263af2f496940438e5be1a0c1020e13b09154f3af4df0835ea7f9fe7bfa409", size = 1362684, upload-time = "2025-11-10T01:57:07.639Z" }, - { url = "https://files.pythonhosted.org/packages/ad/47/3378d6a2ddefe18553d1115e36aea98f4a90de53b6a3017ed861ba1bd3bc/black-25.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0a1d40348b6621cc20d3d7530a5b8d67e9714906dfd7346338249ad9c6cedf2b", size = 1772446, upload-time = "2025-11-10T02:02:16.181Z" }, - { url = "https://files.pythonhosted.org/packages/ba/4b/0f00bfb3d1f7e05e25bfc7c363f54dc523bb6ba502f98f4ad3acf01ab2e4/black-25.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:51c65d7d60bb25429ea2bf0731c32b2a2442eb4bd3b2afcb47830f0b13e58bfd", size = 1607983, upload-time = "2025-11-10T02:02:52.502Z" }, - { url = "https://files.pythonhosted.org/packages/99/fe/49b0768f8c9ae57eb74cc10a1f87b4c70453551d8ad498959721cc345cb7/black-25.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:936c4dd07669269f40b497440159a221ee435e3fddcf668e0c05244a9be71993", size = 1682481, upload-time = "2025-11-10T01:57:12.35Z" }, - { url = "https://files.pythonhosted.org/packages/55/17/7e10ff1267bfa950cc16f0a411d457cdff79678fbb77a6c73b73a5317904/black-25.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:f42c0ea7f59994490f4dccd64e6b2dd49ac57c7c84f38b8faab50f8759db245c", size = 1363869, upload-time = "2025-11-10T01:58:24.608Z" }, - { url = "https://files.pythonhosted.org/packages/00/5d/aed32636ed30a6e7f9efd6ad14e2a0b0d687ae7c8c7ec4e4a557174b895c/black-25.11.0-py3-none-any.whl", hash = "sha256:e3f562da087791e96cefcd9dda058380a442ab322a02e222add53736451f604b", size = 204918, upload-time = "2025-11-10T01:53:48.917Z" }, + { url = "https://files.pythonhosted.org/packages/22/89/feb65d2b11f8ccf60307b589e091e928011bde37751a451012e246a2e3dd/black-26.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b92983a6674c133ca61d6b4fea17f76cbbaac582ea583002792ee1094dbece49", size = 2007091, upload-time = "2026-05-16T18:01:03.624Z" }, + { url = "https://files.pythonhosted.org/packages/07/13/3684a1ba34c06ba9d5cf63ecdc3cd3635cdf347b7a9fbc67e0c31724f047/black-26.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1f80998e73fcfc67fc1d222060cf34ab213f1ae7e131b5c8199d93405890c13a", size = 1811228, upload-time = "2026-05-16T18:01:05.458Z" }, + { url = "https://files.pythonhosted.org/packages/7e/ea/6aa8f74867d1f7bc5d182ccd51ceaff9f48eb121d0b91c11030e554cca91/black-26.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:081df4dc908702e2becd66d714f125a954cbf1c6dbe2ad83a6be313368c7c2db", size = 1880889, upload-time = "2026-05-16T18:01:07.327Z" }, + { url = "https://files.pythonhosted.org/packages/d6/91/22e1222946dc566a05e62d2d0880ac3228ca07272eb3d4c490a48c788a56/black-26.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:cf015b38829ca32a699312fdcfb8c15bd0b156192f5400bd0b559c6bfef25236", size = 1483664, upload-time = "2026-05-16T18:01:08.875Z" }, + { url = "https://files.pythonhosted.org/packages/a4/56/b238209a41209e1c9c7e05dfbc63e656516a5db31acb3248890e538a3e79/black-26.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:828db2292848cf427592fcd162f02d770849d20ea4bdda2806e9494b3a15d481", size = 1285804, upload-time = "2026-05-16T18:01:10.812Z" }, + { url = "https://files.pythonhosted.org/packages/b2/0e/328992a8ce73c93605e7fe7325bcf38d3f1bc9b0118b514873699a5ed379/black-26.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c2b64ce9841e8b8254c3d702ebccdaf5c520607df8aa4176f5732b7f9af1e6f6", size = 2003830, upload-time = "2026-05-16T18:01:12.853Z" }, + { url = "https://files.pythonhosted.org/packages/15/07/0ded3f1c10306c0d4c5b112ec7c75bd323a199b96d9a0c61f4116ab985e8/black-26.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0a789a41b386f0f83711785f182f2977138ba9cc1f41ad0f6fbc8faac4d2639e", size = 1810249, upload-time = "2026-05-16T18:01:14.367Z" }, + { url = "https://files.pythonhosted.org/packages/65/71/b5cf00e7d8e5b168bfc389e3b937b8d1250cfdda0c6c607f91dba0d5c2a7/black-26.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f69837f7e26d67b1d1e9d0ed49231a14a0469f266e44cd142873e0552f325395", size = 1879117, upload-time = "2026-05-16T18:01:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/b5/0e/01baec29dd65ecca6be69d721b90dfff473b0e49fb49bb1b5b3fa470ab9d/black-26.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:c5b08371561dae9c90391fe7f2138fe7fa495437d3bb134eb865839036e65784", size = 1486102, upload-time = "2026-05-16T18:01:17.78Z" }, + { url = "https://files.pythonhosted.org/packages/36/4b/6f9623c8cd5a3c6883318800e2073761fd9db1e859f594ee42e95c18fcd6/black-26.5.0-cp313-cp313-win_arm64.whl", hash = "sha256:3968ce82ca0bd4914769518490d91a9b0ef2ff2fc68e2122d22b5915a0342eaa", size = 1286888, upload-time = "2026-05-16T18:01:19.275Z" }, + { url = "https://files.pythonhosted.org/packages/14/c8/13da5c6a37b46a690199e0895c33a758ba4f2ec3cd81d1d72ebb373509a8/black-26.5.0-py3-none-any.whl", hash = "sha256:241f25bf59f5ca17f5121031e310e089b84cd22bb4eca47360099ea825544f17", size = 212907, upload-time = "2026-05-16T17:57:10.792Z" }, ] [[package]] name = "certifi" -version = "2025.11.12" +version = "2026.4.22" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/8c/58f469717fa48465e4a50c014a0400602d3c437d7c0c468e17ada824da3a/certifi-2025.11.12.tar.gz", hash = "sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316", size = 160538, upload-time = "2025-11-12T02:54:51.517Z" } +sdist = { url = "https://files.pythonhosted.org/packages/25/ee/6caf7a40c36a1220410afe15a1cc64993a1f864871f698c0f93acb72842a/certifi-2026.4.22.tar.gz", hash = "sha256:8d455352a37b71bf76a79caa83a3d6c25afee4a385d632127b6afb3963f1c580", size = 137077, upload-time = "2026-04-22T11:26:11.191Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl", hash = "sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b", size = 159438, upload-time = "2025-11-12T02:54:49.735Z" }, + { url = "https://files.pythonhosted.org/packages/22/30/7cd8fdcdfbc5b869528b079bfb76dcdf6056b1a2097a662e5e8c04f42965/certifi-2026.4.22-py3-none-any.whl", hash = "sha256:3cb2210c8f88ba2318d29b0388d1023c8492ff72ecdde4ebdaddbb13a31b1c4a", size = 135707, upload-time = "2026-04-22T11:26:09.372Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, ] [[package]] name = "cfgv" -version = "3.4.0" +version = "3.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/b5/721b8799b04bf9afe054a3899c6cf4e880fcf8563cc71c15610242490a0c/cfgv-3.5.0.tar.gz", hash = "sha256:d5b1034354820651caa73ede66a6294d6e95c1b00acc5e9b098e917404669132", size = 7334, upload-time = "2025-11-19T20:55:51.612Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, + { url = "https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl", hash = "sha256:a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0", size = 7445, upload-time = "2025-11-19T20:55:50.744Z" }, ] [[package]] name = "charset-normalizer" -version = "3.4.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, - { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, - { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, - { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" }, - { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" }, - { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" }, - { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" }, - { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" }, - { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" }, - { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" }, - { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" }, - { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" }, - { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" }, - { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" }, - { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" }, - { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" }, - { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, - { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, - { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, - { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, - { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, - { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, - { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, - { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, - { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, - { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, - { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, - { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, - { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, - { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, - { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, - { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, - { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/eb/4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308/charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46", size = 311328, upload-time = "2026-04-02T09:26:24.331Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e3/0fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2", size = 208061, upload-time = "2026-04-02T09:26:25.568Z" }, + { url = "https://files.pythonhosted.org/packages/42/f0/3dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b", size = 229031, upload-time = "2026-04-02T09:26:26.865Z" }, + { url = "https://files.pythonhosted.org/packages/dc/67/675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a", size = 225239, upload-time = "2026-04-02T09:26:28.044Z" }, + { url = "https://files.pythonhosted.org/packages/4b/f8/d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116", size = 216589, upload-time = "2026-04-02T09:26:29.239Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f1/6d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb", size = 202733, upload-time = "2026-04-02T09:26:30.5Z" }, + { url = "https://files.pythonhosted.org/packages/6f/c0/7b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1", size = 212652, upload-time = "2026-04-02T09:26:31.709Z" }, + { url = "https://files.pythonhosted.org/packages/38/dd/5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15", size = 211229, upload-time = "2026-04-02T09:26:33.282Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ff/531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5", size = 203552, upload-time = "2026-04-02T09:26:34.845Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4c/a5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d", size = 230806, upload-time = "2026-04-02T09:26:36.152Z" }, + { url = "https://files.pythonhosted.org/packages/59/7a/071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7", size = 212316, upload-time = "2026-04-02T09:26:37.672Z" }, + { url = "https://files.pythonhosted.org/packages/fd/35/f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464", size = 227274, upload-time = "2026-04-02T09:26:38.93Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2d/a572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49", size = 218468, upload-time = "2026-04-02T09:26:40.17Z" }, + { url = "https://files.pythonhosted.org/packages/86/eb/890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca/charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c", size = 148460, upload-time = "2026-04-02T09:26:41.416Z" }, + { url = "https://files.pythonhosted.org/packages/35/d9/0e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853/charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6", size = 159330, upload-time = "2026-04-02T09:26:42.554Z" }, + { url = "https://files.pythonhosted.org/packages/9e/5d/481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701/charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d", size = 147828, upload-time = "2026-04-02T09:26:44.075Z" }, + { url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" }, + { url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" }, + { url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" }, + { url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" }, + { url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" }, + { url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" }, + { url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" }, + { url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" }, + { url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" }, + { url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, ] [[package]] name = "click" -version = "8.3.1" +version = "8.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +sdist = { url = "https://files.pythonhosted.org/packages/23/e4/796662cd90cf80e3a363c99db2b88e0e394b988a575f60a17e16440cd011/click-8.4.0.tar.gz", hash = "sha256:638f1338fe1235c8f4e008e4a8a254fb5c5fbdcbb40ece3c9142ebb78e792973", size = 350843, upload-time = "2026-05-17T00:47:58.425Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ae/8e92f8058baf87f6c7d86ee7e457668690195cc77efedb8d3797a06e3940/click-8.4.0-py3-none-any.whl", hash = "sha256:40c50b7c6c6adac2823d411041ec84f3f103f1b280d5e9ce0d7f998995832f81", size = 116147, upload-time = "2026-05-17T00:47:56.842Z" }, ] [[package]] @@ -247,6 +307,45 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] +[[package]] +name = "cryptography" +version = "48.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/a9/db8f313fdcd85d767d4973515e1db101f9c71f95fced83233de224673757/cryptography-48.0.0.tar.gz", hash = "sha256:5c3932f4436d1cccb036cb0eaef46e6e2db91035166f1ad6505c3c9d5a635920", size = 832984, upload-time = "2026-05-04T22:59:38.133Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/3d/01f6dd9190170a5a241e0e98c2d04be3664a9e6f5b9b872cde63aff1c3dd/cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:0c558d2cdffd8f4bbb30fc7134c74d2ca9a476f830bb053074498fbc86f41ed6", size = 8001587, upload-time = "2026-05-04T22:57:36.803Z" }, + { url = "https://files.pythonhosted.org/packages/b2/6e/e90527eef33f309beb811cf7c982c3aeffcce8e3edb178baa4ca3ae4a6fa/cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f5333311663ea94f75dd408665686aaf426563556bb5283554a3539177e03b8c", size = 4690433, upload-time = "2026-05-04T22:57:40.373Z" }, + { url = "https://files.pythonhosted.org/packages/90/04/673510ed51ddff56575f306cf1617d80411ee76831ccd3097599140efdfe/cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7995ef305d7165c3f11ae07f2517e5a4f1d5c18da1376a0a9ed496336b69e5f3", size = 4710620, upload-time = "2026-05-04T22:57:42.935Z" }, + { url = "https://files.pythonhosted.org/packages/14/d5/e9c4ef932c8d800490c34d8bd589d64a31d5890e27ec9e9ad532be893294/cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:40ba1f85eaa6959837b1d51c9767e230e14612eea4ef110ee8854ada22da1bf5", size = 4696283, upload-time = "2026-05-04T22:57:45.294Z" }, + { url = "https://files.pythonhosted.org/packages/0c/29/174b9dfb60b12d59ecfc6cfa04bc88c21b42a54f01b8aae09bb6e51e4c7f/cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:369a6348999f94bbd53435c894377b20ab95f25a9065c283570e70150d8abc3c", size = 5296573, upload-time = "2026-05-04T22:57:47.933Z" }, + { url = "https://files.pythonhosted.org/packages/95/38/0d29a6fd7d0d1373f0c0c88a04ba20e359b257753ac497564cd660fc1d55/cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:a0e692c683f4df67815a2d258b324e66f4738bd7a96a218c826dce4f4bd05d8f", size = 4743677, upload-time = "2026-05-04T22:57:50.067Z" }, + { url = "https://files.pythonhosted.org/packages/30/be/eef653013d5c63b6a490529e0316f9ac14a37602965d4903efed1399f32b/cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:18349bbc56f4743c8b12dc32e2bccb2cf83ee8b69a3bba74ef8ae857e26b3d25", size = 4330808, upload-time = "2026-05-04T22:57:52.301Z" }, + { url = "https://files.pythonhosted.org/packages/84/9e/500463e87abb7a0a0f9f256ec21123ecde0a7b5541a15e840ea54551fd81/cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:7e8eac43dfca5c4cccc6dad9a80504436fca53bb9bc3100a2386d730fbe6b602", size = 4695941, upload-time = "2026-05-04T22:57:54.603Z" }, + { url = "https://files.pythonhosted.org/packages/e3/dc/7303087450c2ec9e7fbb750e17c2abfbc658f23cbd0e54009509b7cc4091/cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9ccdac7d40688ecb5a3b4a604b8a88c8002e3442d6c60aead1db2a89a041560c", size = 5252579, upload-time = "2026-05-04T22:57:57.207Z" }, + { url = "https://files.pythonhosted.org/packages/d0/c0/7101d3b7215edcdc90c45da544961fd8ed2d6448f77577460fa75a8443f7/cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:bd72e68b06bb1e96913f97dd4901119bc17f39d4586a5adf2d3e47bc2b9d58b5", size = 4743326, upload-time = "2026-05-04T22:57:59.535Z" }, + { url = "https://files.pythonhosted.org/packages/ac/d8/5b833bad13016f562ab9d063d68199a4bd121d18458e439515601d3357ec/cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:59baa2cb386c4f0b9905bd6eb4c2a79a69a128408fd31d32ca4d7102d4156321", size = 4826672, upload-time = "2026-05-04T22:58:01.996Z" }, + { url = "https://files.pythonhosted.org/packages/98/e1/7074eb8bf3c135558c73fc2bcf0f5633f912e6fb87e868a55c454080ef09/cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:9249e3cd978541d665967ac2cb2787fd6a62bddf1e75b3e347a594d7dacf4f74", size = 4972574, upload-time = "2026-05-04T22:58:03.968Z" }, + { url = "https://files.pythonhosted.org/packages/04/70/e5a1b41d325f797f39427aa44ef8baf0be500065ab6d8e10369d850d4a4f/cryptography-48.0.0-cp311-abi3-win32.whl", hash = "sha256:9c459db21422be75e2809370b829a87eb37f74cd785fc4aa9ea1e5f43b47cda4", size = 3294868, upload-time = "2026-05-04T22:58:06.467Z" }, + { url = "https://files.pythonhosted.org/packages/f4/ac/8ac51b4a5fc5932eb7ee5c517ba7dc8cd834f0048962b6b352f00f41ebf9/cryptography-48.0.0-cp311-abi3-win_amd64.whl", hash = "sha256:5b012212e08b8dd5edc78ef54da83dd9892fd9105323b3993eff6bea65dc21d7", size = 3817107, upload-time = "2026-05-04T22:58:08.845Z" }, + { url = "https://files.pythonhosted.org/packages/f2/63/61d4a4e1c6b6bab6ce1e213cd36a24c415d90e76d78c5eb8577c5541d2e8/cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:58d00498e8933e4a194f3076aee1b4a97dfec1a6da444535755822fe5d8b0b86", size = 7983482, upload-time = "2026-05-04T22:58:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ac/f5b5995b87770c693e2596559ffafe195b4033a57f14a82268a2842953f3/cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:614d0949f4790582d2cc25553abd09dd723025f0c0e7c67376a1d77196743d6e", size = 4683266, upload-time = "2026-05-04T22:58:46.064Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c6/8b14f67e18338fbc4adb76f66c001f5c3610b3e2d1837f268f47a347dbbb/cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7ce4bfae76319a532a2dc68f82cc32f5676ee792a983187dac07183690e5c66f", size = 4696228, upload-time = "2026-05-04T22:58:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/ea/73/f808fbae9514bd91b47875b003f13e284c8c6bdfd904b7944e803937eec1/cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:2eb992bbd4661238c5a397594c83f5b4dc2bc5b848c365c8f991b6780efcc5c7", size = 4689097, upload-time = "2026-05-04T22:58:50.9Z" }, + { url = "https://files.pythonhosted.org/packages/93/01/d86632d7d28db8ae83221995752eeb6639ffb374c2d22955648cf8d52797/cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:22a5cb272895dce158b2cacdfdc3debd299019659f42947dbdac6f32d68fe832", size = 5283582, upload-time = "2026-05-04T22:58:53.017Z" }, + { url = "https://files.pythonhosted.org/packages/02/e1/50edc7a50334807cc4791fc4a0ce7468b4a1416d9138eab358bfc9a3d70b/cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2b4d59804e8408e2fea7d1fbaf218e5ec984325221db76e6a241a9abd6cdd95c", size = 4730479, upload-time = "2026-05-04T22:58:55.611Z" }, + { url = "https://files.pythonhosted.org/packages/6f/af/99a582b1b1641ff5911ac559beb45097cf79efd4ead4657f578ef1af2d47/cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:984a20b0f62a26f48a3396c72e4bc34c66e356d356bf370053066b3b6d54634a", size = 4326481, upload-time = "2026-05-04T22:58:57.607Z" }, + { url = "https://files.pythonhosted.org/packages/90/ee/89aa26a06ef0a7d7611788ffd571a7c50e368cc6a4d5eef8b4884e866edb/cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:5a5ed8fde7a1d09376ca0b40e68cd59c69fe23b1f9768bd5824f54681626032a", size = 4688713, upload-time = "2026-05-04T22:59:00.077Z" }, + { url = "https://files.pythonhosted.org/packages/70/ba/bcb1b0bb7a33d4c7c0c4d4c7874b4a62ae4f56113a5f4baefa362dfb1f0f/cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:8cd666227ef7af430aa5914a9910e0ddd703e75f039cef0825cd0da71b6b711a", size = 5238165, upload-time = "2026-05-04T22:59:02.317Z" }, + { url = "https://files.pythonhosted.org/packages/c9/70/ca4003b1ce5ca3dc3186ada51908c8a9b9ff7d5cab83cc0d43ee14ec144f/cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:9071196d81abc88b3516ac8cdfad32e2b66dd4a5393a8e68a961e9161ddc6239", size = 4729947, upload-time = "2026-05-04T22:59:05.255Z" }, + { url = "https://files.pythonhosted.org/packages/44/a0/4ec7cf774207905aef1a8d11c3750d5a1db805eb380ee4e16df317870128/cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1e2d54c8be6152856a36f0882ab231e70f8ec7f14e93cf87db8a2ed056bf160c", size = 4822059, upload-time = "2026-05-04T22:59:07.802Z" }, + { url = "https://files.pythonhosted.org/packages/1e/75/a2e55f99c16fcac7b5d6c1eb19ad8e00799854d6be5ca845f9259eae1681/cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a5da777e32ffed6f85a7b2b3f7c5cbc88c146bfcd0a1d7baf5fcc6c52ee35dd4", size = 4960575, upload-time = "2026-05-04T22:59:09.851Z" }, + { url = "https://files.pythonhosted.org/packages/b8/23/6e6f32143ab5d8b36ca848a502c4bcd477ae75b9e1677e3530d669062578/cryptography-48.0.0-cp39-abi3-win32.whl", hash = "sha256:77a2ccbbe917f6710e05ba9adaa25fb5075620bf3ea6fb751997875aff4ae4bd", size = 3279117, upload-time = "2026-05-04T22:59:12.019Z" }, + { url = "https://files.pythonhosted.org/packages/9d/9a/0fea98a70cf1749d41d738836f6349d97945f7c89433a259a6c2642eefeb/cryptography-48.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:16cd65b9330583e4619939b3a3843eec1e6e789744bb01e7c7e2e62e33c239c8", size = 3792100, upload-time = "2026-05-04T22:59:14.884Z" }, +] + [[package]] name = "cuda-bindings" version = "13.2.0" @@ -263,10 +362,10 @@ wheels = [ [[package]] name = "cuda-pathfinder" -version = "1.5.1" +version = "1.5.4" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c4/74/8c66861b873d8eed51fde56d3091baa4906a56f0d4390cae991f2d41dda5/cuda_pathfinder-1.5.1-py3-none-any.whl", hash = "sha256:b3718097fb57cf9e8a904dd072d806f2c9a27627e35c020b06ab9454bcec08c0", size = 49861, upload-time = "2026-04-03T16:41:22.203Z" }, + { url = "https://files.pythonhosted.org/packages/11/d0/c177e29701cf1d3008d7d2b16b5fc626592ce13bd535f8795c5f57187e0e/cuda_pathfinder-1.5.4-py3-none-any.whl", hash = "sha256:9563d3175ce1828531acf4b94e1c1c7d67208c347ca002493e2654878b26f4b7", size = 51657, upload-time = "2026-04-27T22:42:07.712Z" }, ] [[package]] @@ -278,9 +377,6 @@ wheels = [ ] [package.optional-dependencies] -cublas = [ - { name = "nvidia-cublas", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] cudart = [ { name = "nvidia-cuda-runtime", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, ] @@ -314,7 +410,7 @@ nvtx = [ [[package]] name = "datasets" -version = "4.8.4" +version = "4.8.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dill" }, @@ -332,9 +428,9 @@ dependencies = [ { name = "tqdm" }, { name = "xxhash" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/22/22/73e46ac7a8c25e7ef0b3bd6f10da3465021d90219a32eb0b4d2afea4c56e/datasets-4.8.4.tar.gz", hash = "sha256:a1429ed853275ce7943a01c6d2e25475b4501eb758934362106a280470df3a52", size = 604382, upload-time = "2026-03-23T14:21:17.987Z" } +sdist = { url = "https://files.pythonhosted.org/packages/66/34/14cd8e76f907f7d4dca2334cfeec9f81d30fd15c25a015f99aaea694eaed/datasets-4.8.5.tar.gz", hash = "sha256:0f0c1c3d56ffff2c93b2f4c63c95bac94f3d7e8621aea2a2a576275233bba772", size = 605649, upload-time = "2026-04-27T15:43:57.384Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/e5/247d094108e42ac26363ab8dc57f168840cf7c05774b40ffeb0d78868fcc/datasets-4.8.4-py3-none-any.whl", hash = "sha256:cdc8bee4698e549d78bf1fed6aea2eebc760b22b084f07e6fc020c6577a6ce6d", size = 526991, upload-time = "2026-03-23T14:21:15.89Z" }, + { url = "https://files.pythonhosted.org/packages/65/99/00f3196036501b53032c4b1ab8337a0b978dee832ed276dae3815df4e8b5/datasets-4.8.5-py3-none-any.whl", hash = "sha256:5079900781719c0e063a8efdd2cd95a31ad0c63209178669cd23cf1b926149ff", size = 528973, upload-time = "2026-04-27T15:43:53.702Z" }, ] [[package]] @@ -366,11 +462,11 @@ wheels = [ [[package]] name = "filelock" -version = "3.20.0" +version = "3.29.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/58/46/0028a82567109b5ef6e4d2a1f04a583fb513e6cf9527fcdd09afd817deeb/filelock-3.20.0.tar.gz", hash = "sha256:711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4", size = 18922, upload-time = "2025-10-08T18:03:50.056Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/fe/997687a931ab51049acce6fa1f23e8f01216374ea81374ddee763c493db5/filelock-3.29.0.tar.gz", hash = "sha256:69974355e960702e789734cb4871f884ea6fe50bd8404051a3530bc07809cf90", size = 57571, upload-time = "2026-04-19T15:39:10.068Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl", hash = "sha256:339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2", size = 16054, upload-time = "2025-10-08T18:03:48.35Z" }, + { url = "https://files.pythonhosted.org/packages/81/47/dd9a212ef6e343a6857485ffe25bba537304f1913bdbed446a23f7f592e1/filelock-3.29.0-py3-none-any.whl", hash = "sha256:96f5f6344709aa1572bbf631c640e4ebeeb519e08da902c39a001882f30ac258", size = 39812, upload-time = "2026-04-19T15:39:08.752Z" }, ] [[package]] @@ -473,7 +569,7 @@ dependencies = [ [[package]] name = "google-api-core" -version = "2.28.1" +version = "2.30.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-auth" }, @@ -482,22 +578,22 @@ dependencies = [ { name = "protobuf" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/61/da/83d7043169ac2c8c7469f0e375610d78ae2160134bf1b80634c482fa079c/google_api_core-2.28.1.tar.gz", hash = "sha256:2b405df02d68e68ce0fbc138559e6036559e685159d148ae5861013dc201baf8", size = 176759, upload-time = "2025-10-28T21:34:51.529Z" } +sdist = { url = "https://files.pythonhosted.org/packages/16/ce/502a57fb0ec752026d24df1280b162294b22a0afb98a326084f9a979138b/google_api_core-2.30.3.tar.gz", hash = "sha256:e601a37f148585319b26db36e219df68c5d07b6382cff2d580e83404e44d641b", size = 177001, upload-time = "2026-04-10T00:41:28.035Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ed/d4/90197b416cb61cefd316964fd9e7bd8324bcbafabf40eef14a9f20b81974/google_api_core-2.28.1-py3-none-any.whl", hash = "sha256:4021b0f8ceb77a6fb4de6fde4502cecab45062e66ff4f2895169e0b35bc9466c", size = 173706, upload-time = "2025-10-28T21:34:50.151Z" }, + { url = "https://files.pythonhosted.org/packages/03/15/e56f351cf6ef1cfea58e6ac226a7318ed1deb2218c4b3cc9bd9e4b786c5a/google_api_core-2.30.3-py3-none-any.whl", hash = "sha256:a85761ba72c444dad5d611c2220633480b2b6be2521eca69cca2dbb3ffd6bfe8", size = 173274, upload-time = "2026-04-09T22:57:16.198Z" }, ] [[package]] name = "google-auth" -version = "2.47.0" +version = "2.53.0" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "cryptography" }, { name = "pyasn1-modules" }, - { name = "rsa" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/60/3c/ec64b9a275ca22fa1cd3b6e77fefcf837b0732c890aa32d2bd21313d9b33/google_auth-2.47.0.tar.gz", hash = "sha256:833229070a9dfee1a353ae9877dcd2dec069a8281a4e72e72f77d4a70ff945da", size = 323719, upload-time = "2026-01-06T21:55:31.045Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c6/ad/ff781329bbbdc0974a098d996e89c9e1f7024262f9e3eec442fbb9ad1ac6/google_auth-2.53.0.tar.gz", hash = "sha256:e7e6aa16f6bee7b2b264830fd04f08087a1d5a836df516251a5d15327b246c9c", size = 335844, upload-time = "2026-05-15T20:53:07.928Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/db/18/79e9008530b79527e0d5f79e7eef08d3b179b7f851cfd3a2f27822fbdfa9/google_auth-2.47.0-py3-none-any.whl", hash = "sha256:c516d68336bfde7cf0da26aab674a36fedcf04b37ac4edd59c597178760c3498", size = 234867, upload-time = "2026-01-06T21:55:28.6Z" }, + { url = "https://files.pythonhosted.org/packages/4a/c9/db44165ba7c581268c6d46017ef63339110378305062830104fc7fa144cb/google_auth-2.53.0-py3-none-any.whl", hash = "sha256:6e7449917c599b35126a99ec268ec6880301f2fea41dce198fe8fd83ff642b68", size = 246071, upload-time = "2026-05-15T20:53:05.609Z" }, ] [package.optional-dependencies] @@ -507,20 +603,20 @@ requests = [ [[package]] name = "google-cloud-core" -version = "2.5.0" +version = "2.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-api-core" }, { name = "google-auth" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a6/03/ef0bc99d0e0faf4fdbe67ac445e18cdaa74824fd93cd069e7bb6548cb52d/google_cloud_core-2.5.0.tar.gz", hash = "sha256:7c1b7ef5c92311717bd05301aa1a91ffbc565673d3b0b4163a52d8413a186963", size = 36027, upload-time = "2025-10-29T23:17:39.513Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a8/dd/1eef226e470369b26824a505c34482c0b493bc35fe8e0c6b003b5feca21a/google_cloud_core-2.6.0.tar.gz", hash = "sha256:e76149739f90fac1fc6757c09f47eaccb3145b54adbd7759b0f7c4b235f46c83", size = 36001, upload-time = "2026-05-07T08:04:04.124Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/89/20/bfa472e327c8edee00f04beecc80baeddd2ab33ee0e86fd7654da49d45e9/google_cloud_core-2.5.0-py3-none-any.whl", hash = "sha256:67d977b41ae6c7211ee830c7912e41003ea8194bff15ae7d72fd6f51e57acabc", size = 29469, upload-time = "2025-10-29T23:17:38.548Z" }, + { url = "https://files.pythonhosted.org/packages/84/4a/98da8930ab109c73d9a5d13782a9ebb81ea8c111f6d534a567b71d23e52b/google_cloud_core-2.6.0-py3-none-any.whl", hash = "sha256:6d63ac8e5eca6d9e4319d0a1e2265fadcd7f1049904378caecfa01cf52dd869e", size = 29390, upload-time = "2026-05-07T08:02:34.672Z" }, ] [[package]] name = "google-genai" -version = "1.59.0" +version = "2.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, @@ -534,21 +630,21 @@ dependencies = [ { name = "typing-extensions" }, { name = "websockets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/40/34/c03bcbc759d67ac3d96077838cdc1eac85417de6ea3b65b313fe53043eee/google_genai-1.59.0.tar.gz", hash = "sha256:0b7a2dc24582850ae57294209d8dfc2c4f5fcfde0a3f11d81dc5aca75fb619e2", size = 487374, upload-time = "2026-01-15T20:29:46.619Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/91/15fff1b7c22dc0b5b44fa348f151379721353d06a3da22dbbe15bf2c4dd9/google_genai-2.4.0.tar.gz", hash = "sha256:3f8d4bd618be2801e805dc698726731a70f34b438ea25a6c92800eef5b1f513e", size = 552025, upload-time = "2026-05-18T00:25:14.556Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/aa/53/6d00692fe50d73409b3406ae90c71bc4499c8ae7fac377ba16e283da917c/google_genai-1.59.0-py3-none-any.whl", hash = "sha256:59fc01a225d074fe9d1e626c3433da292f33249dadce4deb34edea698305a6df", size = 719099, upload-time = "2026-01-15T20:29:44.604Z" }, + { url = "https://files.pythonhosted.org/packages/ed/c8/1b49f6bb69dc7e291ba5d14926937bec4dffcc09ee875822636bd5ef3cf4/google_genai-2.4.0-py3-none-any.whl", hash = "sha256:48df1c44190b05b834fee9cffd360af6d6fd7f68164588e7ebd670fa34f71ee1", size = 818207, upload-time = "2026-05-18T00:25:12.426Z" }, ] [[package]] name = "googleapis-common-protos" -version = "1.72.0" +version = "1.75.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "protobuf" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e5/7b/adfd75544c415c487b33061fe7ae526165241c1ea133f9a9125a56b39fd8/googleapis_common_protos-1.72.0.tar.gz", hash = "sha256:e55a601c1b32b52d7a3e65f43563e2aa61bcd737998ee672ac9b951cd49319f5", size = 147433, upload-time = "2025-11-06T18:29:24.087Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/c8/f439cffde755cffa462bfbb156278fa6f9d09119719af9814b858fd4f81f/googleapis_common_protos-1.75.0.tar.gz", hash = "sha256:53a062ff3c32552fbd62c11fe23768b78e4ddf0494d5e5fd97d3f4689c75fbbd", size = 151035, upload-time = "2026-05-07T08:04:49.423Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c4/ab/09169d5a4612a5f92490806649ac8d41e3ec9129c636754575b3553f4ea4/googleapis_common_protos-1.72.0-py3-none-any.whl", hash = "sha256:4299c5a82d5ae1a9702ada957347726b167f9f8d1fc352477702a1e851ff4038", size = 297515, upload-time = "2025-11-06T18:29:13.14Z" }, + { url = "https://files.pythonhosted.org/packages/e7/c8/e2645aa8ed02fd4c7a2f59d68783b65b1f3cbdfe39a6308e156509d1fee8/googleapis_common_protos-1.75.0-py3-none-any.whl", hash = "sha256:961ed60399c457ceb0ee8f285a84c870aabc9c6a832b9d37bb281b5bebde43ed", size = 300631, upload-time = "2026-05-07T08:03:30.345Z" }, ] [[package]] @@ -562,26 +658,26 @@ wheels = [ [[package]] name = "hf-xet" -version = "1.4.3" +version = "1.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/53/92/ec9ad04d0b5728dca387a45af7bc98fbb0d73b2118759f5f6038b61a57e8/hf_xet-1.4.3.tar.gz", hash = "sha256:8ddedb73c8c08928c793df2f3401ec26f95be7f7e516a7bee2fbb546f6676113", size = 670477, upload-time = "2026-03-31T22:40:07.874Z" } +sdist = { url = "https://files.pythonhosted.org/packages/74/d8/5c06fc76461418326a7decf8367480c35be11a41fd938633929c60a9ec6b/hf_xet-1.5.0.tar.gz", hash = "sha256:e0fb0a34d9f406eed88233e829a67ec016bec5af19e480eac65a233ea289a948", size = 837196, upload-time = "2026-05-06T06:18:15.583Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/72/43/724d307b34e353da0abd476e02f72f735cdd2bc86082dee1b32ea0bfee1d/hf_xet-1.4.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:7551659ba4f1e1074e9623996f28c3873682530aee0a846b7f2f066239228144", size = 3800935, upload-time = "2026-03-31T22:39:49.618Z" }, - { url = "https://files.pythonhosted.org/packages/2b/d2/8bee5996b699262edb87dbb54118d287c0e1b2fc78af7cdc41857ba5e3c4/hf_xet-1.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:bee693ada985e7045997f05f081d0e12c4c08bd7626dc397f8a7c487e6c04f7f", size = 3558942, upload-time = "2026-03-31T22:39:47.938Z" }, - { url = "https://files.pythonhosted.org/packages/c3/a1/e993d09cbe251196fb60812b09a58901c468127b7259d2bf0f68bf6088eb/hf_xet-1.4.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:21644b404bb0100fe3857892f752c4d09642586fd988e61501c95bbf44b393a3", size = 4207657, upload-time = "2026-03-31T22:39:39.69Z" }, - { url = "https://files.pythonhosted.org/packages/64/44/9eb6d21e5c34c63e5e399803a6932fa983cabdf47c0ecbcfe7ea97684b8c/hf_xet-1.4.3-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:987f09cfe418237812896a6736b81b1af02a3a6dcb4b4944425c4c4fca7a7cf8", size = 3986765, upload-time = "2026-03-31T22:39:37.936Z" }, - { url = "https://files.pythonhosted.org/packages/ea/7b/8ad6f16fdb82f5f7284a34b5ec48645bd575bdcd2f6f0d1644775909c486/hf_xet-1.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:60cf7fc43a99da0a853345cf86d23738c03983ee5249613a6305d3e57a5dca74", size = 4188162, upload-time = "2026-03-31T22:39:58.382Z" }, - { url = "https://files.pythonhosted.org/packages/1b/c4/39d6e136cbeea9ca5a23aad4b33024319222adbdc059ebcda5fc7d9d5ff4/hf_xet-1.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2815a49a7a59f3e2edf0cf113ae88e8cb2ca2a221bf353fb60c609584f4884d4", size = 4424525, upload-time = "2026-03-31T22:40:00.225Z" }, - { url = "https://files.pythonhosted.org/packages/46/f2/adc32dae6bdbc367853118b9878139ac869419a4ae7ba07185dc31251b76/hf_xet-1.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:42ee323265f1e6a81b0e11094564fb7f7e0ec75b5105ffd91ae63f403a11931b", size = 3671610, upload-time = "2026-03-31T22:40:10.42Z" }, - { url = "https://files.pythonhosted.org/packages/e2/19/25d897dcc3f81953e0c2cde9ec186c7a0fee413eb0c9a7a9130d87d94d3a/hf_xet-1.4.3-cp313-cp313t-win_arm64.whl", hash = "sha256:27c976ba60079fb8217f485b9c5c7fcd21c90b0367753805f87cb9f3cdc4418a", size = 3528529, upload-time = "2026-03-31T22:40:09.106Z" }, - { url = "https://files.pythonhosted.org/packages/ac/9f/9c23e4a447b8f83120798f9279d0297a4d1360bdbf59ef49ebec78fe2545/hf_xet-1.4.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:d0da85329eaf196e03e90b84c2d0aca53bd4573d097a75f99609e80775f98025", size = 3805048, upload-time = "2026-03-31T22:39:53.105Z" }, - { url = "https://files.pythonhosted.org/packages/0b/f8/7aacb8e5f4a7899d39c787b5984e912e6c18b11be136ef13947d7a66d265/hf_xet-1.4.3-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:e23717ce4186b265f69afa66e6f0069fe7efbf331546f5c313d00e123dc84583", size = 3562178, upload-time = "2026-03-31T22:39:51.295Z" }, - { url = "https://files.pythonhosted.org/packages/df/9a/a24b26dc8a65f0ecc0fe5be981a19e61e7ca963b85e062c083f3a9100529/hf_xet-1.4.3-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc360b70c815bf340ed56c7b8c63aacf11762a4b099b2fe2c9bd6d6068668c08", size = 4212320, upload-time = "2026-03-31T22:39:42.922Z" }, - { url = "https://files.pythonhosted.org/packages/53/60/46d493db155d2ee2801b71fb1b0fd67696359047fdd8caee2c914cc50c79/hf_xet-1.4.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:39f2d2e9654cd9b4319885733993807aab6de9dfbd34c42f0b78338d6617421f", size = 3991546, upload-time = "2026-03-31T22:39:41.335Z" }, - { url = "https://files.pythonhosted.org/packages/bc/f5/067363e1c96c6b17256910830d1b54099d06287e10f4ec6ec4e7e08371fc/hf_xet-1.4.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:49ad8a8cead2b56051aa84d7fce3e1335efe68df3cf6c058f22a65513885baac", size = 4193200, upload-time = "2026-03-31T22:40:01.936Z" }, - { url = "https://files.pythonhosted.org/packages/42/4b/53951592882d9c23080c7644542fda34a3813104e9e11fa1a7d82d419cb8/hf_xet-1.4.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:7716d62015477a70ea272d2d68cd7cad140f61c52ee452e133e139abfe2c17ba", size = 4429392, upload-time = "2026-03-31T22:40:03.492Z" }, - { url = "https://files.pythonhosted.org/packages/8a/21/75a6c175b4e79662ad8e62f46a40ce341d8d6b206b06b4320d07d55b188c/hf_xet-1.4.3-cp37-abi3-win_amd64.whl", hash = "sha256:6b591fcad34e272a5b02607485e4f2a1334aebf1bc6d16ce8eb1eb8978ac2021", size = 3677359, upload-time = "2026-03-31T22:40:13.619Z" }, - { url = "https://files.pythonhosted.org/packages/8a/7c/44314ecd0e89f8b2b51c9d9e5e7a60a9c1c82024ac471d415860557d3cd8/hf_xet-1.4.3-cp37-abi3-win_arm64.whl", hash = "sha256:7c2c7e20bcfcc946dc67187c203463f5e932e395845d098cc2a93f5b67ca0b47", size = 3533664, upload-time = "2026-03-31T22:40:12.152Z" }, + { url = "https://files.pythonhosted.org/packages/68/9b/6912c99070915a4f28119e3c5b52a9abd1eec0ad5cb293b8c967a0c6f5a2/hf_xet-1.5.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:7d70fe2ce97b9db73b9c9b9c81fe3693640aec83416a966c446afea54acfae3c", size = 4023383, upload-time = "2026-05-06T06:17:53.947Z" }, + { url = "https://files.pythonhosted.org/packages/0f/6d/9563cfde59b5d8128a9c7ec972a087f4c782e4f7bac5a85234edfd5d5e49/hf_xet-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:73a0dae8c71de3b0633a45c73f4a4a5ed09e94b43441d82981a781d4f12baa42", size = 3792751, upload-time = "2026-05-06T06:17:51.791Z" }, + { url = "https://files.pythonhosted.org/packages/07/a5/ed5a0cf35b49a0571af5a8f53416dad1877a718c021c9937c3a53cb45781/hf_xet-1.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a60290ec57e9b71767fba7c3645ddafdd0759974b540441510c629c6db6db24a", size = 4456058, upload-time = "2026-05-06T06:17:40.735Z" }, + { url = "https://files.pythonhosted.org/packages/60/fb/3ae8bf2a7a37a4197d0195d7247fd25b3952e15cb8a599e285dfaa6f52b3/hf_xet-1.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:e5de0f6deada0dada870bb376a11bcd1f08abf3a968a6d118f33e72d1b1eb480", size = 4250783, upload-time = "2026-05-06T06:17:38.412Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/8bae40d4d91525085137196e84eb0ed49cf65b5e96e5c3ecdadd8bd0fac2/hf_xet-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c799d49f1a5544a0ef7591c0ee75e0d6b93d6f56dc7a4979f59f7518d2872216", size = 4445594, upload-time = "2026-05-06T06:18:04.219Z" }, + { url = "https://files.pythonhosted.org/packages/13/59/c74efbbd4e8728172b2cc72a2bc014d2947a4b7bdced932fbd3f5da1a4e5/hf_xet-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2baea1b0b989e5c152fe81425f7745ddc8901280ba3d97c98d8cdece7b706c60", size = 4663995, upload-time = "2026-05-06T06:18:06.1Z" }, + { url = "https://files.pythonhosted.org/packages/73/32/8e1e0410af64cda9b139d1dcebdc993a8ff9c8c7c0e2696ae356d75ccc0d/hf_xet-1.5.0-cp313-cp313t-win_amd64.whl", hash = "sha256:526345b3ed45f374f6317349df489167606736c876241ba984105afe7fd4839d", size = 3966608, upload-time = "2026-05-06T06:18:19.74Z" }, + { url = "https://files.pythonhosted.org/packages/fc/34/a8febc8f4edbea8b3e21b02ebc8b628679b84ba7e45cde624a7736b51500/hf_xet-1.5.0-cp313-cp313t-win_arm64.whl", hash = "sha256:786d28e2eb8315d5035544b9d137b4a842d600c434bb91bf7d0d953cce906ad4", size = 3796946, upload-time = "2026-05-06T06:18:17.568Z" }, + { url = "https://files.pythonhosted.org/packages/3d/fb/69ff198a82cae7eb1a69fb84d93b3a3e4816564d76817fe541ddc96874eb/hf_xet-1.5.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:dad0dc84e941b8ba3c860659fe1fdc35c049d47cce293f003287757e971a8f56", size = 4030814, upload-time = "2026-05-06T06:17:57.933Z" }, + { url = "https://files.pythonhosted.org/packages/9b/ff/edcc2b40162bef3ff78e14ab637e5f3b89243d6aee72f5949d3bb6a5af83/hf_xet-1.5.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:fd6e5a9b0fdac4ed03ed45ef79254a655b1aaab514a02202617fbf643f5fdf7a", size = 3798444, upload-time = "2026-05-06T06:17:55.79Z" }, + { url = "https://files.pythonhosted.org/packages/49/4d/103f76b04310e5e57656696cc184690d20c466af0bca3ca88f8c8ea5d4f3/hf_xet-1.5.0-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3531b1823a0e6d77d80f9ed15ca0e00f0d115094f8ac033d5cae88f4564cc949", size = 4465986, upload-time = "2026-05-06T06:17:44.886Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a2/546f47f464737b3edbab6f8ddb57f2599b93d2cbb66f06abb475ccb48651/hf_xet-1.5.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:9a0ee58cd18d5ea799f7ed11290bbccbe56bdd8b1d97ca74b9cc49a3945d7a3b", size = 4259865, upload-time = "2026-05-06T06:17:42.639Z" }, + { url = "https://files.pythonhosted.org/packages/95/7f/1be593c1f28613be2e196473481cd81bfc5910795e30a34e8f744f6cac4f/hf_xet-1.5.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1e60df5a42e9bed8628b6416af2cba4cba57ae9f02de226a06b020d98e1aab18", size = 4459835, upload-time = "2026-05-06T06:18:08.026Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b2/703569fc881f3284487e68cda7b42179978480da3c438042a6bbbb4a671c/hf_xet-1.5.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4b35549ce62601b84da4ff9b24d970032ace3d4430f52d91bcbb26c901d6c690", size = 4672414, upload-time = "2026-05-06T06:18:09.864Z" }, + { url = "https://files.pythonhosted.org/packages/af/37/1b6def445c567286b50aa3b33828158e135b1be44938dde59f11382a500c/hf_xet-1.5.0-cp37-abi3-win_amd64.whl", hash = "sha256:2806c7c17b4d23f8d88f7c4814f838c3b6150773fe339c20af23e1cfaf2797e4", size = 3977238, upload-time = "2026-05-06T06:18:23.621Z" }, + { url = "https://files.pythonhosted.org/packages/62/94/3b66b148778ee100dcfd69c2ca22b57b41b44d3063ceec934f209e9184ce/hf_xet-1.5.0-cp37-abi3-win_arm64.whl", hash = "sha256:b6c9df403040248c76d808d3e047d64db2d923bae593eb244c41e425cf6cd7be", size = 3806916, upload-time = "2026-05-06T06:18:21.7Z" }, ] [[package]] @@ -614,7 +710,7 @@ wheels = [ [[package]] name = "huggingface-hub" -version = "1.9.0" +version = "1.15.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, @@ -627,27 +723,27 @@ dependencies = [ { name = "typer" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/88/bb/62c7aa86f63a05e2f9b96642fdef9b94526a23979820b09f5455deff4983/huggingface_hub-1.9.0.tar.gz", hash = "sha256:0ea5be7a56135c91797cae6ad726e38eaeb6eb4b77cefff5c9d38ba0ecf874f7", size = 750326, upload-time = "2026-04-03T08:35:55.888Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/b6/e22bd20a25299c34b8c5922c1545a6320825b13906eb0f7298edfd034a0b/huggingface_hub-1.15.0.tar.gz", hash = "sha256:28abfdddda3927fd4de6a63cf26ab012498a2c24dae52baf150c5c6edf98a1d5", size = 784100, upload-time = "2026-05-15T11:42:52.149Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/73/37/0d15d16150e1829f3e90962c99f28257f6de9e526a680b4c6f5acdb54fd2/huggingface_hub-1.9.0-py3-none-any.whl", hash = "sha256:2999328c058d39fd19ab748dd09bd4da2fbaa4f4c1ddea823eab103051e14a1f", size = 637355, upload-time = "2026-04-03T08:35:53.897Z" }, + { url = "https://files.pythonhosted.org/packages/6e/11/0b64cc9024329b76d7547c19a67604a61d21d3ba678a69d1b220c29d5112/huggingface_hub-1.15.0-py3-none-any.whl", hash = "sha256:a4a59af04cbc41a3fe3fec429b171ef994ef8c971eda10136746f408dd4e3744", size = 663602, upload-time = "2026-05-15T11:42:50.487Z" }, ] [[package]] name = "identify" -version = "2.6.15" +version = "2.6.19" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ff/e7/685de97986c916a6d93b3876139e00eef26ad5bbbd61925d670ae8013449/identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf", size = 99311, upload-time = "2025-10-02T17:43:40.631Z" } +sdist = { url = "https://files.pythonhosted.org/packages/52/63/51723b5f116cc04b061cb6f5a561790abf249d25931d515cd375e063e0f4/identify-2.6.19.tar.gz", hash = "sha256:6be5020c38fcb07da56c53733538a3081ea5aa70d36a156f83044bfbf9173842", size = 99567, upload-time = "2026-04-17T18:39:50.265Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl", hash = "sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757", size = 99183, upload-time = "2025-10-02T17:43:39.137Z" }, + { url = "https://files.pythonhosted.org/packages/94/84/d9273cd09688070a6523c4aee4663a8538721b2b755c4962aafae0011e72/identify-2.6.19-py2.py3-none-any.whl", hash = "sha256:20e6a87f786f768c092a721ad107fc9df0eb89347be9396cadf3f4abbd1fb78a", size = 99397, upload-time = "2026-04-17T18:39:49.221Z" }, ] [[package]] name = "idna" -version = "3.11" +version = "3.15" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +sdist = { url = "https://files.pythonhosted.org/packages/82/77/7b3966d0b9d1d31a36ddf1746926a11dface89a83409bf1483f0237aa758/idna-3.15.tar.gz", hash = "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc", size = 199245, upload-time = "2026-05-12T22:45:57.011Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, + { url = "https://files.pythonhosted.org/packages/d2/23/408243171aa9aaba178d3e2559159c24c1171a641aa83b67bdd3394ead8e/idna-3.15-py3-none-any.whl", hash = "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8", size = 72340, upload-time = "2026-05-12T22:45:55.733Z" }, ] [[package]] @@ -661,11 +757,11 @@ wheels = [ [[package]] name = "isort" -version = "7.0.0" +version = "8.0.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/63/53/4f3c058e3bace40282876f9b553343376ee687f3c35a525dc79dbd450f88/isort-7.0.0.tar.gz", hash = "sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187", size = 805049, upload-time = "2025-10-11T13:30:59.107Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/7c/ec4ab396d31b3b395e2e999c8f46dec78c5e29209fac49d1f4dace04041d/isort-8.0.1.tar.gz", hash = "sha256:171ac4ff559cdc060bcfff550bc8404a486fee0caab245679c2abe7cb253c78d", size = 769592, upload-time = "2026-02-28T10:08:20.685Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7f/ed/e3705d6d02b4f7aea715a353c8ce193efd0b5db13e204df895d38734c244/isort-7.0.0-py3-none-any.whl", hash = "sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1", size = 94672, upload-time = "2025-10-11T13:30:57.665Z" }, + { url = "https://files.pythonhosted.org/packages/3e/95/c7c34aa53c16353c56d0b802fba48d5f5caa2cdee7958acbcb795c830416/isort-8.0.1-py3-none-any.whl", hash = "sha256:28b89bc70f751b559aeca209e6120393d43fbe2490de0559662be7a9787e3d75", size = 89733, upload-time = "2026-02-28T10:08:19.466Z" }, ] [[package]] @@ -682,11 +778,11 @@ wheels = [ [[package]] name = "joblib" -version = "1.5.2" +version = "1.5.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e8/5d/447af5ea094b9e4c4054f82e223ada074c552335b9b4b2d14bd9b35a67c4/joblib-1.5.2.tar.gz", hash = "sha256:3faa5c39054b2f03ca547da9b2f52fde67c06240c31853f306aea97f13647b55", size = 331077, upload-time = "2025-08-27T12:15:46.575Z" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/e8/685f47e0d754320684db4425a0967f7d3fa70126bffd76110b7009a0090f/joblib-1.5.2-py3-none-any.whl", hash = "sha256:4e1f0bdbb987e6d843c70cf43714cb276623def372df3c22fe5266b2670bc241", size = 308396, upload-time = "2025-08-27T12:15:45.188Z" }, + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, ] [[package]] @@ -698,16 +794,50 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/e1/f0e63cc027669763ccc2c1e62ba69959ec02db5328c81df2508a52711ec9/json_repair-0.40.0-py3-none-any.whl", hash = "sha256:46955bfd22338ba60cc5239c0b01462ba419871b19fcd68d8881aca4fa3b0d2f", size = 20736, upload-time = "2025-03-19T12:21:42.867Z" }, ] +[[package]] +name = "librt" +version = "0.11.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/40/08/9e7f6b5d2b5bed6ad055cdd5925f192bb403a51280f86b56554d9d0699a2/librt-0.11.0.tar.gz", hash = "sha256:075dc3ef4458a278e0195cbf6ac9d38808d9b906c5a6c7f7f79c3888276a3fb1", size = 200139, upload-time = "2026-05-10T18:17:25.138Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/d0/07c77e067f0838949b43bd89232c29d72efebb9d2801a9750184eb706b71/librt-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b87504f1690a23b9a2cca841191a04f83895d4fc2dd04df91d82b1a04ca2ad46", size = 144147, upload-time = "2026-05-10T18:15:53.227Z" }, + { url = "https://files.pythonhosted.org/packages/7a/24/8493538fa4f62f982686398a5b8f68008138a75086abdea19ade64bf4255/librt-0.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40071fc5fe0ce8daa6de616702314a01e1250711682b0523d6ab8d4525910cb3", size = 143614, upload-time = "2026-05-10T18:15:54.657Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1e/f8bad050810d9171f34a1648ed910e56814c2ba61639f2bd53c6377ae24b/librt-0.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:137e79445c896a0ea7b265f52d23954e05b64222ee1af69e2cb34219067cbb67", size = 485538, upload-time = "2026-05-10T18:15:56.117Z" }, + { url = "https://files.pythonhosted.org/packages/c0/fe/3594ebfbaf03084ba4b120c9ba5c3183fd938a48725e9bbe6ff0a5159ad8/librt-0.11.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:cca6644054e78746d8d4ef238681f9c34ff8b584fe6b988ecebb8db3b15e622a", size = 479623, upload-time = "2026-05-10T18:15:57.544Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/5d1876984b3746c85dbd219dbfcb73c85f54ee263fd32e5b2a632ec14571/librt-0.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d5b0eea49f5562861ee8d757a32ef7d559c1d35be2aaaa1ec28941d74c9ffc8a", size = 513082, upload-time = "2026-05-10T18:15:58.805Z" }, + { url = "https://files.pythonhosted.org/packages/19/6e/55bdf5d5ca00c3e18430690bf2c953d8d3ffd3c337418173d33dec985dc9/librt-0.11.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0d1029d7e1ae1a7e647ed6fb5df8c4ce2dffefb7a9f5fd1376a4554d96dac09f", size = 508105, upload-time = "2026-05-10T18:16:00.2Z" }, + { url = "https://files.pythonhosted.org/packages/07/10/f1f23a7c595ee90ece4d35c851e5d104b1311a887ed1b4ac4c35bbd13da8/librt-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bc3ce6b33c5828d9e80592011a5c584cb2ce86edbc4088405f70da47dc1d1b3b", size = 522268, upload-time = "2026-05-10T18:16:01.708Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/5720f5697a7f54b78b3aefbe20df3a48cedcff1276618c4aa481177942ed/librt-0.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:936c5995f3514a42111f20099397d8177c79b4d7e70961e396c6f5a0a3566766", size = 527348, upload-time = "2026-05-10T18:16:03.496Z" }, + { url = "https://files.pythonhosted.org/packages/50/db/b4a47c6f91db4ff76348a0b3dd0cc65e090a078b765a810a62ff9434c3d3/librt-0.11.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9bc0ca6ad9381cbe8e4aa6e5726e4c80c78115a6e9723c599ed1d73e092bc49d", size = 516294, upload-time = "2026-05-10T18:16:05.173Z" }, + { url = "https://files.pythonhosted.org/packages/9e/58/9384b2f4eb1ed1d273d40948a7c5c4b2360213b402ef3be4641c06299f9c/librt-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:070aa8c26c0a74774317a72df8851facc7f0f012a5b406557ac56992d92e1ec8", size = 553608, upload-time = "2026-05-10T18:16:06.839Z" }, + { url = "https://files.pythonhosted.org/packages/21/7b/5aa8848a7c6a9278c79375146da1812e695754ceec5f005e6043461a7315/librt-0.11.0-cp312-cp312-win32.whl", hash = "sha256:6bf14feb84b05ae945277395451998c89c54d0def4070eb5c08de544930b245a", size = 101879, upload-time = "2026-05-10T18:16:08.103Z" }, + { url = "https://files.pythonhosted.org/packages/37/33/8a745436944947575b584231750a41417de1a38cf6a2e9251d1065651c09/librt-0.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:75672f0bc524ede266287d532d7923dbce94c7514ad07627bac3d0c6d92cc4d9", size = 119831, upload-time = "2026-05-10T18:16:09.174Z" }, + { url = "https://files.pythonhosted.org/packages/59/67/a6739ac96e28b7855808bdb0370e250606104a859750d209e5a0716fe7ab/librt-0.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:2f10cf143e4a9bb0f4f5af568a00df94a2d69ef41c2579584454bb0fe5cc642c", size = 103470, upload-time = "2026-05-10T18:16:10.369Z" }, + { url = "https://files.pythonhosted.org/packages/82/61/e59168d4d0bf2bf90f4f0caf7a001bfc60254c3af4586013b04dc3ef517b/librt-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:78dc31f7fdfe9c9d0eb0e8f42d139db230e826415bbcabd9f0e9faaaee909894", size = 144119, upload-time = "2026-05-10T18:16:11.771Z" }, + { url = "https://files.pythonhosted.org/packages/61/fd/caa1d60b12f7dd79ccea23054e06eeaebe266a5f52c40a6b651069200ce5/librt-0.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:fa475675db22290c3158e1d42326d0f5a65f04f44a0e68c3630a25b53560fb9c", size = 143565, upload-time = "2026-05-10T18:16:13.334Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a9/dc744f5c2b4978d48db970be29f22716d3413d28b14ad99740817315cf2c/librt-0.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:621db29691044bdeda22e789e482e1b0f3a985d90e3426c9c6d17606416205ea", size = 485395, upload-time = "2026-05-10T18:16:14.729Z" }, + { url = "https://files.pythonhosted.org/packages/8f/21/7f8e97a1e4dae952a5a95948f6f8507a173bc1e669f54340bba6ca1ca31b/librt-0.11.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:a9010e2ed5b3a9e158c5fd966b3ab7e834bb3d3aacc8f66c91dd4b57a3799230", size = 479383, upload-time = "2026-05-10T18:16:16.321Z" }, + { url = "https://files.pythonhosted.org/packages/a6/6d/d8ee9c114bebf2c50e29ec2aa940826fccb62a645c3e4c18760987d0e16d/librt-0.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7c39513d8b7477a2e1ed8c43fc21c524e8d5a0f8d4e8b7b074dbdbe7820a08e2", size = 513010, upload-time = "2026-05-10T18:16:17.647Z" }, + { url = "https://files.pythonhosted.org/packages/f0/43/0b5708af2bd30a46400e72ba6bdaa8f066f15fb9a688527e34220e8d6c06/librt-0.11.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7aef3cf1d5af86e770ab04bfd993dfc4ae8b8c17f66fb77dd4a7d50de7bbb1a3", size = 508433, upload-time = "2026-05-10T18:16:19.309Z" }, + { url = "https://files.pythonhosted.org/packages/4a/50/356187247d09013490481033183b3532b58acf8028bcb34b2b56a375c9b2/librt-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:557183ddc36babe46b27dd60facbd5adb4492181a5be887587d57cda6e092f21", size = 522595, upload-time = "2026-05-10T18:16:20.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/e7/c6ac4240899c7f3248079d5a9900debe0dadb3fdeaf856684c987105ba47/librt-0.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:83d3e1f72bd42f6c5c0b7daec530c3f829bd02db42c70b8ddf0c2d90a2459930", size = 527255, upload-time = "2026-05-10T18:16:22.352Z" }, + { url = "https://files.pythonhosted.org/packages/eb/b5/a81322dbeedeeaf9c1ee6f001734d28a09d8383ac9e6779bc24bbd0743c6/librt-0.11.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:4ce1f21fbe589bc1afd7872dece84fb0e1144f794a288e58a10d2c54a55c43be", size = 516847, upload-time = "2026-05-10T18:16:23.627Z" }, + { url = "https://files.pythonhosted.org/packages/ae/66/6e6323787d592b55204a42595ff1102da5115601b53a7e9ddebc889a6da5/librt-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:970b09f7044ea2b64c9da42fd3d335666518cfd1c6e8a182c95da73d0214b41e", size = 553920, upload-time = "2026-05-10T18:16:25.025Z" }, + { url = "https://files.pythonhosted.org/packages/9c/21/623f8ca230857102066d9ca8c6c1734995908c4d0d1bee7bb2ef0021cb33/librt-0.11.0-cp313-cp313-win32.whl", hash = "sha256:78fddc31cd4d3caa897ad5d31f856b1faadc9474021ad6cb182b9018793e254e", size = 101898, upload-time = "2026-05-10T18:16:26.649Z" }, + { url = "https://files.pythonhosted.org/packages/b3/1d/b4ebd44dd723f768469007515cb92251e0ae286c94c140f374801140fa74/librt-0.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ca8aa88751a775870b764e93bad5135385f563cb8dcee399abf034ea4d3cb47", size = 119812, upload-time = "2026-05-10T18:16:27.859Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e4/b2f4ca7965ca373b491cdb4bc25cdb30c1649ca81a8782056a83850292a9/librt-0.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:96f044bb325fd9cf1a723015638c219e9143f0dfbc0ca54c565df2b7fc748b44", size = 103448, upload-time = "2026-05-10T18:16:29.066Z" }, +] + [[package]] name = "markdown-it-py" -version = "4.0.0" +version = "4.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mdurl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +sdist = { url = "https://files.pythonhosted.org/packages/06/ff/7841249c247aa650a76b9ee4bbaeae59370dc8bfd2f6c01f3630c35eb134/markdown_it_py-4.2.0.tar.gz", hash = "sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49", size = 82454, upload-time = "2026-05-07T12:08:28.36Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, + { url = "https://files.pythonhosted.org/packages/b3/81/4da04ced5a082363ecfa159c010d200ecbd959ae410c10c0264a38cac0f5/markdown_it_py-4.2.0-py3-none-any.whl", hash = "sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a", size = 91687, upload-time = "2026-05-07T12:08:27.182Z" }, ] [[package]] @@ -859,28 +989,32 @@ wheels = [ [[package]] name = "mypy" -version = "1.18.2" +version = "2.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "ast-serialize" }, + { name = "librt", marker = "platform_python_implementation != 'PyPy'" }, { name = "mypy-extensions" }, { name = "pathspec" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c0/77/8f0d0001ffad290cef2f7f216f96c814866248a0b92a722365ed54648e7e/mypy-1.18.2.tar.gz", hash = "sha256:06a398102a5f203d7477b2923dda3634c36727fa5c237d8f859ef90c42a9924b", size = 3448846, upload-time = "2025-09-19T00:11:10.519Z" } +sdist = { url = "https://files.pythonhosted.org/packages/82/15/cca9d88503549ed6fedeaa1d448cdddd542ee8a490232d732e278036fbf2/mypy-2.1.0.tar.gz", hash = "sha256:81e76ad12c2d804512e9b13240d1588316531bfba07558286078bfbce9613633", size = 3898359, upload-time = "2026-05-11T18:37:36.237Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/06/dfdd2bc60c66611dd8335f463818514733bc763e4760dee289dcc33df709/mypy-1.18.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:33eca32dd124b29400c31d7cf784e795b050ace0e1f91b8dc035672725617e34", size = 12908273, upload-time = "2025-09-19T00:10:58.321Z" }, - { url = "https://files.pythonhosted.org/packages/81/14/6a9de6d13a122d5608e1a04130724caf9170333ac5a924e10f670687d3eb/mypy-1.18.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a3c47adf30d65e89b2dcd2fa32f3aeb5e94ca970d2c15fcb25e297871c8e4764", size = 11920910, upload-time = "2025-09-19T00:10:20.043Z" }, - { url = "https://files.pythonhosted.org/packages/5f/a9/b29de53e42f18e8cc547e38daa9dfa132ffdc64f7250e353f5c8cdd44bee/mypy-1.18.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d6c838e831a062f5f29d11c9057c6009f60cb294fea33a98422688181fe2893", size = 12465585, upload-time = "2025-09-19T00:10:33.005Z" }, - { url = "https://files.pythonhosted.org/packages/77/ae/6c3d2c7c61ff21f2bee938c917616c92ebf852f015fb55917fd6e2811db2/mypy-1.18.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01199871b6110a2ce984bde85acd481232d17413868c9807e95c1b0739a58914", size = 13348562, upload-time = "2025-09-19T00:10:11.51Z" }, - { url = "https://files.pythonhosted.org/packages/4d/31/aec68ab3b4aebdf8f36d191b0685d99faa899ab990753ca0fee60fb99511/mypy-1.18.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a2afc0fa0b0e91b4599ddfe0f91e2c26c2b5a5ab263737e998d6817874c5f7c8", size = 13533296, upload-time = "2025-09-19T00:10:06.568Z" }, - { url = "https://files.pythonhosted.org/packages/9f/83/abcb3ad9478fca3ebeb6a5358bb0b22c95ea42b43b7789c7fb1297ca44f4/mypy-1.18.2-cp312-cp312-win_amd64.whl", hash = "sha256:d8068d0afe682c7c4897c0f7ce84ea77f6de953262b12d07038f4d296d547074", size = 9828828, upload-time = "2025-09-19T00:10:28.203Z" }, - { url = "https://files.pythonhosted.org/packages/5f/04/7f462e6fbba87a72bc8097b93f6842499c428a6ff0c81dd46948d175afe8/mypy-1.18.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:07b8b0f580ca6d289e69209ec9d3911b4a26e5abfde32228a288eb79df129fcc", size = 12898728, upload-time = "2025-09-19T00:10:01.33Z" }, - { url = "https://files.pythonhosted.org/packages/99/5b/61ed4efb64f1871b41fd0b82d29a64640f3516078f6c7905b68ab1ad8b13/mypy-1.18.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ed4482847168439651d3feee5833ccedbf6657e964572706a2adb1f7fa4dfe2e", size = 11910758, upload-time = "2025-09-19T00:10:42.607Z" }, - { url = "https://files.pythonhosted.org/packages/3c/46/d297d4b683cc89a6e4108c4250a6a6b717f5fa96e1a30a7944a6da44da35/mypy-1.18.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3ad2afadd1e9fea5cf99a45a822346971ede8685cc581ed9cd4d42eaf940986", size = 12475342, upload-time = "2025-09-19T00:11:00.371Z" }, - { url = "https://files.pythonhosted.org/packages/83/45/4798f4d00df13eae3bfdf726c9244bcb495ab5bd588c0eed93a2f2dd67f3/mypy-1.18.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a431a6f1ef14cf8c144c6b14793a23ec4eae3db28277c358136e79d7d062f62d", size = 13338709, upload-time = "2025-09-19T00:11:03.358Z" }, - { url = "https://files.pythonhosted.org/packages/d7/09/479f7358d9625172521a87a9271ddd2441e1dab16a09708f056e97007207/mypy-1.18.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7ab28cc197f1dd77a67e1c6f35cd1f8e8b73ed2217e4fc005f9e6a504e46e7ba", size = 13529806, upload-time = "2025-09-19T00:10:26.073Z" }, - { url = "https://files.pythonhosted.org/packages/71/cf/ac0f2c7e9d0ea3c75cd99dff7aec1c9df4a1376537cb90e4c882267ee7e9/mypy-1.18.2-cp313-cp313-win_amd64.whl", hash = "sha256:0e2785a84b34a72ba55fb5daf079a1003a34c05b22238da94fcae2bbe46f3544", size = 9833262, upload-time = "2025-09-19T00:10:40.035Z" }, - { url = "https://files.pythonhosted.org/packages/87/e3/be76d87158ebafa0309946c4a73831974d4d6ab4f4ef40c3b53a385a66fd/mypy-1.18.2-py3-none-any.whl", hash = "sha256:22a1748707dd62b58d2ae53562ffc4d7f8bcc727e8ac7cbc69c053ddc874d47e", size = 2352367, upload-time = "2025-09-19T00:10:15.489Z" }, + { url = "https://files.pythonhosted.org/packages/95/b1/55861beb5c339b44f9a2ba92df9e2cb1eeb4ae1eee674cdf7772c797778b/mypy-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:244358bf1c0da7722230bce60683d52e8e9fd030554926f15b747a84efb5b3af", size = 14874381, upload-time = "2026-05-11T18:37:31.784Z" }, + { url = "https://files.pythonhosted.org/packages/0b/b3/b7f770114b7d0ac92d0f76e8d93c2780844a70488a90e91821927850da86/mypy-2.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4ec7c57657493c7a75534df2751c8ae2cda383c16ecc55d2106c54476b1b16f6", size = 13665501, upload-time = "2026-05-11T18:34:23.063Z" }, + { url = "https://files.pythonhosted.org/packages/b6/f3/8ae2037967e2126689a0c11d99e2b707134a565191e92c60ca2572aec60a/mypy-2.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8161b6ff4392410023224f0969d17db93e1e154bc3e4ba62598e720723ae211", size = 14045750, upload-time = "2026-05-11T18:31:48.151Z" }, + { url = "https://files.pythonhosted.org/packages/a0/32/615eb5911859e43d054941b0d0a7d06cfa2870eba86529cf385b052b111c/mypy-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf03e12003084a67395184d3eb8cbd6a489dc3655b5664b28c210a9e2403ab0b", size = 15061630, upload-time = "2026-05-11T18:37:06.898Z" }, + { url = "https://files.pythonhosted.org/packages/d4/03/4eafbfff8bfab1b87082741eae6e6a624028c984e6708b73bce2a8570c9d/mypy-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:20509760fd791c51579d573153407d226385ec1f8bcce55d730b354f3336bc22", size = 15288831, upload-time = "2026-05-11T18:31:18.07Z" }, + { url = "https://files.pythonhosted.org/packages/99/ee/919661478e5891a3c96e549c036e467e64563ab85995b10c53c8358e16a3/mypy-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:6753d0c1fdd6b1a23b9e4f283ce80b2153b724adcb2653b20b85a8a28ac6436b", size = 11135228, upload-time = "2026-05-11T18:34:31.23Z" }, + { url = "https://files.pythonhosted.org/packages/24/0a/6a12b9782ca0831a553192f351679f4548abc9d19a7cc93bb7feb02084c7/mypy-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:98ebb6589bb3b6d0c6f0c459d53ca55b8091fbc13d277c4041c885392e8195e8", size = 10040684, upload-time = "2026-05-11T18:36:48.199Z" }, + { url = "https://files.pythonhosted.org/packages/6e/dd/c7191469c777f07689c032a8f7326e393ea34c92d6d76eb7ce5ba57ea66d/mypy-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35aac3bb114e03888f535d5eb51b8bafbb3266586b599da1940f9b1be3ec5bd5", size = 14852174, upload-time = "2026-05-11T18:31:38.929Z" }, + { url = "https://files.pythonhosted.org/packages/55/8c/aed55408879043d72bb9135f4d0d19a02b886dd569631e113e3d2706cb8d/mypy-2.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8de55a8c861f2a49331f807be98d90caeceeef520bde13d43a160207f8af613e", size = 13651542, upload-time = "2026-05-11T18:36:04.636Z" }, + { url = "https://files.pythonhosted.org/packages/3a/8e/f371a824b1f1fa8ea6e3dbb8703d232977d572be2329554a3bc4d960302f/mypy-2.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5fdf2941a07434af755837d9880f7d7d25f1dacb1af9dcd4b9b66f2220a3024e", size = 14033929, upload-time = "2026-05-11T18:35:55.742Z" }, + { url = "https://files.pythonhosted.org/packages/94/21/f54be870d6dd53a82c674407e0f8eed7174b05ec78d42e5abd7b42e84fd5/mypy-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e195b817c13f02352a9c124301f9f30f078405444679b6753c1b96b6eed37285", size = 15039200, upload-time = "2026-05-11T18:33:10.281Z" }, + { url = "https://files.pythonhosted.org/packages/17/99/bf21748626a40ce59fd29a39386ab46afec88b7bd2f0fa6c3a97c995523f/mypy-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5431d42af987ebd92ba2f71d45c85ed41d8e6ca9f5fd209a69f68f707d2469e5", size = 15272690, upload-time = "2026-05-11T18:32:07.205Z" }, + { url = "https://files.pythonhosted.org/packages/d6/d7/9e90d2cf47100bea550ed2bc7b0d4de3a62181d84d5e37da0003e8462637/mypy-2.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:767fe8c66dc3e01e19e1737d4c38ebefead16125e1b8e58ad421903b376f5c65", size = 11147435, upload-time = "2026-05-11T18:33:56.477Z" }, + { url = "https://files.pythonhosted.org/packages/ec/46/e5c449e858798e35ffc90946282a27c62a77be743fe17480e4977374eb91/mypy-2.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:ecfe70d43775ab99562ab128ce49854a362044c9f894961f68f898c23cb7429d", size = 10035052, upload-time = "2026-05-11T18:32:30.049Z" }, + { url = "https://files.pythonhosted.org/packages/0d/2a/13ca1f292f6db1b98ff495ef3467736b331621c5917cad984b7043e7348d/mypy-2.1.0-py3-none-any.whl", hash = "sha256:a663814603a5c563fb87a4f96fb473eeb30d1f5a4885afcf44f9db000a366289", size = 2693302, upload-time = "2026-05-11T18:31:29.246Z" }, ] [[package]] @@ -903,73 +1037,75 @@ wheels = [ [[package]] name = "nodeenv" -version = "1.9.1" +version = "1.10.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/bf/d1bda4f6168e0b2e9e5958945e01910052158313224ada5ce1fb2e1113b8/nodeenv-1.10.0.tar.gz", hash = "sha256:996c191ad80897d076bdfba80a41994c2b47c68e224c542b48feba42ba00f8bb", size = 55611, upload-time = "2025-12-20T14:08:54.006Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, + { url = "https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl", hash = "sha256:5bb13e3eed2923615535339b3c620e76779af4cb4c6a90deccc9e36b274d3827", size = 23438, upload-time = "2025-12-20T14:08:52.782Z" }, ] [[package]] name = "numpy" -version = "2.3.5" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/76/65/21b3bc86aac7b8f2862db1e808f1ea22b028e30a225a34a5ede9bf8678f2/numpy-2.3.5.tar.gz", hash = "sha256:784db1dcdab56bf0517743e746dfb0f885fc68d948aba86eeec2cba234bdf1c0", size = 20584950, upload-time = "2025-11-16T22:52:42.067Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/44/37/e669fe6cbb2b96c62f6bbedc6a81c0f3b7362f6a59230b23caa673a85721/numpy-2.3.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:74ae7b798248fe62021dbf3c914245ad45d1a6b0cb4a29ecb4b31d0bfbc4cc3e", size = 16733873, upload-time = "2025-11-16T22:49:49.84Z" }, - { url = "https://files.pythonhosted.org/packages/c5/65/df0db6c097892c9380851ab9e44b52d4f7ba576b833996e0080181c0c439/numpy-2.3.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ee3888d9ff7c14604052b2ca5535a30216aa0a58e948cdd3eeb8d3415f638769", size = 12259838, upload-time = "2025-11-16T22:49:52.863Z" }, - { url = "https://files.pythonhosted.org/packages/5b/e1/1ee06e70eb2136797abe847d386e7c0e830b67ad1d43f364dd04fa50d338/numpy-2.3.5-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:612a95a17655e213502f60cfb9bf9408efdc9eb1d5f50535cc6eb365d11b42b5", size = 5088378, upload-time = "2025-11-16T22:49:55.055Z" }, - { url = "https://files.pythonhosted.org/packages/6d/9c/1ca85fb86708724275103b81ec4cf1ac1d08f465368acfc8da7ab545bdae/numpy-2.3.5-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3101e5177d114a593d79dd79658650fe28b5a0d8abeb8ce6f437c0e6df5be1a4", size = 6628559, upload-time = "2025-11-16T22:49:57.371Z" }, - { url = "https://files.pythonhosted.org/packages/74/78/fcd41e5a0ce4f3f7b003da85825acddae6d7ecb60cf25194741b036ca7d6/numpy-2.3.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b973c57ff8e184109db042c842423ff4f60446239bd585a5131cc47f06f789d", size = 14250702, upload-time = "2025-11-16T22:49:59.632Z" }, - { url = "https://files.pythonhosted.org/packages/b6/23/2a1b231b8ff672b4c450dac27164a8b2ca7d9b7144f9c02d2396518352eb/numpy-2.3.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d8163f43acde9a73c2a33605353a4f1bc4798745a8b1d73183b28e5b435ae28", size = 16606086, upload-time = "2025-11-16T22:50:02.127Z" }, - { url = "https://files.pythonhosted.org/packages/a0/c5/5ad26fbfbe2012e190cc7d5003e4d874b88bb18861d0829edc140a713021/numpy-2.3.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:51c1e14eb1e154ebd80e860722f9e6ed6ec89714ad2db2d3aa33c31d7c12179b", size = 16025985, upload-time = "2025-11-16T22:50:04.536Z" }, - { url = "https://files.pythonhosted.org/packages/d2/fa/dd48e225c46c819288148d9d060b047fd2a6fb1eb37eae25112ee4cb4453/numpy-2.3.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b46b4ec24f7293f23adcd2d146960559aaf8020213de8ad1909dba6c013bf89c", size = 18542976, upload-time = "2025-11-16T22:50:07.557Z" }, - { url = "https://files.pythonhosted.org/packages/05/79/ccbd23a75862d95af03d28b5c6901a1b7da4803181513d52f3b86ed9446e/numpy-2.3.5-cp312-cp312-win32.whl", hash = "sha256:3997b5b3c9a771e157f9aae01dd579ee35ad7109be18db0e85dbdbe1de06e952", size = 6285274, upload-time = "2025-11-16T22:50:10.746Z" }, - { url = "https://files.pythonhosted.org/packages/2d/57/8aeaf160312f7f489dea47ab61e430b5cb051f59a98ae68b7133ce8fa06a/numpy-2.3.5-cp312-cp312-win_amd64.whl", hash = "sha256:86945f2ee6d10cdfd67bcb4069c1662dd711f7e2a4343db5cecec06b87cf31aa", size = 12782922, upload-time = "2025-11-16T22:50:12.811Z" }, - { url = "https://files.pythonhosted.org/packages/78/a6/aae5cc2ca78c45e64b9ef22f089141d661516856cf7c8a54ba434576900d/numpy-2.3.5-cp312-cp312-win_arm64.whl", hash = "sha256:f28620fe26bee16243be2b7b874da327312240a7cdc38b769a697578d2100013", size = 10194667, upload-time = "2025-11-16T22:50:16.16Z" }, - { url = "https://files.pythonhosted.org/packages/db/69/9cde09f36da4b5a505341180a3f2e6fadc352fd4d2b7096ce9778db83f1a/numpy-2.3.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d0f23b44f57077c1ede8c5f26b30f706498b4862d3ff0a7298b8411dd2f043ff", size = 16728251, upload-time = "2025-11-16T22:50:19.013Z" }, - { url = "https://files.pythonhosted.org/packages/79/fb/f505c95ceddd7027347b067689db71ca80bd5ecc926f913f1a23e65cf09b/numpy-2.3.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:aa5bc7c5d59d831d9773d1170acac7893ce3a5e130540605770ade83280e7188", size = 12254652, upload-time = "2025-11-16T22:50:21.487Z" }, - { url = "https://files.pythonhosted.org/packages/78/da/8c7738060ca9c31b30e9301ee0cf6c5ffdbf889d9593285a1cead337f9a5/numpy-2.3.5-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:ccc933afd4d20aad3c00bcef049cb40049f7f196e0397f1109dba6fed63267b0", size = 5083172, upload-time = "2025-11-16T22:50:24.562Z" }, - { url = "https://files.pythonhosted.org/packages/a4/b4/ee5bb2537fb9430fd2ef30a616c3672b991a4129bb1c7dcc42aa0abbe5d7/numpy-2.3.5-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:afaffc4393205524af9dfa400fa250143a6c3bc646c08c9f5e25a9f4b4d6a903", size = 6622990, upload-time = "2025-11-16T22:50:26.47Z" }, - { url = "https://files.pythonhosted.org/packages/95/03/dc0723a013c7d7c19de5ef29e932c3081df1c14ba582b8b86b5de9db7f0f/numpy-2.3.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c75442b2209b8470d6d5d8b1c25714270686f14c749028d2199c54e29f20b4d", size = 14248902, upload-time = "2025-11-16T22:50:28.861Z" }, - { url = "https://files.pythonhosted.org/packages/f5/10/ca162f45a102738958dcec8023062dad0cbc17d1ab99d68c4e4a6c45fb2b/numpy-2.3.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11e06aa0af8c0f05104d56450d6093ee639e15f24ecf62d417329d06e522e017", size = 16597430, upload-time = "2025-11-16T22:50:31.56Z" }, - { url = "https://files.pythonhosted.org/packages/2a/51/c1e29be863588db58175175f057286900b4b3327a1351e706d5e0f8dd679/numpy-2.3.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ed89927b86296067b4f81f108a2271d8926467a8868e554eaf370fc27fa3ccaf", size = 16024551, upload-time = "2025-11-16T22:50:34.242Z" }, - { url = "https://files.pythonhosted.org/packages/83/68/8236589d4dbb87253d28259d04d9b814ec0ecce7cb1c7fed29729f4c3a78/numpy-2.3.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51c55fe3451421f3a6ef9a9c1439e82101c57a2c9eab9feb196a62b1a10b58ce", size = 18533275, upload-time = "2025-11-16T22:50:37.651Z" }, - { url = "https://files.pythonhosted.org/packages/40/56/2932d75b6f13465239e3b7b7e511be27f1b8161ca2510854f0b6e521c395/numpy-2.3.5-cp313-cp313-win32.whl", hash = "sha256:1978155dd49972084bd6ef388d66ab70f0c323ddee6f693d539376498720fb7e", size = 6277637, upload-time = "2025-11-16T22:50:40.11Z" }, - { url = "https://files.pythonhosted.org/packages/0c/88/e2eaa6cffb115b85ed7c7c87775cb8bcf0816816bc98ca8dbfa2ee33fe6e/numpy-2.3.5-cp313-cp313-win_amd64.whl", hash = "sha256:00dc4e846108a382c5869e77c6ed514394bdeb3403461d25a829711041217d5b", size = 12779090, upload-time = "2025-11-16T22:50:42.503Z" }, - { url = "https://files.pythonhosted.org/packages/8f/88/3f41e13a44ebd4034ee17baa384acac29ba6a4fcc2aca95f6f08ca0447d1/numpy-2.3.5-cp313-cp313-win_arm64.whl", hash = "sha256:0472f11f6ec23a74a906a00b48a4dcf3849209696dff7c189714511268d103ae", size = 10194710, upload-time = "2025-11-16T22:50:44.971Z" }, - { url = "https://files.pythonhosted.org/packages/13/cb/71744144e13389d577f867f745b7df2d8489463654a918eea2eeb166dfc9/numpy-2.3.5-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:414802f3b97f3c1eef41e530aaba3b3c1620649871d8cb38c6eaff034c2e16bd", size = 16827292, upload-time = "2025-11-16T22:50:47.715Z" }, - { url = "https://files.pythonhosted.org/packages/71/80/ba9dc6f2a4398e7f42b708a7fdc841bb638d353be255655498edbf9a15a8/numpy-2.3.5-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5ee6609ac3604fa7780e30a03e5e241a7956f8e2fcfe547d51e3afa5247ac47f", size = 12378897, upload-time = "2025-11-16T22:50:51.327Z" }, - { url = "https://files.pythonhosted.org/packages/2e/6d/db2151b9f64264bcceccd51741aa39b50150de9b602d98ecfe7e0c4bff39/numpy-2.3.5-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:86d835afea1eaa143012a2d7a3f45a3adce2d7adc8b4961f0b362214d800846a", size = 5207391, upload-time = "2025-11-16T22:50:54.542Z" }, - { url = "https://files.pythonhosted.org/packages/80/ae/429bacace5ccad48a14c4ae5332f6aa8ab9f69524193511d60ccdfdc65fa/numpy-2.3.5-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:30bc11310e8153ca664b14c5f1b73e94bd0503681fcf136a163de856f3a50139", size = 6721275, upload-time = "2025-11-16T22:50:56.794Z" }, - { url = "https://files.pythonhosted.org/packages/74/5b/1919abf32d8722646a38cd527bc3771eb229a32724ee6ba340ead9b92249/numpy-2.3.5-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1062fde1dcf469571705945b0f221b73928f34a20c904ffb45db101907c3454e", size = 14306855, upload-time = "2025-11-16T22:50:59.208Z" }, - { url = "https://files.pythonhosted.org/packages/a5/87/6831980559434973bebc30cd9c1f21e541a0f2b0c280d43d3afd909b66d0/numpy-2.3.5-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ce581db493ea1a96c0556360ede6607496e8bf9b3a8efa66e06477267bc831e9", size = 16657359, upload-time = "2025-11-16T22:51:01.991Z" }, - { url = "https://files.pythonhosted.org/packages/dd/91/c797f544491ee99fd00495f12ebb7802c440c1915811d72ac5b4479a3356/numpy-2.3.5-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:cc8920d2ec5fa99875b670bb86ddeb21e295cb07aa331810d9e486e0b969d946", size = 16093374, upload-time = "2025-11-16T22:51:05.291Z" }, - { url = "https://files.pythonhosted.org/packages/74/a6/54da03253afcbe7a72785ec4da9c69fb7a17710141ff9ac5fcb2e32dbe64/numpy-2.3.5-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:9ee2197ef8c4f0dfe405d835f3b6a14f5fee7782b5de51ba06fb65fc9b36e9f1", size = 18594587, upload-time = "2025-11-16T22:51:08.585Z" }, - { url = "https://files.pythonhosted.org/packages/80/e9/aff53abbdd41b0ecca94285f325aff42357c6b5abc482a3fcb4994290b18/numpy-2.3.5-cp313-cp313t-win32.whl", hash = "sha256:70b37199913c1bd300ff6e2693316c6f869c7ee16378faf10e4f5e3275b299c3", size = 6405940, upload-time = "2025-11-16T22:51:11.541Z" }, - { url = "https://files.pythonhosted.org/packages/d5/81/50613fec9d4de5480de18d4f8ef59ad7e344d497edbef3cfd80f24f98461/numpy-2.3.5-cp313-cp313t-win_amd64.whl", hash = "sha256:b501b5fa195cc9e24fe102f21ec0a44dffc231d2af79950b451e0d99cea02234", size = 12920341, upload-time = "2025-11-16T22:51:14.312Z" }, - { url = "https://files.pythonhosted.org/packages/bb/ab/08fd63b9a74303947f34f0bd7c5903b9c5532c2d287bead5bdf4c556c486/numpy-2.3.5-cp313-cp313t-win_arm64.whl", hash = "sha256:a80afd79f45f3c4a7d341f13acbe058d1ca8ac017c165d3fa0d3de6bc1a079d7", size = 10262507, upload-time = "2025-11-16T22:51:16.846Z" }, +version = "2.4.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/50/8e/b8041bc719f056afd864478029d52214789341ac6583437b0ee5031e9530/numpy-2.4.5.tar.gz", hash = "sha256:ca670567a5683b7c1670ec03e0ddd5862e10934e92a70751d68d7b7b74ca7f9f", size = 20735669, upload-time = "2026-05-15T20:25:19.492Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/18/3275231e98620002681c922e792db04d72c356e9d8073c387344fc0e4ff1/numpy-2.4.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:654fb8674b61b1c4bd568f944d13a908566fdcb0d797303521d4149d16da05ef", size = 16689166, upload-time = "2026-05-15T20:22:50.761Z" }, + { url = "https://files.pythonhosted.org/packages/db/23/000aab6a16bdec53307f0f72546b57a3ac9266a62d8c257bee97d85fd078/numpy-2.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4cd9f6fa7ce10dc4627f2bb81dd9075dab67e94632e04c2b638e12575ddaa862", size = 14699514, upload-time = "2026-05-15T20:22:53.678Z" }, + { url = "https://files.pythonhosted.org/packages/47/cc/ddaf3af9c46966fef5be879256f213d85a0c56c75d07a3b7defec7cf6b4c/numpy-2.4.5-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:4f5bc96d35d94e4ceab8b38a92241b4611e95dc44e63b9f1fa2a331858ee3507", size = 5204601, upload-time = "2026-05-15T20:22:56.257Z" }, + { url = "https://files.pythonhosted.org/packages/07/ea/627fadd11959b3c7759008f34c92a35af8ff942dd8284a66ced648bbe516/numpy-2.4.5-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:4bb33e900ee81730ad77a258965134aa8ceac805124f7e5229347beda4b8d0aa", size = 6551360, upload-time = "2026-05-15T20:22:58.334Z" }, + { url = "https://files.pythonhosted.org/packages/a1/47/0728b986b8682d742ff68c16baa5af9d185484abfc635c5cc700f44e62be/numpy-2.4.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:32f8f852273ef32b291201ac2a2c97629c4a1ee8632bb670e3443eaa09fc2e72", size = 15671157, upload-time = "2026-05-15T20:23:01.081Z" }, + { url = "https://files.pythonhosted.org/packages/d1/0b/b905ae82d9419dc38123523862db64978ca2954b69609c3ae8fdaca1084c/numpy-2.4.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:685681e956fc8dcb75adc6ff26694e1dfd738b24bd8d4696c51ca0110157f912", size = 16645703, upload-time = "2026-05-15T20:23:04.358Z" }, + { url = "https://files.pythonhosted.org/packages/5f/24/e27fc3f5236b4118ed9eed67111675f5c61a07ea333acec87c869c3b359d/numpy-2.4.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6f64dd84b277a737eb59513f6b9bb6195bf41ab11941ef15b2562dbab43fa8ef", size = 17021018, upload-time = "2026-05-15T20:23:07.021Z" }, + { url = "https://files.pythonhosted.org/packages/d3/a7/9041af38d527ab80a06a93570a77e29425b41507ad41f6acf5da78cfb4a4/numpy-2.4.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b42d9496f79e3a728192f05a42d86e36163217b7cdecb3813d0028a0aa6b72d7", size = 18368768, upload-time = "2026-05-15T20:23:09.44Z" }, + { url = "https://files.pythonhosted.org/packages/49/82/326a014442f32c2663434fd424d9298791f47f8a0f17585ad60519a5606e/numpy-2.4.5-cp312-cp312-win32.whl", hash = "sha256:86d980970f5110595ca14855768073b08585fc1acc36895de303e039e7dee4a5", size = 5962819, upload-time = "2026-05-15T20:23:11.631Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/cbf5d391b0b3a5e8cad264603e2fae256b0bde8ce43566b13b78faedc659/numpy-2.4.5-cp312-cp312-win_amd64.whl", hash = "sha256:3333dba6a4e611d666f69e177ba8fe4140366ff681a5feb2374d3fd4fff3acb6", size = 12321621, upload-time = "2026-05-15T20:23:14.305Z" }, + { url = "https://files.pythonhosted.org/packages/3c/d0/0f18909d9bc37a5f3f969fc737d2bb5df9f2ff295f71b467e6f52a0d6c4e/numpy-2.4.5-cp312-cp312-win_arm64.whl", hash = "sha256:4593d197270b894efeb538dcbe227e4bcf1c77f88c4c6bf933ead812cfaa4453", size = 10221430, upload-time = "2026-05-15T20:23:16.887Z" }, + { url = "https://files.pythonhosted.org/packages/e3/a4/fb50657c7cab297bf34edcd60a074cb0647f61771430d6363575274160fe/numpy-2.4.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1ef248460b645c102026b82337cc4e88231909c66dd77b59ec6d6cac7e44f277", size = 16684760, upload-time = "2026-05-15T20:23:19.436Z" }, + { url = "https://files.pythonhosted.org/packages/3e/43/87e731299b9408eda705b3b9cb31c7bceb9347d2af9cbb16b2b1e4b5bc0f/numpy-2.4.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4603622bdcdbf8dccb1d9d5b21d16a7aa4e473ae6c8e14048d846fd4ca2907a0", size = 14694117, upload-time = "2026-05-15T20:23:21.832Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c7/0b2bb8acea222e9dd6e582afc2bc553b89b8833cbdccc68e68f050fb31f8/numpy-2.4.5-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:6c18d49c67689c562854b53fdc433b93e47c12952aa6fa6d59f185e1a5992419", size = 5199141, upload-time = "2026-05-15T20:23:24.066Z" }, + { url = "https://files.pythonhosted.org/packages/39/60/b6972b5d47033d90000f0097c81a98b9486589a2d7003bf725bff275cb0d/numpy-2.4.5-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:b1c663ddc641f4192e90511bec61a09bc231e3bbdb996cdc6edbcaa0e528d685", size = 6546954, upload-time = "2026-05-15T20:23:26.099Z" }, + { url = "https://files.pythonhosted.org/packages/c1/e9/ed667cb12c11ca0adde431f685d3a5dd78e6f78b27228c581c8415198e9e/numpy-2.4.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93793222b524f692f12b2f8752ce8b1d9d9125b2bfd5dbf0fb69c92c5e1ce86c", size = 15669430, upload-time = "2026-05-15T20:23:28.147Z" }, + { url = "https://files.pythonhosted.org/packages/44/e5/679f6ffeb01294b0008e5ada4a113cb47617bc0e1819a529fd7973c6d7f4/numpy-2.4.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1616bde34b2bcba2fa9bde06217ce00da4f3d1bdfb264d54525a99e8fe170d83", size = 16633390, upload-time = "2026-05-15T20:23:31.622Z" }, + { url = "https://files.pythonhosted.org/packages/36/46/42bfffc9a780ec902ccd7470d3219192ee82b7b442710307dd85b4d121b0/numpy-2.4.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:09d7d97da1c2c62f4818b3e150a57572ff8dcf1cf5ac501aac832ffd4ebd9566", size = 17020709, upload-time = "2026-05-15T20:23:34.08Z" }, + { url = "https://files.pythonhosted.org/packages/44/00/3e840bfee0cc6cec22209f2c97057f26eeb30de031e4933b4dfc0395416c/numpy-2.4.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2d68d0b355ab2e39fe0de59001d7151dfdbbb880ef67baeed806661e03df5097", size = 18357818, upload-time = "2026-05-15T20:23:36.965Z" }, + { url = "https://files.pythonhosted.org/packages/72/cb/3447b400b9da84134575486f0f656541559b00d4b262477bce9b678bbca8/numpy-2.4.5-cp313-cp313-win32.whl", hash = "sha256:fe28b64777ddfa0eca9b5f51474034ebe3dcb8324f48f27b28f479085673ae33", size = 5961114, upload-time = "2026-05-15T20:23:39.586Z" }, + { url = "https://files.pythonhosted.org/packages/28/f9/a90d2220ffcdc0798f5d55bb5d5463cd6254ec9ef43f384dae80217d7a2f/numpy-2.4.5-cp313-cp313-win_amd64.whl", hash = "sha256:fb4a6c9c537d6ccec9cc4aeae4261bd3cc79b070c67ddc0646f5b1c07fddde42", size = 12318553, upload-time = "2026-05-15T20:23:41.436Z" }, + { url = "https://files.pythonhosted.org/packages/b8/c9/96f531fb3234545315152d34efdf3de7daee81254448447eb619e8d16967/numpy-2.4.5-cp313-cp313-win_arm64.whl", hash = "sha256:6d7df2da2e7ea0624a43aa368104b3a3ce14aae98ad4bb2c9a93fecef76f1c97", size = 10222200, upload-time = "2026-05-15T20:23:43.681Z" }, + { url = "https://files.pythonhosted.org/packages/e1/f4/a291caab5a3c520babf93ff77c54fd5fdb1ebbc3296cee2eb2146ce773b1/numpy-2.4.5-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:2a235607a18df941760a695927051af4b1cd5d3ee85840d0e2af816785771feb", size = 14821438, upload-time = "2026-05-15T20:23:45.911Z" }, + { url = "https://files.pythonhosted.org/packages/85/26/13dbb1159b864370568e7309063fd72667984df89db74e9caeb175d067c7/numpy-2.4.5-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:58dcf64969d870f36bc7fbd557d2617e997db7dc06261b6e3327148ea460d0a4", size = 5326663, upload-time = "2026-05-15T20:23:48.18Z" }, + { url = "https://files.pythonhosted.org/packages/7c/99/d233408072a0e019e2288e27edd23f7d572ccd4a73d1539baa3270ede85d/numpy-2.4.5-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:235f54b0156274d8fa3155db3ed6d2f401c7e8f3367c90db0a12f02a58fde6ed", size = 6646874, upload-time = "2026-05-15T20:23:49.856Z" }, + { url = "https://files.pythonhosted.org/packages/c5/00/eeb6f193dfe767725e952e0464f3e51f44145c5dd261cd7389aa36ac0713/numpy-2.4.5-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef3b5bb65437a3555c648e706475db01c645559ca80dc8b03e4f202ea757e0d6", size = 15728147, upload-time = "2026-05-15T20:23:51.655Z" }, + { url = "https://files.pythonhosted.org/packages/e5/c9/b8ed039f1fde1b13a8807c893e7e2f9432a379f4d6401edecf0028da5b2c/numpy-2.4.5-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7f09a7e5f017d7098c66522097c96257411c9620c0926212200d66bc8cee3976", size = 16681770, upload-time = "2026-05-15T20:23:53.933Z" }, + { url = "https://files.pythonhosted.org/packages/11/5b/0198ef6cb7016eca6d895d392106012138127fab23f46637e76d5e25c9f5/numpy-2.4.5-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:993a88d8fdd8554466a8765cd8bacd97ba56b70ca6b0a04bcdca77f5afed4222", size = 17086218, upload-time = "2026-05-15T20:23:56.646Z" }, + { url = "https://files.pythonhosted.org/packages/f0/fe/8821f3cfc660ae84c92ee158505941874b62c56a42e035a41425228cd8cf/numpy-2.4.5-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:84f58bed609b5669f5ad3d597901a4f1f86ee5b3c3708aaa55f05b4fe6e0f656", size = 18403542, upload-time = "2026-05-15T20:23:59.173Z" }, + { url = "https://files.pythonhosted.org/packages/0e/00/e64ecaf498865e7b091f57658b2c522503e5d1b70e43b807f5f8247e1d88/numpy-2.4.5-cp313-cp313t-win32.whl", hash = "sha256:7200c58f3f933ca61e66346667dcc8510bb111995e9ce15398a731e6a4afa4bb", size = 6084903, upload-time = "2026-05-15T20:24:01.506Z" }, + { url = "https://files.pythonhosted.org/packages/20/c0/354997dedaf74e8311c2cf9a6027b476fd8d424cb92189cc0ae2b25f501c/numpy-2.4.5-cp313-cp313t-win_amd64.whl", hash = "sha256:c26c71080d35db5002102f5d9ff614d45de02aa1f7802943e691e063e5ee93bc", size = 12458420, upload-time = "2026-05-15T20:24:03.735Z" }, + { url = "https://files.pythonhosted.org/packages/66/dc/917ee5ea4a31ca1a6e4c9a85386477efa318dcc60db257c5ef4adda096c1/numpy-2.4.5-cp313-cp313t-win_arm64.whl", hash = "sha256:2caa576d1707b275cba1aeb60a5c50daa6fa2a3f28ecb08123bc05fd439005db", size = 10291826, upload-time = "2026-05-15T20:24:06.535Z" }, ] [[package]] name = "numpy-typing-compat" -version = "20250818.2.3" +version = "20251206.2.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c9/e3/1a29f174c1e09a2bf111d37a41afceea1b501371abb39e73170ca31a7599/numpy_typing_compat-20250818.2.3.tar.gz", hash = "sha256:72e83d535b635d668ba7315e43ae80be1469a6faea6fc96d312516f39b3d8fa5", size = 4974, upload-time = "2025-08-18T23:46:42.968Z" } +sdist = { url = "https://files.pythonhosted.org/packages/42/5f/29fd5f29b0a5d96e2def96ecba3112fc330ecd16e8c97c2b332563c5e201/numpy_typing_compat-20251206.2.4.tar.gz", hash = "sha256:59882d23aaff054a2536da80564012cdce33487657be4d79c5925bb8705fcabc", size = 5011, upload-time = "2025-12-06T20:02:04.942Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c9/4a/fa4c90a03d6a8ee1a7f0e0fb101887d9a8cdb9b07a5901af9ae831e9feea/numpy_typing_compat-20250818.2.3-py3-none-any.whl", hash = "sha256:930413d34dd9083c0bf418815576222f1c66ea2d68950f447fd27ea1a78b26b0", size = 6286, upload-time = "2025-08-18T23:46:35.681Z" }, + { url = "https://files.pythonhosted.org/packages/63/7c/5c2892e6bc0628a2ccf4e938e1e2db22794657ccb374672d66e20d73839e/numpy_typing_compat-20251206.2.4-py3-none-any.whl", hash = "sha256:a82e723bd20efaa4cf2886709d4264c144f1f2b609bda83d1545113b7e47a5b5", size = 6300, upload-time = "2025-12-06T20:01:57.578Z" }, ] [[package]] name = "nvidia-cublas" -version = "13.1.0.3" +version = "13.1.1.3" source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cuda-nvrtc" }, +] wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/a5/fce49e2ae977e0ccc084e5adafceb4f0ac0c8333cb6863501618a7277f67/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c86fc7f7ae36d7528288c5d88098edcb7b02c633d262e7ddbb86b0ad91be5df2", size = 542851226, upload-time = "2025-10-09T08:59:04.818Z" }, - { url = "https://files.pythonhosted.org/packages/e7/44/423ac00af4dd95a5aeb27207e2c0d9b7118702149bf4704c3ddb55bb7429/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:ee8722c1f0145ab246bccb9e452153b5e0515fd094c3678df50b2a0888b8b171", size = 423133236, upload-time = "2025-10-09T08:59:32.536Z" }, + { url = "https://files.pythonhosted.org/packages/a7/a1/0bd24ee8c8d03adac032fd2909426a00c88f8c57961b1277ded97f91119f/nvidia_cublas-13.1.1.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b7a210458267ac818974c53038fbec2e969d5c99f305ab15c72522fa9f001dd5", size = 542848918, upload-time = "2026-04-08T18:46:22.985Z" }, + { url = "https://files.pythonhosted.org/packages/3b/cd/154ca20c38269e05eff77c1464e6c1da89f50a6390b565e9d82e06bc11e1/nvidia_cublas-13.1.1.3-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:37936a16db8fe4ac1f065c2139360608a543a09275cb1a1af612e08cfa065436", size = 423138758, upload-time = "2026-04-08T18:46:58.655Z" }, ] [[package]] @@ -1001,14 +1137,14 @@ wheels = [ [[package]] name = "nvidia-cudnn-cu13" -version = "9.19.0.56" +version = "9.20.0.48" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "nvidia-cublas" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/84/26025437c1e6b61a707442184fa0c03d083b661adf3a3eecfd6d21677740/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:6ed29ffaee1176c612daf442e4dd6cfeb6a0caa43ddcbeb59da94953030b1be4", size = 433781201, upload-time = "2026-02-03T20:40:53.805Z" }, - { url = "https://files.pythonhosted.org/packages/a3/22/0b4b932655d17a6da1b92fa92ab12844b053bb2ac2475e179ba6f043da1e/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:d20e1734305e9d68889a96e3f35094d733ff1f83932ebe462753973e53a572bf", size = 366066321, upload-time = "2026-02-03T20:44:52.837Z" }, + { url = "https://files.pythonhosted.org/packages/56/c5/83384d846b2fd17c44bd499b36c75a45ed4f095fbbb2252294e89cea5c5c/nvidia_cudnn_cu13-9.20.0.48-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:e31454ae00094b0c55319d9d15b6fa2fc50a9e1c0f5c8c80fb75258234e731e1", size = 444574296, upload-time = "2026-03-09T19:28:27.751Z" }, + { url = "https://files.pythonhosted.org/packages/6e/5e/edb9c0ae051602c3ccaffe424256463636d639e27d7f302dde9975ef9e7a/nvidia_cudnn_cu13-9.20.0.48-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:0c45dd8eeb50b603f07995b1b300c62ffe6a1980482b82b3bcf94a4ca9d49304", size = 366173588, upload-time = "2026-03-09T19:29:34.474Z" }, ] [[package]] @@ -1069,20 +1205,20 @@ wheels = [ [[package]] name = "nvidia-cusparselt-cu13" -version = "0.8.0" +version = "0.8.1" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/46/10/8dcd1175260706a2fc92a16a52e306b71d4c1ea0b0cc4a9484183399818a/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:400c6ed1cf6780fc6efedd64ec9f1345871767e6a1a0a552a1ea0578117ea77c", size = 220791277, upload-time = "2025-08-13T19:22:40.982Z" }, - { url = "https://files.pythonhosted.org/packages/fd/53/43b0d71f4e702fa9733f8b4571fdca50a8813f1e450b656c239beff12315/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:25e30a8a7323935d4ad0340b95a0b69926eee755767e8e0b1cf8dd85b197d3fd", size = 169884119, upload-time = "2025-08-13T19:23:41.967Z" }, + { url = "https://files.pythonhosted.org/packages/46/e1/cdc1797eadf82d3a9a575a19b33fdc871a97edbec42c00b5b5e914f4aff4/nvidia_cusparselt_cu13-0.8.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4dca476c50bf4780d46cd0bfbd82e2bc10a08e4fef7950917ce8d7578d22a23f", size = 221051344, upload-time = "2025-09-05T18:49:51.289Z" }, + { url = "https://files.pythonhosted.org/packages/34/7d/2661f2fb3ac4302f3a246f5fc030213ac60c1fe0bce84f9783dbd831dbb7/nvidia_cusparselt_cu13-0.8.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:786ce87568c303fadb5afcc7102d454cd3040d75f6f8626f5db460d1871f4dd0", size = 170148586, upload-time = "2025-09-05T18:50:50.248Z" }, ] [[package]] name = "nvidia-nccl-cu13" -version = "2.28.9" +version = "2.29.7" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/39/55/1920646a2e43ffd4fc958536b276197ed740e9e0c54105b4bb3521591fc7/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_aarch64.whl", hash = "sha256:01c873ba1626b54caa12272ed228dc5b2781545e0ae8ba3f432a8ef1c6d78643", size = 196561677, upload-time = "2025-11-18T05:49:03.45Z" }, - { url = "https://files.pythonhosted.org/packages/b0/b4/878fefaad5b2bcc6fcf8d474a25e3e3774bc5133e4b58adff4d0bca238bc/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_x86_64.whl", hash = "sha256:e4553a30f34195f3fa1da02a6da3d6337d28f2003943aa0a3d247bbc25fefc42", size = 196493177, upload-time = "2025-11-18T05:49:17.677Z" }, + { url = "https://files.pythonhosted.org/packages/72/0d/daf50d44177ee0cbc7ff0a0c91eb5ff676c82be42f9a970bc7597f440c3a/nvidia_nccl_cu13-2.29.7-py3-none-manylinux_2_18_aarch64.whl", hash = "sha256:674a12383e3c38a1bcccae7d4f3633b37852230b6047883cb2f4c2d1b36d9bf5", size = 206014712, upload-time = "2026-03-03T05:34:20.843Z" }, + { url = "https://files.pythonhosted.org/packages/67/f4/58e4e91b6919367c7aafb8e36fce9aad1a3047e536bf7e2fd560927d3a4c/nvidia_nccl_cu13-2.29.7-py3-none-manylinux_2_18_x86_64.whl", hash = "sha256:edd81538446786ec3b73972543e53bb43bcaf0bfc8ef76cb679fcc390ffe136d", size = 205976000, upload-time = "2026-03-03T05:36:24.472Z" }, ] [[package]] @@ -1114,14 +1250,14 @@ wheels = [ [[package]] name = "optype" -version = "0.14.0" +version = "0.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/94/ca/d3a2abcf12cc8c18ccac1178ef87ab50a235bf386d2401341776fdad18aa/optype-0.14.0.tar.gz", hash = "sha256:925cf060b7d1337647f880401f6094321e7d8e837533b8e159b9a92afa3157c6", size = 100880, upload-time = "2025-10-01T04:49:56.232Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/86/e6f1f6f3487492dfcf3b7a2d4e2534d27af6ac05b364b276706906c34865/optype-0.17.1.tar.gz", hash = "sha256:07bfa32b795dea28fba8605a6288d36370d072f25183fb9c29b5a90f4b6f5638", size = 53572, upload-time = "2026-05-17T22:13:28.725Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/a6/11b0eb65eeafa87260d36858b69ec4e0072d09e37ea6714280960030bc93/optype-0.14.0-py3-none-any.whl", hash = "sha256:50d02edafd04edf2e5e27d6249760a51b2198adb9f6ffd778030b3d2806b026b", size = 89465, upload-time = "2025-10-01T04:49:54.674Z" }, + { url = "https://files.pythonhosted.org/packages/2f/d4/c6a2b043e33f0dd012486dcebe0593585588d400175d22aad42049c88321/optype-0.17.1-py3-none-any.whl", hash = "sha256:82f2508ca31cb21e53a41648482d890fe1f5c6cb153720551af41161555adaf1", size = 65954, upload-time = "2026-05-17T22:13:27.549Z" }, ] [package.optional-dependencies] @@ -1132,47 +1268,47 @@ numpy = [ [[package]] name = "packaging" -version = "25.0" +version = "26.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, + { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, ] [[package]] name = "pandas" -version = "3.0.2" +version = "3.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "python-dateutil" }, { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/da/99/b342345300f13440fe9fe385c3c481e2d9a595ee3bab4d3219247ac94e9a/pandas-3.0.2.tar.gz", hash = "sha256:f4753e73e34c8d83221ba58f232433fca2748be8b18dbca02d242ed153945043", size = 4645855, upload-time = "2026-03-31T06:48:30.816Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/b0/c20bd4d6d3f736e6bd6b55794e9cd0a617b858eaad27c8f410ea05d953b7/pandas-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:232a70ebb568c0c4d2db4584f338c1577d81e3af63292208d615907b698a0f18", size = 10347921, upload-time = "2026-03-31T06:46:33.36Z" }, - { url = "https://files.pythonhosted.org/packages/35/d0/4831af68ce30cc2d03c697bea8450e3225a835ef497d0d70f31b8cdde965/pandas-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:970762605cff1ca0d3f71ed4f3a769ea8f85fc8e6348f6e110b8fea7e6eb5a14", size = 9888127, upload-time = "2026-03-31T06:46:36.253Z" }, - { url = "https://files.pythonhosted.org/packages/61/a9/16ea9346e1fc4a96e2896242d9bc674764fb9049b0044c0132502f7a771e/pandas-3.0.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aff4e6f4d722e0652707d7bcb190c445fe58428500c6d16005b02401764b1b3d", size = 10399577, upload-time = "2026-03-31T06:46:39.224Z" }, - { url = "https://files.pythonhosted.org/packages/c4/a8/3a61a721472959ab0ce865ef05d10b0d6bfe27ce8801c99f33d4fa996e65/pandas-3.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ef8b27695c3d3dc78403c9a7d5e59a62d5464a7e1123b4e0042763f7104dc74f", size = 10880030, upload-time = "2026-03-31T06:46:42.412Z" }, - { url = "https://files.pythonhosted.org/packages/da/65/7225c0ea4d6ce9cb2160a7fb7f39804871049f016e74782e5dade4d14109/pandas-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f8d68083e49e16b84734eb1a4dcae4259a75c90fb6e2251ab9a00b61120c06ab", size = 11409468, upload-time = "2026-03-31T06:46:45.2Z" }, - { url = "https://files.pythonhosted.org/packages/fa/5b/46e7c76032639f2132359b5cf4c785dd8cf9aea5ea64699eac752f02b9db/pandas-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:32cc41f310ebd4a296d93515fcac312216adfedb1894e879303987b8f1e2b97d", size = 11936381, upload-time = "2026-03-31T06:46:48.293Z" }, - { url = "https://files.pythonhosted.org/packages/7b/8b/721a9cff6fa6a91b162eb51019c6243b82b3226c71bb6c8ef4a9bd65cbc6/pandas-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:a4785e1d6547d8427c5208b748ae2efb64659a21bd82bf440d4262d02bfa02a4", size = 9744993, upload-time = "2026-03-31T06:46:51.488Z" }, - { url = "https://files.pythonhosted.org/packages/d5/18/7f0bd34ae27b28159aa80f2a6799f47fda34f7fb938a76e20c7b7fe3b200/pandas-3.0.2-cp312-cp312-win_arm64.whl", hash = "sha256:08504503f7101300107ecdc8df73658e4347586db5cfdadabc1592e9d7e7a0fd", size = 9056118, upload-time = "2026-03-31T06:46:54.548Z" }, - { url = "https://files.pythonhosted.org/packages/bf/ca/3e639a1ea6fcd0617ca4e8ca45f62a74de33a56ae6cd552735470b22c8d3/pandas-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5918ba197c951dec132b0c5929a00c0bf05d5942f590d3c10a807f6e15a57d3", size = 10321105, upload-time = "2026-03-31T06:46:57.327Z" }, - { url = "https://files.pythonhosted.org/packages/0b/77/dbc82ff2fb0e63c6564356682bf201edff0ba16c98630d21a1fb312a8182/pandas-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d606a041c89c0a474a4702d532ab7e73a14fe35c8d427b972a625c8e46373668", size = 9864088, upload-time = "2026-03-31T06:46:59.935Z" }, - { url = "https://files.pythonhosted.org/packages/5c/2b/341f1b04bbca2e17e13cd3f08c215b70ef2c60c5356ef1e8c6857449edc7/pandas-3.0.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:710246ba0616e86891b58ab95f2495143bb2bc83ab6b06747c74216f583a6ac9", size = 10369066, upload-time = "2026-03-31T06:47:02.792Z" }, - { url = "https://files.pythonhosted.org/packages/12/c5/cbb1ffefb20a93d3f0e1fdcda699fb84976210d411b008f97f48bf6ce27e/pandas-3.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5d3cfe227c725b1f3dff4278b43d8c784656a42a9325b63af6b1492a8232209e", size = 10876780, upload-time = "2026-03-31T06:47:06.205Z" }, - { url = "https://files.pythonhosted.org/packages/98/fe/2249ae5e0a69bd0ddf17353d0a5d26611d70970111f5b3600cdc8be883e7/pandas-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c3b723df9087a9a9a840e263ebd9f88b64a12075d1bf2ea401a5a42f254f084d", size = 11375181, upload-time = "2026-03-31T06:47:09.383Z" }, - { url = "https://files.pythonhosted.org/packages/de/64/77a38b09e70b6464883b8d7584ab543e748e42c1b5d337a2ee088e0df741/pandas-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3096110bf9eac0070b7208465f2740e2d8a670d5cb6530b5bb884eca495fd39", size = 11928899, upload-time = "2026-03-31T06:47:12.686Z" }, - { url = "https://files.pythonhosted.org/packages/5e/52/42855bf626868413f761addd574acc6195880ae247a5346477a4361c3acb/pandas-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:07a10f5c36512eead51bc578eb3354ad17578b22c013d89a796ab5eee90cd991", size = 9746574, upload-time = "2026-03-31T06:47:15.64Z" }, - { url = "https://files.pythonhosted.org/packages/88/39/21304ae06a25e8bf9fc820d69b29b2c495b2ae580d1e143146c309941760/pandas-3.0.2-cp313-cp313-win_arm64.whl", hash = "sha256:5fdbfa05931071aba28b408e59226186b01eb5e92bea2ab78b65863ca3228d84", size = 9047156, upload-time = "2026-03-31T06:47:18.595Z" }, - { url = "https://files.pythonhosted.org/packages/72/20/7defa8b27d4f330a903bb68eea33be07d839c5ea6bdda54174efcec0e1d2/pandas-3.0.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:dbc20dea3b9e27d0e66d74c42b2d0c1bed9c2ffe92adea33633e3bedeb5ac235", size = 10756238, upload-time = "2026-03-31T06:47:22.012Z" }, - { url = "https://files.pythonhosted.org/packages/e9/95/49433c14862c636afc0e9b2db83ff16b3ad92959364e52b2955e44c8e94c/pandas-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b75c347eff42497452116ce05ef461822d97ce5b9ff8df6edacb8076092c855d", size = 10408520, upload-time = "2026-03-31T06:47:25.197Z" }, - { url = "https://files.pythonhosted.org/packages/3b/f8/462ad2b5881d6b8ec8e5f7ed2ea1893faa02290d13870a1600fe72ad8efc/pandas-3.0.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d1478075142e83a5571782ad007fb201ed074bdeac7ebcc8890c71442e96adf7", size = 10324154, upload-time = "2026-03-31T06:47:28.097Z" }, - { url = "https://files.pythonhosted.org/packages/0a/65/d1e69b649cbcddda23ad6e4c40ef935340f6f652a006e5cbc3555ac8adb3/pandas-3.0.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5880314e69e763d4c8b27937090de570f1fb8d027059a7ada3f7f8e98bdcb677", size = 10714449, upload-time = "2026-03-31T06:47:30.85Z" }, - { url = "https://files.pythonhosted.org/packages/47/a4/85b59bc65b8190ea3689882db6cdf32a5003c0ccd5a586c30fdcc3ffc4fc/pandas-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b5329e26898896f06035241a626d7c335daa479b9bbc82be7c2742d048e41172", size = 11338475, upload-time = "2026-03-31T06:47:34.026Z" }, - { url = "https://files.pythonhosted.org/packages/1e/c4/bc6966c6e38e5d9478b935272d124d80a589511ed1612a5d21d36f664c68/pandas-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:81526c4afd31971f8b62671442a4b2b51e0aa9acc3819c9f0f12a28b6fcf85f1", size = 11786568, upload-time = "2026-03-31T06:47:36.941Z" }, - { url = "https://files.pythonhosted.org/packages/e8/74/09298ca9740beed1d3504e073d67e128aa07e5ca5ca2824b0c674c0b8676/pandas-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:7cadd7e9a44ec13b621aec60f9150e744cfc7a3dd32924a7e2f45edff31823b0", size = 10488652, upload-time = "2026-03-31T06:47:40.612Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/f8/87/4341c6252d1c47b08768c3d25ac487362bf403f0313ddae4a2a26c9b1b4c/pandas-3.0.3.tar.gz", hash = "sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc", size = 4651414, upload-time = "2026-05-11T18:54:29.21Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/f1/392f8c5bfc16f66a0d2d41561c01627c228fe7ed2a0d056ef11315042570/pandas-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fed2ff7fd9779120e388e285fc029bd5cf9490cdd2e4166a9ee22c0e49a9ab09", size = 10357846, upload-time = "2026-05-11T18:52:36.143Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3d/b16412745651e855f357e5e66930248688378853a6e2698a214e331fba1f/pandas-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b168fc218fd80a6cbdbdbc1a97ddc7889ed057d7eb45f50d866ceab5f39904c4", size = 9899550, upload-time = "2026-05-11T18:52:38.976Z" }, + { url = "https://files.pythonhosted.org/packages/31/a8/fa2535168fffcedf67f4f6de28d2dd903a747ca7c8ea6989451aaeb3a92f/pandas-3.0.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0383c72c75cdcca61a9e116e611143902dbfd08bff356829c2f6d1cf40a9ca8c", size = 10412965, upload-time = "2026-05-11T18:52:41.915Z" }, + { url = "https://files.pythonhosted.org/packages/65/b6/09b01cdbc15224e2850365192d17b7bdebb8bdbd8780ed221fcdf0d9a515/pandas-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6dc0b3fd2169c9157deed50b4d519553a3655c8c6a96027136d654592be973a9", size = 10894600, upload-time = "2026-05-11T18:52:45.02Z" }, + { url = "https://files.pythonhosted.org/packages/c9/a4/2eb28f2fccb4ced4a2c79ab2a5dee9ade1ebf44922ebad6fea158c9f95d4/pandas-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e65d5407dc0b394f509699650e4a2ec01c0514f21850f453fa60f3be79a5dbf", size = 11422824, upload-time = "2026-05-11T18:52:48.058Z" }, + { url = "https://files.pythonhosted.org/packages/f8/45/830bb57f533a4604b355e07edcb8ea18cf88b5f94e5fca92f27052d7c597/pandas-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8894dc474d648fe7b6ff0ca9b0bd73950d19952bc1a6534540762c5d79d305c", size = 11950889, upload-time = "2026-05-11T18:52:50.905Z" }, + { url = "https://files.pythonhosted.org/packages/b9/c5/fc1b368f303087d20e8c9bf3d6ceb186263cfac0ade735cd938538bea839/pandas-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:c7be265b62cef88e253a941e4698604973736dcfe242fdb5198f0f7bc473cdcc", size = 9755463, upload-time = "2026-05-11T18:52:53.386Z" }, + { url = "https://files.pythonhosted.org/packages/86/bd/fda8f9705b1b09c6ebe14bfc0fa0e4ec8584d54ea673628f157ff55131af/pandas-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:557409bc4178e70ee8d9ddb494798e51ebf6ea59330f6be22c51bab2a7db6c49", size = 9066158, upload-time = "2026-05-11T18:52:56.038Z" }, + { url = "https://files.pythonhosted.org/packages/c5/90/62d8302883c44308c477e222c3daf7c813a34c8e96985882fbd53d964352/pandas-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:67b3b64c11910cfa29f4e94a14d3bff9ee693b6fc76055e7cad549cee0aec5fa", size = 10331071, upload-time = "2026-05-11T18:52:58.838Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ae/6a6493c783a101f165e4356953ba3c74d6f77f0042fa7d753da9dfbb640c/pandas-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:39436b377d56d2a2e52d0395bdbee171f01068e99af5250509aceeb929f765c7", size = 9875690, upload-time = "2026-05-11T18:53:01.431Z" }, + { url = "https://files.pythonhosted.org/packages/62/7c/5df8e9f56c69a2769fbe9382a5ef8f2658c007e376434e1e2cbb57ad895f/pandas-3.0.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4be06d68f9ddcfc645b87534911da79a8fbffc7573c80e0edcf42a5020624d8", size = 10381634, upload-time = "2026-05-11T18:53:04.393Z" }, + { url = "https://files.pythonhosted.org/packages/99/68/1237369725aa617bb358263d535803e3053fdbc593513ec5ed9c9896b5b6/pandas-3.0.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a4eeb6830daf35a71cc09649bd823e2b542dac246cdee9614c6e4bd65028cd6a", size = 10891243, upload-time = "2026-05-11T18:53:07.643Z" }, + { url = "https://files.pythonhosted.org/packages/25/93/77d108e8af7222b4a503ebde0e30215b1c2e4f8e53a526431890f22d5586/pandas-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1928e07221f82db493cd4af1e23c1bfca524a19a4699887975bff68f49a72bfb", size = 11388659, upload-time = "2026-05-11T18:53:10.634Z" }, + { url = "https://files.pythonhosted.org/packages/d0/bd/eff5b4399f332ac386c853f6cd2bd3fa2ca0061b9f36ecd9c4d7c4265649/pandas-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51b1fe551acb77dac643c6fda86084d8d446c10fe64b06a9cc29c4cc8540e7f2", size = 11942880, upload-time = "2026-05-11T18:53:13.536Z" }, + { url = "https://files.pythonhosted.org/packages/2c/20/559ace4200982c3887d0b86bfd0d856a2143ef8ddab63cc07934951a964c/pandas-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:a82d532a3351d435432cd913edbccaf8b8e01d4dd0e5ced5a8d2e8ecd94c7e44", size = 9757091, upload-time = "2026-05-11T18:53:16.306Z" }, + { url = "https://files.pythonhosted.org/packages/3a/66/69055a09fe200f29f922a3eeec4804611900b95f52d932ece3393c3c0c19/pandas-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:275c14e0fce14a2ec20eee474aecd305478ea3c1e6f6a9d8fe219a165542717e", size = 9057282, upload-time = "2026-05-11T18:53:18.768Z" }, + { url = "https://files.pythonhosted.org/packages/57/0e/efe801b0e6811e8e650cd21b7f2608e30f08a7067e2bf6e8752b0d56ee3c/pandas-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:46997386d528eb40376ecd6b033cf4a8a1e5282580f68f43de875b78cba2199d", size = 10767016, upload-time = "2026-05-11T18:53:21.227Z" }, + { url = "https://files.pythonhosted.org/packages/ea/dc/eb55135a1d5f0f0519f28da1f609a206d2cad1f9c35c32d51e38dd7261ae/pandas-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:261e308dfb22448384b7580cf719d2f998fe2966c92893c3e77d14008af1f066", size = 10420210, upload-time = "2026-05-11T18:53:23.982Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3e/b1d5d955ce33ffecb407465a60bc32769d74fcf68224b7ae67ae11d4dea4/pandas-3.0.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dd1a5d1def6a46002e964510bdc67c368aa0951df5d1d9f8365336f5a1f490cd", size = 10336126, upload-time = "2026-05-11T18:53:26.731Z" }, + { url = "https://files.pythonhosted.org/packages/f5/76/a01261711ab60a22d71b862f0de20e4c504bf80457270ad8cb42110f6abc/pandas-3.0.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d72828c20c6d6e83e1e22a6a3b47b326b71664112fa9705dcbccfd7a39b62085", size = 10728051, upload-time = "2026-05-11T18:53:29.125Z" }, + { url = "https://files.pythonhosted.org/packages/e9/21/ea191195e587b18cf682e97f433f81b2d0fbe341380e80a3e0d6e4403c8e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d26cbe1fcfc12e8fd900e2454163e466b2d3af84f7c75481df7683ffc073d870", size = 11350796, upload-time = "2026-05-11T18:53:32.056Z" }, + { url = "https://files.pythonhosted.org/packages/64/69/f0eaaf54939f0e8c6768fd06be9af2cef9b36048b96dfb9e1b2c685a807e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3e91cec1879ada0624fc3dc9953c5cbd60208e59c0db28f540c5d6d47502422f", size = 11799741, upload-time = "2026-05-11T18:53:34.985Z" }, + { url = "https://files.pythonhosted.org/packages/45/a4/865e0e510cae5fc2194de4db28be638952de942571ba9125934fd9c01d47/pandas-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:08d789b41f87e0905880e293cedf6197ce71fe67cc081358b1e148a491b9bd13", size = 10499958, upload-time = "2026-05-11T18:53:37.857Z" }, ] [[package]] @@ -1183,6 +1319,7 @@ dependencies = [ { name = "genai-utils" }, { name = "google-cloud-core" }, { name = "pydantic" }, + { name = "python-dotenv" }, { name = "scikit-learn" }, { name = "scipy" }, { name = "scipy-stubs" }, @@ -1215,6 +1352,7 @@ requires-dist = [ { name = "genai-utils", git = "https://github.com/FullFact/genai-utils.git?tag=5.3.0" }, { name = "google-cloud-core", specifier = ">=2.4.3" }, { name = "pydantic", specifier = ">=2.11.7" }, + { name = "python-dotenv", specifier = ">=1.2.2" }, { name = "scikit-learn", specifier = ">=1.7.1" }, { name = "scipy", specifier = ">=1.15.3" }, { name = "scipy-stubs", specifier = ">=1.15.3.0" }, @@ -1244,20 +1382,20 @@ ml-labeller = [ [[package]] name = "pathspec" -version = "0.12.1" +version = "1.1.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/82/42f767fc1c1143d6fd36efb827202a2d997a375e160a71eb2888a925aac1/pathspec-1.1.1.tar.gz", hash = "sha256:17db5ecd524104a120e173814c90367a96a98d07c45b2e10c2f3919fff91bf5a", size = 135180, upload-time = "2026-04-27T01:46:08.907Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, + { url = "https://files.pythonhosted.org/packages/f1/d9/7fb5aa316bc299258e68c73ba3bddbc499654a07f151cba08f6153988714/pathspec-1.1.1-py3-none-any.whl", hash = "sha256:a00ce642f577bf7f473932318056212bc4f8bfdf53128c78bbd5af0b9b20b189", size = 57328, upload-time = "2026-04-27T01:46:07.06Z" }, ] [[package]] name = "platformdirs" -version = "4.5.0" +version = "4.9.6" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/61/33/9611380c2bdb1225fdef633e2a9610622310fed35ab11dac9620972ee088/platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312", size = 21632, upload-time = "2025-10-08T17:44:48.791Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3", size = 18651, upload-time = "2025-10-08T17:44:47.223Z" }, + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, ] [[package]] @@ -1271,7 +1409,7 @@ wheels = [ [[package]] name = "pre-commit" -version = "4.4.0" +version = "4.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cfgv" }, @@ -1280,90 +1418,96 @@ dependencies = [ { name = "pyyaml" }, { name = "virtualenv" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a6/49/7845c2d7bf6474efd8e27905b51b11e6ce411708c91e829b93f324de9929/pre_commit-4.4.0.tar.gz", hash = "sha256:f0233ebab440e9f17cabbb558706eb173d19ace965c68cdce2c081042b4fab15", size = 197501, upload-time = "2025-11-08T21:12:11.607Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/22/2de9408ac81acbb8a7d05d4cc064a152ccf33b3d480ebe0cd292153db239/pre_commit-4.6.0.tar.gz", hash = "sha256:718d2208cef53fdc38206e40524a6d4d9576d103eb16f0fec11c875e7716e9d9", size = 198525, upload-time = "2026-04-21T20:31:41.613Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/27/11/574fe7d13acf30bfd0a8dd7fa1647040f2b8064f13f43e8c963b1e65093b/pre_commit-4.4.0-py2.py3-none-any.whl", hash = "sha256:b35ea52957cbf83dcc5d8ee636cbead8624e3a15fbfa61a370e42158ac8a5813", size = 226049, upload-time = "2025-11-08T21:12:10.228Z" }, + { url = "https://files.pythonhosted.org/packages/80/6e/4b28b62ecb6aae56769c34a8ff1d661473ec1e9519e2d5f8b2c150086b26/pre_commit-4.6.0-py2.py3-none-any.whl", hash = "sha256:e2cf246f7299edcabcf15f9b0571fdce06058527f0a06535068a86d38089f29b", size = 226472, upload-time = "2026-04-21T20:31:40.092Z" }, ] [[package]] name = "propcache" -version = "0.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a2/0f/f17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2/propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2", size = 80061, upload-time = "2025-10-08T19:46:46.075Z" }, - { url = "https://files.pythonhosted.org/packages/76/47/8ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7/propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403", size = 46037, upload-time = "2025-10-08T19:46:47.23Z" }, - { url = "https://files.pythonhosted.org/packages/0a/b6/5c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0/propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207", size = 47324, upload-time = "2025-10-08T19:46:48.384Z" }, - { url = "https://files.pythonhosted.org/packages/9e/d3/6c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0/propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72", size = 225505, upload-time = "2025-10-08T19:46:50.055Z" }, - { url = "https://files.pythonhosted.org/packages/01/5d/1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b/propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367", size = 230242, upload-time = "2025-10-08T19:46:51.815Z" }, - { url = "https://files.pythonhosted.org/packages/20/e1/ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12/propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4", size = 238474, upload-time = "2025-10-08T19:46:53.208Z" }, - { url = "https://files.pythonhosted.org/packages/46/4b/3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea/propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf", size = 221575, upload-time = "2025-10-08T19:46:54.511Z" }, - { url = "https://files.pythonhosted.org/packages/6e/a5/8a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338/propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3", size = 216736, upload-time = "2025-10-08T19:46:56.212Z" }, - { url = "https://files.pythonhosted.org/packages/f1/63/b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36/propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778", size = 213019, upload-time = "2025-10-08T19:46:57.595Z" }, - { url = "https://files.pythonhosted.org/packages/57/74/f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886/propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6", size = 220376, upload-time = "2025-10-08T19:46:59.067Z" }, - { url = "https://files.pythonhosted.org/packages/c4/ee/542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843/propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9", size = 226988, upload-time = "2025-10-08T19:47:00.544Z" }, - { url = "https://files.pythonhosted.org/packages/8f/18/9c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287/propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75", size = 215615, upload-time = "2025-10-08T19:47:01.968Z" }, - { url = "https://files.pythonhosted.org/packages/80/9e/e7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed/propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8", size = 38066, upload-time = "2025-10-08T19:47:03.503Z" }, - { url = "https://files.pythonhosted.org/packages/54/09/d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c/propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db", size = 41655, upload-time = "2025-10-08T19:47:04.973Z" }, - { url = "https://files.pythonhosted.org/packages/68/ab/6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076/propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1", size = 37789, upload-time = "2025-10-08T19:47:06.077Z" }, - { url = "https://files.pythonhosted.org/packages/bf/df/6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942/propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf", size = 77750, upload-time = "2025-10-08T19:47:07.648Z" }, - { url = "https://files.pythonhosted.org/packages/8b/e8/677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56/propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311", size = 44780, upload-time = "2025-10-08T19:47:08.851Z" }, - { url = "https://files.pythonhosted.org/packages/89/a4/92380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7/propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74", size = 46308, upload-time = "2025-10-08T19:47:09.982Z" }, - { url = "https://files.pythonhosted.org/packages/2d/48/c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3/propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe", size = 208182, upload-time = "2025-10-08T19:47:11.319Z" }, - { url = "https://files.pythonhosted.org/packages/c6/0c/cd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653/propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af", size = 211215, upload-time = "2025-10-08T19:47:13.146Z" }, - { url = "https://files.pythonhosted.org/packages/30/3e/49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e/propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c", size = 218112, upload-time = "2025-10-08T19:47:14.913Z" }, - { url = "https://files.pythonhosted.org/packages/f1/8b/544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094/propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f", size = 204442, upload-time = "2025-10-08T19:47:16.277Z" }, - { url = "https://files.pythonhosted.org/packages/50/a6/4282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3/propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1", size = 199398, upload-time = "2025-10-08T19:47:17.962Z" }, - { url = "https://files.pythonhosted.org/packages/3e/ec/d8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09/propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24", size = 196920, upload-time = "2025-10-08T19:47:19.355Z" }, - { url = "https://files.pythonhosted.org/packages/f6/6c/f38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca/propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa", size = 203748, upload-time = "2025-10-08T19:47:21.338Z" }, - { url = "https://files.pythonhosted.org/packages/d6/e3/fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153/propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61", size = 205877, upload-time = "2025-10-08T19:47:23.059Z" }, - { url = "https://files.pythonhosted.org/packages/e2/39/8163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d/propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66", size = 199437, upload-time = "2025-10-08T19:47:24.445Z" }, - { url = "https://files.pythonhosted.org/packages/93/89/caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe/propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81", size = 37586, upload-time = "2025-10-08T19:47:25.736Z" }, - { url = "https://files.pythonhosted.org/packages/f5/ab/f76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd/propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e", size = 40790, upload-time = "2025-10-08T19:47:26.847Z" }, - { url = "https://files.pythonhosted.org/packages/59/1b/e71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3/propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1", size = 37158, upload-time = "2025-10-08T19:47:27.961Z" }, - { url = "https://files.pythonhosted.org/packages/83/ce/a31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9/propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b", size = 81451, upload-time = "2025-10-08T19:47:29.445Z" }, - { url = "https://files.pythonhosted.org/packages/25/9c/442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed/propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566", size = 46374, upload-time = "2025-10-08T19:47:30.579Z" }, - { url = "https://files.pythonhosted.org/packages/f4/bf/b1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65/propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835", size = 48396, upload-time = "2025-10-08T19:47:31.79Z" }, - { url = "https://files.pythonhosted.org/packages/f4/04/5b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949/propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e", size = 275950, upload-time = "2025-10-08T19:47:33.481Z" }, - { url = "https://files.pythonhosted.org/packages/b4/c1/86f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395/propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859", size = 273856, upload-time = "2025-10-08T19:47:34.906Z" }, - { url = "https://files.pythonhosted.org/packages/36/1d/fc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada/propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b", size = 280420, upload-time = "2025-10-08T19:47:36.338Z" }, - { url = "https://files.pythonhosted.org/packages/07/0c/01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a/propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0", size = 263254, upload-time = "2025-10-08T19:47:37.692Z" }, - { url = "https://files.pythonhosted.org/packages/2d/18/cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359/propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af", size = 261205, upload-time = "2025-10-08T19:47:39.659Z" }, - { url = "https://files.pythonhosted.org/packages/7a/71/1f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e/propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393", size = 247873, upload-time = "2025-10-08T19:47:41.084Z" }, - { url = "https://files.pythonhosted.org/packages/4a/65/3d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58/propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874", size = 262739, upload-time = "2025-10-08T19:47:42.51Z" }, - { url = "https://files.pythonhosted.org/packages/2a/42/26746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06/propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7", size = 263514, upload-time = "2025-10-08T19:47:43.927Z" }, - { url = "https://files.pythonhosted.org/packages/94/13/630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b/propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1", size = 257781, upload-time = "2025-10-08T19:47:45.448Z" }, - { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" }, - { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" }, - { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" }, - { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c/propcache-0.5.2.tar.gz", hash = "sha256:01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427", size = 50208, upload-time = "2026-05-08T21:02:12.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/cb/e27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9/propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba", size = 95887, upload-time = "2026-05-08T21:00:11.277Z" }, + { url = "https://files.pythonhosted.org/packages/e6/13/b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1/propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a", size = 54654, upload-time = "2026-05-08T21:00:12.604Z" }, + { url = "https://files.pythonhosted.org/packages/2c/7d/49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431/propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf", size = 55190, upload-time = "2026-05-08T21:00:13.935Z" }, + { url = "https://files.pythonhosted.org/packages/44/c7/085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91/propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144", size = 59995, upload-time = "2026-05-08T21:00:15.526Z" }, + { url = "https://files.pythonhosted.org/packages/9c/42/32cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4/propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9", size = 63422, upload-time = "2026-05-08T21:00:16.824Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b/propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42", size = 64342, upload-time = "2026-05-08T21:00:18.362Z" }, + { url = "https://files.pythonhosted.org/packages/14/15/5574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3/propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476", size = 61639, upload-time = "2026-05-08T21:00:19.692Z" }, + { url = "https://files.pythonhosted.org/packages/cc/da/4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7/propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba", size = 61588, upload-time = "2026-05-08T21:00:21.155Z" }, + { url = "https://files.pythonhosted.org/packages/04/ac/f076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2/propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a", size = 60029, upload-time = "2026-05-08T21:00:22.713Z" }, + { url = "https://files.pythonhosted.org/packages/70/60/189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1/propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64", size = 56774, upload-time = "2026-05-08T21:00:24.001Z" }, + { url = "https://files.pythonhosted.org/packages/ea/9e/93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651/propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913", size = 63532, upload-time = "2026-05-08T21:00:25.545Z" }, + { url = "https://files.pythonhosted.org/packages/14/f9/590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8/propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1", size = 61592, upload-time = "2026-05-08T21:00:27.186Z" }, + { url = "https://files.pythonhosted.org/packages/b4/5e/70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022/propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33", size = 64788, upload-time = "2026-05-08T21:00:28.8Z" }, + { url = "https://files.pythonhosted.org/packages/12/fd/77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06/propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a", size = 62514, upload-time = "2026-05-08T21:00:30.098Z" }, + { url = "https://files.pythonhosted.org/packages/cf/74/66bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d/propcache-0.5.2-cp312-cp312-win32.whl", hash = "sha256:8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031", size = 39018, upload-time = "2026-05-08T21:00:31.622Z" }, + { url = "https://files.pythonhosted.org/packages/61/7c/5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145/propcache-0.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42", size = 42322, upload-time = "2026-05-08T21:00:32.918Z" }, + { url = "https://files.pythonhosted.org/packages/4d/91/875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b/propcache-0.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84", size = 38172, upload-time = "2026-05-08T21:00:35.124Z" }, + { url = "https://files.pythonhosted.org/packages/c5/09/f049e45385503fe67db75a6b6186a7b9f0c3930366dc960522c312a825b1/propcache-0.5.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:099aaf4b4d1a02265b92a977edf00b5c4f63b3b17ac6de39b0d637c9cac0188a", size = 94457, upload-time = "2026-05-08T21:00:36.355Z" }, + { url = "https://files.pythonhosted.org/packages/6b/65/83d1d05655baf63113731bd5a1008435e14f8d1e5a06cbe4ec5b23ad7a31/propcache-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:68ce1c44c7a813a7f71ea04315a8c7b330b63db99d059a797a4651bb6f69f117", size = 53835, upload-time = "2026-05-08T21:00:38.072Z" }, + { url = "https://files.pythonhosted.org/packages/a9/12/a6ba6482bb5ea3260c000c9b20881c95fa11c6b30173715668259f844ed7/propcache-0.5.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:fc299c129490f55f254cd90be0deca4764e36e9a7c08b4aa588479a3bbed3098", size = 54545, upload-time = "2026-05-08T21:00:39.319Z" }, + { url = "https://files.pythonhosted.org/packages/a9/19/7fa086f5764c59ec8a8e157cd93aa8497acc00aba9dcdec56bfffb32602d/propcache-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a6ae2198be502c10f09b2516e7b5d019816924bc3183a43ce792a7bd6625e6f4", size = 59886, upload-time = "2026-05-08T21:00:40.621Z" }, + { url = "https://files.pythonhosted.org/packages/a1/e4/5d7663dc8235956c8f5281698a3af1d351d8820341ddd890f59d9a9127f2/propcache-0.5.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6041d31504dc1779d700e1edcfb08eea334b357620b06681a4eabb57a74e574e", size = 63261, upload-time = "2026-05-08T21:00:41.775Z" }, + { url = "https://files.pythonhosted.org/packages/4a/4a/15a03adee24d6350da4292caeac44c34c033d2afe5e87eb370f38854560f/propcache-0.5.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f7eabc04151c78a9f4d5bbb5f1faf571e4defeb4b585e0fe95b60ff2dbe4d3d7", size = 64184, upload-time = "2026-05-08T21:00:43.018Z" }, + { url = "https://files.pythonhosted.org/packages/8b/c6/979176efdaa3d239e36d503d5af63a0a773b36662ed8f52e5b6a6d9fd40e/propcache-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4db0ba63d693afd40d249bd93f842b5f144f8fcbb83de05660373bcf30517b1d", size = 61534, upload-time = "2026-05-08T21:00:44.507Z" }, + { url = "https://files.pythonhosted.org/packages/c8/22/63e8cd1bae4c2d2be6493b6b7d10566ddafad88137cfbc99964a1119853c/propcache-0.5.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1dbcf7675229b35d31abb6547d8ebc8c27a830ac3f9a794edff6254873ec7c0a", size = 61500, upload-time = "2026-05-08T21:00:45.796Z" }, + { url = "https://files.pythonhosted.org/packages/60/5a/28e5d9acbac1cc9ccb67045e8c1b943aa8d79fdf39c93bd73cacd68008ea/propcache-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d310c013aad2c72f1c3f2f8dd3279d460a858c551f97aeb8c63e4693cca7b4d2", size = 59994, upload-time = "2026-05-08T21:00:47.093Z" }, + { url = "https://files.pythonhosted.org/packages/f3/40/db650677f554a95b9c01a7c9d93d629e93a15562f5deb4573c9ee136fed2/propcache-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:06187263ddad280d05b4d8a8b3bb7d164cbebd469236544a42e6d9b28ac6a4fa", size = 56884, upload-time = "2026-05-08T21:00:48.376Z" }, + { url = "https://files.pythonhosted.org/packages/80/45/70b39b89516ff8b96bf732fa6fded8cef20f293cb1508690101c3c07ec51/propcache-0.5.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3115559b8effafd63b142ea5ed53d63a16ea6469cbc63dce4ee194b42db5d853", size = 63464, upload-time = "2026-05-08T21:00:49.954Z" }, + { url = "https://files.pythonhosted.org/packages/f9/e2/fa59d3a89eac5534293124af4f1d0d0ada091ce4a0ab4610ce03fd2bdd8d/propcache-0.5.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c60462af8e6dc30c35407c7237ea908d777b22862bbee27bc4699c0d8bcdc45a", size = 61588, upload-time = "2026-05-08T21:00:51.281Z" }, + { url = "https://files.pythonhosted.org/packages/0b/97/efb547a55c4bc7381cfb202d6a2239ac621045277bc1ea5dfd3a7f0516c0/propcache-0.5.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:40314bca9ac559716fe374094fc81c11dcc34b64fd6c585360f5775690505704", size = 64667, upload-time = "2026-05-08T21:00:52.602Z" }, + { url = "https://files.pythonhosted.org/packages/92/56/f5c7d9b4b7595d5127da38974d791b2153f3d1eae6c674af3583ace92ad3/propcache-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:cfa21e036ce1e1db2be04ba3b85d2df1bb1702fa01932d984c5464c665228ff4", size = 62463, upload-time = "2026-05-08T21:00:54.303Z" }, + { url = "https://files.pythonhosted.org/packages/bd/3b/484a3a65fc9f9f60c41dcd17b428bace5389544e2c680994534a20755066/propcache-0.5.2-cp313-cp313-win32.whl", hash = "sha256:f156a3529f38063b6dbaf356e15602a7f95f8055b1295a438433a6386f10463d", size = 38621, upload-time = "2026-05-08T21:00:55.808Z" }, + { url = "https://files.pythonhosted.org/packages/1c/fd/3f0f10dba4dabad3bf53102be007abf55481067952bde0fdddff439e7c61/propcache-0.5.2-cp313-cp313-win_amd64.whl", hash = "sha256:dfed59d0a5aeb01e242e66ff0300bc4a265a7c05f612d30016f0b60b1017d757", size = 41649, upload-time = "2026-05-08T21:00:57.061Z" }, + { url = "https://files.pythonhosted.org/packages/90/ec/6ce619cc32bb500a482f811f9cd509368b4e58e638d13f2c68f370d6b475/propcache-0.5.2-cp313-cp313-win_arm64.whl", hash = "sha256:ba338430e87ceb9c8f0cf754de38a9860560261e56c00376debd628698a7364f", size = 37636, upload-time = "2026-05-08T21:00:58.646Z" }, + { url = "https://files.pythonhosted.org/packages/1b/82/c1d268bbbf2ef981c5bf0fbbe746db617c66e3bcefe431a1aa8943fbe23a/propcache-0.5.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:a592f5f3da71c8691c788c13cb6734b6d17663d2e1cb8caddf0673d01ef8847d", size = 98872, upload-time = "2026-05-08T21:00:59.889Z" }, + { url = "https://files.pythonhosted.org/packages/f4/d4/52c871e73e864e6b34c0e2d58ac1ec5ccd149497ddc7ad2137ae98323a35/propcache-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:6a997d0489e9668a384fcfd5061b857aa5361de73191cac204d04b889cfbbafa", size = 56257, upload-time = "2026-05-08T21:01:01.195Z" }, + { url = "https://files.pythonhosted.org/packages/67/f0/9b90ca2a210b3d09bcfcd96ecd0f55545c091535abce2a45de2775cfd357/propcache-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:10734b5484ea113152ee25a91dccedf81631791805d2c9ccb054958e51842c94", size = 56696, upload-time = "2026-05-08T21:01:02.941Z" }, + { url = "https://files.pythonhosted.org/packages/9d/0e/6e9d4ba07c8e56e21ddec1e75f12148142b21ca83a51871babce095334f4/propcache-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cafca7e56c12bb02ae16d283742bef25a61122e9dab2b5b3f2ccbe589ce32164", size = 62378, upload-time = "2026-05-08T21:01:04.475Z" }, + { url = "https://files.pythonhosted.org/packages/65/19/c10badaa463dde8a27ce884f8ee2ec37e6035b7c9f5ff0c8f74f06f08dac/propcache-0.5.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f064f8d2b59177878b7615df1735cd8fe3462ed6be8c7b217d17a276489c2b7f", size = 65283, upload-time = "2026-05-08T21:01:05.959Z" }, + { url = "https://files.pythonhosted.org/packages/b0/b6/93bea99ca80e19cef6512a8580e5b7857bbe09422d9daa7fd4ef5723306c/propcache-0.5.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f78abfa8dfc32376fd1aacf597b2f2fbbe0ea751419aee718af5d4f82537ef8c", size = 66616, upload-time = "2026-05-08T21:01:07.228Z" }, + { url = "https://files.pythonhosted.org/packages/83/e4/5c7462e50625f051f37fb38b8224f7639f667184bbd34424ec83819bb1b7/propcache-0.5.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7467da8a9822bf1a55336f877340c5bcbd3c482afc43a99771169f74a26dedc", size = 63773, upload-time = "2026-05-08T21:01:08.514Z" }, + { url = "https://files.pythonhosted.org/packages/ca/b6/99238894047b13c823be25027e736626cd414a52a5e30d2c3347c2733529/propcache-0.5.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a6ddc6ac9e25de626c1f129c1b467d7ecd33ce2237d3fd0c4e429feef0a7ee1f", size = 63664, upload-time = "2026-05-08T21:01:09.874Z" }, + { url = "https://files.pythonhosted.org/packages/85/1e/a3a1a63116a2b8edb415a8bb9a6f0c34bd03830b1e18e8ce2904e1dc1cf4/propcache-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:2f22cbbac9e26a8e864c0985ff1268d5d939d53d9d9411a9824279097e03a2cb", size = 62643, upload-time = "2026-05-08T21:01:11.132Z" }, + { url = "https://files.pythonhosted.org/packages/e4/03/893cf147de2fc6543c5eaa07ad833170e7e2a2385725bbebe8c0503723bb/propcache-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:fc76378c62a0f04d0cd82fbb1a2cd2d7e28fcb40d5873f28a6c44e388aaa2751", size = 59595, upload-time = "2026-05-08T21:01:12.387Z" }, + { url = "https://files.pythonhosted.org/packages/86/3b/04c1a2e12c57766568ba75ba72b3bf2042818d4c1425fab6fc07155c7cff/propcache-0.5.2-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:acd2c8edba48e31e58a363b8cf4e5c7db3b04b3f9e371f601df30d9b0d244836", size = 65711, upload-time = "2026-05-08T21:01:13.676Z" }, + { url = "https://files.pythonhosted.org/packages/1c/34/80f8d0099f8d6bacc4de1624c85672681c8cd1149ca2da0e38fd120b817f/propcache-0.5.2-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:452b5065457eb9991ec5eb38ff41d6cd4c991c9ac7c531c4d5849ae473a9a13f", size = 64247, upload-time = "2026-05-08T21:01:14.936Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1a/8b08f3a5f1037e9e370c55883ceeeee0f6dd0416fb2d2d67b8bfc91f2a79/propcache-0.5.2-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:3430bb2bfe1331885c427745a751e774ee679fd4344f80b97bf879815fe8fa55", size = 67102, upload-time = "2026-05-08T21:01:16.281Z" }, + { url = "https://files.pythonhosted.org/packages/34/68/8bdb7bb7756d76e005490649d10e4a8369e610c74d619f71e1aedf889e9c/propcache-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:cef6cea3922890dd6c9654971001fa797b526c16ab5e1e46c05fd6f877be7568", size = 64964, upload-time = "2026-05-08T21:01:17.57Z" }, + { url = "https://files.pythonhosted.org/packages/0a/aa/50fb0b5d3968b61a510926ff8b8465f1d6e976b3ab74496d7a4b9fc42515/propcache-0.5.2-cp313-cp313t-win32.whl", hash = "sha256:72d61e16dd78228b58c5d47be830ff3da7e5f139abdf0aef9d86cde1c5cf2191", size = 42546, upload-time = "2026-05-08T21:01:18.946Z" }, + { url = "https://files.pythonhosted.org/packages/ae/4c/0ddbae64321bd4a95bcbfc19307238016b5b1fee645c84626c8d539e5b74/propcache-0.5.2-cp313-cp313t-win_amd64.whl", hash = "sha256:0958834041a0166d343b8d2cedcd8bcbaeb4fdbe0cf08320c5379f143c3be6e7", size = 46330, upload-time = "2026-05-08T21:01:20.162Z" }, + { url = "https://files.pythonhosted.org/packages/00/d9/9cddc8efb78d8af264c5ec9f6d10b62f57c515feda8d321595f56010fb23/propcache-0.5.2-cp313-cp313t-win_arm64.whl", hash = "sha256:6de8bd93ddde9b992cf2b2e0d796d501a19026b5b9fd87356d7d0779531a8d96", size = 40521, upload-time = "2026-05-08T21:01:21.399Z" }, + { url = "https://files.pythonhosted.org/packages/3a/ed/1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f/propcache-0.5.2-py3-none-any.whl", hash = "sha256:be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe", size = 14036, upload-time = "2026-05-08T21:02:10.673Z" }, ] [[package]] name = "proto-plus" -version = "1.26.1" +version = "1.28.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "protobuf" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f4/ac/87285f15f7cce6d4a008f33f1757fb5a13611ea8914eb58c3d0d26243468/proto_plus-1.26.1.tar.gz", hash = "sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012", size = 56142, upload-time = "2025-03-10T15:54:38.843Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/56/e647b0c675392d2da368da7b6f158f7368b18542fd6f7d7400a2f39de000/proto_plus-1.28.0.tar.gz", hash = "sha256:38e5696342835b08fc116f30a25665b29531cda9d5d5643e9b81fc312385abd9", size = 57221, upload-time = "2026-05-07T08:04:50.811Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/6d/280c4c2ce28b1593a19ad5239c8b826871fc6ec275c21afc8e1820108039/proto_plus-1.26.1-py3-none-any.whl", hash = "sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66", size = 50163, upload-time = "2025-03-10T15:54:37.335Z" }, + { url = "https://files.pythonhosted.org/packages/7c/20/b122d4626976acb81132036d2ad1bb35a1a8775fceb837ec30964622516a/proto_plus-1.28.0-py3-none-any.whl", hash = "sha256:a630604310899e73c59ec302e5765c058d412b2f090b9c79c8822589f14955b8", size = 50410, upload-time = "2026-05-07T08:03:31.962Z" }, ] [[package]] name = "protobuf" -version = "6.33.1" +version = "7.34.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0a/03/a1440979a3f74f16cab3b75b0da1a1a7f922d56a8ddea96092391998edc0/protobuf-6.33.1.tar.gz", hash = "sha256:97f65757e8d09870de6fd973aeddb92f85435607235d20b2dfed93405d00c85b", size = 443432, upload-time = "2025-11-13T16:44:18.895Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/6b/a0e95cad1ad7cc3f2c6821fcab91671bd5b78bd42afb357bb4765f29bc41/protobuf-7.34.1.tar.gz", hash = "sha256:9ce42245e704cc5027be797c1db1eb93184d44d1cdd71811fb2d9b25ad541280", size = 454708, upload-time = "2026-03-20T17:34:47.036Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/06/f1/446a9bbd2c60772ca36556bac8bfde40eceb28d9cc7838755bc41e001d8f/protobuf-6.33.1-cp310-abi3-win32.whl", hash = "sha256:f8d3fdbc966aaab1d05046d0240dd94d40f2a8c62856d41eaa141ff64a79de6b", size = 425593, upload-time = "2025-11-13T16:44:06.275Z" }, - { url = "https://files.pythonhosted.org/packages/a6/79/8780a378c650e3df849b73de8b13cf5412f521ca2ff9b78a45c247029440/protobuf-6.33.1-cp310-abi3-win_amd64.whl", hash = "sha256:923aa6d27a92bf44394f6abf7ea0500f38769d4b07f4be41cb52bd8b1123b9ed", size = 436883, upload-time = "2025-11-13T16:44:09.222Z" }, - { url = "https://files.pythonhosted.org/packages/cd/93/26213ff72b103ae55bb0d73e7fb91ea570ef407c3ab4fd2f1f27cac16044/protobuf-6.33.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:fe34575f2bdde76ac429ec7b570235bf0c788883e70aee90068e9981806f2490", size = 427522, upload-time = "2025-11-13T16:44:10.475Z" }, - { url = "https://files.pythonhosted.org/packages/c2/32/df4a35247923393aa6b887c3b3244a8c941c32a25681775f96e2b418f90e/protobuf-6.33.1-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:f8adba2e44cde2d7618996b3fc02341f03f5bc3f2748be72dc7b063319276178", size = 324445, upload-time = "2025-11-13T16:44:11.869Z" }, - { url = "https://files.pythonhosted.org/packages/8e/d0/d796e419e2ec93d2f3fa44888861c3f88f722cde02b7c3488fcc6a166820/protobuf-6.33.1-cp39-abi3-manylinux2014_s390x.whl", hash = "sha256:0f4cf01222c0d959c2b399142deb526de420be8236f22c71356e2a544e153c53", size = 339161, upload-time = "2025-11-13T16:44:12.778Z" }, - { url = "https://files.pythonhosted.org/packages/1d/2a/3c5f05a4af06649547027d288747f68525755de692a26a7720dced3652c0/protobuf-6.33.1-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:8fd7d5e0eb08cd5b87fd3df49bc193f5cfd778701f47e11d127d0afc6c39f1d1", size = 323171, upload-time = "2025-11-13T16:44:14.035Z" }, - { url = "https://files.pythonhosted.org/packages/08/b4/46310463b4f6ceef310f8348786f3cff181cea671578e3d9743ba61a459e/protobuf-6.33.1-py3-none-any.whl", hash = "sha256:d595a9fd694fdeb061a62fbe10eb039cc1e444df81ec9bb70c7fc59ebcb1eafa", size = 170477, upload-time = "2025-11-13T16:44:17.633Z" }, + { url = "https://files.pythonhosted.org/packages/ec/11/3325d41e6ee15bf1125654301211247b042563bcc898784351252549a8ad/protobuf-7.34.1-cp310-abi3-macosx_10_9_universal2.whl", hash = "sha256:d8b2cc79c4d8f62b293ad9b11ec3aebce9af481fa73e64556969f7345ebf9fc7", size = 429247, upload-time = "2026-03-20T17:34:37.024Z" }, + { url = "https://files.pythonhosted.org/packages/eb/9d/aa69df2724ff63efa6f72307b483ce0827f4347cc6d6df24b59e26659fef/protobuf-7.34.1-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:5185e0e948d07abe94bb76ec9b8416b604cfe5da6f871d67aad30cbf24c3110b", size = 325753, upload-time = "2026-03-20T17:34:38.751Z" }, + { url = "https://files.pythonhosted.org/packages/92/e8/d174c91fd48e50101943f042b09af9029064810b734e4160bbe282fa1caa/protobuf-7.34.1-cp310-abi3-manylinux2014_s390x.whl", hash = "sha256:403b093a6e28a960372b44e5eb081775c9b056e816a8029c61231743d63f881a", size = 340198, upload-time = "2026-03-20T17:34:39.871Z" }, + { url = "https://files.pythonhosted.org/packages/53/1b/3b431694a4dc6d37b9f653f0c64b0a0d9ec074ee810710c0c3da21d67ba7/protobuf-7.34.1-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:8ff40ce8cd688f7265326b38d5a1bed9bfdf5e6723d49961432f83e21d5713e4", size = 324267, upload-time = "2026-03-20T17:34:41.1Z" }, + { url = "https://files.pythonhosted.org/packages/85/29/64de04a0ac142fb685fd09999bc3d337943fb386f3a0ec57f92fd8203f97/protobuf-7.34.1-cp310-abi3-win32.whl", hash = "sha256:34b84ce27680df7cca9f231043ada0daa55d0c44a2ddfaa58ec1d0d89d8bf60a", size = 426628, upload-time = "2026-03-20T17:34:42.536Z" }, + { url = "https://files.pythonhosted.org/packages/4d/87/cb5e585192a22b8bd457df5a2c16a75ea0db9674c3a0a39fc9347d84e075/protobuf-7.34.1-cp310-abi3-win_amd64.whl", hash = "sha256:e97b55646e6ce5cbb0954a8c28cd39a5869b59090dfaa7df4598a7fba869468c", size = 437901, upload-time = "2026-03-20T17:34:44.112Z" }, + { url = "https://files.pythonhosted.org/packages/88/95/608f665226bca68b736b79e457fded9a2a38c4f4379a4a7614303d9db3bc/protobuf-7.34.1-py3-none-any.whl", hash = "sha256:bb3812cd53aefea2b028ef42bd780f5b96407247f20c6ef7c679807e9d188f11", size = 170715, upload-time = "2026-03-20T17:34:45.384Z" }, ] [[package]] @@ -1390,40 +1534,40 @@ wheels = [ [[package]] name = "pyarrow" -version = "23.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/4b/4166bb5abbfe6f750fc60ad337c43ecf61340fa52ab386da6e8dbf9e63c4/pyarrow-23.0.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f4b0dbfa124c0bb161f8b5ebb40f1a680b70279aa0c9901d44a2b5a20806039f", size = 34214575, upload-time = "2026-02-16T10:09:56.225Z" }, - { url = "https://files.pythonhosted.org/packages/e1/da/3f941e3734ac8088ea588b53e860baeddac8323ea40ce22e3d0baa865cc9/pyarrow-23.0.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:7707d2b6673f7de054e2e83d59f9e805939038eebe1763fe811ee8fa5c0cd1a7", size = 35832540, upload-time = "2026-02-16T10:10:03.428Z" }, - { url = "https://files.pythonhosted.org/packages/88/7c/3d841c366620e906d54430817531b877ba646310296df42ef697308c2705/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:86ff03fb9f1a320266e0de855dee4b17da6794c595d207f89bba40d16b5c78b9", size = 44470940, upload-time = "2026-02-16T10:10:10.704Z" }, - { url = "https://files.pythonhosted.org/packages/2c/a5/da83046273d990f256cb79796a190bbf7ec999269705ddc609403f8c6b06/pyarrow-23.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:813d99f31275919c383aab17f0f455a04f5a429c261cc411b1e9a8f5e4aaaa05", size = 47586063, upload-time = "2026-02-16T10:10:17.95Z" }, - { url = "https://files.pythonhosted.org/packages/5b/3c/b7d2ebcff47a514f47f9da1e74b7949138c58cfeb108cdd4ee62f43f0cf3/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bf5842f960cddd2ef757d486041d57c96483efc295a8c4a0e20e704cbbf39c67", size = 48173045, upload-time = "2026-02-16T10:10:25.363Z" }, - { url = "https://files.pythonhosted.org/packages/43/b2/b40961262213beaba6acfc88698eb773dfce32ecdf34d19291db94c2bd73/pyarrow-23.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:564baf97c858ecc03ec01a41062e8f4698abc3e6e2acd79c01c2e97880a19730", size = 50621741, upload-time = "2026-02-16T10:10:33.477Z" }, - { url = "https://files.pythonhosted.org/packages/f6/70/1fdda42d65b28b078e93d75d371b2185a61da89dda4def8ba6ba41ebdeb4/pyarrow-23.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:07deae7783782ac7250989a7b2ecde9b3c343a643f82e8a4df03d93b633006f0", size = 27620678, upload-time = "2026-02-16T10:10:39.31Z" }, - { url = "https://files.pythonhosted.org/packages/47/10/2cbe4c6f0fb83d2de37249567373d64327a5e4d8db72f486db42875b08f6/pyarrow-23.0.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6b8fda694640b00e8af3c824f99f789e836720aa8c9379fb435d4c4953a756b8", size = 34210066, upload-time = "2026-02-16T10:10:45.487Z" }, - { url = "https://files.pythonhosted.org/packages/cb/4f/679fa7e84dadbaca7a65f7cdba8d6c83febbd93ca12fa4adf40ba3b6362b/pyarrow-23.0.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:8ff51b1addc469b9444b7c6f3548e19dc931b172ab234e995a60aea9f6e6025f", size = 35825526, upload-time = "2026-02-16T10:10:52.266Z" }, - { url = "https://files.pythonhosted.org/packages/f9/63/d2747d930882c9d661e9398eefc54f15696547b8983aaaf11d4a2e8b5426/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:71c5be5cbf1e1cb6169d2a0980850bccb558ddc9b747b6206435313c47c37677", size = 44473279, upload-time = "2026-02-16T10:11:01.557Z" }, - { url = "https://files.pythonhosted.org/packages/b3/93/10a48b5e238de6d562a411af6467e71e7aedbc9b87f8d3a35f1560ae30fb/pyarrow-23.0.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:9b6f4f17b43bc39d56fec96e53fe89d94bac3eb134137964371b45352d40d0c2", size = 47585798, upload-time = "2026-02-16T10:11:09.401Z" }, - { url = "https://files.pythonhosted.org/packages/5c/20/476943001c54ef078dbf9542280e22741219a184a0632862bca4feccd666/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fc13fc6c403d1337acab46a2c4346ca6c9dec5780c3c697cf8abfd5e19b6b37", size = 48179446, upload-time = "2026-02-16T10:11:17.781Z" }, - { url = "https://files.pythonhosted.org/packages/4b/b6/5dd0c47b335fcd8edba9bfab78ad961bd0fd55ebe53468cc393f45e0be60/pyarrow-23.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5c16ed4f53247fa3ffb12a14d236de4213a4415d127fe9cebed33d51671113e2", size = 50623972, upload-time = "2026-02-16T10:11:26.185Z" }, - { url = "https://files.pythonhosted.org/packages/d5/09/a532297c9591a727d67760e2e756b83905dd89adb365a7f6e9c72578bcc1/pyarrow-23.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:cecfb12ef629cf6be0b1887f9f86463b0dd3dc3195ae6224e74006be4736035a", size = 27540749, upload-time = "2026-02-16T10:12:23.297Z" }, - { url = "https://files.pythonhosted.org/packages/a5/8e/38749c4b1303e6ae76b3c80618f84861ae0c55dd3c2273842ea6f8258233/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:29f7f7419a0e30264ea261fdc0e5fe63ce5a6095003db2945d7cd78df391a7e1", size = 34471544, upload-time = "2026-02-16T10:11:32.535Z" }, - { url = "https://files.pythonhosted.org/packages/a3/73/f237b2bc8c669212f842bcfd842b04fc8d936bfc9d471630569132dc920d/pyarrow-23.0.1-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:33d648dc25b51fd8055c19e4261e813dfc4d2427f068bcecc8b53d01b81b0500", size = 35949911, upload-time = "2026-02-16T10:11:39.813Z" }, - { url = "https://files.pythonhosted.org/packages/0c/86/b912195eee0903b5611bf596833def7d146ab2d301afeb4b722c57ffc966/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd395abf8f91c673dd3589cadc8cc1ee4e8674fa61b2e923c8dd215d9c7d1f41", size = 44520337, upload-time = "2026-02-16T10:11:47.764Z" }, - { url = "https://files.pythonhosted.org/packages/69/c2/f2a717fb824f62d0be952ea724b4f6f9372a17eed6f704b5c9526f12f2f1/pyarrow-23.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:00be9576d970c31defb5c32eb72ef585bf600ef6d0a82d5eccaae96639cf9d07", size = 47548944, upload-time = "2026-02-16T10:11:56.607Z" }, - { url = "https://files.pythonhosted.org/packages/84/a7/90007d476b9f0dc308e3bc57b832d004f848fd6c0da601375d20d92d1519/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c2139549494445609f35a5cda4eb94e2c9e4d704ce60a095b342f82460c73a83", size = 48236269, upload-time = "2026-02-16T10:12:04.47Z" }, - { url = "https://files.pythonhosted.org/packages/b0/3f/b16fab3e77709856eb6ac328ce35f57a6d4a18462c7ca5186ef31b45e0e0/pyarrow-23.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7044b442f184d84e2351e5084600f0d7343d6117aabcbc1ac78eb1ae11eb4125", size = 50604794, upload-time = "2026-02-16T10:12:11.797Z" }, - { url = "https://files.pythonhosted.org/packages/e9/a1/22df0620a9fac31d68397a75465c344e83c3dfe521f7612aea33e27ab6c0/pyarrow-23.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a35581e856a2fafa12f3f54fce4331862b1cfb0bef5758347a858a4aa9d6bae8", size = 27660642, upload-time = "2026-02-16T10:12:17.746Z" }, +version = "24.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/13/13e1069b351bdc3881266e11147ffccf687505dbb0ea74036237f5d454a5/pyarrow-24.0.0.tar.gz", hash = "sha256:85fe721a14dd823aca09127acbb06c3ca723efbd436c004f16bca601b04dcc83", size = 1180261, upload-time = "2026-04-21T10:51:25.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/a9/9686d9f07837f91f775e8932659192e02c74f9d8920524b480b85212cc68/pyarrow-24.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:6233c9ed9ab9d1db47de57d9753256d9dcffbf42db341576099f0fd9f6bf4810", size = 34981559, upload-time = "2026-04-21T10:47:22.17Z" }, + { url = "https://files.pythonhosted.org/packages/80/b6/0ddf0e9b6ead3474ab087ae598c76b031fc45532bf6a63f3a553440fb258/pyarrow-24.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:f7616236ec1bc2b15bfdec22a71ab38851c86f8f05ff64f379e1278cf20c634a", size = 36663654, upload-time = "2026-04-21T10:47:28.315Z" }, + { url = "https://files.pythonhosted.org/packages/7c/3b/926382efe8ce27ba729071d3566ade6dfb86bdf112f366000196b2f5780a/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:1617043b99bd33e5318ae18eb2919af09c71322ef1ca46566cdafc6e6712fb66", size = 45679394, upload-time = "2026-04-21T10:47:34.821Z" }, + { url = "https://files.pythonhosted.org/packages/b3/7a/829f7d9dfd37c207206081d6dad474d81dde29952401f07f2ba507814818/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6165461f55ef6314f026de6638d661188e3455d3ec49834556a0ebbdbace18bb", size = 48863122, upload-time = "2026-04-21T10:47:42.056Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e8/f88ce625fe8babaae64e8db2d417c7653adb3019b08aae85c5ed787dc816/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3b13dedfe76a0ad2d1d859b0811b53827a4e9d93a0bcb05cf59333ab4980cc7e", size = 49376032, upload-time = "2026-04-21T10:47:48.967Z" }, + { url = "https://files.pythonhosted.org/packages/36/7a/82c363caa145fff88fb475da50d3bf52bb024f61917be5424c3392eaf878/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:25ea65d868eb04015cd18e6df2fbe98f07e5bda2abefabcb88fce39a947716f6", size = 51929490, upload-time = "2026-04-21T10:47:55.981Z" }, + { url = "https://files.pythonhosted.org/packages/66/1c/e3e72c8014ad2743ca64a701652c733cc5cbcee15c0463a32a8c55518d9e/pyarrow-24.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:295f0a7f2e242dabd513737cf076007dc5b2d59237e3eca37b05c0c6446f3826", size = 27355660, upload-time = "2026-04-21T10:48:01.718Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d3/a1abf004482026ddc17f4503db227787fa3cfe41ec5091ff20e4fea55e57/pyarrow-24.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:02b001b3ed4723caa44f6cd1af2d5c86aa2cf9971dacc2ffa55b21237713dfba", size = 34976759, upload-time = "2026-04-21T10:48:07.258Z" }, + { url = "https://files.pythonhosted.org/packages/4f/4a/34f0a36d28a2dd32225301b79daad44e243dc1a2bb77d43b60749be255c4/pyarrow-24.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:04920d6a71aabd08a0417709efce97d45ea8e6fb733d9ca9ecffb13c67839f68", size = 36658471, upload-time = "2026-04-21T10:48:13.347Z" }, + { url = "https://files.pythonhosted.org/packages/1f/78/543b94712ae8bb1a6023bcc1acf1a740fbff8286747c289cd9468fced2a5/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a964266397740257f16f7bb2e4f08a0c81454004beab8ff59dd531b73610e9f2", size = 45675981, upload-time = "2026-04-21T10:48:20.201Z" }, + { url = "https://files.pythonhosted.org/packages/84/9f/8fb7c222b100d314137fa40ec050de56cd8c6d957d1cfff685ce72f15b17/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6f066b179d68c413374294bc1735f68475457c933258df594443bb9d88ddc2a0", size = 48859172, upload-time = "2026-04-21T10:48:27.541Z" }, + { url = "https://files.pythonhosted.org/packages/a7/d3/1ea72538e6c8b3b475ed78d1049a2c518e655761ea50fe1171fc855fcab7/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1183baeb14c5f587b1ec52831e665718ce632caab84b7cd6b85fd44f96114495", size = 49385733, upload-time = "2026-04-21T10:48:34.7Z" }, + { url = "https://files.pythonhosted.org/packages/c3/be/c3d8b06a1ba35f2260f8e1f771abbee7d5e345c0937aab90675706b1690a/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:806f24b4085453c197a5078218d1ee08783ebbba271badd153d1ae22a3ee804f", size = 51934335, upload-time = "2026-04-21T10:48:42.099Z" }, + { url = "https://files.pythonhosted.org/packages/9c/62/89e07a1e7329d2cde3e3c6994ba0839a24977a2beda8be6005ea3d860b99/pyarrow-24.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:e4505fc6583f7b05ab854934896bcac8253b04ac1171a77dfb73efef92076d91", size = 27271748, upload-time = "2026-04-21T10:49:42.532Z" }, + { url = "https://files.pythonhosted.org/packages/17/1a/cff3a59f80b5b1658549d46611b67163f65e0664431c076ad728bf9d5af4/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:1a4e45017efbf115032e4475ee876d525e0e36c742214fbe405332480ecd6275", size = 35238554, upload-time = "2026-04-21T10:48:48.526Z" }, + { url = "https://files.pythonhosted.org/packages/a8/99/cce0f42a327bfef2c420fb6078a3eb834826e5d6697bf3009fe11d2ad051/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:7986f1fa71cee060ad00758bcc79d3a93bab8559bf978fab9e53472a2e25a17b", size = 36782301, upload-time = "2026-04-21T10:48:55.181Z" }, + { url = "https://files.pythonhosted.org/packages/2a/66/8e560d5ff6793ca29aca213c53eec0dd482dd46cb93b2819e5aab52e4252/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:d3e0b61e8efb24ed38898e5cdc5fffa9124be480008d401a1f8071500494ae42", size = 45721929, upload-time = "2026-04-21T10:49:03.676Z" }, + { url = "https://files.pythonhosted.org/packages/27/0c/a26e25505d030716e078d9f16eb74973cbf0b33b672884e9f9da1c83b871/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:55a3bc1e3df3b5567b7d27ef551b2283f0c68a5e86f1cd56abc569da4f31335b", size = 48825365, upload-time = "2026-04-21T10:49:11.714Z" }, + { url = "https://files.pythonhosted.org/packages/5f/eb/771f9ecb0c65e73fe9dccdd1717901b9594f08c4515d000c7c62df573811/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:641f795b361874ac9da5294f8f443dfdbee355cf2bd9e3b8d97aaac2306b9b37", size = 49451819, upload-time = "2026-04-21T10:49:21.474Z" }, + { url = "https://files.pythonhosted.org/packages/48/da/61ae89a88732f5a785646f3ec6125dbb640fa98a540eb2b9889caa561403/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8adc8e6ce5fccf5dc707046ae4914fd537def529709cc0d285d37a7f9cd442ca", size = 51909252, upload-time = "2026-04-21T10:49:31.164Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1a/8dd5cafab7b66573fa91c03d06d213356ad4edd71813aa75e08ce2b3a844/pyarrow-24.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:9b18371ad2f44044b81a8d23bc2d8a9b6a6226dca775e8e16cfee640473d6c5d", size = 27388127, upload-time = "2026-04-21T10:49:37.334Z" }, ] [[package]] name = "pyasn1" -version = "0.6.1" +version = "0.6.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/e9/01f1a64245b89f039897cb0130016d79f77d52669aae6ee7b159a6c4c018/pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034", size = 145322, upload-time = "2024-09-10T22:41:42.55Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/5f/6583902b6f79b399c9c40674ac384fd9cd77805f9e6205075f828ef11fb2/pyasn1-0.6.3.tar.gz", hash = "sha256:697a8ecd6d98891189184ca1fa05d1bb00e2f84b5977c481452050549c8a72cf", size = 148685, upload-time = "2026-03-17T01:06:53.382Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/f1/d6a797abb14f6283c0ddff96bbdd46937f64122b8c925cab503dd37f8214/pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629", size = 83135, upload-time = "2024-09-11T16:00:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a0/7d793dce3fa811fe047d6ae2431c672364b462850c6235ae306c0efd025f/pyasn1-0.6.3-py3-none-any.whl", hash = "sha256:a80184d120f0864a52a073acc6fc642847d0be408e7c7252f31390c0f4eadcde", size = 83997, upload-time = "2026-03-17T01:06:52.036Z" }, ] [[package]] @@ -1447,9 +1591,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d7/27/a58ddaf8c588a3ef080db9d0b7e0b97215cee3a45df74f3a94dbbf5c893a/pycodestyle-2.14.0-py2.py3-none-any.whl", hash = "sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d", size = 31594, upload-time = "2025-06-20T18:49:47.491Z" }, ] +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + [[package]] name = "pydantic" -version = "2.12.4" +version = "2.13.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "annotated-types" }, @@ -1457,52 +1610,54 @@ dependencies = [ { name = "typing-extensions" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/96/ad/a17bc283d7d81837c061c49e3eaa27a45991759a1b7eae1031921c6bd924/pydantic-2.12.4.tar.gz", hash = "sha256:0f8cb9555000a4b5b617f66bfd2566264c4984b27589d3b845685983e8ea85ac", size = 821038, upload-time = "2025-11-05T10:50:08.59Z" } +sdist = { url = "https://files.pythonhosted.org/packages/18/a5/b60d21ac674192f8ab0ba4e9fd860690f9b4a6e51ca5df118733b487d8d6/pydantic-2.13.4.tar.gz", hash = "sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6", size = 844775, upload-time = "2026-05-06T13:43:05.343Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/82/2f/e68750da9b04856e2a7ec56fc6f034a5a79775e9b9a81882252789873798/pydantic-2.12.4-py3-none-any.whl", hash = "sha256:92d3d202a745d46f9be6df459ac5a064fdaa3c1c4cd8adcfa332ccf3c05f871e", size = 463400, upload-time = "2025-11-05T10:50:06.732Z" }, + { url = "https://files.pythonhosted.org/packages/fd/7b/122376b1fd3c62c1ed9dc80c931ace4844b3c55407b6fb2d199377c9736f/pydantic-2.13.4-py3-none-any.whl", hash = "sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba", size = 472262, upload-time = "2026-05-06T13:43:02.641Z" }, ] [[package]] name = "pydantic-core" -version = "2.41.5" +version = "2.46.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, - { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, - { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, - { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" }, - { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" }, - { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" }, - { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" }, - { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" }, - { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" }, - { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" }, - { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" }, - { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" }, - { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" }, - { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" }, - { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" }, - { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" }, - { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" }, - { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" }, - { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" }, - { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" }, - { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" }, - { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" }, - { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" }, - { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" }, - { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" }, - { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, - { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, - { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, - { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, - { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, - { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, - { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/9d/56/921726b776ace8d8f5db44c4ef961006580d91dc52b803c489fafd1aa249/pydantic_core-2.46.4.tar.gz", hash = "sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1", size = 471464, upload-time = "2026-05-06T13:37:06.98Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/8c/af022f0af448d7747c5154288d46b5f2bc5f17366eaa0e23e9aa04d59f3b/pydantic_core-2.46.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2", size = 2106158, upload-time = "2026-05-06T13:38:57.215Z" }, + { url = "https://files.pythonhosted.org/packages/19/95/6195171e385007300f0f5574592e467c568becce2d937a0b6804f218bc49/pydantic_core-2.46.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f", size = 1951724, upload-time = "2026-05-06T13:37:02.697Z" }, + { url = "https://files.pythonhosted.org/packages/8e/bc/f47d1ff9cbb1620e1b5b697eef06010035735f07820180e74178226b27b3/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7", size = 1975742, upload-time = "2026-05-06T13:37:09.448Z" }, + { url = "https://files.pythonhosted.org/packages/5b/11/9b9a5b0306345664a2da6410877af6e8082481b5884b3ddd78d47c6013ce/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a233125ac121aa3ffba9a2b59edfc4a985a76092dc8279586ab4b71390875e7", size = 2052418, upload-time = "2026-05-06T13:37:38.234Z" }, + { url = "https://files.pythonhosted.org/packages/f1/b7/a65fec226f5d78fc39f4a13c4cc0c768c22b113438f60c14adc9d2865038/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b712b53160b79a5850310b912a5ef8e57e56947c8ad690c227f5c9d7e561712", size = 2232274, upload-time = "2026-05-06T13:38:27.753Z" }, + { url = "https://files.pythonhosted.org/packages/68/f0/92039db98b907ef49269a8271f67db9cb78ae2fc68062ef7e4e77adb5f61/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4", size = 2309940, upload-time = "2026-05-06T13:38:05.353Z" }, + { url = "https://files.pythonhosted.org/packages/5f/97/2aab507d3d00ca626e8e57c1eac6a79e4e5fbcc63eb99733ff55d1717f65/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce", size = 2094516, upload-time = "2026-05-06T13:39:10.577Z" }, + { url = "https://files.pythonhosted.org/packages/22/37/a8aca44d40d737dde2bc05b3c6c07dff0de07ce6f82e9f3167aeaf4d5dea/pydantic_core-2.46.4-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987", size = 2136854, upload-time = "2026-05-06T13:40:22.59Z" }, + { url = "https://files.pythonhosted.org/packages/24/99/fcef1b79238c06a8cbec70819ac722ba76e02bc8ada9b0fd66eba40da01b/pydantic_core-2.46.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b", size = 2180306, upload-time = "2026-05-06T13:40:10.666Z" }, + { url = "https://files.pythonhosted.org/packages/ae/6c/fc44000918855b42779d007ae63b0532794739027b2f417321cddbc44f6a/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458", size = 2190044, upload-time = "2026-05-06T13:40:43.231Z" }, + { url = "https://files.pythonhosted.org/packages/6b/65/d9cadc9f1920d7a127ad2edba16c1db7916e59719285cd6c94600b0080ba/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b", size = 2329133, upload-time = "2026-05-06T13:39:57.365Z" }, + { url = "https://files.pythonhosted.org/packages/d0/cf/c873d91679f3a30bcf5e7ac280ce5573483e72295307685120d0d5ad3416/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c", size = 2374464, upload-time = "2026-05-06T13:38:06.976Z" }, + { url = "https://files.pythonhosted.org/packages/47/bd/6f2fc8188f31bf10590f1e98e7b306336161fac930a8c514cd7bd828c7dc/pydantic_core-2.46.4-cp312-cp312-win32.whl", hash = "sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894", size = 1974823, upload-time = "2026-05-06T13:40:47.985Z" }, + { url = "https://files.pythonhosted.org/packages/40/8c/985c1d41ea1107c2534abd9870e4ed5c8e7669b5c308297835c001e7a1c4/pydantic_core-2.46.4-cp312-cp312-win_amd64.whl", hash = "sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89", size = 2072919, upload-time = "2026-05-06T13:39:21.153Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ba/f463d006e0c47373ca7ec5e1a261c59dc01ef4d62b2657af925fb0deee3a/pydantic_core-2.46.4-cp312-cp312-win_arm64.whl", hash = "sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a", size = 2027604, upload-time = "2026-05-06T13:39:03.753Z" }, + { url = "https://files.pythonhosted.org/packages/51/a2/5d30b469c5267a17b39dec53208222f76a8d351dfac4af661888c5aee77d/pydantic_core-2.46.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5d5902252db0d3cedf8d4a1bc68f70eeb430f7e4c7104c8c476753519b423008", size = 2106306, upload-time = "2026-05-06T13:37:48.029Z" }, + { url = "https://files.pythonhosted.org/packages/c1/81/4fa520eaffa8bd7d1525e644cd6d39e7d60b1592bc5b516693c7340b50f1/pydantic_core-2.46.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4", size = 1951906, upload-time = "2026-05-06T13:37:17.012Z" }, + { url = "https://files.pythonhosted.org/packages/03/d5/fd02da45b659668b05923b17ba3a0100a0a3d5541e3bd8fcc4ecb711309e/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76", size = 1976802, upload-time = "2026-05-06T13:37:35.113Z" }, + { url = "https://files.pythonhosted.org/packages/21/f2/95727e1368be3d3ed485eaab7adbd7dda408f33f7a36e8b48e0144002b91/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3", size = 2052446, upload-time = "2026-05-06T13:37:12.313Z" }, + { url = "https://files.pythonhosted.org/packages/9c/86/5d99feea3f77c7234b8718075b23db11532773c1a0dbd9b9490215dc2eeb/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76", size = 2232757, upload-time = "2026-05-06T13:39:01.149Z" }, + { url = "https://files.pythonhosted.org/packages/d2/3a/508ac615935ef7588cf6d9e9b91309fdc2da751af865e02a9098de88258c/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2412e734dcb48da14d4e4006b82b46b74f2518b8a26ee7e58c6844a6cd6d03c4", size = 2309275, upload-time = "2026-05-06T13:37:41.406Z" }, + { url = "https://files.pythonhosted.org/packages/07/f8/41db9de19d7987d6b04715a02b3b40aea467000275d9d758ffaa31af7d50/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a", size = 2094467, upload-time = "2026-05-06T13:39:18.847Z" }, + { url = "https://files.pythonhosted.org/packages/2c/e2/f35033184cb11d0052daf4416e8e10a502ea2ac006fc4f459aee872727d1/pydantic_core-2.46.4-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262", size = 2134417, upload-time = "2026-05-06T13:40:17.944Z" }, + { url = "https://files.pythonhosted.org/packages/7e/7b/6ceeb1cc90e193862f444ebe373d8fdf613f0a82572dde03fb10734c6c71/pydantic_core-2.46.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5855698a4856556d86e8e6cd8434bc3ac0314ee8e12089ae0e143f64c6256e4e", size = 2179782, upload-time = "2026-05-06T13:40:32.618Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f2/c8d7773ede6af08036423a00ae0ceffce266c3c52a096c435d68c896083f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd", size = 2188782, upload-time = "2026-05-06T13:36:51.018Z" }, + { url = "https://files.pythonhosted.org/packages/59/31/0c864784e31f09f05cdd87606f08923b9c9e7f6e51dd27f20f62f975ce9f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be", size = 2328334, upload-time = "2026-05-06T13:40:37.764Z" }, + { url = "https://files.pythonhosted.org/packages/c2/eb/4f6c8a41efa30baa755590f4141abf3a8c370fab610915733e74134a7270/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d", size = 2372986, upload-time = "2026-05-06T13:39:34.152Z" }, + { url = "https://files.pythonhosted.org/packages/5b/24/b375a480d53113860c299764bfe9f349a3dc9108b3adc0d7f0d786492ebf/pydantic_core-2.46.4-cp313-cp313-win32.whl", hash = "sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb", size = 1973693, upload-time = "2026-05-06T13:37:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e8/cff247591966f2d22ec8c003cd7587e27b7ba7b81ab2fb888e3ab75dc285/pydantic_core-2.46.4-cp313-cp313-win_amd64.whl", hash = "sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292", size = 2071819, upload-time = "2026-05-06T13:38:49.139Z" }, + { url = "https://files.pythonhosted.org/packages/c6/1a/f4aee670d5670e9e148e0c82c7db98d780be566c6e6a97ee8035528ca0b3/pydantic_core-2.46.4-cp313-cp313-win_arm64.whl", hash = "sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d", size = 2027411, upload-time = "2026-05-06T13:40:45.796Z" }, + { url = "https://files.pythonhosted.org/packages/9d/1d/8987ad40f65ae1432753072f214fb5c74fe47ffbd0698bb9cbbb585664f8/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7", size = 2095527, upload-time = "2026-05-06T13:39:52.283Z" }, + { url = "https://files.pythonhosted.org/packages/64/d3/84c282a7eee1d3ac4c0377546ef5a1ea436ce26840d9ac3b7ed54a377507/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df", size = 1936024, upload-time = "2026-05-06T13:40:15.671Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ca/eac61596cdeb4d7e174d3dc0bd8a6238f14f75f97a24e7b7db4c7e7340a0/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526", size = 1990696, upload-time = "2026-05-06T13:38:34.717Z" }, + { url = "https://files.pythonhosted.org/packages/fa/c3/7c8b240552251faf6b3a957db200fcfbbcec36763c050428b601e0c9b83b/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0", size = 2147590, upload-time = "2026-05-06T13:39:29.883Z" }, ] [[package]] @@ -1516,16 +1671,16 @@ wheels = [ [[package]] name = "pygments" -version = "2.19.2" +version = "2.20.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, ] [[package]] name = "pytest" -version = "9.0.1" +version = "9.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, @@ -1534,9 +1689,9 @@ dependencies = [ { name = "pluggy" }, { name = "pygments" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/07/56/f013048ac4bc4c1d9be45afd4ab209ea62822fb1598f40687e6bf45dcea4/pytest-9.0.1.tar.gz", hash = "sha256:3e9c069ea73583e255c3b21cf46b8d3c56f6e3a1a8f6da94ccb0fcf57b9d73c8", size = 1564125, upload-time = "2025-11-12T13:05:09.333Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0b/8b/6300fb80f858cda1c51ffa17075df5d846757081d11ab4aa35cef9e6258b/pytest-9.0.1-py3-none-any.whl", hash = "sha256:67be0030d194df2dfa7b556f2e56fb3c3315bd5c8822c6951162b92b32ce7dad", size = 373668, upload-time = "2025-11-12T13:05:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" }, ] [[package]] @@ -1564,13 +1719,45 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] +[[package]] +name = "python-discovery" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/60/e88788207d81e46362cfbef0d4aaf4c0f49efc3c12d4c3fa3f542c34ebec/python_discovery-1.3.1.tar.gz", hash = "sha256:62f6db28064c9613e7ca76cb3f00c38c839a07c31c00dfe7ed0986493d2150a6", size = 68011, upload-time = "2026-05-12T20:53:36.336Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/6f/a05a317a66fee0aad270011461f1a63a453ed12471249f172f7d2e2bc7b4/python_discovery-1.3.1-py3-none-any.whl", hash = "sha256:ed188687ebb3b82c01a17cd5ac62fc94d9f6487a7f1a0f9dfe89753fec91039c", size = 33185, upload-time = "2026-05-12T20:53:34.969Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + [[package]] name = "pytokens" -version = "0.3.0" +version = "0.4.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4e/8d/a762be14dae1c3bf280202ba3172020b2b0b4c537f94427435f19c413b72/pytokens-0.3.0.tar.gz", hash = "sha256:2f932b14ed08de5fcf0b391ace2642f858f1394c0857202959000b68ed7a458a", size = 17644, upload-time = "2025-11-05T13:36:35.34Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/34/b4e015b99031667a7b960f888889c5bd34ef585c85e1cb56a594b92836ac/pytokens-0.4.1.tar.gz", hash = "sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a", size = 23015, upload-time = "2026-01-30T01:03:45.924Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/25/d9db8be44e205a124f6c98bc0324b2bb149b7431c53877fc6d1038dddaf5/pytokens-0.3.0-py3-none-any.whl", hash = "sha256:95b2b5eaf832e469d141a378872480ede3f251a5a5041b8ec6e581d3ac71bbf3", size = 12195, upload-time = "2025-11-05T13:36:33.183Z" }, + { url = "https://files.pythonhosted.org/packages/41/5d/e44573011401fb82e9d51e97f1290ceb377800fb4eed650b96f4753b499c/pytokens-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:140709331e846b728475786df8aeb27d24f48cbcf7bcd449f8de75cae7a45083", size = 160663, upload-time = "2026-01-30T01:03:06.473Z" }, + { url = "https://files.pythonhosted.org/packages/f0/e6/5bbc3019f8e6f21d09c41f8b8654536117e5e211a85d89212d59cbdab381/pytokens-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d6c4268598f762bc8e91f5dbf2ab2f61f7b95bdc07953b602db879b3c8c18e1", size = 255626, upload-time = "2026-01-30T01:03:08.177Z" }, + { url = "https://files.pythonhosted.org/packages/bf/3c/2d5297d82286f6f3d92770289fd439956b201c0a4fc7e72efb9b2293758e/pytokens-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:24afde1f53d95348b5a0eb19488661147285ca4dd7ed752bbc3e1c6242a304d1", size = 269779, upload-time = "2026-01-30T01:03:09.756Z" }, + { url = "https://files.pythonhosted.org/packages/20/01/7436e9ad693cebda0551203e0bf28f7669976c60ad07d6402098208476de/pytokens-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5ad948d085ed6c16413eb5fec6b3e02fa00dc29a2534f088d3302c47eb59adf9", size = 268076, upload-time = "2026-01-30T01:03:10.957Z" }, + { url = "https://files.pythonhosted.org/packages/2e/df/533c82a3c752ba13ae7ef238b7f8cdd272cf1475f03c63ac6cf3fcfb00b6/pytokens-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:3f901fe783e06e48e8cbdc82d631fca8f118333798193e026a50ce1b3757ea68", size = 103552, upload-time = "2026-01-30T01:03:12.066Z" }, + { url = "https://files.pythonhosted.org/packages/cb/dc/08b1a080372afda3cceb4f3c0a7ba2bde9d6a5241f1edb02a22a019ee147/pytokens-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8bdb9d0ce90cbf99c525e75a2fa415144fd570a1ba987380190e8b786bc6ef9b", size = 160720, upload-time = "2026-01-30T01:03:13.843Z" }, + { url = "https://files.pythonhosted.org/packages/64/0c/41ea22205da480837a700e395507e6a24425151dfb7ead73343d6e2d7ffe/pytokens-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5502408cab1cb18e128570f8d598981c68a50d0cbd7c61312a90507cd3a1276f", size = 254204, upload-time = "2026-01-30T01:03:14.886Z" }, + { url = "https://files.pythonhosted.org/packages/e0/d2/afe5c7f8607018beb99971489dbb846508f1b8f351fcefc225fcf4b2adc0/pytokens-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:29d1d8fb1030af4d231789959f21821ab6325e463f0503a61d204343c9b355d1", size = 268423, upload-time = "2026-01-30T01:03:15.936Z" }, + { url = "https://files.pythonhosted.org/packages/68/d4/00ffdbd370410c04e9591da9220a68dc1693ef7499173eb3e30d06e05ed1/pytokens-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:970b08dd6b86058b6dc07efe9e98414f5102974716232d10f32ff39701e841c4", size = 266859, upload-time = "2026-01-30T01:03:17.458Z" }, + { url = "https://files.pythonhosted.org/packages/a7/c9/c3161313b4ca0c601eeefabd3d3b576edaa9afdefd32da97210700e47652/pytokens-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:9bd7d7f544d362576be74f9d5901a22f317efc20046efe2034dced238cbbfe78", size = 103520, upload-time = "2026-01-30T01:03:18.652Z" }, + { url = "https://files.pythonhosted.org/packages/c6/78/397db326746f0a342855b81216ae1f0a32965deccfd7c830a2dbc66d2483/pytokens-0.4.1-py3-none-any.whl", hash = "sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de", size = 13729, upload-time = "2026-01-30T01:03:45.029Z" }, ] [[package]] @@ -1603,104 +1790,104 @@ wheels = [ [[package]] name = "rapidfuzz" -version = "3.14.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fa/8e/3c215e860b458cfbedb3ed73bc72e98eb7e0ed72f6b48099604a7a3260c2/rapidfuzz-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:685c93ea961d135893b5984a5a9851637d23767feabe414ec974f43babbd8226", size = 1945306, upload-time = "2025-11-01T11:53:06.452Z" }, - { url = "https://files.pythonhosted.org/packages/36/d9/31b33512015c899f4a6e6af64df8dfe8acddf4c8b40a4b3e0e6e1bcd00e5/rapidfuzz-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fa7c8f26f009f8c673fbfb443792f0cf8cf50c4e18121ff1e285b5e08a94fbdb", size = 1390788, upload-time = "2025-11-01T11:53:08.721Z" }, - { url = "https://files.pythonhosted.org/packages/a9/67/2ee6f8de6e2081ccd560a571d9c9063184fe467f484a17fa90311a7f4a2e/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57f878330c8d361b2ce76cebb8e3e1dc827293b6abf404e67d53260d27b5d941", size = 1374580, upload-time = "2025-11-01T11:53:10.164Z" }, - { url = "https://files.pythonhosted.org/packages/30/83/80d22997acd928eda7deadc19ccd15883904622396d6571e935993e0453a/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c5f545f454871e6af05753a0172849c82feaf0f521c5ca62ba09e1b382d6382", size = 3154947, upload-time = "2025-11-01T11:53:12.093Z" }, - { url = "https://files.pythonhosted.org/packages/5b/cf/9f49831085a16384695f9fb096b99662f589e30b89b4a589a1ebc1a19d34/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:07aa0b5d8863e3151e05026a28e0d924accf0a7a3b605da978f0359bb804df43", size = 1223872, upload-time = "2025-11-01T11:53:13.664Z" }, - { url = "https://files.pythonhosted.org/packages/c8/0f/41ee8034e744b871c2e071ef0d360686f5ccfe5659f4fd96c3ec406b3c8b/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73b07566bc7e010e7b5bd490fb04bb312e820970180df6b5655e9e6224c137db", size = 2392512, upload-time = "2025-11-01T11:53:15.109Z" }, - { url = "https://files.pythonhosted.org/packages/da/86/280038b6b0c2ccec54fb957c732ad6b41cc1fd03b288d76545b9cf98343f/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:6de00eb84c71476af7d3110cf25d8fe7c792d7f5fa86764ef0b4ca97e78ca3ed", size = 2521398, upload-time = "2025-11-01T11:53:17.146Z" }, - { url = "https://files.pythonhosted.org/packages/fa/7b/05c26f939607dca0006505e3216248ae2de631e39ef94dd63dbbf0860021/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d7843a1abf0091773a530636fdd2a49a41bcae22f9910b86b4f903e76ddc82dc", size = 4259416, upload-time = "2025-11-01T11:53:19.34Z" }, - { url = "https://files.pythonhosted.org/packages/40/eb/9e3af4103d91788f81111af1b54a28de347cdbed8eaa6c91d5e98a889aab/rapidfuzz-3.14.3-cp312-cp312-win32.whl", hash = "sha256:dea97ac3ca18cd3ba8f3d04b5c1fe4aa60e58e8d9b7793d3bd595fdb04128d7a", size = 1709527, upload-time = "2025-11-01T11:53:20.949Z" }, - { url = "https://files.pythonhosted.org/packages/b8/63/d06ecce90e2cf1747e29aeab9f823d21e5877a4c51b79720b2d3be7848f8/rapidfuzz-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:b5100fd6bcee4d27f28f4e0a1c6b5127bc8ba7c2a9959cad9eab0bf4a7ab3329", size = 1538989, upload-time = "2025-11-01T11:53:22.428Z" }, - { url = "https://files.pythonhosted.org/packages/fc/6d/beee32dcda64af8128aab3ace2ccb33d797ed58c434c6419eea015fec779/rapidfuzz-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:4e49c9e992bc5fc873bd0fff7ef16a4405130ec42f2ce3d2b735ba5d3d4eb70f", size = 811161, upload-time = "2025-11-01T11:53:23.811Z" }, - { url = "https://files.pythonhosted.org/packages/e4/4f/0d94d09646853bd26978cb3a7541b6233c5760687777fa97da8de0d9a6ac/rapidfuzz-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dbcb726064b12f356bf10fffdb6db4b6dce5390b23627c08652b3f6e49aa56ae", size = 1939646, upload-time = "2025-11-01T11:53:25.292Z" }, - { url = "https://files.pythonhosted.org/packages/b6/eb/f96aefc00f3bbdbab9c0657363ea8437a207d7545ac1c3789673e05d80bd/rapidfuzz-3.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1704fc70d214294e554a2421b473779bcdeef715881c5e927dc0f11e1692a0ff", size = 1385512, upload-time = "2025-11-01T11:53:27.594Z" }, - { url = "https://files.pythonhosted.org/packages/26/34/71c4f7749c12ee223dba90017a5947e8f03731a7cc9f489b662a8e9e643d/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc65e72790ddfd310c2c8912b45106e3800fefe160b0c2ef4d6b6fec4e826457", size = 1373571, upload-time = "2025-11-01T11:53:29.096Z" }, - { url = "https://files.pythonhosted.org/packages/32/00/ec8597a64f2be301ce1ee3290d067f49f6a7afb226b67d5f15b56d772ba5/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e38c1305cffae8472572a0584d4ffc2f130865586a81038ca3965301f7c97c", size = 3156759, upload-time = "2025-11-01T11:53:30.777Z" }, - { url = "https://files.pythonhosted.org/packages/61/d5/b41eeb4930501cc899d5a9a7b5c9a33d85a670200d7e81658626dcc0ecc0/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:e195a77d06c03c98b3fc06b8a28576ba824392ce40de8c708f96ce04849a052e", size = 1222067, upload-time = "2025-11-01T11:53:32.334Z" }, - { url = "https://files.pythonhosted.org/packages/2a/7d/6d9abb4ffd1027c6ed837b425834f3bed8344472eb3a503ab55b3407c721/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1b7ef2f4b8583a744338a18f12c69693c194fb6777c0e9ada98cd4d9e8f09d10", size = 2394775, upload-time = "2025-11-01T11:53:34.24Z" }, - { url = "https://files.pythonhosted.org/packages/15/ce/4f3ab4c401c5a55364da1ffff8cc879fc97b4e5f4fa96033827da491a973/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a2135b138bcdcb4c3742d417f215ac2d8c2b87bde15b0feede231ae95f09ec41", size = 2526123, upload-time = "2025-11-01T11:53:35.779Z" }, - { url = "https://files.pythonhosted.org/packages/c1/4b/54f804975376a328f57293bd817c12c9036171d15cf7292032e3f5820b2d/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:33a325ed0e8e1aa20c3e75f8ab057a7b248fdea7843c2a19ade0008906c14af0", size = 4262874, upload-time = "2025-11-01T11:53:37.866Z" }, - { url = "https://files.pythonhosted.org/packages/e9/b6/958db27d8a29a50ee6edd45d33debd3ce732e7209183a72f57544cd5fe22/rapidfuzz-3.14.3-cp313-cp313-win32.whl", hash = "sha256:8383b6d0d92f6cd008f3c9216535be215a064b2cc890398a678b56e6d280cb63", size = 1707972, upload-time = "2025-11-01T11:53:39.442Z" }, - { url = "https://files.pythonhosted.org/packages/07/75/fde1f334b0cec15b5946d9f84d73250fbfcc73c236b4bc1b25129d90876b/rapidfuzz-3.14.3-cp313-cp313-win_amd64.whl", hash = "sha256:e6b5e3036976f0fde888687d91be86d81f9ac5f7b02e218913c38285b756be6c", size = 1537011, upload-time = "2025-11-01T11:53:40.92Z" }, - { url = "https://files.pythonhosted.org/packages/2e/d7/d83fe001ce599dc7ead57ba1debf923dc961b6bdce522b741e6b8c82f55c/rapidfuzz-3.14.3-cp313-cp313-win_arm64.whl", hash = "sha256:7ba009977601d8b0828bfac9a110b195b3e4e79b350dcfa48c11269a9f1918a0", size = 810744, upload-time = "2025-11-01T11:53:42.723Z" }, - { url = "https://files.pythonhosted.org/packages/92/13/a486369e63ff3c1a58444d16b15c5feb943edd0e6c28a1d7d67cb8946b8f/rapidfuzz-3.14.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a0a28add871425c2fe94358c6300bbeb0bc2ed828ca003420ac6825408f5a424", size = 1967702, upload-time = "2025-11-01T11:53:44.554Z" }, - { url = "https://files.pythonhosted.org/packages/f1/82/efad25e260b7810f01d6b69122685e355bed78c94a12784bac4e0beb2afb/rapidfuzz-3.14.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:010e12e2411a4854b0434f920e72b717c43f8ec48d57e7affe5c42ecfa05dd0e", size = 1410702, upload-time = "2025-11-01T11:53:46.066Z" }, - { url = "https://files.pythonhosted.org/packages/ba/1a/34c977b860cde91082eae4a97ae503f43e0d84d4af301d857679b66f9869/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfc3d57abd83c734d1714ec39c88a34dd69c85474918ebc21296f1e61eb5ca8", size = 1382337, upload-time = "2025-11-01T11:53:47.62Z" }, - { url = "https://files.pythonhosted.org/packages/88/74/f50ea0e24a5880a9159e8fd256b84d8f4634c2f6b4f98028bdd31891d907/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89acb8cbb52904f763e5ac238083b9fc193bed8d1f03c80568b20e4cef43a519", size = 3165563, upload-time = "2025-11-01T11:53:49.216Z" }, - { url = "https://files.pythonhosted.org/packages/e8/7a/e744359404d7737049c26099423fc54bcbf303de5d870d07d2fb1410f567/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_31_armv7l.whl", hash = "sha256:7d9af908c2f371bfb9c985bd134e295038e3031e666e4b2ade1e7cb7f5af2f1a", size = 1214727, upload-time = "2025-11-01T11:53:50.883Z" }, - { url = "https://files.pythonhosted.org/packages/d3/2e/87adfe14ce75768ec6c2b8acd0e05e85e84be4be5e3d283cdae360afc4fe/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:1f1925619627f8798f8c3a391d81071336942e5fe8467bc3c567f982e7ce2897", size = 2403349, upload-time = "2025-11-01T11:53:52.322Z" }, - { url = "https://files.pythonhosted.org/packages/70/17/6c0b2b2bff9c8b12e12624c07aa22e922b0c72a490f180fa9183d1ef2c75/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:152555187360978119e98ce3e8263d70dd0c40c7541193fc302e9b7125cf8f58", size = 2507596, upload-time = "2025-11-01T11:53:53.835Z" }, - { url = "https://files.pythonhosted.org/packages/c3/d1/87852a7cbe4da7b962174c749a47433881a63a817d04f3e385ea9babcd9e/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:52619d25a09546b8db078981ca88939d72caa6b8701edd8b22e16482a38e799f", size = 4273595, upload-time = "2025-11-01T11:53:55.961Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ab/1d0354b7d1771a28fa7fe089bc23acec2bdd3756efa2419f463e3ed80e16/rapidfuzz-3.14.3-cp313-cp313t-win32.whl", hash = "sha256:489ce98a895c98cad284f0a47960c3e264c724cb4cfd47a1430fa091c0c25204", size = 1757773, upload-time = "2025-11-01T11:53:57.628Z" }, - { url = "https://files.pythonhosted.org/packages/0b/0c/71ef356adc29e2bdf74cd284317b34a16b80258fa0e7e242dd92cc1e6d10/rapidfuzz-3.14.3-cp313-cp313t-win_amd64.whl", hash = "sha256:656e52b054d5b5c2524169240e50cfa080b04b1c613c5f90a2465e84888d6f15", size = 1576797, upload-time = "2025-11-01T11:53:59.455Z" }, - { url = "https://files.pythonhosted.org/packages/fe/d2/0e64fc27bb08d4304aa3d11154eb5480bcf5d62d60140a7ee984dc07468a/rapidfuzz-3.14.3-cp313-cp313t-win_arm64.whl", hash = "sha256:c7e40c0a0af02ad6e57e89f62bef8604f55a04ecae90b0ceeda591bbf5923317", size = 829940, upload-time = "2025-11-01T11:54:01.1Z" }, +version = "3.14.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/21/ef6157213316e85790041254259907eb722e00b03480256c0545d98acd33/rapidfuzz-3.14.5.tar.gz", hash = "sha256:ba10ac57884ce82112f7ed910b67e7fb6072d8ef2c06e30dc63c0f604a112e0e", size = 57901753, upload-time = "2026-04-07T11:16:31.931Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/e3/574435c6aafb80254c191ef40d7aca2cb2bb97a095ec9395e9fa59ac307a/rapidfuzz-3.14.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0d3378f471ef440473a396ce2f8e97ee12f89a78b495540e0a5617bbfe895638", size = 1944601, upload-time = "2026-04-07T11:14:18.771Z" }, + { url = "https://files.pythonhosted.org/packages/d0/1f/fbad3102a255ecc112ce9a7e779bacab7fd14398217be8868dc9082ba363/rapidfuzz-3.14.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e910eebca9fd0eba245c0555e764597e8a0cccb673a92da2dc2397050725f48", size = 1164293, upload-time = "2026-04-07T11:14:20.534Z" }, + { url = "https://files.pythonhosted.org/packages/88/37/a3eb7ff6121ed3a5f199a8c38cc86c8e481816f879cb0e0b738b078c9a7e/rapidfuzz-3.14.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:01550fe5f60fd176aa66b7611289d46dc4aa4b1b904874c7b6d1d54e581c5ec1", size = 1371999, upload-time = "2026-04-07T11:14:22.63Z" }, + { url = "https://files.pythonhosted.org/packages/79/72/97a9728c711c7c1b06e107d3f0623880fb4ef90e147ed13c551a1730e7cc/rapidfuzz-3.14.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:48bee0b91bebfaec41e1081e351000659ab7570cc4598d617aa04d5bf827f9e6", size = 3145715, upload-time = "2026-04-07T11:14:24.508Z" }, + { url = "https://files.pythonhosted.org/packages/ed/54/d5caabbea233ac90c286c87c260e49d7641467e87438a18d858e41c82e91/rapidfuzz-3.14.5-cp312-cp312-manylinux_2_39_riscv64.whl", hash = "sha256:7e580cb04ad849ae9b786fa21383c6b994b6e6c1444ad1cb9f22392759d72741", size = 1456304, upload-time = "2026-04-07T11:14:26.515Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a7/2d1a81250ac8c01a0100c026018e76f0e7a097ff63e4c553e02a6938c6fb/rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:09d6c9ba091854f07817055d795d604179c12a8f308ba4c7d56f3719dfea1646", size = 2389089, upload-time = "2026-04-07T11:14:28.635Z" }, + { url = "https://files.pythonhosted.org/packages/65/0d/c47c3872203ae88e6506997c0b576ad731f5261daa25d559be09c9756658/rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:1e989f86113be66574113b9c7bdf4793f3f863d248e47d911b355e05ca6b6b10", size = 2493404, upload-time = "2026-04-07T11:14:30.577Z" }, + { url = "https://files.pythonhosted.org/packages/8f/2f/71e0a5a3130792146c8a200a2dd1e52aa16f7c1074012e17f2601eea9a90/rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ebd1a18e2e47bc0b292a07e6ed9c3642f8aaa672d12253885f599b50807a4f9", size = 4251709, upload-time = "2026-04-07T11:14:32.451Z" }, + { url = "https://files.pythonhosted.org/packages/86/45/d39874901abacef325adb5b34ae416817c8486dfb4fb87c7a9b74ec5b072/rapidfuzz-3.14.5-cp312-cp312-win32.whl", hash = "sha256:9981d38a703b86f0e315a3cd229fd1906fe1d91c989ed121fb975b3c849f89f5", size = 1710069, upload-time = "2026-04-07T11:14:34.37Z" }, + { url = "https://files.pythonhosted.org/packages/85/0b/f65572c53de8a1c704bda707f63a447b67bdbe95d7cdc70d18885e191df5/rapidfuzz-3.14.5-cp312-cp312-win_amd64.whl", hash = "sha256:d8375e3da319593389727c3187ccaf3e0e84199accc530866b8e0f2b79af05e9", size = 1540630, upload-time = "2026-04-07T11:14:36.287Z" }, + { url = "https://files.pythonhosted.org/packages/5e/c3/143be3a578f989758cae516f3270d5cbb49783a7bfdf57cc27a670e00456/rapidfuzz-3.14.5-cp312-cp312-win_arm64.whl", hash = "sha256:478b59bb018a6780d73f33e38d0b3ec5e968a6c1ed42876b993dd456b7aa20e8", size = 813137, upload-time = "2026-04-07T11:14:38.289Z" }, + { url = "https://files.pythonhosted.org/packages/11/66/252803f2010ba699618cdc048b6e1f7cc1f433c08b4a9a17579b92ab0142/rapidfuzz-3.14.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ebd8fd343bf8492a1e60bcb6dc99f90f74f65d98d8241a6b3e1fed225b76ecd6", size = 1940205, upload-time = "2026-04-07T11:14:40.319Z" }, + { url = "https://files.pythonhosted.org/packages/ea/59/b2afd98e41af9cd54554a4c1c423d84cdd60e6b1c0a09496f033b55f60ec/rapidfuzz-3.14.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6737b35d5af7479c5bf9710f7b17edd9d2c43128d974d25fb4ea653e42c64609", size = 1159639, upload-time = "2026-04-07T11:14:42.52Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/7aa7e62c4c516a7af322ed0c4f0774208b72d457d0cfec808bad0df12f4a/rapidfuzz-3.14.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b002c7994cc9f2bc9d9856f0fbaee6e8072c983873846c92f25cefba5b2a925f", size = 1367194, upload-time = "2026-04-07T11:14:44.25Z" }, + { url = "https://files.pythonhosted.org/packages/90/79/2fc252a63bc91d3c3b234d0a3a6ad4ebc460037a23cdcdaf9285f986e6c9/rapidfuzz-3.14.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:17a34330cd2a538c1ce5d400b61ba358c5b72c654b928ff87b362e88f8b864c7", size = 3151805, upload-time = "2026-04-07T11:14:46.21Z" }, + { url = "https://files.pythonhosted.org/packages/17/54/0c83508f2683ea70e2d05f8527eb07328acf7bb1e9d97a3bece5702378e7/rapidfuzz-3.14.5-cp313-cp313-manylinux_2_39_riscv64.whl", hash = "sha256:95d937e74c1a7a1287dfb03b62a827be08ede10a155cf1af73bbf47f2b73ee6e", size = 1455667, upload-time = "2026-04-07T11:14:47.991Z" }, + { url = "https://files.pythonhosted.org/packages/71/1b/070175e873177814d58850a01ebe80e20ae11e93eb4da894d563988660fa/rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:46b92a9970dcc34f0096901c792644094cab49554ac3547f35e3aebbdf0a3610", size = 2388246, upload-time = "2026-04-07T11:14:50.098Z" }, + { url = "https://files.pythonhosted.org/packages/c9/dd/77caf7aaf9c2be050ad1f128d7c24ff0f59079aa62c5f62f9df41c0af45e/rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e012177c8e8a8a0754ae0d6027d63042aa5ff036d9f40f07cb3466a6082e21b8", size = 2494333, upload-time = "2026-04-07T11:14:52.303Z" }, + { url = "https://files.pythonhosted.org/packages/2c/e2/dd7e1f2aa31a8fbbfc16b0610af1d770ffaf1287490f3c8c5b1c52da264f/rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a2ae6f53f99c9a0eca7a0afc5b4e45fc73bc1dd4ac74c00509031d76df80ed98", size = 4258579, upload-time = "2026-04-07T11:14:54.538Z" }, + { url = "https://files.pythonhosted.org/packages/9c/0a/ac99e1ba347ba0e85e0bb60b74231d55fb93c0eff43f2920ccb413d0be08/rapidfuzz-3.14.5-cp313-cp313-win32.whl", hash = "sha256:4a60f0057231188e3bd30216f7b4e0f279b11fa4ec818bb6c1d9f014d1562fbc", size = 1709231, upload-time = "2026-04-07T11:14:56.524Z" }, + { url = "https://files.pythonhosted.org/packages/cf/cb/0e251d731b3166378644238e8f0cf9e89858c024e19f75ca9f7e3ae83fd5/rapidfuzz-3.14.5-cp313-cp313-win_amd64.whl", hash = "sha256:11bfc2ed8fbe4ab86bd516fadefab126f90e6dcadffa761739fcb304707dfd35", size = 1538519, upload-time = "2026-04-07T11:14:58.635Z" }, + { url = "https://files.pythonhosted.org/packages/30/6f/4548132acc947db6d5346a248e44a8b3a22d608ef30e770fb578caaf2d00/rapidfuzz-3.14.5-cp313-cp313-win_arm64.whl", hash = "sha256:b486b5218808f6f4dc471b114b1054e63553db69705c97da0271f47bd706aedd", size = 812628, upload-time = "2026-04-07T11:15:00.552Z" }, + { url = "https://files.pythonhosted.org/packages/00/60/69b177577290c5eab892c6f75fe89c3aff3f9ae80298a78d9372b1cecb9a/rapidfuzz-3.14.5-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:39ef8658aaf67d51667e7bdaf7096f432333377d8302ac43c70b5df8a4cf89b8", size = 1970231, upload-time = "2026-04-07T11:15:02.603Z" }, + { url = "https://files.pythonhosted.org/packages/48/38/2fd790052659cc4e2907b63c25433f0987864b445c1aeec1a302ef5ad948/rapidfuzz-3.14.5-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ad37a0be705b544af6296da8edddc260d10a8ae5462530fc9991f66498bb1f9", size = 1194394, upload-time = "2026-04-07T11:15:04.572Z" }, + { url = "https://files.pythonhosted.org/packages/80/f4/28430ad8472fc3536e8ebd51a864a226e979cfe924c6e3f83d111373aa74/rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d45e06f60729e07d9b20c205f7e5cff90b6ef2584e852eecf46e045aea69627d", size = 1377051, upload-time = "2026-04-07T11:15:06.728Z" }, + { url = "https://files.pythonhosted.org/packages/77/7e/9aeacabcfd1e77397968362e5b98fe14248b8307011136b17daf99752a8e/rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e52da10236aa6212de71b9e170bace65b64b129c0dea7fc243d6c9ce976f5074", size = 3160565, upload-time = "2026-04-07T11:15:08.667Z" }, + { url = "https://files.pythonhosted.org/packages/56/f4/db4dd7be0cd2f2022117ac5407d905f435d60e48baaea313a567ad27e865/rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_39_riscv64.whl", hash = "sha256:440d30faaf682ca496170a7f0cc5453ec942e3e079f0fd802c9a7f938dfb50a3", size = 1442113, upload-time = "2026-04-07T11:15:11.138Z" }, + { url = "https://files.pythonhosted.org/packages/a4/99/0e9f6aa57f3e32a767216f797e56dc96b720fcecfb9d8ee907ecc82f8d66/rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:56227a61fd3d17b0cd9793132431f3a3d07c8654be96794ba9f89fe0fc8b2d09", size = 2396618, upload-time = "2026-04-07T11:15:13.154Z" }, + { url = "https://files.pythonhosted.org/packages/60/94/44a78e39ffce17cbdd3e2b53b696acc751d5d153be0f499d052b07a4d904/rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:2e83cd2e25bb4edd97b689d9979d9c3acccdaaf26ceac08212ceece202febcfa", size = 2478220, upload-time = "2026-04-07T11:15:15.193Z" }, + { url = "https://files.pythonhosted.org/packages/dd/df/454311469a09a507e9d784a35796742bec22e4cebe75551e2da4e0e290fd/rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:af3b859726cd3374287e405e14b9634563c078c5531a4f62375508addebddad1", size = 4265027, upload-time = "2026-04-07T11:15:17.28Z" }, + { url = "https://files.pythonhosted.org/packages/fc/01/175465a9ab3e3b70ba669058372f009d1d49c1746e2dcd56b69df188d3a5/rapidfuzz-3.14.5-cp313-cp313t-win32.whl", hash = "sha256:8ce1d850b3c0178440efde9e884d98421b5e87ff925f364d6d79e23910d7593f", size = 1766814, upload-time = "2026-04-07T11:15:19.687Z" }, + { url = "https://files.pythonhosted.org/packages/1b/a0/a9b84a47af06ebed94a1439eb2f02adebfb8628bcd30af1fe3e02f5ef56c/rapidfuzz-3.14.5-cp313-cp313t-win_amd64.whl", hash = "sha256:c84af70bcf34e99aee894e46a0f1ac77f17d0ef828179c387407642e2466d28a", size = 1582448, upload-time = "2026-04-07T11:15:21.98Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f1/5937800238b3f8248e70860d79f69ba8f73e764fff47e36bc9e2f26dbcc6/rapidfuzz-3.14.5-cp313-cp313t-win_arm64.whl", hash = "sha256:aac0ad28c686a5e72b81668b906c030ee28050b244544b8af68e12fb32543895", size = 832932, upload-time = "2026-04-07T11:15:24.358Z" }, ] [[package]] name = "regex" -version = "2026.4.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cb/0e/3a246dbf05666918bd3664d9d787f84a9108f6f43cc953a077e4a7dfdb7e/regex-2026.4.4.tar.gz", hash = "sha256:e08270659717f6973523ce3afbafa53515c4dc5dcad637dc215b6fd50f689423", size = 416000, upload-time = "2026-04-03T20:56:28.155Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e5/28/b972a4d3df61e1d7bcf1b59fdb3cddef22f88b6be43f161bb41ebc0e4081/regex-2026.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c07ab8794fa929e58d97a0e1796b8b76f70943fa39df225ac9964615cf1f9d52", size = 490434, upload-time = "2026-04-03T20:53:40.219Z" }, - { url = "https://files.pythonhosted.org/packages/84/20/30041446cf6dc3e0eab344fc62770e84c23b6b68a3b657821f9f80cb69b4/regex-2026.4.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c785939dc023a1ce4ec09599c032cc9933d258a998d16ca6f2b596c010940eb", size = 292061, upload-time = "2026-04-03T20:53:41.862Z" }, - { url = "https://files.pythonhosted.org/packages/62/c8/3baa06d75c98c46d4cc4262b71fd2edb9062b5665e868bca57859dadf93a/regex-2026.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b1ce5c81c9114f1ce2f9288a51a8fd3aeea33a0cc440c415bf02da323aa0a76", size = 289628, upload-time = "2026-04-03T20:53:43.701Z" }, - { url = "https://files.pythonhosted.org/packages/31/87/3accf55634caad8c0acab23f5135ef7d4a21c39f28c55c816ae012931408/regex-2026.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:760ef21c17d8e6a4fe8cf406a97cf2806a4df93416ccc82fc98d25b1c20425be", size = 796651, upload-time = "2026-04-03T20:53:45.379Z" }, - { url = "https://files.pythonhosted.org/packages/f6/0c/aaa2c83f34efedbf06f61cb1942c25f6cf1ee3b200f832c4d05f28306c2e/regex-2026.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7088fcdcb604a4417c208e2169715800d28838fefd7455fbe40416231d1d47c1", size = 865916, upload-time = "2026-04-03T20:53:47.064Z" }, - { url = "https://files.pythonhosted.org/packages/d9/f6/8c6924c865124643e8f37823eca845dc27ac509b2ee58123685e71cd0279/regex-2026.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:07edca1ba687998968f7db5bc355288d0c6505caa7374f013d27356d93976d13", size = 912287, upload-time = "2026-04-03T20:53:49.422Z" }, - { url = "https://files.pythonhosted.org/packages/11/0e/a9f6f81013e0deaf559b25711623864970fe6a098314e374ccb1540a4152/regex-2026.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:993f657a7c1c6ec51b5e0ba97c9817d06b84ea5fa8d82e43b9405de0defdc2b9", size = 801126, upload-time = "2026-04-03T20:53:51.096Z" }, - { url = "https://files.pythonhosted.org/packages/71/61/3a0cc8af2dc0c8deb48e644dd2521f173f7e6513c6e195aad9aa8dd77ac5/regex-2026.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:2b69102a743e7569ebee67e634a69c4cb7e59d6fa2e1aa7d3bdbf3f61435f62d", size = 776788, upload-time = "2026-04-03T20:53:52.889Z" }, - { url = "https://files.pythonhosted.org/packages/64/0b/8bb9cbf21ef7dee58e49b0fdb066a7aded146c823202e16494a36777594f/regex-2026.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dac006c8b6dda72d86ea3d1333d45147de79a3a3f26f10c1cf9287ca4ca0ac3", size = 785184, upload-time = "2026-04-03T20:53:55.627Z" }, - { url = "https://files.pythonhosted.org/packages/99/c2/d3e80e8137b25ee06c92627de4e4d98b94830e02b3e6f81f3d2e3f504cf5/regex-2026.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:50a766ee2010d504554bfb5f578ed2e066898aa26411d57e6296230627cdefa0", size = 859913, upload-time = "2026-04-03T20:53:57.249Z" }, - { url = "https://files.pythonhosted.org/packages/bc/e6/9d5d876157d969c804622456ef250017ac7a8f83e0e14f903b9e6df5ce95/regex-2026.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9e2f5217648f68e3028c823df58663587c1507a5ba8419f4fdfc8a461be76043", size = 765732, upload-time = "2026-04-03T20:53:59.428Z" }, - { url = "https://files.pythonhosted.org/packages/82/80/b568935b4421388561c8ed42aff77247285d3ae3bb2a6ca22af63bae805e/regex-2026.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:39d8de85a08e32632974151ba59c6e9140646dcc36c80423962b1c5c0a92e244", size = 852152, upload-time = "2026-04-03T20:54:01.505Z" }, - { url = "https://files.pythonhosted.org/packages/39/29/f0f81217e21cd998245da047405366385d5c6072048038a3d33b37a79dc0/regex-2026.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:55d9304e0e7178dfb1e106c33edf834097ddf4a890e2f676f6c5118f84390f73", size = 789076, upload-time = "2026-04-03T20:54:03.323Z" }, - { url = "https://files.pythonhosted.org/packages/49/1d/1d957a61976ab9d4e767dd4f9d04b66cc0c41c5e36cf40e2d43688b5ae6f/regex-2026.4.4-cp312-cp312-win32.whl", hash = "sha256:04bb679bc0bde8a7bfb71e991493d47314e7b98380b083df2447cda4b6edb60f", size = 266700, upload-time = "2026-04-03T20:54:05.639Z" }, - { url = "https://files.pythonhosted.org/packages/c5/5c/bf575d396aeb58ea13b06ef2adf624f65b70fafef6950a80fc3da9cae3bc/regex-2026.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:db0ac18435a40a2543dbb3d21e161a6c78e33e8159bd2e009343d224bb03bb1b", size = 277768, upload-time = "2026-04-03T20:54:07.312Z" }, - { url = "https://files.pythonhosted.org/packages/c9/27/049df16ec6a6828ccd72add3c7f54b4df029669bea8e9817df6fff58be90/regex-2026.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:4ce255cc05c1947a12989c6db801c96461947adb7a59990f1360b5983fab4983", size = 270568, upload-time = "2026-04-03T20:54:09.484Z" }, - { url = "https://files.pythonhosted.org/packages/9d/83/c4373bc5f31f2cf4b66f9b7c31005bd87fe66f0dce17701f7db4ee79ee29/regex-2026.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:62f5519042c101762509b1d717b45a69c0139d60414b3c604b81328c01bd1943", size = 490273, upload-time = "2026-04-03T20:54:11.202Z" }, - { url = "https://files.pythonhosted.org/packages/46/f8/fe62afbcc3cf4ad4ac9adeaafd98aa747869ae12d3e8e2ac293d0593c435/regex-2026.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3790ba9fb5dd76715a7afe34dbe603ba03f8820764b1dc929dd08106214ed031", size = 291954, upload-time = "2026-04-03T20:54:13.412Z" }, - { url = "https://files.pythonhosted.org/packages/5a/92/4712b9fe6a33d232eeb1c189484b80c6c4b8422b90e766e1195d6e758207/regex-2026.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8fae3c6e795d7678963f2170152b0d892cf6aee9ee8afc8c45e6be38d5107fe7", size = 289487, upload-time = "2026-04-03T20:54:15.824Z" }, - { url = "https://files.pythonhosted.org/packages/88/2c/f83b93f85e01168f1070f045a42d4c937b69fdb8dd7ae82d307253f7e36e/regex-2026.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:298c3ec2d53225b3bf91142eb9691025bab610e0c0c51592dde149db679b3d17", size = 796646, upload-time = "2026-04-03T20:54:18.229Z" }, - { url = "https://files.pythonhosted.org/packages/df/55/61a2e17bf0c4dc57e11caf8dd11771280d8aaa361785f9e3bc40d653f4a7/regex-2026.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e9638791082eaf5b3ac112c587518ee78e083a11c4b28012d8fe2a0f536dfb17", size = 865904, upload-time = "2026-04-03T20:54:20.019Z" }, - { url = "https://files.pythonhosted.org/packages/45/32/1ac8ed1b5a346b5993a3d256abe0a0f03b0b73c8cc88d928537368ac65b6/regex-2026.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ae3e764bd4c5ff55035dc82a8d49acceb42a5298edf6eb2fc4d328ee5dd7afae", size = 912304, upload-time = "2026-04-03T20:54:22.403Z" }, - { url = "https://files.pythonhosted.org/packages/26/47/2ee5c613ab546f0eddebf9905d23e07beb933416b1246c2d8791d01979b4/regex-2026.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ffa81f81b80047ba89a3c69ae6a0f78d06f4a42ce5126b0eb2a0a10ad44e0b2e", size = 801126, upload-time = "2026-04-03T20:54:24.308Z" }, - { url = "https://files.pythonhosted.org/packages/75/cd/41dacd129ca9fd20bd7d02f83e0fad83e034ac8a084ec369c90f55ef37e2/regex-2026.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f56ebf9d70305307a707911b88469213630aba821e77de7d603f9d2f0730687d", size = 776772, upload-time = "2026-04-03T20:54:26.319Z" }, - { url = "https://files.pythonhosted.org/packages/89/6d/5af0b588174cb5f46041fa7dd64d3fd5cd2fe51f18766703d1edc387f324/regex-2026.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:773d1dfd652bbffb09336abf890bfd64785c7463716bf766d0eb3bc19c8b7f27", size = 785228, upload-time = "2026-04-03T20:54:28.387Z" }, - { url = "https://files.pythonhosted.org/packages/b7/3b/f5a72b7045bd59575fc33bf1345f156fcfd5a8484aea6ad84b12c5a82114/regex-2026.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d51d20befd5275d092cdffba57ded05f3c436317ee56466c8928ac32d960edaf", size = 860032, upload-time = "2026-04-03T20:54:30.641Z" }, - { url = "https://files.pythonhosted.org/packages/39/a4/72a317003d6fcd7a573584a85f59f525dfe8f67e355ca74eb6b53d66a5e2/regex-2026.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:0a51cdb3c1e9161154f976cb2bef9894bc063ac82f31b733087ffb8e880137d0", size = 765714, upload-time = "2026-04-03T20:54:32.789Z" }, - { url = "https://files.pythonhosted.org/packages/25/1e/5672e16f34dbbcb2560cc7e6a2fbb26dfa8b270711e730101da4423d3973/regex-2026.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ae5266a82596114e41fb5302140e9630204c1b5f325c770bec654b95dd54b0aa", size = 852078, upload-time = "2026-04-03T20:54:34.546Z" }, - { url = "https://files.pythonhosted.org/packages/f7/0d/c813f0af7c6cc7ed7b9558bac2e5120b60ad0fa48f813e4d4bd55446f214/regex-2026.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c882cd92ec68585e9c1cf36c447ec846c0d94edd706fe59e0c198e65822fd23b", size = 789181, upload-time = "2026-04-03T20:54:36.642Z" }, - { url = "https://files.pythonhosted.org/packages/ea/6d/a344608d1adbd2a95090ddd906cec09a11be0e6517e878d02a5123e0917f/regex-2026.4.4-cp313-cp313-win32.whl", hash = "sha256:05568c4fbf3cb4fa9e28e3af198c40d3237cf6041608a9022285fe567ec3ad62", size = 266690, upload-time = "2026-04-03T20:54:38.343Z" }, - { url = "https://files.pythonhosted.org/packages/31/07/54049f89b46235ca6f45cd6c88668a7050e77d4a15555e47dd40fde75263/regex-2026.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:3384df51ed52db0bea967e21458ab0a414f67cdddfd94401688274e55147bb81", size = 277733, upload-time = "2026-04-03T20:54:40.11Z" }, - { url = "https://files.pythonhosted.org/packages/0e/21/61366a8e20f4d43fb597708cac7f0e2baadb491ecc9549b4980b2be27d16/regex-2026.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:acd38177bd2c8e69a411d6521760806042e244d0ef94e2dd03ecdaa8a3c99427", size = 270565, upload-time = "2026-04-03T20:54:41.883Z" }, - { url = "https://files.pythonhosted.org/packages/f1/1e/3a2b9672433bef02f5d39aa1143ca2c08f311c1d041c464a42be9ae648dc/regex-2026.4.4-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:f94a11a9d05afcfcfa640e096319720a19cc0c9f7768e1a61fceee6a3afc6c7c", size = 494126, upload-time = "2026-04-03T20:54:43.602Z" }, - { url = "https://files.pythonhosted.org/packages/4e/4b/c132a4f4fe18ad3340d89fcb56235132b69559136036b845be3c073142ed/regex-2026.4.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:36bcb9d6d1307ab629edc553775baada2aefa5c50ccc0215fbfd2afcfff43141", size = 293882, upload-time = "2026-04-03T20:54:45.41Z" }, - { url = "https://files.pythonhosted.org/packages/f4/5f/eaa38092ce7a023656280f2341dbbd4ad5f05d780a70abba7bb4f4bea54c/regex-2026.4.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:261c015b3e2ed0919157046d768774ecde57f03d8fa4ba78d29793447f70e717", size = 292334, upload-time = "2026-04-03T20:54:47.051Z" }, - { url = "https://files.pythonhosted.org/packages/5f/f6/dd38146af1392dac33db7074ab331cec23cced3759167735c42c5460a243/regex-2026.4.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c228cf65b4a54583763645dcd73819b3b381ca8b4bb1b349dee1c135f4112c07", size = 811691, upload-time = "2026-04-03T20:54:49.074Z" }, - { url = "https://files.pythonhosted.org/packages/7a/f0/dc54c2e69f5eeec50601054998ec3690d5344277e782bd717e49867c1d29/regex-2026.4.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dd2630faeb6876fb0c287f664d93ddce4d50cd46c6e88e60378c05c9047e08ca", size = 871227, upload-time = "2026-04-03T20:54:51.035Z" }, - { url = "https://files.pythonhosted.org/packages/a1/af/cb16bd5dc61621e27df919a4449bbb7e5a1034c34d307e0a706e9cc0f3e3/regex-2026.4.4-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a50ab11b7779b849472337191f3a043e27e17f71555f98d0092fa6d73364520", size = 917435, upload-time = "2026-04-03T20:54:52.994Z" }, - { url = "https://files.pythonhosted.org/packages/5c/71/8b260897f22996b666edd9402861668f45a2ca259f665ac029e6104a2d7d/regex-2026.4.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0734f63afe785138549fbe822a8cfeaccd1bae814c5057cc0ed5b9f2de4fc883", size = 816358, upload-time = "2026-04-03T20:54:54.884Z" }, - { url = "https://files.pythonhosted.org/packages/1c/60/775f7f72a510ef238254906c2f3d737fc80b16ca85f07d20e318d2eea894/regex-2026.4.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c4ee50606cb1967db7e523224e05f32089101945f859928e65657a2cbb3d278b", size = 785549, upload-time = "2026-04-03T20:54:57.01Z" }, - { url = "https://files.pythonhosted.org/packages/58/42/34d289b3627c03cf381e44da534a0021664188fa49ba41513da0b4ec6776/regex-2026.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6c1818f37be3ca02dcb76d63f2c7aaba4b0dc171b579796c6fbe00148dfec6b1", size = 801364, upload-time = "2026-04-03T20:54:58.981Z" }, - { url = "https://files.pythonhosted.org/packages/fc/20/f6ecf319b382a8f1ab529e898b222c3f30600fcede7834733c26279e7465/regex-2026.4.4-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f5bfc2741d150d0be3e4a0401a5c22b06e60acb9aa4daa46d9e79a6dcd0f135b", size = 866221, upload-time = "2026-04-03T20:55:00.88Z" }, - { url = "https://files.pythonhosted.org/packages/92/6a/9f16d3609d549bd96d7a0b2aee1625d7512ba6a03efc01652149ef88e74d/regex-2026.4.4-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:504ffa8a03609a087cad81277a629b6ce884b51a24bd388a7980ad61748618ff", size = 772530, upload-time = "2026-04-03T20:55:03.213Z" }, - { url = "https://files.pythonhosted.org/packages/fa/f6/aa9768bc96a4c361ac96419fbaf2dcdc33970bb813df3ba9b09d5d7b6d96/regex-2026.4.4-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:70aadc6ff12e4b444586e57fc30771f86253f9f0045b29016b9605b4be5f7dfb", size = 856989, upload-time = "2026-04-03T20:55:05.087Z" }, - { url = "https://files.pythonhosted.org/packages/4d/b4/c671db3556be2473ae3e4bb7a297c518d281452871501221251ea4ecba57/regex-2026.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f4f83781191007b6ef43b03debc35435f10cad9b96e16d147efe84a1d48bdde4", size = 803241, upload-time = "2026-04-03T20:55:07.162Z" }, - { url = "https://files.pythonhosted.org/packages/2a/5c/83e3b1d89fa4f6e5a1bc97b4abd4a9a97b3c1ac7854164f694f5f0ba98a0/regex-2026.4.4-cp313-cp313t-win32.whl", hash = "sha256:e014a797de43d1847df957c0a2a8e861d1c17547ee08467d1db2c370b7568baa", size = 269921, upload-time = "2026-04-03T20:55:09.62Z" }, - { url = "https://files.pythonhosted.org/packages/28/07/077c387121f42cdb4d92b1301133c0d93b5709d096d1669ab847dda9fe2e/regex-2026.4.4-cp313-cp313t-win_amd64.whl", hash = "sha256:b15b88b0d52b179712632832c1d6e58e5774f93717849a41096880442da41ab0", size = 281240, upload-time = "2026-04-03T20:55:11.521Z" }, - { url = "https://files.pythonhosted.org/packages/9d/22/ead4a4abc7c59a4d882662aa292ca02c8b617f30b6e163bc1728879e9353/regex-2026.4.4-cp313-cp313t-win_arm64.whl", hash = "sha256:586b89cdadf7d67bf86ae3342a4dcd2b8d70a832d90c18a0ae955105caf34dbe", size = 272440, upload-time = "2026-04-03T20:55:13.365Z" }, +version = "2026.5.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/0e/49aee608ad09480e7fd276898c99ec6192985fa331abe4eb3a986094490b/regex-2026.5.9.tar.gz", hash = "sha256:a8234aa23ec39894bfe4a3f1b85616a7032481964a13ac6fc9f10de4f6fca270", size = 416074, upload-time = "2026-05-09T23:15:19.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/9b/6550044bc44e17c84d312c031c2ec42fbdb6a4ec4e29093be3a172d08772/regex-2026.5.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:57eeeb05db7979413dec5438f2db21d7ecbba787cde7a711df1a6f6df672aa06", size = 490451, upload-time = "2026-05-09T23:12:34.72Z" }, + { url = "https://files.pythonhosted.org/packages/1e/95/fc7ba4303b5a0f92446a12ee6778ef2c6c799233f5060042a31bf390cfe9/regex-2026.5.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:398c521292f4c7fb807001dcd54694d3a1fcafc179a36ad9cc56f98df85930b6", size = 292112, upload-time = "2026-05-09T23:12:36.285Z" }, + { url = "https://files.pythonhosted.org/packages/54/4b/ee27938d1b2c443e89a9a10e00d2d19aa5ee300cd3d61140644e93bb083e/regex-2026.5.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f7a7c26137296beba7784de6eba69c6a93a63ccebc385e4962fe67e267a91225", size = 289599, upload-time = "2026-05-09T23:12:38.089Z" }, + { url = "https://files.pythonhosted.org/packages/d8/dd/ba103dc19614e25f3880800ca67ce093d6e21b325d72b8383c7bf906e9fa/regex-2026.5.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6441cc660d76107934a09c22167200839a0e89604a6297f78a974e66e931d2c0", size = 796732, upload-time = "2026-05-09T23:12:40.062Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e7/f035b4fd858b050b0080bf302968dc0f59ba34e391872d54936758e6844e/regex-2026.5.9-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:91328f1c23d47595ca3ef0a7557fa129c5a23404b775c770697d2f35b33e0107", size = 865440, upload-time = "2026-05-09T23:12:42.059Z" }, + { url = "https://files.pythonhosted.org/packages/0a/51/8cd301ecc899aea28124357f729f4272f44de7806fc7ca02490bfbe253e8/regex-2026.5.9-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:93a7860539414dddaefba2b40f8771765ae17949d4c7182b876ce429e11a8309", size = 912329, upload-time = "2026-05-09T23:12:44.373Z" }, + { url = "https://files.pythonhosted.org/packages/cc/1e/3fbe2fa1e8cebd62f3bb7d3321cff1640aca2e240b51d9bd624aad949260/regex-2026.5.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd2810d22146b6d838acc5ec15602cb6b47920aa4e33015df3868eedfd20bab8", size = 801239, upload-time = "2026-05-09T23:12:46.268Z" }, + { url = "https://files.pythonhosted.org/packages/17/2f/6f6008682bf2cf98040a0d3153a8e557b6ab728d7713d045cee4ce544ab8/regex-2026.5.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:daff2bdbaf1d23e52fdff7c0b7bc2048b68f978df6a4d107ac981f94caef2e66", size = 777054, upload-time = "2026-05-09T23:12:48.051Z" }, + { url = "https://files.pythonhosted.org/packages/19/2b/eee0d20a6842ba04df4b8847a920b57ef56853f14ef85405473e586b605a/regex-2026.5.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4eeb011098fcb77af513dcef521a3dbecbf8849b1e38940759d293b7a93f5026", size = 785098, upload-time = "2026-05-09T23:12:49.851Z" }, + { url = "https://files.pythonhosted.org/packages/4a/98/6fc1e6410feefb92159edaed5041992bfe390e8d26c721865434acbca558/regex-2026.5.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ea9c8ecfa1b73c73b626534d6626e5340d429630943672b8480724f44e84b962", size = 860095, upload-time = "2026-05-09T23:12:51.666Z" }, + { url = "https://files.pythonhosted.org/packages/18/a3/bd855e0f2cb1a978ecf6fa6bb69632dd9c3f6ea3b81cde62fde14c9daec7/regex-2026.5.9-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:cd2846168eb9ee3c513902bc8225409cb1caab31d04728b145171fa1625d9621", size = 765762, upload-time = "2026-05-09T23:12:53.413Z" }, + { url = "https://files.pythonhosted.org/packages/dc/66/0ae8c092e60b14c79d24f8e0b7f0aea5bfbffdcab00b5483d13404d3c3a5/regex-2026.5.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:39617fb0cde9c0e6306dc70e3bfc096f3da793219879f7ae7aa341a69fbdcf6d", size = 852100, upload-time = "2026-05-09T23:12:55.256Z" }, + { url = "https://files.pythonhosted.org/packages/21/de/8dfde60fc1b21c946a893ba273403b72617edb261370cb1087099a83f088/regex-2026.5.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fd03c4f0e33280d15cae17159b899245d6b7c53d21def19b263b39655061f5ce", size = 789479, upload-time = "2026-05-09T23:12:57.573Z" }, + { url = "https://files.pythonhosted.org/packages/c3/1c/bdcc98f9a4af4fdd166c74941174619ccff4726d3ce32faa8e9a2ecd38dd/regex-2026.5.9-cp312-cp312-win32.whl", hash = "sha256:164eba9b755ea6f244b0d881196fbc1fac09714e9782c9e2732b813142033c8e", size = 266699, upload-time = "2026-05-09T23:12:59.14Z" }, + { url = "https://files.pythonhosted.org/packages/78/87/240d36864f9e48ace85f72e79ced97ceb7f27ce87739a947dcb834b4e6bc/regex-2026.5.9-cp312-cp312-win_amd64.whl", hash = "sha256:86f40a5d6444db30a125c9c9177e6b25dad981cbc37451fd838f145e6edac92e", size = 277783, upload-time = "2026-05-09T23:13:00.789Z" }, + { url = "https://files.pythonhosted.org/packages/4f/b5/7b30f312b0669dff5beebe5b0989dc2d1a312b1a44fab852199c387a5b96/regex-2026.5.9-cp312-cp312-win_arm64.whl", hash = "sha256:96f5f58b54a063d7ea9dca08e1cf57bfe10499c4d579ee672da284f57f5f0070", size = 270513, upload-time = "2026-05-09T23:13:02.426Z" }, + { url = "https://files.pythonhosted.org/packages/aa/da/797e91ecec6f84135da778ddce78c20e0af5d2a15c26f87a81bc3eadb6db/regex-2026.5.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d626b84406444b165fc0ba981604edea39f0588ff1f92baa23fe50799ea9afdb", size = 490303, upload-time = "2026-05-09T23:13:04.382Z" }, + { url = "https://files.pythonhosted.org/packages/44/da/bf30abaaa737b58f4a4b8c4a03659e02fd92092c822e0197ed9e0daab917/regex-2026.5.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d7bdc0ab8f3dd7e1b4f9ab88634e13374669db86bb3c72e8292f07ae313f539f", size = 292019, upload-time = "2026-05-09T23:13:06.022Z" }, + { url = "https://files.pythonhosted.org/packages/2d/e7/d0eaf5713828417b9e5648cf81fa9bacd4961f6ab98c380c2034f8716e35/regex-2026.5.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a8820737949116ffff55fe18f9fc644530063ba6ebfcb8314239416e78f1347c", size = 289468, upload-time = "2026-05-09T23:13:08.214Z" }, + { url = "https://files.pythonhosted.org/packages/d3/9b/b3fdd62b003baa1a9b593cd8c8699c9651c2e80cc21a5c715707983c42d7/regex-2026.5.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa0fbdbac82cb3e4450d0ccde7d7a35607f4cb2dd9fba4b8b69bfaf8c9fa6aed", size = 796749, upload-time = "2026-05-09T23:13:10.573Z" }, + { url = "https://files.pythonhosted.org/packages/d4/30/66ab84588765f5b4b271a9ca09ef7ce2b87caa95176ec3d2ad65d7bc4902/regex-2026.5.9-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:57e8915c7986aa33d25e4d3629cef711cd2863f2961b10409f0c04cb8b7d9020", size = 865445, upload-time = "2026-05-09T23:13:12.523Z" }, + { url = "https://files.pythonhosted.org/packages/1a/89/f05169e8588aac365f35ffc7f3bc3184f095ef4cfded7cfaa3c7fd5dbd89/regex-2026.5.9-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:508f56a89ba9cb26e4168cbc37dbd60a28d82430a9e18ad1d25fe0883c314ca2", size = 912322, upload-time = "2026-05-09T23:13:14.281Z" }, + { url = "https://files.pythonhosted.org/packages/30/e1/c93444052cf41581f3c884ab3fb5823daf0992f11cd4388d4275ca610558/regex-2026.5.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b6d189041f15691cfa2b6c4290448ec221244d225b3f5fe9e7771b34ffcdf6e2", size = 801269, upload-time = "2026-05-09T23:13:16.569Z" }, + { url = "https://files.pythonhosted.org/packages/50/fe/0cf96b882f540e62e8b9956599798203d599c44cf4c77917ca27400ff69b/regex-2026.5.9-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e82db382b44d0111b22601c509c89f64434816c9e0eef9d1989cda8cc6ff1c04", size = 777085, upload-time = "2026-05-09T23:13:18.675Z" }, + { url = "https://files.pythonhosted.org/packages/23/5c/d78d4924e7fc875557b9e9b768423925fdfaac5549d06da7810019a9bd26/regex-2026.5.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2acfb48634f64996b57f90f39afa692ff362162722581921fe92239a59960f3c", size = 785153, upload-time = "2026-05-09T23:13:20.525Z" }, + { url = "https://files.pythonhosted.org/packages/bf/e0/5214774090e7b4524dcea3e3c4aa74141d43043f8beb49c1599db1c8b53a/regex-2026.5.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d29eebfc9525db68cad3c97eedd7f754fa265aa5cd0cf4f863b2421e1b48fc9f", size = 860164, upload-time = "2026-05-09T23:13:22.263Z" }, + { url = "https://files.pythonhosted.org/packages/6e/e1/4a57a83350319b1271f0d7a249b8672513ed928b237a741631270de6caea/regex-2026.5.9-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:debb893095e944091c16e641a6e33c1b0f4cb61ab945ec5afbf53ce7068834d8", size = 765731, upload-time = "2026-05-09T23:13:24.277Z" }, + { url = "https://files.pythonhosted.org/packages/12/f4/499e74a20c156fc75836ee04a72a38d1a063978f600937f9760467beb1b0/regex-2026.5.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d659eee77986549c9ea45b861c7567e44d6287c3dc9a4565478853f7b9fe2ff6", size = 852062, upload-time = "2026-05-09T23:13:26.125Z" }, + { url = "https://files.pythonhosted.org/packages/5b/92/7eebc0d0a01e78629695f342ba17e0deaff8fb45e79cc0d7b98287da6e3e/regex-2026.5.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2efa205e6d98b24d1f3ab395c11aa15cdf10935bca283d0285e0499c284fba21", size = 789577, upload-time = "2026-05-09T23:13:27.814Z" }, + { url = "https://files.pythonhosted.org/packages/05/a4/018e71f7d2ad48c1ebe6d3ae0026f9b7cb4802fd15c7cc02fdf724355102/regex-2026.5.9-cp313-cp313-win32.whl", hash = "sha256:f3844f134e834076677dd369976e9f5068679fcb8e50102fdf6b7ac96a3ec127", size = 266691, upload-time = "2026-05-09T23:13:29.549Z" }, + { url = "https://files.pythonhosted.org/packages/e6/1d/861a93719fb9ee7dbfc3761b3797b7a3e112a5d42c6129459d2d741be9b5/regex-2026.5.9-cp313-cp313-win_amd64.whl", hash = "sha256:3527bb4942d2c14552155406cdedd906567456821848aed1cb4933a391bf5eca", size = 277747, upload-time = "2026-05-09T23:13:31.859Z" }, + { url = "https://files.pythonhosted.org/packages/d9/c6/0a2436ae4da1ba76e51cb98943c6838a9a721faa40ebe2dce07694ae34e3/regex-2026.5.9-cp313-cp313-win_arm64.whl", hash = "sha256:56a33f191f17d8c417f99945ebdc1e691d3af9605d86ec68c7e54a57e3e17af6", size = 270500, upload-time = "2026-05-09T23:13:33.525Z" }, + { url = "https://files.pythonhosted.org/packages/e8/e9/d21346f7b60ed58789371358ed66b09d00f832e1bd7c06e55d9da5679882/regex-2026.5.9-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:01f28d868834624c934b8d2e0aa1c8341337e37831f4a012f18a5afcba4cbaf3", size = 494172, upload-time = "2026-05-09T23:13:35.935Z" }, + { url = "https://files.pythonhosted.org/packages/c4/43/fd1177a2032037c681baecdb3422ee4e1424aec4e4f470ef47793d325274/regex-2026.5.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:48036f6374aaa79eb3b754ec29c61d1c6b1606749d705a13f8854fa2539671f6", size = 293952, upload-time = "2026-05-09T23:13:38.307Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7d/9fbf919768368d3f8a4f6c692cf2aa61e482b2b81ec6a298ace4cbf02480/regex-2026.5.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b96350aa424e79d4fd6b567b344dcbe2b2d6bfc48dfe7717587e1fa6d43da6ff", size = 292314, upload-time = "2026-05-09T23:13:40.353Z" }, + { url = "https://files.pythonhosted.org/packages/e2/6c/e41bfeecb589716843e7c4df09ba46ff2a42961457afece19059d85caeef/regex-2026.5.9-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8f3af7a4903c5c04a11a196a5aa75cdd7dd3f8508132f9fb3259d9f5908e3b88", size = 811681, upload-time = "2026-05-09T23:13:42.543Z" }, + { url = "https://files.pythonhosted.org/packages/87/83/a5c1c525fba0aa656e88ad0face0b1829788ef4c2fb6b26df58aa1151b84/regex-2026.5.9-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7e87577720152d2caae19fe2baaf1f8d5ca12091e9e229f03915c37d1e4b9178", size = 871135, upload-time = "2026-05-09T23:13:44.326Z" }, + { url = "https://files.pythonhosted.org/packages/18/d4/80882e799e440dd878b0979cbebf8fa4d54624a332c83037c7a701649e3f/regex-2026.5.9-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c8b9b9d294cfea3cd19c718ade7cc93492b2c4991abd9a68d0b3477ae6d8e100", size = 917265, upload-time = "2026-05-09T23:13:47.295Z" }, + { url = "https://files.pythonhosted.org/packages/ae/ff/8db60211e2286e396aad7dc7725356c502bff0901ea05bd6cdc2e1a042b9/regex-2026.5.9-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:728d8bfd28a8845c8b6bc5dc7ce010453d206396786c0765c2740cb65f37791e", size = 816311, upload-time = "2026-05-09T23:13:49.885Z" }, + { url = "https://files.pythonhosted.org/packages/4c/47/742ef579c61730f8d268e5cf1f9ce0e37e2ea041ad0f5644724f2378e463/regex-2026.5.9-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7e30b874d341fac767d7df5a0870540541c2c054b80cfaac116e8d367a8a7ff2", size = 785498, upload-time = "2026-05-09T23:13:52.25Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ab/cb0999802dcb0fb95b1ab005e8d4163d8afdd67efc2cb6b6630ac13f8cb1/regex-2026.5.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:fd190e88a895a8901325fad284a3f74ea52b1da8525b76cc811fa9b1edf0ce2b", size = 801348, upload-time = "2026-05-09T23:13:54.127Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/8ca59a24c55bc34d166eefaf3717bd77772f329fdbf984d86581e0a3571c/regex-2026.5.9-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:8e76e8161ad00694cfce6767d5dea860c6391ac5b83e5c3a39661e696f11fc7e", size = 866493, upload-time = "2026-05-09T23:13:56.067Z" }, + { url = "https://files.pythonhosted.org/packages/8d/3d/30f2ae62cef3278bb5bb821f467277a55fb73f01032cf85997e15e8289a8/regex-2026.5.9-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:ddda5340e6c01a293027dd46232fa79eaff1b48058ce7a98f572b6445b088041", size = 772811, upload-time = "2026-05-09T23:13:57.867Z" }, + { url = "https://files.pythonhosted.org/packages/d8/ae/7d2089bcd78ad0c0161bc684339df50032acb438a7bd3305e7ddb1193cec/regex-2026.5.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:205109e96b3cf5adf8f4cd62bedde9487feb282b9497a3535451e5a24cd706a0", size = 856584, upload-time = "2026-05-09T23:13:59.679Z" }, + { url = "https://files.pythonhosted.org/packages/a9/29/92ff47f75990131ea4f24ba17819e5a9d141e10819807e09addd73409af6/regex-2026.5.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dfbe4579b9f08036aa7d101d1835437a20783574ac66327e6b29b4018a138081", size = 803453, upload-time = "2026-05-09T23:14:01.978Z" }, + { url = "https://files.pythonhosted.org/packages/04/99/eff29f1037dcab36702c9ee5d6858cf1ce2336ea8ea2987f64245b99ea5e/regex-2026.5.9-cp313-cp313t-win32.whl", hash = "sha256:ed2c9e8068b614c574d8d30e543d617cf5379b0535d46f97ef00e904745a08b5", size = 269951, upload-time = "2026-05-09T23:14:03.661Z" }, + { url = "https://files.pythonhosted.org/packages/0e/9d/8870b8981d27b22cda77bb26a5ac7ebfa9c7d9e0dea195a834a82380e748/regex-2026.5.9-cp313-cp313t-win_amd64.whl", hash = "sha256:b46b0f094dc1d3b90356c85a0bd2c9bafc4a6a190b9d6f8ddd5a033b6e088ed4", size = 281240, upload-time = "2026-05-09T23:14:05.56Z" }, + { url = "https://files.pythonhosted.org/packages/72/b1/3379415e8f135c13ac551353397cc4fe97b4978f3cac73c5fcbcded548b8/regex-2026.5.9-cp313-cp313t-win_arm64.whl", hash = "sha256:872acc074bd29ffc9913ecdfedf6ea77502312ca44a4aa0d3779089c6069d8de", size = 272383, upload-time = "2026-05-09T23:14:07.843Z" }, ] [[package]] name = "requests" -version = "2.32.5" +version = "2.34.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, @@ -1708,34 +1895,22 @@ dependencies = [ { name = "idna" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/c3/e2a2b89f2d3e2179abd6d00ebd70bff6273f37fb3e0cc209f48b39d00cbf/requests-2.34.2.tar.gz", hash = "sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed", size = 142856, upload-time = "2026-05-14T19:25:27.735Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, + { url = "https://files.pythonhosted.org/packages/a0/f4/c67b0b3f1b9245e8d266f0f112c500d50e5b4e83cb6f3b71b6528104182a/requests-2.34.2-py3-none-any.whl", hash = "sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0", size = 73075, upload-time = "2026-05-14T19:25:26.443Z" }, ] [[package]] name = "rich" -version = "14.3.3" +version = "15.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "markdown-it-py" }, { name = "pygments" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, -] - -[[package]] -name = "rsa" -version = "4.9.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyasn1" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/da/8a/22b7beea3ee0d44b1916c0c1cb0ee3af23b700b6da9f04991899d0c555d4/rsa-4.9.1.tar.gz", hash = "sha256:e7bdbfdb5497da4c07dfd35530e1a902659db6ff241e39d9953cad06ebd0ae75", size = 29034, upload-time = "2025-04-16T09:51:18.218Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/64/8d/0133e4eb4beed9e425d9a98ed6e081a55d195481b7632472be1af08d2f6b/rsa-4.9.1-py3-none-any.whl", hash = "sha256:68635866661c6836b8d39430f97a996acbd61bfa49406748ea243539fe239762", size = 34696, upload-time = "2025-04-16T09:51:17.142Z" }, + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, ] [[package]] @@ -1794,55 +1969,55 @@ wheels = [ [[package]] name = "scipy" -version = "1.16.3" +version = "1.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb", size = 30597883, upload-time = "2025-10-28T17:38:54.068Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/40/41/5bf55c3f386b1643812f3a5674edf74b26184378ef0f3e7c7a09a7e2ca7f/scipy-1.16.3-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:81fc5827606858cf71446a5e98715ba0e11f0dbc83d71c7409d05486592a45d6", size = 36659043, upload-time = "2025-10-28T17:32:40.285Z" }, - { url = "https://files.pythonhosted.org/packages/1e/0f/65582071948cfc45d43e9870bf7ca5f0e0684e165d7c9ef4e50d783073eb/scipy-1.16.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:c97176013d404c7346bf57874eaac5187d969293bf40497140b0a2b2b7482e07", size = 28898986, upload-time = "2025-10-28T17:32:45.325Z" }, - { url = "https://files.pythonhosted.org/packages/96/5e/36bf3f0ac298187d1ceadde9051177d6a4fe4d507e8f59067dc9dd39e650/scipy-1.16.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2b71d93c8a9936046866acebc915e2af2e292b883ed6e2cbe5c34beb094b82d9", size = 20889814, upload-time = "2025-10-28T17:32:49.277Z" }, - { url = "https://files.pythonhosted.org/packages/80/35/178d9d0c35394d5d5211bbff7ac4f2986c5488b59506fef9e1de13ea28d3/scipy-1.16.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3d4a07a8e785d80289dfe66b7c27d8634a773020742ec7187b85ccc4b0e7b686", size = 23565795, upload-time = "2025-10-28T17:32:53.337Z" }, - { url = "https://files.pythonhosted.org/packages/fa/46/d1146ff536d034d02f83c8afc3c4bab2eddb634624d6529a8512f3afc9da/scipy-1.16.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0553371015692a898e1aa858fed67a3576c34edefa6b7ebdb4e9dde49ce5c203", size = 33349476, upload-time = "2025-10-28T17:32:58.353Z" }, - { url = "https://files.pythonhosted.org/packages/79/2e/415119c9ab3e62249e18c2b082c07aff907a273741b3f8160414b0e9193c/scipy-1.16.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:72d1717fd3b5e6ec747327ce9bda32d5463f472c9dce9f54499e81fbd50245a1", size = 35676692, upload-time = "2025-10-28T17:33:03.88Z" }, - { url = "https://files.pythonhosted.org/packages/27/82/df26e44da78bf8d2aeaf7566082260cfa15955a5a6e96e6a29935b64132f/scipy-1.16.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fb2472e72e24d1530debe6ae078db70fb1605350c88a3d14bc401d6306dbffe", size = 36019345, upload-time = "2025-10-28T17:33:09.773Z" }, - { url = "https://files.pythonhosted.org/packages/82/31/006cbb4b648ba379a95c87262c2855cd0d09453e500937f78b30f02fa1cd/scipy-1.16.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c5192722cffe15f9329a3948c4b1db789fbb1f05c97899187dcf009b283aea70", size = 38678975, upload-time = "2025-10-28T17:33:15.809Z" }, - { url = "https://files.pythonhosted.org/packages/c2/7f/acbd28c97e990b421af7d6d6cd416358c9c293fc958b8529e0bd5d2a2a19/scipy-1.16.3-cp312-cp312-win_amd64.whl", hash = "sha256:56edc65510d1331dae01ef9b658d428e33ed48b4f77b1d51caf479a0253f96dc", size = 38555926, upload-time = "2025-10-28T17:33:21.388Z" }, - { url = "https://files.pythonhosted.org/packages/ce/69/c5c7807fd007dad4f48e0a5f2153038dc96e8725d3345b9ee31b2b7bed46/scipy-1.16.3-cp312-cp312-win_arm64.whl", hash = "sha256:a8a26c78ef223d3e30920ef759e25625a0ecdd0d60e5a8818b7513c3e5384cf2", size = 25463014, upload-time = "2025-10-28T17:33:25.975Z" }, - { url = "https://files.pythonhosted.org/packages/72/f1/57e8327ab1508272029e27eeef34f2302ffc156b69e7e233e906c2a5c379/scipy-1.16.3-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:d2ec56337675e61b312179a1ad124f5f570c00f920cc75e1000025451b88241c", size = 36617856, upload-time = "2025-10-28T17:33:31.375Z" }, - { url = "https://files.pythonhosted.org/packages/44/13/7e63cfba8a7452eb756306aa2fd9b37a29a323b672b964b4fdeded9a3f21/scipy-1.16.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:16b8bc35a4cc24db80a0ec836a9286d0e31b2503cb2fd7ff7fb0e0374a97081d", size = 28874306, upload-time = "2025-10-28T17:33:36.516Z" }, - { url = "https://files.pythonhosted.org/packages/15/65/3a9400efd0228a176e6ec3454b1fa998fbbb5a8defa1672c3f65706987db/scipy-1.16.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:5803c5fadd29de0cf27fa08ccbfe7a9e5d741bf63e4ab1085437266f12460ff9", size = 20865371, upload-time = "2025-10-28T17:33:42.094Z" }, - { url = "https://files.pythonhosted.org/packages/33/d7/eda09adf009a9fb81827194d4dd02d2e4bc752cef16737cc4ef065234031/scipy-1.16.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:b81c27fc41954319a943d43b20e07c40bdcd3ff7cf013f4fb86286faefe546c4", size = 23524877, upload-time = "2025-10-28T17:33:48.483Z" }, - { url = "https://files.pythonhosted.org/packages/7d/6b/3f911e1ebc364cb81320223a3422aab7d26c9c7973109a9cd0f27c64c6c0/scipy-1.16.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0c3b4dd3d9b08dbce0f3440032c52e9e2ab9f96ade2d3943313dfe51a7056959", size = 33342103, upload-time = "2025-10-28T17:33:56.495Z" }, - { url = "https://files.pythonhosted.org/packages/21/f6/4bfb5695d8941e5c570a04d9fcd0d36bce7511b7d78e6e75c8f9791f82d0/scipy-1.16.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7dc1360c06535ea6116a2220f760ae572db9f661aba2d88074fe30ec2aa1ff88", size = 35697297, upload-time = "2025-10-28T17:34:04.722Z" }, - { url = "https://files.pythonhosted.org/packages/04/e1/6496dadbc80d8d896ff72511ecfe2316b50313bfc3ebf07a3f580f08bd8c/scipy-1.16.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:663b8d66a8748051c3ee9c96465fb417509315b99c71550fda2591d7dd634234", size = 36021756, upload-time = "2025-10-28T17:34:13.482Z" }, - { url = "https://files.pythonhosted.org/packages/fe/bd/a8c7799e0136b987bda3e1b23d155bcb31aec68a4a472554df5f0937eef7/scipy-1.16.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eab43fae33a0c39006a88096cd7b4f4ef545ea0447d250d5ac18202d40b6611d", size = 38696566, upload-time = "2025-10-28T17:34:22.384Z" }, - { url = "https://files.pythonhosted.org/packages/cd/01/1204382461fcbfeb05b6161b594f4007e78b6eba9b375382f79153172b4d/scipy-1.16.3-cp313-cp313-win_amd64.whl", hash = "sha256:062246acacbe9f8210de8e751b16fc37458213f124bef161a5a02c7a39284304", size = 38529877, upload-time = "2025-10-28T17:35:51.076Z" }, - { url = "https://files.pythonhosted.org/packages/7f/14/9d9fbcaa1260a94f4bb5b64ba9213ceb5d03cd88841fe9fd1ffd47a45b73/scipy-1.16.3-cp313-cp313-win_arm64.whl", hash = "sha256:50a3dbf286dbc7d84f176f9a1574c705f277cb6565069f88f60db9eafdbe3ee2", size = 25455366, upload-time = "2025-10-28T17:35:59.014Z" }, - { url = "https://files.pythonhosted.org/packages/e2/a3/9ec205bd49f42d45d77f1730dbad9ccf146244c1647605cf834b3a8c4f36/scipy-1.16.3-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:fb4b29f4cf8cc5a8d628bc8d8e26d12d7278cd1f219f22698a378c3d67db5e4b", size = 37027931, upload-time = "2025-10-28T17:34:31.451Z" }, - { url = "https://files.pythonhosted.org/packages/25/06/ca9fd1f3a4589cbd825b1447e5db3a8ebb969c1eaf22c8579bd286f51b6d/scipy-1.16.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:8d09d72dc92742988b0e7750bddb8060b0c7079606c0d24a8cc8e9c9c11f9079", size = 29400081, upload-time = "2025-10-28T17:34:39.087Z" }, - { url = "https://files.pythonhosted.org/packages/6a/56/933e68210d92657d93fb0e381683bc0e53a965048d7358ff5fbf9e6a1b17/scipy-1.16.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:03192a35e661470197556de24e7cb1330d84b35b94ead65c46ad6f16f6b28f2a", size = 21391244, upload-time = "2025-10-28T17:34:45.234Z" }, - { url = "https://files.pythonhosted.org/packages/a8/7e/779845db03dc1418e215726329674b40576879b91814568757ff0014ad65/scipy-1.16.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:57d01cb6f85e34f0946b33caa66e892aae072b64b034183f3d87c4025802a119", size = 23929753, upload-time = "2025-10-28T17:34:51.793Z" }, - { url = "https://files.pythonhosted.org/packages/4c/4b/f756cf8161d5365dcdef9e5f460ab226c068211030a175d2fc7f3f41ca64/scipy-1.16.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:96491a6a54e995f00a28a3c3badfff58fd093bf26cd5fb34a2188c8c756a3a2c", size = 33496912, upload-time = "2025-10-28T17:34:59.8Z" }, - { url = "https://files.pythonhosted.org/packages/09/b5/222b1e49a58668f23839ca1542a6322bb095ab8d6590d4f71723869a6c2c/scipy-1.16.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cd13e354df9938598af2be05822c323e97132d5e6306b83a3b4ee6724c6e522e", size = 35802371, upload-time = "2025-10-28T17:35:08.173Z" }, - { url = "https://files.pythonhosted.org/packages/c1/8d/5964ef68bb31829bde27611f8c9deeac13764589fe74a75390242b64ca44/scipy-1.16.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63d3cdacb8a824a295191a723ee5e4ea7768ca5ca5f2838532d9f2e2b3ce2135", size = 36190477, upload-time = "2025-10-28T17:35:16.7Z" }, - { url = "https://files.pythonhosted.org/packages/ab/f2/b31d75cb9b5fa4dd39a0a931ee9b33e7f6f36f23be5ef560bf72e0f92f32/scipy-1.16.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e7efa2681ea410b10dde31a52b18b0154d66f2485328830e45fdf183af5aefc6", size = 38796678, upload-time = "2025-10-28T17:35:26.354Z" }, - { url = "https://files.pythonhosted.org/packages/b4/1e/b3723d8ff64ab548c38d87055483714fefe6ee20e0189b62352b5e015bb1/scipy-1.16.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2d1ae2cf0c350e7705168ff2429962a89ad90c2d49d1dd300686d8b2a5af22fc", size = 38640178, upload-time = "2025-10-28T17:35:35.304Z" }, - { url = "https://files.pythonhosted.org/packages/8e/f3/d854ff38789aca9b0cc23008d607ced9de4f7ab14fa1ca4329f86b3758ca/scipy-1.16.3-cp313-cp313t-win_arm64.whl", hash = "sha256:0c623a54f7b79dd88ef56da19bc2873afec9673a48f3b85b18e4d402bdd29a5a", size = 25803246, upload-time = "2025-10-28T17:35:42.155Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, ] [[package]] name = "scipy-stubs" -version = "1.16.3.0" +version = "1.17.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "optype", extra = ["numpy"] }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bd/68/c53c3bce6bd069a164015be1be2671c968b526be4af1e85db64c88f04546/scipy_stubs-1.16.3.0.tar.gz", hash = "sha256:d6943c085e47a1ed431309f9ca582b6a206a9db808a036132a0bf01ebc34b506", size = 356462, upload-time = "2025-10-28T22:05:31.198Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/75/d944a11fca64aa84fbb4bfcf613b758319c6103cb30a304a0e9727009d62/scipy_stubs-1.17.1.4.tar.gz", hash = "sha256:cae00c5207aa62ceb4bcadea202d9fbbf002e958f9e4de981720436b8d5c1802", size = 396980, upload-time = "2026-04-13T11:46:54.528Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/86/1c/0ba7305fa01cfe7a6f1b8c86ccdd1b7a0d43fa9bd769c059995311e291a2/scipy_stubs-1.16.3.0-py3-none-any.whl", hash = "sha256:90e5d82ced2183ef3c5c0a28a77df8cc227458624364fa0ff975ad24fa89d6ad", size = 557713, upload-time = "2025-10-28T22:05:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/92/f8/334aa5a7a482ea89cb14d92f6a4d9ffa1e193e733144d4d14c7ffcb33583/scipy_stubs-1.17.1.4-py3-none-any.whl", hash = "sha256:e6e5c390fb864745bc3d5f591de81f5cb4f84403857d4f660acb5b6339956f5b", size = 604752, upload-time = "2026-04-13T11:46:53.135Z" }, ] [[package]] @@ -1927,11 +2102,11 @@ wheels = [ [[package]] name = "tenacity" -version = "9.1.2" +version = "9.1.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0a/d4/2b0cd0fe285e14b36db076e78c93766ff1d529d70408bd1d2a5a84f1d929/tenacity-9.1.2.tar.gz", hash = "sha256:1169d376c297e7de388d18b4481760d478b0e99a777cad3a9c86e556f4b697cb", size = 48036, upload-time = "2025-04-02T08:25:09.966Z" } +sdist = { url = "https://files.pythonhosted.org/packages/47/c6/ee486fd809e357697ee8a44d3d69222b344920433d3b6666ccd9b374630c/tenacity-9.1.4.tar.gz", hash = "sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a", size = 49413, upload-time = "2026-02-07T10:45:33.841Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e5/30/643397144bfbfec6f6ef821f36f33e57d35946c44a2352d3c9f0ae847619/tenacity-9.1.2-py3-none-any.whl", hash = "sha256:f77bf36710d8b73a50b2dd155c97b870017ad21afe6ab300326b0371b3b05138", size = 28248, upload-time = "2025-04-02T08:25:07.678Z" }, + { url = "https://files.pythonhosted.org/packages/d7/c1/eb8f9debc45d3b7918a32ab756658a0904732f75e555402972246b0b8e71/tenacity-9.1.4-py3-none-any.whl", hash = "sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55", size = 28926, upload-time = "2026-02-07T10:45:32.24Z" }, ] [[package]] @@ -1945,35 +2120,35 @@ wheels = [ [[package]] name = "tiktoken" -version = "0.12.0" +version = "0.13.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "regex" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/4d017d0f76ec3171d469d80fc03dfbb4e48a4bcaddaa831b31d526f05edc/tiktoken-0.12.0.tar.gz", hash = "sha256:b18ba7ee2b093863978fcb14f74b3707cdc8d4d4d3836853ce7ec60772139931", size = 37806, upload-time = "2025-10-06T20:22:45.419Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/85/be65d39d6b647c79800fd9d29241d081d4eeb06271f383bb87200d74cf76/tiktoken-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b97f74aca0d78a1ff21b8cd9e9925714c15a9236d6ceacf5c7327c117e6e21e8", size = 1050728, upload-time = "2025-10-06T20:21:52.756Z" }, - { url = "https://files.pythonhosted.org/packages/4a/42/6573e9129bc55c9bf7300b3a35bef2c6b9117018acca0dc760ac2d93dffe/tiktoken-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b90f5ad190a4bb7c3eb30c5fa32e1e182ca1ca79f05e49b448438c3e225a49b", size = 994049, upload-time = "2025-10-06T20:21:53.782Z" }, - { url = "https://files.pythonhosted.org/packages/66/c5/ed88504d2f4a5fd6856990b230b56d85a777feab84e6129af0822f5d0f70/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:65b26c7a780e2139e73acc193e5c63ac754021f160df919add909c1492c0fb37", size = 1129008, upload-time = "2025-10-06T20:21:54.832Z" }, - { url = "https://files.pythonhosted.org/packages/f4/90/3dae6cc5436137ebd38944d396b5849e167896fc2073da643a49f372dc4f/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:edde1ec917dfd21c1f2f8046b86348b0f54a2c0547f68149d8600859598769ad", size = 1152665, upload-time = "2025-10-06T20:21:56.129Z" }, - { url = "https://files.pythonhosted.org/packages/a3/fe/26df24ce53ffde419a42f5f53d755b995c9318908288c17ec3f3448313a3/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:35a2f8ddd3824608b3d650a000c1ef71f730d0c56486845705a8248da00f9fe5", size = 1194230, upload-time = "2025-10-06T20:21:57.546Z" }, - { url = "https://files.pythonhosted.org/packages/20/cc/b064cae1a0e9fac84b0d2c46b89f4e57051a5f41324e385d10225a984c24/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:83d16643edb7fa2c99eff2ab7733508aae1eebb03d5dfc46f5565862810f24e3", size = 1254688, upload-time = "2025-10-06T20:21:58.619Z" }, - { url = "https://files.pythonhosted.org/packages/81/10/b8523105c590c5b8349f2587e2fdfe51a69544bd5a76295fc20f2374f470/tiktoken-0.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ffc5288f34a8bc02e1ea7047b8d041104791d2ddbf42d1e5fa07822cbffe16bd", size = 878694, upload-time = "2025-10-06T20:21:59.876Z" }, - { url = "https://files.pythonhosted.org/packages/00/61/441588ee21e6b5cdf59d6870f86beb9789e532ee9718c251b391b70c68d6/tiktoken-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:775c2c55de2310cc1bc9a3ad8826761cbdc87770e586fd7b6da7d4589e13dab3", size = 1050802, upload-time = "2025-10-06T20:22:00.96Z" }, - { url = "https://files.pythonhosted.org/packages/1f/05/dcf94486d5c5c8d34496abe271ac76c5b785507c8eae71b3708f1ad9b45a/tiktoken-0.12.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a01b12f69052fbe4b080a2cfb867c4de12c704b56178edf1d1d7b273561db160", size = 993995, upload-time = "2025-10-06T20:22:02.788Z" }, - { url = "https://files.pythonhosted.org/packages/a0/70/5163fe5359b943f8db9946b62f19be2305de8c3d78a16f629d4165e2f40e/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:01d99484dc93b129cd0964f9d34eee953f2737301f18b3c7257bf368d7615baa", size = 1128948, upload-time = "2025-10-06T20:22:03.814Z" }, - { url = "https://files.pythonhosted.org/packages/0c/da/c028aa0babf77315e1cef357d4d768800c5f8a6de04d0eac0f377cb619fa/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:4a1a4fcd021f022bfc81904a911d3df0f6543b9e7627b51411da75ff2fe7a1be", size = 1151986, upload-time = "2025-10-06T20:22:05.173Z" }, - { url = "https://files.pythonhosted.org/packages/a0/5a/886b108b766aa53e295f7216b509be95eb7d60b166049ce2c58416b25f2a/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:981a81e39812d57031efdc9ec59fa32b2a5a5524d20d4776574c4b4bd2e9014a", size = 1194222, upload-time = "2025-10-06T20:22:06.265Z" }, - { url = "https://files.pythonhosted.org/packages/f4/f8/4db272048397636ac7a078d22773dd2795b1becee7bc4922fe6207288d57/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9baf52f84a3f42eef3ff4e754a0db79a13a27921b457ca9832cf944c6be4f8f3", size = 1255097, upload-time = "2025-10-06T20:22:07.403Z" }, - { url = "https://files.pythonhosted.org/packages/8e/32/45d02e2e0ea2be3a9ed22afc47d93741247e75018aac967b713b2941f8ea/tiktoken-0.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:b8a0cd0c789a61f31bf44851defbd609e8dd1e2c8589c614cc1060940ef1f697", size = 879117, upload-time = "2025-10-06T20:22:08.418Z" }, - { url = "https://files.pythonhosted.org/packages/ce/76/994fc868f88e016e6d05b0da5ac24582a14c47893f4474c3e9744283f1d5/tiktoken-0.12.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d5f89ea5680066b68bcb797ae85219c72916c922ef0fcdd3480c7d2315ffff16", size = 1050309, upload-time = "2025-10-06T20:22:10.939Z" }, - { url = "https://files.pythonhosted.org/packages/f6/b8/57ef1456504c43a849821920d582a738a461b76a047f352f18c0b26c6516/tiktoken-0.12.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b4e7ed1c6a7a8a60a3230965bdedba8cc58f68926b835e519341413370e0399a", size = 993712, upload-time = "2025-10-06T20:22:12.115Z" }, - { url = "https://files.pythonhosted.org/packages/72/90/13da56f664286ffbae9dbcfadcc625439142675845baa62715e49b87b68b/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:fc530a28591a2d74bce821d10b418b26a094bf33839e69042a6e86ddb7a7fb27", size = 1128725, upload-time = "2025-10-06T20:22:13.541Z" }, - { url = "https://files.pythonhosted.org/packages/05/df/4f80030d44682235bdaecd7346c90f67ae87ec8f3df4a3442cb53834f7e4/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:06a9f4f49884139013b138920a4c393aa6556b2f8f536345f11819389c703ebb", size = 1151875, upload-time = "2025-10-06T20:22:14.559Z" }, - { url = "https://files.pythonhosted.org/packages/22/1f/ae535223a8c4ef4c0c1192e3f9b82da660be9eb66b9279e95c99288e9dab/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:04f0e6a985d95913cabc96a741c5ffec525a2c72e9df086ff17ebe35985c800e", size = 1194451, upload-time = "2025-10-06T20:22:15.545Z" }, - { url = "https://files.pythonhosted.org/packages/78/a7/f8ead382fce0243cb625c4f266e66c27f65ae65ee9e77f59ea1653b6d730/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0ee8f9ae00c41770b5f9b0bb1235474768884ae157de3beb5439ca0fd70f3e25", size = 1253794, upload-time = "2025-10-06T20:22:16.624Z" }, - { url = "https://files.pythonhosted.org/packages/93/e0/6cc82a562bc6365785a3ff0af27a2a092d57c47d7a81d9e2295d8c36f011/tiktoken-0.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dc2dd125a62cb2b3d858484d6c614d136b5b848976794edfb63688d539b8b93f", size = 878777, upload-time = "2025-10-06T20:22:18.036Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/e4/e5/5f3cb2159769d0f4324c0e9e87f9de3c4b1cd45848a96b2eb3566ad5ca77/tiktoken-0.13.0.tar.gz", hash = "sha256:c9435714c3a84c2319499de9a300c0e604449dd0799ff246458b3bb6a7f433c1", size = 38986, upload-time = "2026-05-15T04:51:27.153Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/8e/144bde4e01df66b34bb865557c7cd754ed08b036217ebd79c9db5e9048a9/tiktoken-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:32ac870a806cfb260a02d0cb70426aef02e038297f8ad50df5040bb5af360791", size = 1034888, upload-time = "2026-05-15T04:50:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/36/18/d4ac9d20956cdebca04841316660ed584c2fecdc2b81722a28bc7ad3b1e4/tiktoken-0.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d9980f11429ed2d737c463bb1fb78cf330caa026adf002f714aced7849a687b", size = 982970, upload-time = "2026-05-15T04:50:32.961Z" }, + { url = "https://files.pythonhosted.org/packages/74/ed/6bb8d05b9f731f749fee5c6f5ca63e981143c826a5985877330507bd13b7/tiktoken-0.13.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3f277ebea5edd7b8bf03c6f9431e1d67d517530115572b2dc1d465326e8f88c7", size = 1115741, upload-time = "2026-05-15T04:50:34.475Z" }, + { url = "https://files.pythonhosted.org/packages/34/de/2ca96b07a82d972b74fe4b46de055b79c904e45c7eab699354a0bfa697dc/tiktoken-0.13.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a116178fa7e1b4065bff05214360373a65cac22f965be7b3f73d00a0dbfe7649", size = 1136523, upload-time = "2026-05-15T04:50:35.782Z" }, + { url = "https://files.pythonhosted.org/packages/ee/dc/9dafec002c2d4424378563cf4cf5c7fb93631d2a55013c8b87554ee4012c/tiktoken-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2c397ddda233208345b01bd30f2fca79ff730e55731d0108a603f9bc57f6af3b", size = 1181954, upload-time = "2026-05-15T04:50:36.99Z" }, + { url = "https://files.pythonhosted.org/packages/a1/d0/1f8578c45b2f24759b46f0b50d31878c63c73e6bf0f2227e10ec5c5408dc/tiktoken-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:95097e4f89b06403976e498abf61a0ee73a7497e73fb599cb211d8197a054d91", size = 1240069, upload-time = "2026-05-15T04:50:38.221Z" }, + { url = "https://files.pythonhosted.org/packages/aa/90/28d7f154888610aa9237e541986beb62b479df29d193a5a0617dbb1514d0/tiktoken-0.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:8f2d16e7a7c783ad81f36e457d046d1f1c8af70b22aec8a13238efe531977c41", size = 874748, upload-time = "2026-05-15T04:50:39.587Z" }, + { url = "https://files.pythonhosted.org/packages/9c/83/b096c859c2a47c11731bf2f5885f4028b809dfe2396582883eed9cae372f/tiktoken-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5df5d1507bd245f1ccad4a074698240021239e455eb0bb4ced4e3d7181872154", size = 1034228, upload-time = "2026-05-15T04:50:40.988Z" }, + { url = "https://files.pythonhosted.org/packages/53/61/c68e123b6d753e3fc2751e9b18e732c9d8bf1e1926762e736eee935d931c/tiktoken-0.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8fe806a50664e83a6ffd56cbd1e4f5dcc6cd32a3e7538f70dc38b1a271384545", size = 982978, upload-time = "2026-05-15T04:50:42.195Z" }, + { url = "https://files.pythonhosted.org/packages/ef/8b/96cc178cc584e65d363134500f297790b06cd48cdeb1e8fcf7bbe60f4715/tiktoken-0.13.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:125bc05005e747f993a83dc67934249932d6e4209854452cd4c0b1d53fba3ba2", size = 1116355, upload-time = "2026-05-15T04:50:43.564Z" }, + { url = "https://files.pythonhosted.org/packages/86/f5/bab735d2c72ea55404b295d02d092644eb5f7cc6205e34d35eb9abfb9ab2/tiktoken-0.13.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5e6358911cab4adee6712da27d65573496a4f68cf8a2b5fca6a4ad10fc5748cf", size = 1135772, upload-time = "2026-05-15T04:50:44.782Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b9/6de04ebdf904edfaad87788011b3735087a0c9ea671b9027e1e4e965e8c8/tiktoken-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:975cbd78d085d75d26b59660e262736dcaed1e35f8f142cd6291025c01d25486", size = 1182415, upload-time = "2026-05-15T04:50:46.422Z" }, + { url = "https://files.pythonhosted.org/packages/0d/9c/470a05f3b1caf038f44880e334d47ab674e0c80d514c66b375d14d5afa10/tiktoken-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:75ab9bc99fa020a4c283424590ecd7f3afd70c1c281cb3fa3192a6c3af9f9615", size = 1239879, upload-time = "2026-05-15T04:50:48.052Z" }, + { url = "https://files.pythonhosted.org/packages/42/a6/c1936d16055436cb32e6c6128d68629622e00f4768562f55653752d34768/tiktoken-0.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:6b1615f0ff71953d19729ceb18865429c185b0a23c5353f1bbca34a394bf60f7", size = 874829, upload-time = "2026-05-15T04:50:49.202Z" }, + { url = "https://files.pythonhosted.org/packages/d6/07/acb5992c3772b5a36284f742cfb7a5895aa4471d1848ac31464ad50d7fdf/tiktoken-0.13.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:6eb4a5bfbc6426938026b1a334e898ac53541360d62d8c689870160cc80abd67", size = 1033600, upload-time = "2026-05-15T04:50:50.4Z" }, + { url = "https://files.pythonhosted.org/packages/14/e9/742e9aec30f59b9f161f7ff7cd072e02ea836c9e1c0854a8076dfcd40d5c/tiktoken-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:43cee3e5400573b2046fbf092cc7a5bc30164f9e4c95ce20714da929df48737a", size = 982516, upload-time = "2026-05-15T04:50:52.03Z" }, + { url = "https://files.pythonhosted.org/packages/72/74/ca1541b053e7648254d2e4b42a253e1bb4359f2c91a0a8d49228c794e1a0/tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:7de52e3f566d19b3b11bd37eea552c6c305ad74081f736882bd44d148ed4c48d", size = 1115518, upload-time = "2026-05-15T04:50:53.543Z" }, + { url = "https://files.pythonhosted.org/packages/46/e3/93825eaf5a4a504795b787e5d5dea07fbeb3dabf97aa7b450be8bde59c89/tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:51384448aa508e4df84c0f7c1dc3211c7f7b8096325660ee5fc82f3e11b381ce", size = 1136867, upload-time = "2026-05-15T04:50:55.191Z" }, + { url = "https://files.pythonhosted.org/packages/8c/46/002b68de6827091d5ae90b048f326e8aad8d953520950e5ce1508879414f/tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e28157350f7ebf35008dd8e9e0fdb621f976e4230c881099c85e8cf07eaa50e2", size = 1181826, upload-time = "2026-05-15T04:50:56.296Z" }, + { url = "https://files.pythonhosted.org/packages/db/c6/d393e3185a276505182f7abd93fe714f3c444a2be9180798fa052347504e/tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:165cf1820ea4a354985c2490a5205d4cc74661c934aca79dd0368232fff94e0f", size = 1239489, upload-time = "2026-05-15T04:50:57.918Z" }, + { url = "https://files.pythonhosted.org/packages/b7/4d/bc07d1f1635d4897a202acc0ae11c2886eaa7325c359ba4741b47bf8e225/tiktoken-0.13.0-cp313-cp313t-win_amd64.whl", hash = "sha256:6c43a675ca14f6f2749ba7f12075d37456015a24b859f2517b9beb4ef30807ec", size = 873820, upload-time = "2026-05-15T04:50:59.528Z" }, ] [[package]] @@ -2004,15 +2179,16 @@ wheels = [ [[package]] name = "torch" -version = "2.11.0" +version = "2.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cuda-bindings", marker = "sys_platform == 'linux'" }, - { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], marker = "sys_platform == 'linux'" }, + { name = "cuda-toolkit", extra = ["cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], marker = "sys_platform == 'linux'" }, { name = "filelock" }, { name = "fsspec" }, { name = "jinja2" }, { name = "networkx" }, + { name = "nvidia-cublas", marker = "sys_platform == 'linux'" }, { name = "nvidia-cudnn-cu13", marker = "sys_platform == 'linux'" }, { name = "nvidia-cusparselt-cu13", marker = "sys_platform == 'linux'" }, { name = "nvidia-nccl-cu13", marker = "sys_platform == 'linux'" }, @@ -2023,18 +2199,18 @@ dependencies = [ { name = "typing-extensions" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/6f/8b/69e3008d78e5cee2b30183340cc425081b78afc5eff3d080daab0adda9aa/torch-2.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b5866312ee6e52ea625cd211dcb97d6a2cdc1131a5f15cc0d87eec948f6dd34", size = 80606338, upload-time = "2026-03-23T18:11:34.781Z" }, - { url = "https://files.pythonhosted.org/packages/13/16/42e5915ebe4868caa6bac83a8ed59db57f12e9a61b7d749d584776ed53d5/torch-2.11.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f99924682ef0aa6a4ab3b1b76f40dc6e273fca09f367d15a524266db100a723f", size = 419731115, upload-time = "2026-03-23T18:11:06.944Z" }, - { url = "https://files.pythonhosted.org/packages/1a/c9/82638ef24d7877510f83baf821f5619a61b45568ce21c0a87a91576510aa/torch-2.11.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:0f68f4ac6d95d12e896c3b7a912b5871619542ec54d3649cf48cc1edd4dd2756", size = 530712279, upload-time = "2026-03-23T18:10:31.481Z" }, - { url = "https://files.pythonhosted.org/packages/1c/ff/6756f1c7ee302f6d202120e0f4f05b432b839908f9071157302cedfc5232/torch-2.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:fbf39280699d1b869f55eac536deceaa1b60bd6788ba74f399cc67e60a5fab10", size = 114556047, upload-time = "2026-03-23T18:10:55.931Z" }, - { url = "https://files.pythonhosted.org/packages/87/89/5ea6722763acee56b045435fb84258db7375c48165ec8be7880ab2b281c5/torch-2.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1e6debd97ccd3205bbb37eb806a9d8219e1139d15419982c09e23ef7d4369d18", size = 80606801, upload-time = "2026-03-23T18:10:18.649Z" }, - { url = "https://files.pythonhosted.org/packages/32/d1/8ed2173589cbfe744ed54e5a73efc107c0085ba5777ee93a5f4c1ab90553/torch-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:63a68fa59de8f87acc7e85a5478bb2dddbb3392b7593ec3e78827c793c4b73fd", size = 419732382, upload-time = "2026-03-23T18:08:30.835Z" }, - { url = "https://files.pythonhosted.org/packages/3d/e1/b73f7c575a4b8f87a5928f50a1e35416b5e27295d8be9397d5293e7e8d4c/torch-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:cc89b9b173d9adfab59fd227f0ab5e5516d9a52b658ae41d64e59d2e55a418db", size = 530711509, upload-time = "2026-03-23T18:08:47.213Z" }, - { url = "https://files.pythonhosted.org/packages/66/82/3e3fcdd388fbe54e29fd3f991f36846ff4ac90b0d0181e9c8f7236565f82/torch-2.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:4dda3b3f52d121063a731ddb835f010dc137b920d7fec2778e52f60d8e4bf0cd", size = 114555842, upload-time = "2026-03-23T18:09:52.111Z" }, - { url = "https://files.pythonhosted.org/packages/db/38/8ac78069621b8c2b4979c2f96dc8409ef5e9c4189f6aac629189a78677ca/torch-2.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8b394322f49af4362d4f80e424bcaca7efcd049619af03a4cf4501520bdf0fb4", size = 80959574, upload-time = "2026-03-23T18:10:14.214Z" }, - { url = "https://files.pythonhosted.org/packages/6d/6c/56bfb37073e7136e6dd86bfc6af7339946dd684e0ecf2155ac0eee687ae1/torch-2.11.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2658f34ce7e2dabf4ec73b45e2ca68aedad7a5be87ea756ad656eaf32bf1e1ea", size = 419732324, upload-time = "2026-03-23T18:09:36.604Z" }, - { url = "https://files.pythonhosted.org/packages/07/f4/1b666b6d61d3394cca306ea543ed03a64aad0a201b6cd159f1d41010aeb1/torch-2.11.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:98bb213c3084cfe176302949bdc360074b18a9da7ab59ef2edc9d9f742504778", size = 530596026, upload-time = "2026-03-23T18:09:20.842Z" }, - { url = "https://files.pythonhosted.org/packages/48/6b/30d1459fa7e4b67e9e3fe1685ca1d8bb4ce7c62ef436c3a615963c6c866c/torch-2.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a97b94bbf62992949b4730c6cd2cc9aee7b335921ee8dc207d930f2ed09ae2db", size = 114793702, upload-time = "2026-03-23T18:09:47.304Z" }, + { url = "https://files.pythonhosted.org/packages/ef/bb/285d643f254731294c9b595a007eac39db4600a98682d7bca688f42ca164/torch-2.12.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:b41339df93d491435e790ff8bcbae1c0ce777175889bfd1281d119862793e6a2", size = 88010197, upload-time = "2026-05-13T14:55:35.414Z" }, + { url = "https://files.pythonhosted.org/packages/79/81/76debf1db1343bd929bbb5d74c89fb437c2ed88eb144712557e7bd3eea45/torch-2.12.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:8fbef9f108a863e7722a73740998967e3b074742a834fc5be3a535a2befa7057", size = 426376751, upload-time = "2026-05-13T14:55:03.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/f0/80026028b603c4650ff270fc3785bdef4bd6738765a9cc5a0f5a637d65a2/torch-2.12.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4b4f64c2c2b11f7510d93dd6412b87025ff6eddd6bb61c3b5a3d892ea20c4756", size = 532261691, upload-time = "2026-05-13T14:52:54.453Z" }, + { url = "https://files.pythonhosted.org/packages/b9/c2/64b06cbb7830fb3cd9be13e1158b31a3f36b68e6a209105ee3c9d9480be0/torch-2.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:8b958caff4a14d3a3b0b2dfc6a378f64dda9728a9dad28c08a0db9ce4dafb549", size = 122988114, upload-time = "2026-05-13T14:54:42.153Z" }, + { url = "https://files.pythonhosted.org/packages/86/ca/01896c80ba921676aa45886b2c5b8d774912de2a1f719de48169c6f755cd/torch-2.12.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:90dd587a5f61bfe1307148b581e2084fc5bc4a06e2b90a20e9a36b81087ff16b", size = 88009511, upload-time = "2026-05-13T14:54:47.411Z" }, + { url = "https://files.pythonhosted.org/packages/a5/04/52bdaf4787eab6ac7d7f5851dff934e4def0bc8ead9c8fd2b69b3e529699/torch-2.12.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:864392c73b7654f4d2b3ae712f607937d0dbb1101c4555fbb41848106b297f39", size = 426383231, upload-time = "2026-05-13T14:53:32.129Z" }, + { url = "https://files.pythonhosted.org/packages/49/8a/94bdecd13f5aaa90d45920b89789d9fe7c6f4af8c3cdd7ce01fcb59908fc/torch-2.12.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5d6b560dfa7d56291c07d615c3bb73e8d9943d9b6d87f76cd0d9d570c4797fa6", size = 532269288, upload-time = "2026-05-13T14:53:49.423Z" }, + { url = "https://files.pythonhosted.org/packages/3e/2f/bdbaaa267de519ef1b73054bf590d8c93c37a266c9a4e24a01bd38b6918f/torch-2.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:3fee918902090ade827643e758e98363278815de583c75d111fdd665ebffde9f", size = 122987706, upload-time = "2026-05-13T14:54:00.335Z" }, + { url = "https://files.pythonhosted.org/packages/9b/ad/e95e822f3538171e22640a7fbe839a1fdb666600bf6487025de2ff03b11a/torch-2.12.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:10ee1448a9f304d3b987eb4656f664ba6e4d7b410ca7a5a7c642199777a2cf88", size = 88319556, upload-time = "2026-05-13T14:54:05.574Z" }, + { url = "https://files.pythonhosted.org/packages/b7/07/055d06d985b445d67422d25b033c11cf55bbb81785d4c4e68e28bca5820e/torch-2.12.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:af68dbf403439cae9ceaeaaf92f8352b460787dcd27b92aa05c40dd4a19c0f1e", size = 426397656, upload-time = "2026-05-13T14:52:38.84Z" }, + { url = "https://files.pythonhosted.org/packages/43/94/b0b4fdc3014122e0a7302fb90086d352aa48f2576f0b252561ebb38c01a8/torch-2.12.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:a6a2eebb237d3b1d9ad3b378e86d9b9e0782afdea8b1e0eba6a13646b9b49c07", size = 532183124, upload-time = "2026-05-13T14:53:16.178Z" }, + { url = "https://files.pythonhosted.org/packages/d8/c8/052405e6ad05d3237bfe5a4df78f917773956f8e17813a2d44c059068b74/torch-2.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2140e373e9a51a3e22ef62e8d14366d0b470d18f0adf19fdc757368077133a34", size = 123232462, upload-time = "2026-05-13T14:52:27.26Z" }, ] [[package]] @@ -2051,7 +2227,7 @@ wheels = [ [[package]] name = "transformers" -version = "5.5.0" +version = "5.8.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "huggingface-hub" }, @@ -2064,27 +2240,27 @@ dependencies = [ { name = "tqdm" }, { name = "typer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ff/9d/fb46e729b461985f41a5740167688b924a4019141e5c164bea77548d3d9e/transformers-5.5.0.tar.gz", hash = "sha256:c8db656cf51c600cd8c75f06b20ef85c72e8b8ff9abc880c5d3e8bc70e0ddcbd", size = 8237745, upload-time = "2026-04-02T16:13:08.113Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/e6/4134ea2fbea322cddc7ffc94a0d8ee47fe32ce8e876b320cd37d88edfc4d/transformers-5.8.1.tar.gz", hash = "sha256:4dd5b6de4105725104d84fd6abd74b305f4debfc251b38c648ee5dd087cf543b", size = 8532019, upload-time = "2026-05-13T03:21:57.234Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e7/28/35f7411ff80a3640c1f4fc907dcbb6a65061ebb82f66950e38bfc9f7f740/transformers-5.5.0-py3-none-any.whl", hash = "sha256:821a9ff0961abbb29eb1eb686d78df1c85929fdf213a3fe49dc6bd94f9efa944", size = 10245591, upload-time = "2026-04-02T16:13:03.462Z" }, + { url = "https://files.pythonhosted.org/packages/fc/b1/8be7e7ef0b5200491312201918b6125ef9c9df9dd0f0240ccef9ac824e6b/transformers-5.8.1-py3-none-any.whl", hash = "sha256:5340fb95962162cdfdae5cc91d7f8fedd92ed75216c1154c5e1f590fcf56dd0e", size = 10632882, upload-time = "2026-05-13T03:21:52.876Z" }, ] [[package]] name = "triton" -version = "3.6.0" +version = "3.7.0" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/17/5d/08201db32823bdf77a0e2b9039540080b2e5c23a20706ddba942924ebcd6/triton-3.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:374f52c11a711fd062b4bfbb201fd9ac0a5febd28a96fb41b4a0f51dde3157f4", size = 176128243, upload-time = "2026-01-20T16:16:07.857Z" }, - { url = "https://files.pythonhosted.org/packages/ab/a8/cdf8b3e4c98132f965f88c2313a4b493266832ad47fb52f23d14d4f86bb5/triton-3.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74caf5e34b66d9f3a429af689c1c7128daba1d8208df60e81106b115c00d6fca", size = 188266850, upload-time = "2026-01-20T16:00:43.041Z" }, - { url = "https://files.pythonhosted.org/packages/3c/12/34d71b350e89a204c2c7777a9bba0dcf2f19a5bfdd70b57c4dbc5ffd7154/triton-3.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448e02fe6dc898e9e5aa89cf0ee5c371e99df5aa5e8ad976a80b93334f3494fd", size = 176133521, upload-time = "2026-01-20T16:16:13.321Z" }, - { url = "https://files.pythonhosted.org/packages/f9/0b/37d991d8c130ce81a8728ae3c25b6e60935838e9be1b58791f5997b24a54/triton-3.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c7f76c6e72d2ef08df639e3d0d30729112f47a56b0c81672edc05ee5116ac9", size = 188289450, upload-time = "2026-01-20T16:00:49.136Z" }, - { url = "https://files.pythonhosted.org/packages/ce/4e/41b0c8033b503fd3cfcd12392cdd256945026a91ff02452bef40ec34bee7/triton-3.6.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1722e172d34e32abc3eb7711d0025bb69d7959ebea84e3b7f7a341cd7ed694d6", size = 176276087, upload-time = "2026-01-20T16:16:18.989Z" }, - { url = "https://files.pythonhosted.org/packages/35/f8/9c66bfc55361ec6d0e4040a0337fb5924ceb23de4648b8a81ae9d33b2b38/triton-3.6.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d002e07d7180fd65e622134fbd980c9a3d4211fb85224b56a0a0efbd422ab72f", size = 188400296, upload-time = "2026-01-20T16:00:56.042Z" }, + { url = "https://files.pythonhosted.org/packages/f7/13/ec05adfcd87311d532ba61e3af143e8be59fcd26675884c4682841406a20/triton-3.7.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a4bf49b00a7a377a68a6da603a876e797614e6455a80e9021669c476a953ad9a", size = 188505104, upload-time = "2026-05-07T19:05:09.843Z" }, + { url = "https://files.pythonhosted.org/packages/62/7b/468a576e35beef1426e0828e28e9ba9e65f5474d496f16ee126c15646324/triton-3.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8f111161d49bf903c0eaedde3962353a3d841c08a836839b7cc1025b8426efcf", size = 201457567, upload-time = "2026-05-07T18:46:13.505Z" }, + { url = "https://files.pythonhosted.org/packages/01/e1/a59a583de59b8f62c495d67c80ee3ea97d09e91ac80c4c6e76456ed8d8ac/triton-3.7.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:abdf6beaa89b1bcfb9a43cd990536ce66091a997841a4814b260b7bee4c88c3c", size = 188503209, upload-time = "2026-05-07T19:05:17.935Z" }, + { url = "https://files.pythonhosted.org/packages/30/b1/b7507bb9815d403927c8dd51d4158ed2e11751a92dbc118a044f247b6848/triton-3.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a35d7afe3f3f058e7ec49fcce09794049e0ffc5c59019ac25ec3413741b8c4e7", size = 201453566, upload-time = "2026-05-07T18:46:20.427Z" }, + { url = "https://files.pythonhosted.org/packages/a6/8f/0bea7a6a0c989315c9135a1d7fb37e41905cfb3a17cbc1f10044ebd4cc3a/triton-3.7.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc1d61c172d257db80ddf42595131fb196ad2e9bdd751e90fe2ef13531734e8b", size = 188612899, upload-time = "2026-05-07T19:05:24.955Z" }, + { url = "https://files.pythonhosted.org/packages/e1/02/d96f57828d0912aec733b9bc7e0e7dbfd2c6f079a8fa433ac25cb93d1a30/triton-3.7.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:70fb9bbdc9f400afc54bbf6eb2670af28829a6ae3996863317964783141daf56", size = 201553816, upload-time = "2026-05-07T18:46:27.49Z" }, ] [[package]] name = "typer" -version = "0.24.1" +version = "0.25.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "annotated-doc" }, @@ -2092,21 +2268,21 @@ dependencies = [ { name = "rich" }, { name = "shellingham" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/51/9aed62104cea109b820bbd6c14245af756112017d309da813ef107d42e7e/typer-0.25.1.tar.gz", hash = "sha256:9616eb8853a09ffeabab1698952f33c6f29ffdbceb4eaeecf571880e8d7664cc", size = 122276, upload-time = "2026-04-30T19:32:16.964Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" }, + { url = "https://files.pythonhosted.org/packages/3f/f9/2b3ff4e56e5fa7debfaf9eb135d0da96f3e9a1d5b27222223c7296336e5f/typer-0.25.1-py3-none-any.whl", hash = "sha256:75caa44ed46a03fb2dab8808753ffacdbfea88495e74c85a28c5eefcf5f39c89", size = 58409, upload-time = "2026-04-30T19:32:18.271Z" }, ] [[package]] name = "types-requests" -version = "2.32.4.20250913" +version = "2.33.0.20260518" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/36/27/489922f4505975b11de2b5ad07b4fe1dca0bca9be81a703f26c5f3acfce5/types_requests-2.32.4.20250913.tar.gz", hash = "sha256:abd6d4f9ce3a9383f269775a9835a4c24e5cd6b9f647d64f88aa4613c33def5d", size = 23113, upload-time = "2025-09-13T02:40:02.309Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/01/c5a19253fe1ac159159ddf9a3a07cec8bb5e486ec4d9002ad2821da0e5d2/types_requests-2.33.0.20260518.tar.gz", hash = "sha256:df7bd3bfe0ca8402dfb841e7d9be714bb5578203283d66d7dc4ef69343449a5e", size = 24752, upload-time = "2026-05-18T06:07:37.966Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/20/9a227ea57c1285986c4cf78400d0a91615d25b24e257fd9e2969606bdfae/types_requests-2.32.4.20250913-py3-none-any.whl", hash = "sha256:78c9c1fffebbe0fa487a418e0fa5252017e9c60d1a2da394077f1780f655d7e1", size = 20658, upload-time = "2025-09-13T02:40:01.115Z" }, + { url = "https://files.pythonhosted.org/packages/1c/bc/b139710a3b6018f7fb2b9508b35c8af564e61bf2bf4fa619d088f3e16f85/types_requests-2.33.0.20260518-py3-none-any.whl", hash = "sha256:626d697d1adaaff76e2044dc8c5c051d8f21abc157bdfe204a75558076fe0bf0", size = 21391, upload-time = "2026-05-18T06:07:37.044Z" }, ] [[package]] @@ -2132,118 +2308,132 @@ wheels = [ [[package]] name = "tzdata" -version = "2026.1" +version = "2026.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/19/1b9b0e29f30c6d35cb345486df41110984ea67ae69dddbc0e8a100999493/tzdata-2026.2.tar.gz", hash = "sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10", size = 198254, upload-time = "2026-04-24T15:22:08.651Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, + { url = "https://files.pythonhosted.org/packages/ce/e4/dccd7f47c4b64213ac01ef921a1337ee6e30e8c6466046018326977efd95/tzdata-2026.2-py2.py3-none-any.whl", hash = "sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7", size = 349321, upload-time = "2026-04-24T15:22:05.876Z" }, ] [[package]] name = "urllib3" -version = "2.5.0" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } +sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, + { url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" }, ] [[package]] name = "virtualenv" -version = "20.35.4" +version = "21.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, + { name = "python-discovery" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } +sdist = { url = "https://files.pythonhosted.org/packages/15/ba/1f6e8c957e4932be060dcdc482d339c12e0216351478add3645cdaa53c05/virtualenv-21.3.3.tar.gz", hash = "sha256:f5bda277e553b1c2b3c1a8debfc30496e1288cc93ce6b7b71b3280047e317328", size = 7613784, upload-time = "2026-05-13T18:01:30.19Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" }, + { url = "https://files.pythonhosted.org/packages/f4/34/a9dbe051de88a63eb7408ea66630bac38e72f7f6077d4be58737106860d9/virtualenv-21.3.3-py3-none-any.whl", hash = "sha256:7d5987d8369e098e41406efb780a3d4ca79280097293899e351a6407ee153ab3", size = 7594554, upload-time = "2026-05-13T18:01:27.815Z" }, ] [[package]] name = "websockets" -version = "15.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016, upload-time = "2025-03-05T20:03:41.606Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437, upload-time = "2025-03-05T20:02:16.706Z" }, - { url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096, upload-time = "2025-03-05T20:02:18.832Z" }, - { url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332, upload-time = "2025-03-05T20:02:20.187Z" }, - { url = "https://files.pythonhosted.org/packages/a6/02/0073b3952f5bce97eafbb35757f8d0d54812b6174ed8dd952aa08429bcc3/websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215", size = 183152, upload-time = "2025-03-05T20:02:22.286Z" }, - { url = "https://files.pythonhosted.org/packages/74/45/c205c8480eafd114b428284840da0b1be9ffd0e4f87338dc95dc6ff961a1/websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5", size = 182096, upload-time = "2025-03-05T20:02:24.368Z" }, - { url = "https://files.pythonhosted.org/packages/14/8f/aa61f528fba38578ec553c145857a181384c72b98156f858ca5c8e82d9d3/websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65", size = 182523, upload-time = "2025-03-05T20:02:25.669Z" }, - { url = "https://files.pythonhosted.org/packages/ec/6d/0267396610add5bc0d0d3e77f546d4cd287200804fe02323797de77dbce9/websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe", size = 182790, upload-time = "2025-03-05T20:02:26.99Z" }, - { url = "https://files.pythonhosted.org/packages/02/05/c68c5adbf679cf610ae2f74a9b871ae84564462955d991178f95a1ddb7dd/websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4", size = 182165, upload-time = "2025-03-05T20:02:30.291Z" }, - { url = "https://files.pythonhosted.org/packages/29/93/bb672df7b2f5faac89761cb5fa34f5cec45a4026c383a4b5761c6cea5c16/websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597", size = 182160, upload-time = "2025-03-05T20:02:31.634Z" }, - { url = "https://files.pythonhosted.org/packages/ff/83/de1f7709376dc3ca9b7eeb4b9a07b4526b14876b6d372a4dc62312bebee0/websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9", size = 176395, upload-time = "2025-03-05T20:02:33.017Z" }, - { url = "https://files.pythonhosted.org/packages/7d/71/abf2ebc3bbfa40f391ce1428c7168fb20582d0ff57019b69ea20fa698043/websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7", size = 176841, upload-time = "2025-03-05T20:02:34.498Z" }, - { url = "https://files.pythonhosted.org/packages/cb/9f/51f0cf64471a9d2b4d0fc6c534f323b664e7095640c34562f5182e5a7195/websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931", size = 175440, upload-time = "2025-03-05T20:02:36.695Z" }, - { url = "https://files.pythonhosted.org/packages/8a/05/aa116ec9943c718905997412c5989f7ed671bc0188ee2ba89520e8765d7b/websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675", size = 173098, upload-time = "2025-03-05T20:02:37.985Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0b/33cef55ff24f2d92924923c99926dcce78e7bd922d649467f0eda8368923/websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151", size = 173329, upload-time = "2025-03-05T20:02:39.298Z" }, - { url = "https://files.pythonhosted.org/packages/31/1d/063b25dcc01faa8fada1469bdf769de3768b7044eac9d41f734fd7b6ad6d/websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22", size = 183111, upload-time = "2025-03-05T20:02:40.595Z" }, - { url = "https://files.pythonhosted.org/packages/93/53/9a87ee494a51bf63e4ec9241c1ccc4f7c2f45fff85d5bde2ff74fcb68b9e/websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f", size = 182054, upload-time = "2025-03-05T20:02:41.926Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8", size = 182496, upload-time = "2025-03-05T20:02:43.304Z" }, - { url = "https://files.pythonhosted.org/packages/98/41/e7038944ed0abf34c45aa4635ba28136f06052e08fc2168520bb8b25149f/websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375", size = 182829, upload-time = "2025-03-05T20:02:48.812Z" }, - { url = "https://files.pythonhosted.org/packages/e0/17/de15b6158680c7623c6ef0db361da965ab25d813ae54fcfeae2e5b9ef910/websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d", size = 182217, upload-time = "2025-03-05T20:02:50.14Z" }, - { url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195, upload-time = "2025-03-05T20:02:51.561Z" }, - { url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393, upload-time = "2025-03-05T20:02:53.814Z" }, - { url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837, upload-time = "2025-03-05T20:02:55.237Z" }, - { url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743, upload-time = "2025-03-05T20:03:39.41Z" }, +version = "16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, ] [[package]] name = "xxhash" -version = "3.6.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/07/d9412f3d7d462347e4511181dea65e47e0d0e16e26fbee2ea86a2aefb657/xxhash-3.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:01362c4331775398e7bb34e3ab403bc9ee9f7c497bc7dee6272114055277dd3c", size = 32744, upload-time = "2025-10-02T14:34:34.622Z" }, - { url = "https://files.pythonhosted.org/packages/79/35/0429ee11d035fc33abe32dca1b2b69e8c18d236547b9a9b72c1929189b9a/xxhash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b7b2df81a23f8cb99656378e72501b2cb41b1827c0f5a86f87d6b06b69f9f204", size = 30816, upload-time = "2025-10-02T14:34:36.043Z" }, - { url = "https://files.pythonhosted.org/packages/b7/f2/57eb99aa0f7d98624c0932c5b9a170e1806406cdbcdb510546634a1359e0/xxhash-3.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:dc94790144e66b14f67b10ac8ed75b39ca47536bf8800eb7c24b50271ea0c490", size = 194035, upload-time = "2025-10-02T14:34:37.354Z" }, - { url = "https://files.pythonhosted.org/packages/4c/ed/6224ba353690d73af7a3f1c7cdb1fc1b002e38f783cb991ae338e1eb3d79/xxhash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93f107c673bccf0d592cdba077dedaf52fe7f42dcd7676eba1f6d6f0c3efffd2", size = 212914, upload-time = "2025-10-02T14:34:38.6Z" }, - { url = "https://files.pythonhosted.org/packages/38/86/fb6b6130d8dd6b8942cc17ab4d90e223653a89aa32ad2776f8af7064ed13/xxhash-3.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aa5ee3444c25b69813663c9f8067dcfaa2e126dc55e8dddf40f4d1c25d7effa", size = 212163, upload-time = "2025-10-02T14:34:39.872Z" }, - { url = "https://files.pythonhosted.org/packages/ee/dc/e84875682b0593e884ad73b2d40767b5790d417bde603cceb6878901d647/xxhash-3.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f7f99123f0e1194fa59cc69ad46dbae2e07becec5df50a0509a808f90a0f03f0", size = 445411, upload-time = "2025-10-02T14:34:41.569Z" }, - { url = "https://files.pythonhosted.org/packages/11/4f/426f91b96701ec2f37bb2b8cec664eff4f658a11f3fa9d94f0a887ea6d2b/xxhash-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49e03e6fe2cac4a1bc64952dd250cf0dbc5ef4ebb7b8d96bce82e2de163c82a2", size = 193883, upload-time = "2025-10-02T14:34:43.249Z" }, - { url = "https://files.pythonhosted.org/packages/53/5a/ddbb83eee8e28b778eacfc5a85c969673e4023cdeedcfcef61f36731610b/xxhash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bd17fede52a17a4f9a7bc4472a5867cb0b160deeb431795c0e4abe158bc784e9", size = 210392, upload-time = "2025-10-02T14:34:45.042Z" }, - { url = "https://files.pythonhosted.org/packages/1e/c2/ff69efd07c8c074ccdf0a4f36fcdd3d27363665bcdf4ba399abebe643465/xxhash-3.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6fb5f5476bef678f69db04f2bd1efbed3030d2aba305b0fc1773645f187d6a4e", size = 197898, upload-time = "2025-10-02T14:34:46.302Z" }, - { url = "https://files.pythonhosted.org/packages/58/ca/faa05ac19b3b622c7c9317ac3e23954187516298a091eb02c976d0d3dd45/xxhash-3.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:843b52f6d88071f87eba1631b684fcb4b2068cd2180a0224122fe4ef011a9374", size = 210655, upload-time = "2025-10-02T14:34:47.571Z" }, - { url = "https://files.pythonhosted.org/packages/d4/7a/06aa7482345480cc0cb597f5c875b11a82c3953f534394f620b0be2f700c/xxhash-3.6.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7d14a6cfaf03b1b6f5f9790f76880601ccc7896aff7ab9cd8978a939c1eb7e0d", size = 414001, upload-time = "2025-10-02T14:34:49.273Z" }, - { url = "https://files.pythonhosted.org/packages/23/07/63ffb386cd47029aa2916b3d2f454e6cc5b9f5c5ada3790377d5430084e7/xxhash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:418daf3db71e1413cfe211c2f9a528456936645c17f46b5204705581a45390ae", size = 191431, upload-time = "2025-10-02T14:34:50.798Z" }, - { url = "https://files.pythonhosted.org/packages/0f/93/14fde614cadb4ddf5e7cebf8918b7e8fac5ae7861c1875964f17e678205c/xxhash-3.6.0-cp312-cp312-win32.whl", hash = "sha256:50fc255f39428a27299c20e280d6193d8b63b8ef8028995323bf834a026b4fbb", size = 30617, upload-time = "2025-10-02T14:34:51.954Z" }, - { url = "https://files.pythonhosted.org/packages/13/5d/0d125536cbe7565a83d06e43783389ecae0c0f2ed037b48ede185de477c0/xxhash-3.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:c0f2ab8c715630565ab8991b536ecded9416d615538be8ecddce43ccf26cbc7c", size = 31534, upload-time = "2025-10-02T14:34:53.276Z" }, - { url = "https://files.pythonhosted.org/packages/54/85/6ec269b0952ec7e36ba019125982cf11d91256a778c7c3f98a4c5043d283/xxhash-3.6.0-cp312-cp312-win_arm64.whl", hash = "sha256:eae5c13f3bc455a3bbb68bdc513912dc7356de7e2280363ea235f71f54064829", size = 27876, upload-time = "2025-10-02T14:34:54.371Z" }, - { url = "https://files.pythonhosted.org/packages/33/76/35d05267ac82f53ae9b0e554da7c5e281ee61f3cad44c743f0fcd354f211/xxhash-3.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:599e64ba7f67472481ceb6ee80fa3bd828fd61ba59fb11475572cc5ee52b89ec", size = 32738, upload-time = "2025-10-02T14:34:55.839Z" }, - { url = "https://files.pythonhosted.org/packages/31/a8/3fbce1cd96534a95e35d5120637bf29b0d7f5d8fa2f6374e31b4156dd419/xxhash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d8b8aaa30fca4f16f0c84a5c8d7ddee0e25250ec2796c973775373257dde8f1", size = 30821, upload-time = "2025-10-02T14:34:57.219Z" }, - { url = "https://files.pythonhosted.org/packages/0c/ea/d387530ca7ecfa183cb358027f1833297c6ac6098223fd14f9782cd0015c/xxhash-3.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d597acf8506d6e7101a4a44a5e428977a51c0fadbbfd3c39650cca9253f6e5a6", size = 194127, upload-time = "2025-10-02T14:34:59.21Z" }, - { url = "https://files.pythonhosted.org/packages/ba/0c/71435dcb99874b09a43b8d7c54071e600a7481e42b3e3ce1eb5226a5711a/xxhash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:858dc935963a33bc33490128edc1c12b0c14d9c7ebaa4e387a7869ecc4f3e263", size = 212975, upload-time = "2025-10-02T14:35:00.816Z" }, - { url = "https://files.pythonhosted.org/packages/84/7a/c2b3d071e4bb4a90b7057228a99b10d51744878f4a8a6dd643c8bd897620/xxhash-3.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba284920194615cb8edf73bf52236ce2e1664ccd4a38fdb543506413529cc546", size = 212241, upload-time = "2025-10-02T14:35:02.207Z" }, - { url = "https://files.pythonhosted.org/packages/81/5f/640b6eac0128e215f177df99eadcd0f1b7c42c274ab6a394a05059694c5a/xxhash-3.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b54219177f6c6674d5378bd862c6aedf64725f70dd29c472eaae154df1a2e89", size = 445471, upload-time = "2025-10-02T14:35:03.61Z" }, - { url = "https://files.pythonhosted.org/packages/5e/1e/3c3d3ef071b051cc3abbe3721ffb8365033a172613c04af2da89d5548a87/xxhash-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:42c36dd7dbad2f5238950c377fcbf6811b1cdb1c444fab447960030cea60504d", size = 193936, upload-time = "2025-10-02T14:35:05.013Z" }, - { url = "https://files.pythonhosted.org/packages/2c/bd/4a5f68381939219abfe1c22a9e3a5854a4f6f6f3c4983a87d255f21f2e5d/xxhash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f22927652cba98c44639ffdc7aaf35828dccf679b10b31c4ad72a5b530a18eb7", size = 210440, upload-time = "2025-10-02T14:35:06.239Z" }, - { url = "https://files.pythonhosted.org/packages/eb/37/b80fe3d5cfb9faff01a02121a0f4d565eb7237e9e5fc66e73017e74dcd36/xxhash-3.6.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b45fad44d9c5c119e9c6fbf2e1c656a46dc68e280275007bbfd3d572b21426db", size = 197990, upload-time = "2025-10-02T14:35:07.735Z" }, - { url = "https://files.pythonhosted.org/packages/d7/fd/2c0a00c97b9e18f72e1f240ad4e8f8a90fd9d408289ba9c7c495ed7dc05c/xxhash-3.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6f2580ffab1a8b68ef2b901cde7e55fa8da5e4be0977c68f78fc80f3c143de42", size = 210689, upload-time = "2025-10-02T14:35:09.438Z" }, - { url = "https://files.pythonhosted.org/packages/93/86/5dd8076a926b9a95db3206aba20d89a7fc14dd5aac16e5c4de4b56033140/xxhash-3.6.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:40c391dd3cd041ebc3ffe6f2c862f402e306eb571422e0aa918d8070ba31da11", size = 414068, upload-time = "2025-10-02T14:35:11.162Z" }, - { url = "https://files.pythonhosted.org/packages/af/3c/0bb129170ee8f3650f08e993baee550a09593462a5cddd8e44d0011102b1/xxhash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f205badabde7aafd1a31e8ca2a3e5a763107a71c397c4481d6a804eb5063d8bd", size = 191495, upload-time = "2025-10-02T14:35:12.971Z" }, - { url = "https://files.pythonhosted.org/packages/e9/3a/6797e0114c21d1725e2577508e24006fd7ff1d8c0c502d3b52e45c1771d8/xxhash-3.6.0-cp313-cp313-win32.whl", hash = "sha256:2577b276e060b73b73a53042ea5bd5203d3e6347ce0d09f98500f418a9fcf799", size = 30620, upload-time = "2025-10-02T14:35:14.129Z" }, - { url = "https://files.pythonhosted.org/packages/86/15/9bc32671e9a38b413a76d24722a2bf8784a132c043063a8f5152d390b0f9/xxhash-3.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:757320d45d2fbcce8f30c42a6b2f47862967aea7bf458b9625b4bbe7ee390392", size = 31542, upload-time = "2025-10-02T14:35:15.21Z" }, - { url = "https://files.pythonhosted.org/packages/39/c5/cc01e4f6188656e56112d6a8e0dfe298a16934b8c47a247236549a3f7695/xxhash-3.6.0-cp313-cp313-win_arm64.whl", hash = "sha256:457b8f85dec5825eed7b69c11ae86834a018b8e3df5e77783c999663da2f96d6", size = 27880, upload-time = "2025-10-02T14:35:16.315Z" }, - { url = "https://files.pythonhosted.org/packages/f3/30/25e5321c8732759e930c555176d37e24ab84365482d257c3b16362235212/xxhash-3.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a42e633d75cdad6d625434e3468126c73f13f7584545a9cf34e883aa1710e702", size = 32956, upload-time = "2025-10-02T14:35:17.413Z" }, - { url = "https://files.pythonhosted.org/packages/9f/3c/0573299560d7d9f8ab1838f1efc021a280b5ae5ae2e849034ef3dee18810/xxhash-3.6.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:568a6d743219e717b07b4e03b0a828ce593833e498c3b64752e0f5df6bfe84db", size = 31072, upload-time = "2025-10-02T14:35:18.844Z" }, - { url = "https://files.pythonhosted.org/packages/7a/1c/52d83a06e417cd9d4137722693424885cc9878249beb3a7c829e74bf7ce9/xxhash-3.6.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:bec91b562d8012dae276af8025a55811b875baace6af510412a5e58e3121bc54", size = 196409, upload-time = "2025-10-02T14:35:20.31Z" }, - { url = "https://files.pythonhosted.org/packages/e3/8e/c6d158d12a79bbd0b878f8355432075fc82759e356ab5a111463422a239b/xxhash-3.6.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78e7f2f4c521c30ad5e786fdd6bae89d47a32672a80195467b5de0480aa97b1f", size = 215736, upload-time = "2025-10-02T14:35:21.616Z" }, - { url = "https://files.pythonhosted.org/packages/bc/68/c4c80614716345d55071a396cf03d06e34b5f4917a467faf43083c995155/xxhash-3.6.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3ed0df1b11a79856df5ffcab572cbd6b9627034c1c748c5566fa79df9048a7c5", size = 214833, upload-time = "2025-10-02T14:35:23.32Z" }, - { url = "https://files.pythonhosted.org/packages/7e/e9/ae27c8ffec8b953efa84c7c4a6c6802c263d587b9fc0d6e7cea64e08c3af/xxhash-3.6.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0e4edbfc7d420925b0dd5e792478ed393d6e75ff8fc219a6546fb446b6a417b1", size = 448348, upload-time = "2025-10-02T14:35:25.111Z" }, - { url = "https://files.pythonhosted.org/packages/d7/6b/33e21afb1b5b3f46b74b6bd1913639066af218d704cc0941404ca717fc57/xxhash-3.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fba27a198363a7ef87f8c0f6b171ec36b674fe9053742c58dd7e3201c1ab30ee", size = 196070, upload-time = "2025-10-02T14:35:26.586Z" }, - { url = "https://files.pythonhosted.org/packages/96/b6/fcabd337bc5fa624e7203aa0fa7d0c49eed22f72e93229431752bddc83d9/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:794fe9145fe60191c6532fa95063765529770edcdd67b3d537793e8004cabbfd", size = 212907, upload-time = "2025-10-02T14:35:28.087Z" }, - { url = "https://files.pythonhosted.org/packages/4b/d3/9ee6160e644d660fcf176c5825e61411c7f62648728f69c79ba237250143/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:6105ef7e62b5ac73a837778efc331a591d8442f8ef5c7e102376506cb4ae2729", size = 200839, upload-time = "2025-10-02T14:35:29.857Z" }, - { url = "https://files.pythonhosted.org/packages/0d/98/e8de5baa5109394baf5118f5e72ab21a86387c4f89b0e77ef3e2f6b0327b/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f01375c0e55395b814a679b3eea205db7919ac2af213f4a6682e01220e5fe292", size = 213304, upload-time = "2025-10-02T14:35:31.222Z" }, - { url = "https://files.pythonhosted.org/packages/7b/1d/71056535dec5c3177eeb53e38e3d367dd1d16e024e63b1cee208d572a033/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d706dca2d24d834a4661619dcacf51a75c16d65985718d6a7d73c1eeeb903ddf", size = 416930, upload-time = "2025-10-02T14:35:32.517Z" }, - { url = "https://files.pythonhosted.org/packages/dc/6c/5cbde9de2cd967c322e651c65c543700b19e7ae3e0aae8ece3469bf9683d/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f059d9faeacd49c0215d66f4056e1326c80503f51a1532ca336a385edadd033", size = 193787, upload-time = "2025-10-02T14:35:33.827Z" }, - { url = "https://files.pythonhosted.org/packages/19/fa/0172e350361d61febcea941b0cc541d6e6c8d65d153e85f850a7b256ff8a/xxhash-3.6.0-cp313-cp313t-win32.whl", hash = "sha256:1244460adc3a9be84731d72b8e80625788e5815b68da3da8b83f78115a40a7ec", size = 30916, upload-time = "2025-10-02T14:35:35.107Z" }, - { url = "https://files.pythonhosted.org/packages/ad/e6/e8cf858a2b19d6d45820f072eff1bea413910592ff17157cabc5f1227a16/xxhash-3.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b1e420ef35c503869c4064f4a2f2b08ad6431ab7b229a05cce39d74268bca6b8", size = 31799, upload-time = "2025-10-02T14:35:36.165Z" }, - { url = "https://files.pythonhosted.org/packages/56/15/064b197e855bfb7b343210e82490ae672f8bc7cdf3ddb02e92f64304ee8a/xxhash-3.6.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ec44b73a4220623235f67a996c862049f375df3b1052d9899f40a6382c32d746", size = 28044, upload-time = "2025-10-02T14:35:37.195Z" }, +version = "3.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/24/2f/e183a1b407002f5af81822bee18b61cdb94b8670208ef34734d8d2b8ebe9/xxhash-3.7.0.tar.gz", hash = "sha256:6cc4eefbb542a5d6ffd6d70ea9c502957c925e800f998c5630ecc809d6702bae", size = 82022, upload-time = "2026-04-25T11:10:32.553Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/8a/51a14cdef4728c6c2337db8a7d8704422cc65676d9199d77215464c880af/xxhash-3.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:082c87bfdd2b9f457606c7a4a53457f4c4b48b0cdc48de0277f4349d79bb3d7a", size = 33357, upload-time = "2026-04-25T11:06:20.44Z" }, + { url = "https://files.pythonhosted.org/packages/b9/1b/0c2c933809421ffd9bf42b59315552c143c755db5d9a816b2f1ae273e884/xxhash-3.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5e7ce913b61f35b0c1c839a49ac9c8e75dd8d860150688aed353b0ce1bf409d8", size = 30869, upload-time = "2026-04-25T11:06:21.989Z" }, + { url = "https://files.pythonhosted.org/packages/03/a8/89d5fdd6ee12d70ba99451de46dd0e8010167468dcd913ec855653f4dd50/xxhash-3.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3beb1de3b1e9694fcdd853e570ee64c631c7062435d2f8c69c1adf809bc086f0", size = 194100, upload-time = "2026-04-25T11:06:23.586Z" }, + { url = "https://files.pythonhosted.org/packages/87/ee/2f9f2ed993e77206d1e66991290a1ebe22e843351ca3ebec8e49e01ba186/xxhash-3.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3e7b689c3bce16699efcf736066f5c6cc4472c3840fe4b22bd8279daf4abdac", size = 212977, upload-time = "2026-04-25T11:06:25.019Z" }, + { url = "https://files.pythonhosted.org/packages/de/60/5a91644615a9e9d4e42c2e9925f1908e3a24e4e691d9de7340d565bea024/xxhash-3.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a6545e6b409e3d5cbafc850fb84c55a1ca26ed15a6b11e3bf07a0e0cd84517c8", size = 236373, upload-time = "2026-04-25T11:06:26.482Z" }, + { url = "https://files.pythonhosted.org/packages/22/c0/f3a9384eaaed9d14d4d062a5d953aa0da489bfe9747877aa994caa87cd0b/xxhash-3.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:31ab1461c77a11461d703c88eb949e132a1c6515933cf675d97ec680f4bd18de", size = 212229, upload-time = "2026-04-25T11:06:28.065Z" }, + { url = "https://files.pythonhosted.org/packages/2e/67/02f07a9fd79726804190f2172c4894c3ed9a4ebccaca05653c84beb58025/xxhash-3.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7c4d596b7676f811172687ec567cbafb9e4dea2f9be1bbb4f622410cb7f40f40", size = 445462, upload-time = "2026-04-25T11:06:30.048Z" }, + { url = "https://files.pythonhosted.org/packages/40/37/558f5a90c0672fc9b4402dc25d87ac5b7406616e8969430c9ca4e52ee74d/xxhash-3.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13805f0461cba0a857924e70ff91ae6d52d2598f79a884e788db80532614a4a1", size = 193932, upload-time = "2026-04-25T11:06:31.857Z" }, + { url = "https://files.pythonhosted.org/packages/d5/90/aaa09cd58661d32044dbbad7df55bbe22a623032b810e7ed3b8c569a2a6f/xxhash-3.7.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1d398f372496152f1c6933a33566373f8d1b37b98b8c9d608fa6edc0976f23b2", size = 284807, upload-time = "2026-04-25T11:06:33.697Z" }, + { url = "https://files.pythonhosted.org/packages/d6/f3/53df3719ab127a02c174f0c1c74924fcd110866e89c966bc7909cfa8fa84/xxhash-3.7.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d610aa62cdb7d4d497740741772a24a794903bf3e79eaa51d2e800082abe11e5", size = 210445, upload-time = "2026-04-25T11:06:35.488Z" }, + { url = "https://files.pythonhosted.org/packages/72/33/d219975c0e8b6fa2eb9ccd486fe47e21bf1847985b878dd2fbc3126e0d5c/xxhash-3.7.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:073c23900a9fbf3d26616c17c830db28af9803677cd5b33aea3224d824111514", size = 241273, upload-time = "2026-04-25T11:06:37.24Z" }, + { url = "https://files.pythonhosted.org/packages/3e/50/49b1afe610eb3964cedcb90a4d4c3d46a261ee8669cbd4f060652619ae3c/xxhash-3.7.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:418a463c3e6a590c0cdc890f8be19adb44a8c8acd175ca5b2a6de77e61d0b386", size = 197950, upload-time = "2026-04-25T11:06:39.148Z" }, + { url = "https://files.pythonhosted.org/packages/c6/75/5f42a1a4c78717d906a4b6a140c6dbf837ab1f547a54d23c4e2903310936/xxhash-3.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:03f8ff4474ee61c845758ce00711d7087a770d77efb36f7e74a6e867301000b8", size = 210709, upload-time = "2026-04-25T11:06:40.958Z" }, + { url = "https://files.pythonhosted.org/packages/8a/85/237e446c25abced71e9c53d269f2cef5bab8a82b3f88a12e00c5368e7368/xxhash-3.7.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:44fba4a5f1d179b7ddc7b3dc40f56f9209046421679b57025d4d8821b376fd8d", size = 275345, upload-time = "2026-04-25T11:06:42.525Z" }, + { url = "https://files.pythonhosted.org/packages/62/34/c2c26c0a6a9cc739bc2a5f0ae03ba8b87deb12b8bce35f7ac495e790dc6d/xxhash-3.7.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31e3516a0f829d06ded4a2c0f3c7c5561993256bfa1c493975fb9dc7bfa828a1", size = 414056, upload-time = "2026-04-25T11:06:44.343Z" }, + { url = "https://files.pythonhosted.org/packages/a0/aa/5c58e9bc8071b8afd8dcf297ff362f723c4892168faba149f19904132bf4/xxhash-3.7.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b59ee2ac81de57771a09ecad09191e840a1d2fae1ef684208320591055768f83", size = 191485, upload-time = "2026-04-25T11:06:46.262Z" }, + { url = "https://files.pythonhosted.org/packages/d4/69/a929cf9d1e2e65a48b818cdce72cb6b69eab2e6877f21436d0a1942aff43/xxhash-3.7.0-cp312-cp312-win32.whl", hash = "sha256:74bbd92f8c7fcc397ba0a11bfdc106bc72ad7f11e3a60277753f87e7532b4d81", size = 30671, upload-time = "2026-04-25T11:06:48.039Z" }, + { url = "https://files.pythonhosted.org/packages/b9/1b/104b41a8947f4e1d4a66ce1e628eea752f37d1890bfd7453559ca7a3d950/xxhash-3.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:7bd7bc82dd4f185f28f35193c2e968ef46131628e3cac62f639dadf321cba4d1", size = 31514, upload-time = "2026-04-25T11:06:49.279Z" }, + { url = "https://files.pythonhosted.org/packages/98/a0/1fd0ea1f1b886d9e7c73f0397571e22333a7d79e31da6d7127c2a4a71d75/xxhash-3.7.0-cp312-cp312-win_arm64.whl", hash = "sha256:7d7148180ec99ba36585b42c8c5de25e9b40191613bc4be68909b4d25a77a852", size = 27761, upload-time = "2026-04-25T11:06:50.448Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ca/d5174b4c36d10f64d4ca7050563138c5a599efb01a765858ddefc9c1202a/xxhash-3.7.0-cp313-cp313-android_21_arm64_v8a.whl", hash = "sha256:4b6d6b33f141158692bd4eafbb96edbc5aa0dabdb593a962db01a91983d4f8fa", size = 36813, upload-time = "2026-04-25T11:06:51.73Z" }, + { url = "https://files.pythonhosted.org/packages/41/d0/abc6c9d347ba1f1e1e1d98125d0881a0452c7f9a76a9dd03a7b5d2197f23/xxhash-3.7.0-cp313-cp313-android_21_x86_64.whl", hash = "sha256:845d347df254d6c619f616afa921331bada8614b8d373d58725c663ba97c3605", size = 35121, upload-time = "2026-04-25T11:06:53.048Z" }, + { url = "https://files.pythonhosted.org/packages/bf/11/4cc834eb3d79f2f2b3a6ef7324195208bcdfbdcf7534d2b17267aa5f3a8f/xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:fddbbb69a6fff4f421e7a0d1fa28f894b20112e9e3fab306af451e2dfd0e459b", size = 29624, upload-time = "2026-04-25T11:06:54.311Z" }, + { url = "https://files.pythonhosted.org/packages/23/83/e97d3e7b635fe73a1dfb1e91f805324dd6d930bb42041cbf18f183bc0b6d/xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:54876a4e45101cec2bf8f31a973cda073a23e2e108538dad224ba07f85f22487", size = 30638, upload-time = "2026-04-25T11:06:55.864Z" }, + { url = "https://files.pythonhosted.org/packages/f4/40/d84951d80c35db1f4c40a29a64a8520eea5d56e764c603906b4fe763580f/xxhash-3.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:0c72fe9c7e3d6dfd7f1e21e224a877917fa09c465694ba4e06464b9511b65544", size = 33323, upload-time = "2026-04-25T11:06:57.336Z" }, + { url = "https://files.pythonhosted.org/packages/89/cc/c7dc6558d97e9ab023f663d69ab28b340ed9bf4d2d94f2c259cf896bb354/xxhash-3.7.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a6d73a830b17ef49bc04e00182bd839164c1b3c59c127cd7c54fcb10c7ed8ee8", size = 33362, upload-time = "2026-04-25T11:06:58.656Z" }, + { url = "https://files.pythonhosted.org/packages/2a/6e/46b84017b1301d54091430353d4ad5901654a3e0871649877a416f7f1644/xxhash-3.7.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:91c3b07cf3362086d8f126c6aecd8e5e9396ad8b2f2219ea7e49a8250c318acd", size = 30874, upload-time = "2026-04-25T11:06:59.834Z" }, + { url = "https://files.pythonhosted.org/packages/df/5e/8f9158e3ab906ad3fec51e09b5ea0093e769f12207bfa42a368ca204e7ab/xxhash-3.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:50e879ebbac351c81565ca108db766d7832f5b8b6a5b14b8c0151f7190028e3d", size = 194185, upload-time = "2026-04-25T11:07:01.658Z" }, + { url = "https://files.pythonhosted.org/packages/f3/29/a804ded9f5d3d3758292678d23e7528b08fda7b7e750688d08b052322475/xxhash-3.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:921c14e93817842dd0dd9f372890a0f0c72e534650b6ab13c5be5cd0db11d47e", size = 213033, upload-time = "2026-04-25T11:07:03.606Z" }, + { url = "https://files.pythonhosted.org/packages/8b/91/1ce5a7d2fdc975267320e2c78fc1cecfe7ab735ccbcf6993ec5dd541cb2c/xxhash-3.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e64a7c9d7dfca3e0fafcbc5e455519090706a3e36e95d655cec3e04e79f95aaa", size = 236140, upload-time = "2026-04-25T11:07:05.396Z" }, + { url = "https://files.pythonhosted.org/packages/34/04/fd595a4fd8617b05fa27bd9b684ecb4985bfed27917848eea85d54036d06/xxhash-3.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2220af08163baf5fa36c2b8af079dc2cbe6e66ae061385267f9472362dfd53c6", size = 212291, upload-time = "2026-04-25T11:07:06.966Z" }, + { url = "https://files.pythonhosted.org/packages/03/fb/f1a379cbc372ae5b9f4ab36154c48a849ca6ebe3ac477067a57865bf3bc6/xxhash-3.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f14bb8b22a4a91325813e3d553b8963c10cf8c756cff65ee50c194431296c655", size = 445532, upload-time = "2026-04-25T11:07:08.525Z" }, + { url = "https://files.pythonhosted.org/packages/65/59/172424b79f8cfd4b6d8a122b2193e6b8ad4b11f7159bb3b6f9b3191329bb/xxhash-3.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:496736f86a9bedaf64b0dc70e3539d0766df01c71ea22032698e88f3f04a1ce9", size = 193990, upload-time = "2026-04-25T11:07:10.315Z" }, + { url = "https://files.pythonhosted.org/packages/b9/19/aeac22161d953f139f07ba5586cb4a17c5b7b6dff985122803bb12933500/xxhash-3.7.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0ff71596bd79816975b3de7130ab1ff4541410285a3c084584eeb1c8239996fd", size = 284876, upload-time = "2026-04-25T11:07:12.15Z" }, + { url = "https://files.pythonhosted.org/packages/77/d5/4fd0b59e7a02242953da05ff679fbb961b0a4368eac97a217e11dae110c1/xxhash-3.7.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1ad86695c19b1d46fe106925db3c7a37f16be37669dcf58dcc70a9dd6e324676", size = 210495, upload-time = "2026-04-25T11:07:13.952Z" }, + { url = "https://files.pythonhosted.org/packages/aa/fb/976a3165c728c7faf74aa1b5ab3cf6a85e6d731612894741840524c7d28c/xxhash-3.7.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:970f9f8c50961d639cbd0d988c96f80ddf66006de93641719282c4fe7a87c5e6", size = 241331, upload-time = "2026-04-25T11:07:15.557Z" }, + { url = "https://files.pythonhosted.org/packages/4a/2c/6763d5901d53ac9e6ba296e5717ae599025c9d268396e8faa8b4b0a8e0ac/xxhash-3.7.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5886ad85e9e347911783760a1d16cb6b393e8f9e3b52c982568226cb56927bdc", size = 198037, upload-time = "2026-04-25T11:07:17.563Z" }, + { url = "https://files.pythonhosted.org/packages/61/2b/876e722d533833f5f9a83473e6ba993e48745701096944e77bbecf29b2c3/xxhash-3.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6e934bbae1e0ec74e27d5f0d7f37ef547ce5ff9f0a7e63fb39e559fc99526734", size = 210744, upload-time = "2026-04-25T11:07:19.055Z" }, + { url = "https://files.pythonhosted.org/packages/21/e6/d7e7baef7ce24166b4668d3c48557bb35a23b92ecadcac7e7718d099ab69/xxhash-3.7.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:3b6b3d28228af044ebcded71c4a3dd86e1dbd7e2f4645bf40f7b5da65bb5fb5a", size = 275406, upload-time = "2026-04-25T11:07:20.908Z" }, + { url = "https://files.pythonhosted.org/packages/92/fe/198b3763b2e01ca908f2154969a2352ec99bda892b574a11a9a151c5ede4/xxhash-3.7.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:6be4d70d9ab76c9f324ead9c01af6ff52c324745ea0c3731682a0cf99720f1fe", size = 414125, upload-time = "2026-04-25T11:07:23.037Z" }, + { url = "https://files.pythonhosted.org/packages/3a/6d/019a11affd5a5499137cacca53808659964785439855b5aa40dfd3412916/xxhash-3.7.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:151d7520838d4465461a0b7f4ae488b3b00de16183dd3214c1a6b14bf89d7fb6", size = 191555, upload-time = "2026-04-25T11:07:24.991Z" }, + { url = "https://files.pythonhosted.org/packages/76/21/b96d58568df2d01533244c3e0e5cbdd0c8b2b25c4bec4d72f19259a292d7/xxhash-3.7.0-cp313-cp313-win32.whl", hash = "sha256:d798c1e291bffb8e37b5bbe0dda77fc767cd19e89cadaf66e6ed5d0ff88c9fe6", size = 30668, upload-time = "2026-04-25T11:07:26.665Z" }, + { url = "https://files.pythonhosted.org/packages/99/57/d849a8d3afa1f8f4bc6a831cd89f49f9706fbbad94d2975d6140a171988c/xxhash-3.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:875811ba23c543b1a1c3143c926e43996eb27ebb8f52d3500744aa608c275aed", size = 31524, upload-time = "2026-04-25T11:07:27.92Z" }, + { url = "https://files.pythonhosted.org/packages/81/52/bacc753e92dee78b058af8dcef0a50815f5f860986c664a92d75f965b6a5/xxhash-3.7.0-cp313-cp313-win_arm64.whl", hash = "sha256:54a675cb300dda83d71daae2a599389d22db8021a0f8db0dd659e14626eb3ecc", size = 27768, upload-time = "2026-04-25T11:07:29.113Z" }, + { url = "https://files.pythonhosted.org/packages/1c/47/ddbd683b7fc7e592c1a8d9d65f73ce9ab513f082b3967eee2baf549b8fc6/xxhash-3.7.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a3b19a42111c4057c1547a4a1396a53961dca576a0f6b82bfa88a2d1561764b2", size = 33576, upload-time = "2026-04-25T11:07:30.469Z" }, + { url = "https://files.pythonhosted.org/packages/07/f2/36d3310161db7f72efb4562aadde0ed429f1d0531782dd6345b12d2da527/xxhash-3.7.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8f4608a06e4d61b7a3425665a46d00e0579122e1a2fae97a0c52953a3aad9aa3", size = 31123, upload-time = "2026-04-25T11:07:31.989Z" }, + { url = "https://files.pythonhosted.org/packages/0d/3f/75937a5c69556ed213021e43cbedd84c8e0279d0d74e7d41a255d84ba4b1/xxhash-3.7.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ad37c7792479e49cf96c1ab25517d7003fe0d93687a772ba19a097d235bbe41e", size = 196491, upload-time = "2026-04-25T11:07:33.358Z" }, + { url = "https://files.pythonhosted.org/packages/22/29/f10d7ff8c7a733d4403a43b9de18c8fabc005f98cec054644f04418659ee/xxhash-3.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dc026e3b89d98e30a8288c95cb696e77d150b3f0fb7a51f73dcd49ee6b5577fa", size = 215793, upload-time = "2026-04-25T11:07:34.919Z" }, + { url = "https://files.pythonhosted.org/packages/8b/fd/778f60aa295f58907938f030a8b514611f391405614a525cccd2ffc00eb5/xxhash-3.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c9b31ab1f28b078a6a1ac1a54eb35e7d5390deddd56870d0be3a0a733d1c321c", size = 237993, upload-time = "2026-04-25T11:07:36.638Z" }, + { url = "https://files.pythonhosted.org/packages/70/f5/736db5de387b4a540e37a05b84b40dc58a1ce974bfd2b4e5754ce29b68c3/xxhash-3.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3bb5fd680c038fd5229e44e9c493782f90df9bef632fd0499d442374688ff70b", size = 214887, upload-time = "2026-04-25T11:07:38.564Z" }, + { url = "https://files.pythonhosted.org/packages/4d/aa/09a095f22fdb9a27fbb716841fbff52119721f9ca4261952d07a912f7839/xxhash-3.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:030c0fd688fce3569fbb49a2feefd4110cbb0b650186fb4610759ecfac677548", size = 448407, upload-time = "2026-04-25T11:07:40.552Z" }, + { url = "https://files.pythonhosted.org/packages/74/8a/b745efeeca9e34a91c26fdc97ad8514c43d5a81ac78565cba80a1353870a/xxhash-3.7.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5b1bde10324f4c31812ae0d0502e92d916ae8917cad7209353f122b8b8f610c3", size = 196119, upload-time = "2026-04-25T11:07:42.101Z" }, + { url = "https://files.pythonhosted.org/packages/8a/5c/0cfceb024af90c191f665c7933b1f318ee234f4797858383bebd1881d52f/xxhash-3.7.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:503722d52a615f2604f5e7611de7d43878df010dc0053094ef91cb9a9ac3d987", size = 286751, upload-time = "2026-04-25T11:07:43.568Z" }, + { url = "https://files.pythonhosted.org/packages/0b/0a/0793e405dc3cf8f4ebe2c1acec1e4e4608cd9e7e50ea691dabbc2a95ccbb/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c72500a3b6d6c30ebfc135035bcace9eb5884f2dc220804efcaaba43e9f611dd", size = 212961, upload-time = "2026-04-25T11:07:45.388Z" }, + { url = "https://files.pythonhosted.org/packages/0c/7e/721118ffc63bfff94aa565bcf2555a820f9f4bdb0f001e0d609bdfad70de/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:43475925a766d01ca8cd9a857fd87f3d50406983c8506a4c07c4df12adcc867f", size = 243703, upload-time = "2026-04-25T11:07:47.053Z" }, + { url = "https://files.pythonhosted.org/packages/6e/18/16f6267160488b8276fd3d449d425712512add292ba545c1b6946bfdb7dd/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8d09dfd2ab135b985daf868b594315ebe11ad86cd9fea46e6c69f19b28f7d25a", size = 200894, upload-time = "2026-04-25T11:07:48.657Z" }, + { url = "https://files.pythonhosted.org/packages/2d/94/80ba841287fd97e3e9cac1d228788c8ef623746f570404961eec748ecb5c/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c50269d0055ac1faecfd559886d2cbe4b730de236585aba0e873f9d9dadbe585", size = 213357, upload-time = "2026-04-25T11:07:50.257Z" }, + { url = "https://files.pythonhosted.org/packages/a1/7e/106d4067130c59f1e18a55ffadcd876d8c68534883a1e02685b29d3d8153/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:1910df4756a5ab58cfad8744fc2d0f23926e3efcc346ee76e87b974abab922f4", size = 277600, upload-time = "2026-04-25T11:07:51.745Z" }, + { url = "https://files.pythonhosted.org/packages/c5/86/a081dd30da71d720b2612a792bfd55e45fa9a07ac76a0507f60487473c25/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d006faf3b491957efcb433489be3c149efe4787b7063d5cddb8ddaefdc60e0c1", size = 416980, upload-time = "2026-04-25T11:07:53.504Z" }, + { url = "https://files.pythonhosted.org/packages/35/29/1a95221a029a3c1293773869e1ab47b07cbbdd82444a42809e8c60156626/xxhash-3.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:abb65b4e947e958f7b3b0d71db3ce447d1bc5f37f5eab871ce7223bda8768a04", size = 193840, upload-time = "2026-04-25T11:07:55.103Z" }, + { url = "https://files.pythonhosted.org/packages/c5/e0/db909dd0823285de2286f67e10ee4d81e96ad35d7d8e964ecb07fccd8af9/xxhash-3.7.0-cp313-cp313t-win32.whl", hash = "sha256:178959906cb1716a1ce08e0d69c82886c70a15a6f2790fc084fdd146ca30cd49", size = 30966, upload-time = "2026-04-25T11:07:56.524Z" }, + { url = "https://files.pythonhosted.org/packages/7b/ff/d705b15b22f21ee106adce239cb65d35067a158c630b240270f09b17c2e6/xxhash-3.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2524a1e20d4c231d13b50f7cf39e44265b055669a64a7a4b9a2a44faa03f19b6", size = 31784, upload-time = "2026-04-25T11:07:57.758Z" }, + { url = "https://files.pythonhosted.org/packages/a2/1f/b2cf83c3638fd0588e0b17f22e5a9400bdfb1a3e3755324ac0aee2250b88/xxhash-3.7.0-cp313-cp313t-win_arm64.whl", hash = "sha256:37d994d0ffe81ef087bb330d392caa809bb5853c77e22ea3f71db024a0543dba", size = 27932, upload-time = "2026-04-25T11:07:59.109Z" }, ] [[package]] From d6a5d2620a1ad0686375b9e6b5a444596b3ded13 Mon Sep 17 00:00:00 2001 From: David Corney Date: Mon, 18 May 2026 16:00:17 +0000 Subject: [PATCH 08/11] feat: Restructuring code, from /scripts to /src --- .../encoder_experiment/finetune_encoder.py | 101 +- .../labelled_sentences.jsonl | 3842 ----------------- .../local_models}/label_sentences.py | 4 +- .../local_models}/local_answerer.py | 5 +- .../local_models}/questions.py | 0 5 files changed, 31 insertions(+), 3921 deletions(-) delete mode 100644 scripts/encoder_experiment/labelled_sentences.jsonl rename {scripts/encoder_experiment => src/local_models}/label_sentences.py (99%) rename {scripts/encoder_experiment => src/local_models}/local_answerer.py (94%) rename {scripts/encoder_experiment => src/local_models}/questions.py (100%) diff --git a/scripts/encoder_experiment/finetune_encoder.py b/scripts/encoder_experiment/finetune_encoder.py index de6903b..025bceb 100644 --- a/scripts/encoder_experiment/finetune_encoder.py +++ b/scripts/encoder_experiment/finetune_encoder.py @@ -14,22 +14,24 @@ or pip install "transformers>=4.40" datasets torch accelerate scikit-learn -Usage: - python scripts/encoder_experiment/finetune_encoder.py \\ - --input scripts/encoder_experiment/labelled_sentences.jsonl \\ - --output-dir scripts/encoder_experiment/results """ -import argparse import csv import json import logging +import os import time -from dataclasses import dataclass, field +from dataclasses import dataclass from pathlib import Path +import datasets # noqa: F401 import numpy as np +# import transformers # noqa: F401 +from transformers import AutoTokenizer + +from local_models.questions import QUESTIONS + logger = logging.getLogger(__name__) @@ -232,6 +234,8 @@ def train_one_model( TrainingArguments, ) + """Train an encoder model to answer true/false questions""" + checkpoint_dir = output_dir / model_key / question_label checkpoint_dir.mkdir(parents=True, exist_ok=True) @@ -284,17 +288,16 @@ def auto_detect_device() -> str: return "cpu" -def run_experiment( +def train_all_models( question_datasets: list[QuestionDataset], output_dir: Path, epochs: int, batch_size: int, lr: float, save_checkpoints: bool, - questions: list[str], csv_path: Path, ) -> list[ModelResult]: - from transformers import AutoTokenizer + """For each question, load the annotated dataset then train a local transformer model""" results: list[ModelResult] = [] @@ -319,7 +322,7 @@ def run_experiment( train_ds = tokenise_dataset(train_qd, tokenizer) test_ds = tokenise_dataset(test_qd, tokenizer) - + print(f"Training q {q_idx} ") try: metrics, elapsed = train_one_model( model_key=model_key, @@ -432,63 +435,15 @@ def print_summary_table(results: list[ModelResult]) -> None: print("=" * 70 + "\n") -def parse_args() -> argparse.Namespace: - parser = argparse.ArgumentParser(description=__doc__) - parser.add_argument( - "--input", - default="scripts/encoder_experiment/labelled_sentences.jsonl", - help="Path to labelled JSONL from label_sentences.py", - ) - parser.add_argument( - "--output-dir", - default="scripts/encoder_experiment/results", - help="Directory for model checkpoints and results CSV", - ) - parser.add_argument( - "--epochs", type=int, default=3, help="Training epochs (default: 3)" - ) - parser.add_argument( - "--batch-size", - type=int, - default=16, - help="Per-device batch size (default: 16)", - ) - parser.add_argument( - "--lr", - type=float, - default=2e-5, - help="Learning rate (default: 2e-5)", - ) - parser.add_argument( - "--no-save", - action="store_true", - help="Skip saving model checkpoints", - ) - parser.add_argument( - "--device", - default=None, - help="Device override: 'cpu', 'cuda', 'mps' (default: auto-detect)", - ) - return parser.parse_args() - - def main() -> None: - # Defer heavy imports to here so --help works without torch installed - try: - import datasets # noqa: F401 - import torch - import transformers # noqa: F401 - except ImportError as e: - logger.error( - "Missing dependency: %s\n" - "Install with: pip install 'transformers>=4.40' datasets torch accelerate scikit-learn", - e, - ) - raise SystemExit(1) - args = parse_args() - input_path = Path(args.input) - output_dir = Path(args.output_dir) + input_path = Path("data/local_models/labelled_sentences.jsonl") + output_dir = Path("data/local_models/models") + epochs = 3 + batch_size = 16 + lr = 2e-5 + save_checkpoints = True + output_dir.mkdir(parents=True, exist_ok=True) setup_logging(output_dir) @@ -496,29 +451,25 @@ def main() -> None: logger.error("Input file not found: %s", input_path) raise SystemExit(1) - device = args.device or auto_detect_device() + device = auto_detect_device() logger.info("Using device: %s", device) if device != "cpu": - import os os.environ.setdefault("CUDA_VISIBLE_DEVICES", "0") - from questions import QUESTIONS - records = load_labelled_data(input_path) question_datasets = build_question_datasets(records, QUESTIONS) csv_path = output_dir / "results.csv" init_results_csv(csv_path) - results = run_experiment( + results = train_all_models( question_datasets=question_datasets, output_dir=output_dir, - epochs=args.epochs, - batch_size=args.batch_size, - lr=args.lr, - save_checkpoints=not args.no_save, - questions=QUESTIONS, + epochs=epochs, + batch_size=batch_size, + lr=lr, + save_checkpoints=save_checkpoints, csv_path=csv_path, ) diff --git a/scripts/encoder_experiment/labelled_sentences.jsonl b/scripts/encoder_experiment/labelled_sentences.jsonl deleted file mode 100644 index 62a630d..0000000 --- a/scripts/encoder_experiment/labelled_sentences.jsonl +++ /dev/null @@ -1,3842 +0,0 @@ -{"sentence_text": "A third of people who are eligible don't take their tests, according to the charity Bowel Cancer UK.", "score": 5.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than a third of people in Wales' poorest areas struggle to get hold of healthy food, according to a new report.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New research has revealed Wales has the lowest uptake of the UK nation's for bowel cancer screening.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Equality and Social Justice Committee says urgent action is needed to help the 37% of people in Wales' most deprived communities who are food insecure - meaning they lack quality, variety, or enough food in their diet.", "score": 5.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's claimed Wales has the lowest uptake of bowel cancer screening out of all of the UK nations.", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, we, we conducted some research after the 2022 local government elections in Wales and found that around 48% of candidates felt that they'd experienced some kind of threat, abuse, intimidation at those elections.", "score": 5.09725, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, we've reported on the topic of bowel cancer a number of times, our listeners will be aware it's the fourth most common cancer in the UK, the second biggest killer.", "score": 4.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Senedd Committee found a \"shameful\" number of families in Wales are unable to afford healthy food.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So I think really the message for everyone is, if you get that test through the door and anybody over the age of 50 should get one every two years, just do it because bowel cancer is actually, it's treatable, it's curable, it's preventable even, and that test can help, help bowel cancers be prevented.", "score": 4.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "They'll probably be ruling bowel cancer out because lots of other things can cause those symptoms, but if it is bowel cancer, the sooner you're diagnosed, the better.", "score": 4.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And yet I was I was struck whilst preparing this morning, Genevieve for this interview that one in four a diagnosed with bowel cancer at any any any, it gets to that point where their symptoms manifest and that's where their diagnosis comes at that point of crisis.", "score": 4.722555, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The funding comes from £3.8m allocated to Wales by the UK Government earlier this month.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The expected final cost of the South Wales Metro soars to £1.3bn", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Transport for Wales chief executive James Price told a recent meeting of the Senedd's Climate Change, Environment and Infrastructure Committee that the project had seen around another £150m added (to the £1.1bn forecast).", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since 2022 more than 230,000 people across Wales have also received energy top-ups and fuel deliveries through national fuel voucher and emergency heat fund schemes run by charities.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As we said there, Wales has the lowest average of uptake in the UK, what do we know about why that might be why we are so poor in comparison to the rest of the UK?", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In total the party has lost four candidates across Wales in one week - while two had pulled out before Reform's lists were published.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It can pick up tiny, tiny traces of blood in your poo that could be early stages of cancer.", "score": 4.52192, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Food for Thought report found while Wales is famous for its meat, seafood, and dairy products food culture remains \"dominated by an industrialised food industry where profitability trumps nutritional value\".", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across the network, Transport for Wales, via the Welsh Government, has invested £800m in brand new rolling stock.", "score": 4.3787199999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Thousands in Wales to get £200 boost as prices rise", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tuesday's announcement represents the third Reform candidate to quit the party a little over a month before the Senedd election.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The project, via delivery partner Amey Infrastructure Wales, has seen electrification of 170 kilometres of track with new stations and signalling built.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Every child in a primary school in Wales is entitled to a free school meal now. It looks different in each local authority. We know that schools in Wales don't have enough money. We know that children need to have the right food but what's going on in our school kitchens isn't entirely fit for purpose.\"", "score": 4.285765, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Low-income households in Wales are to receive extra financial support to help with heating costs as rising global fuel prices linked to the conflict in the Middle East continue to put pressure on budgets.", "score": 4.233315, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cost of the South Wales Metro rail electrification project has rocketed and is expected to cost the taxpayer around £1.3bn, nearly double its initial estimate.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On the importance of the publicly subsidised bus network in Wales, he said: \"Around three quarters of all public transport journeys are made by bus.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Second chapter has been, you know, the periods between 2010 and very much 2024, under Tory led austerity at a time when, you know, or an abyss austerity, we had a number of systemic shocks, namely Brexit and Covid, and also frankly, the cost of living crisis that continues after the Liz Trust mini budget.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cabinet secretary for social justice Jane Hutt said: \"The cost of living continues to put pressure on many households across Wales and the conflict in the Middle East is driving up prices, adding to the anxiety many people already feel about paying their bills and heating their homes.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The A487 at Commins Coch near Aberystwyth, Wales, is amongst the longest-running improvement schemes currently underway in the country, with temporary traffic lights expected to remain in place until June 23, making it the most noteworthy set of Welsh roadworks to be aware of.", "score": 4.0675799999999995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Welsh government spokesperson says they're investing heavily to improve cancer diagnosis, and thousands more in Wales are offered bowel screening since they expanded the program.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "TfW, which is overseeing bus reform, is also the operator of the Wales and Borders rail franchise, which has seen increasing passenger levels.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People on low incomes in Wales who use oil or liquid petroleum gas to heat their homes will get £200 towards their energy costs.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The six fictional voters whose images have been created using AI are all based in different parts of Wales", "score": 3.8939399999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the earliest stage, and many people who are diagnosed through the bowel cancer screening program will be asymptomatic.", "score": 3.866315, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tricky one for the party, the polls suggesting that for the first time since devolution back in 1999, they may no longer be the biggest party or even the party in power in a speech at the launch in Swansea yesterday, Labour leader Aled Morgan argued that Welsh Labour is the only party experienced enough to lead Wales.", "score": 3.758995, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, I think, um, if you look at where, you know, where Wales is doing better, uh, for example, Powys, um, Holder, um, and then where we could catch up a little, you know, Swansea, Bay and Cwmtaf, for example, but there isn't very much in it.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On what the future holds for TfW, he said: \"We know that transport is an enabler for economic growth, and there's lots more we want to do, particularly in collaboration with our partners, both public and private, to maximise that growth for the people of Wales.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yes, but they were able to make those reductions in England, weren't they, and we haven't been making them in Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, firstly I'd say, you know, yes, Wales has got the lowest uptake of the test, but it's not by much.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The committee also heard that despite Wales marking important strides towards tackling food poverty through the introduction of schemes such as universal free primary school meals \"too much of what is served in public settings remains ultra-processed and disconnected from Welsh producers\".", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On the Metro, which is now a devolved asset to the Welsh Government, Mr Price said: \"It's been dubbed the 'Welsh Tube' in the UK media. It is certainly a catchy headline, but it's a sign that people are starting to see what's possible when you devolve power and back it with ambition. We're applying the same approach to north Wales now through Network North Wales, with the same urgency, energy and belief. For example, we'll be delivering one of the most significant timetable changes that north Wales has seen in 40 years this May, when we're increasing the number of rail services on the North Wales coastline by around 50%. That is a genuinely significant change.\"", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You'll see these fictional voters' faces popping up over the next few weeks as part of BBC Wales' election coverage, as I see what makes it onto their feeds.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I don't know what I'll see but I'll be keeping a close eye out for anything that sheds light on how they would be experiencing the run-up to this Senedd election.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You know, so this is something that, you know, we see in Scotland, Wales, Northern Ireland and England as well where we could improve.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just if they've got that test sitting in the loo, waiting to be done, just do it today.", "score": 3.636075, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "In Putting Wales First, a recently translated history of Plaid Cymru's political ideas, Prof Richard Wyn Jones references a 1940s newspaper editorial satirising the party's then preoccupations.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Transport for Wales, the arm's-length-transport company of the Welsh Government - has yet to finalise the full cost for the now-completed project.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We have detailed preparations for the first zonal franchising rollout in south-west Wales significantly under way.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This manifesto is titled A new chapter for Wales.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I think it's a once-in-a-generation chance to build a bus network that truly reflects the needs of Wales; urban and rural, coast and countryside, young and old, and a network that's reliable, affordable, flexible and easy to use. To do that, we want to take the best of the private, public and third sectors and combine it as part of a coherent and thought-through proposition for the whole of Wales.\"", "score": 3.566845, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "These are things that Labour have delivered in Wales during our time in office, that don't exist in England.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now a party insider says that the vetting process used for candidates in the Senedd elections in Wales is flawed.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So we've partnered with, police forces, national police chiefs' council, police forces in Wales and the Joe Cox Foundation to call for a campaign for these Senate elections to be free from abuse and intimidation for parties, campaigners, and indeed voters to be able to all take part in a respectful debate.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And that chapter has been, you know, a period of protecting Wales and protecting public services in Wales by the by the Welsh Labour government from those shocks.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "TfW took over the running of the Wales and Borders rail franchise during the pandemic from KeolisAmey through the operator-of-last-resort mechanism.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The poorest households with children needed to spend 70% of their disposable income on food to eat well.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said the new bus franchise model, following legislation passing through the Senedd, will provide a \"once-in-a-lifetime opportunity\" to create a new bus network across Wales integrated with train services.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With government funding challenging he said that TfW needed to be more efficient and clearer than ever before about its priorities, ensuring it invests in projects that \"deliver the greatest value for Wales.\"", "score": 3.419705, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"We heard consistent messages: invest in horticulture and local food distribution networks, put schools and communities at the heart of change, embed 'cash-first' principles around good food, and ensure long-term support for local food partnerships. This report sets out our conclusions and recommendations to ensure every part of Wales has access to healthy, affordable food.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He added: \"Where rural hubs are connected to our towns and cities, and where public transport is a matter of choice, not a last resort -that's the Wales we want to build: a fully multimodal transport network that connects Wales. As part of this, we're investing in real-time data, integrated ticketing and digital platforms to make travel easier. We're thinking about the whole journey from doorstep to destination, and we're embracing innovation, battery-electric trains, smart ticketing and AI-powered solutions.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2023 Blaenau Gwent had 142 fast food outlets per 100,000 people - a 13.6% increase from 2018.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On a new Cardiff Bay administration after the Senedd election in May, Mr Price, a former senior Welsh Government civil servant, said: \"This is another for us to re-engage, reassess our vision and show the value we can bring to the new administration. Whatever shape it takes, we are confident that a new government will want us to deliver a great train service, make a success of bus franchising, and harness the skills and capabilities of TfW and the private sector to continue delivering these priorities. We don't want to just be a delivery body; we want to be a national asset woven into the fabric of Wales.\"", "score": 3.381535, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Food Foundation calculated the poorest households would need to spend 45% of their disposable income on food to be able to afford the UK Government-recommended healthy diet.", "score": 3.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A food charity said more healthy foods cost more than twice as much as less healthy options, causing huge challenges for families on low incomes", "score": 3.18436, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And what we also found was that women and ethnic minority candidates were more likely to report experiencing abuse, as compared to other candidates.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As well as the impact on heating, petrol prices have reached highs we saw during the early stages of the war in Ukraine.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The committee added the number of unhealthy takeaways, and their concentration in more deprived areas where access to healthier options were often limited, is an \"additional challenge\".", "score": 3.063685, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rhian Thomas is head of the Electoral Commission in Wales.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was launched yesterday ahead of the Senedd election in May.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Janet Hayward, who runs the Big Bocs Bwyd food project, told the committee: \"Between Cadoxton and Cowbridge there is a 20-year difference in healthy life expectancy which is just huge, and we know that's largely because of the food that our children are eating.", "score": 2.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chris Nottingham, from Blaenau Gwent Food Partnership which is Welsh Government-funded project providing fruit and vegetable vouchers to families with young children, said: \"In Ebbw Vale and Brynmawr we have a hot food takeaway density well in excess of the national average and, in turn, we fall well below the national average for what classifies as a healthy weight.\"", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It said the consequences of families eating unhealthy has a \"calamitous\" impact on health with people in some of the poorest areas living decades in poorer health compared to more affluent areas.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Welsh Labour MS Jenny Rathbone, who is chair of the cross-party committee, said: \"It is shameful that far too many people struggle to afford and access healthy food in one of the richest countries in the world. \"", "score": 2.8717300000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Every one of those increases is significant.", "score": 2.73922, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Numbers have steadily increased since the programme began in 2016, and now top 20,000.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than £130m is spent each year on such schemes.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It said the Food Foundation charity reported that in 2024 more healthy foods cost more than twice as much as less healthy options, averaging £8.80 per 1,000 kcal compared to £4.30 for less healthy foods.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A sizable proportion are adult learners who have come via the workplace, but there have also been huge increases in take-up by 16- to 24-year-olds, and there is a growing level of participation among diverse ethnicities.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Which is why you had stock out and I think that was driven by fear of shortage but also price increase.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is slowing up approaching for the four six five to Stan Darcy at 43 and for the A four seventy to Coton interchange, but the rest of the approaches are moving well and at the moment still moving on the A fifty five.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's the latest, more on the roads just after nine.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The maximum award for heating oil has been increased from £500 to £750 and people can now apply up to twice within a 12-month period.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A pilot scheme aimed at improving health outcomes linked to cold homes will begin in September 2026 in the Aneurin Bevan University Health Board area.", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Essentially, it's an infection of bacteria that gets in through, um, a cut in the skin and then it can attack and it can spread very quickly in the blood.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The maximum award for heating oil has been increased from 500 pounds to 750.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Uh, you had a reaction to the initial crisis, sales went up 40% over three days, which is unsustainable.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And that figure increased to over half of all candidates standing at the parliamentary election in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The difference is real and people are noticing. We will end up, and hopefully, more with 489 carriages, which is a 81% increase on our inherited fleet numbers in 2018, and 174 trains, up from 138. We've changed the fleet, we've changed the expectations, and hopefully we're beginning to change the conversation.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The funding for this measure comes from the 3.8 million pounds given to Welsh ministers by the UK government as part of a package of support for those struggling with the recent jump in the cost of heating oil.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, sales are becoming slower, and the margin is smaller, so we're selling less fuel at a lower margin, but our costs remain the same in terms of staffing and business rates etcetera.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And we used to have a five-day delivery window, we're now on a six-day delivery window which helps hugely.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yeah, the cost of our fuel's gone up dramatically, so prior to this crisis I would be paying 44,000 pounds for a load of fuel, it's about 56,000 pounds now.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The project to electrify the Core Valley Lines into Cardiff, as well as the City and Coryton lines through the capital, was initially forecast with a price-tag of £734m.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the context of major rail enhancement projects, the increase in cost versus the original forecast is far lower than other major rail project cost overruns, such as high speed two and the electrification of the Great Western Main Line.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The budget had already been revised upwards to £1.1bn in 2023.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The original budget, set back in 2016, consisted of £164m from the European Union, £445m from the Welsh Government and the £1.3bn City Deal for the Cardiff Capital Region, and £125m from the UK Government.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We were working on that basis and you can absorb one or two pence increase in costs, um, we've had three weeks where costs went up 16 pence, six pence and 12 pence.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They won't know that anything is wrong, that survival figure rises to more than nine in ten, so it's really important.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "More broadly, a recent report by the Welsh language commissioner emphasised that while the number of speakers has remained stable over decades, it has not risen to reflect significant growth in the population as a whole.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That final projected cost has now edged up to around £1.3bn.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A lot of fuel is bought on what's called Platts lagged, so the average price of the fuel last week is my price for the fuel this week.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The earlier bowel cancer is found, the more treatable it's likely to be, with more than 9 in 10 people surviving the disease when diagnosed at the earliest stage.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over a third of people (34 per cen) eligible for bowel cancer screening in Scotland don't complete their test, data revealed by Britain's leading bowel cancer charity, Bowel Cancer UK, has shown.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now the Royal College of General Practitioners Scotland has revealed that 55 per cent of respondents to its annual survey reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A survey by the Royal College of General Practitioners (RCGP) Scotland found more than half of its members are seeing an increase in health problems either caused or exacerbated by poverty.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The statistics show that 72.6% of patients on an urgent referral for a suspicion of cancer started treatment within 62 days during this quarter.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some areas of Scotland are being hit particularly hard by the situation because so many rural homes are off the gas grid and rely on heating oil, which has more than doubled in price in recent weeks.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RCGP Scotland's annual membership survey showed 55 per cent of GP respondents reported increasing numbers of patient presentations that could either be linked to or worsened by poverty.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest figures from Public Health Scotland show that from October to December 2025, 27.4% patients waited longer than 62 days to start treatment following an urgent suspected cancer referral.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's crucial that cancer is diagnosed early when treatment is more likely to be successful.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Throughout the year, only 72.6 per cent of patients started cancer treatment within 62 days.", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now it has emerged that while there is a £4.1m publicly funded furlough scheme to save jobs at the plant, ADL are pursuing the axing of a quarter of its workforce in Scotland.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to Scottish Government records, ADL received £58m of public 'subsidy' for green vehicles since 2020 under two schemes aimed at transitioning Scotland to green buses - despite the company having embarked on a 2020 plan to axe a third of its Scottish workforce.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest figures from Public Health Scotland show no Scottish health board met the 62-day waiting time target for cancer care in 2025.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Public Health Scotland data released yesterday said there were 23,415 ongoing waits of more than a year for an outpatient appointment at the end of February, down 6,415 on the previous month.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is shameful that Scotland has had the lowest life expectancy of all UK nations, particularly impacting those in the most deprived communities. We must take robust action to tackle this issue, and the underlying factors which contribute to health inequalities.\"", "score": 4.89529, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Scottish Government plans to cut nearly 20,000 public sector jobs by the end of the decade cannot be done without cutting frontline services and could see Scotland \"sleepwalking into austerity\", a new report has warned.", "score": 4.775650000000001, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Ticking timebomb': Scottish cancer care targets missed for 13 years in a row", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This approach would maximise the impact of new investment, helping reduce health inequalities and ultimately increasing the number of years people in Scotland spend in good health.", "score": 4.761455, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the government, social housing completions were the lowest since 2014, while the number of social housing starts were the lowest since data was first recorded in 1997.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Continued delayed cancer treatment waits 'unacceptable ́, says Cancer Research", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said: \"It's unacceptable that people are waiting too long to start cancer treatment.", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Continued delayed cancer treatment waits 'unacceptable ́ says Cancer Research", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, IPPR Scotland suggests that the primary mechanism for this-a \"managed, downward workforce trajectory of 0.5% on average per annum to 2029-30\"-is a \"political choice\" that could have devastating consequences for those who rely on these services most.", "score": 4.66132, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In June 2025, the company announced plans to end manufacturing altogether in Falkirk and Larbert, consolidating operations at its English site in Scarborough-putting up to 400 jobs at risk in Scotland.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The EU Agency for Criminal Justice Cooperation have said that a criminal network was believed to be operating in Spain and Scotland with £6.1million in dirty cash uncovered in a money laundering probe.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There are 32 councils in Scotland, with the majority of them recognising Easter Monday as a public holiday - though there are some notable exceptions.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Out of 32 councils in Scotland, 27 recognise Easter Monday, this year falling on April 6, as a bank holiday:", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fewer houses are being built across Scotland.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Transport Scotland announced £45 million in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland team news: Scotland manager Steve Clarke has hinted at making six or seven changes from the side that faced Japan to rotate his squad.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There are then five councils in Scotland which don't consider Easter Monday a public holiday.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland has the third highest average of people taking part in screening (65.7%) compared to other UK nations, behind England (71%) and Northern Ireland (67.3%) but ahead of Wales (65.5%).", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It received 285 responses from GPs across Scotland.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And it said there was no such relief for the more than 2,000 premises in Scotland with a rateable value of more than £100,000.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer is the least popular political figure in Scotland.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And the SNP's failure to find an effective way to kickstart Scotland's lacklustre economy is a serious health issue that is blighting the lives of far too many.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Full Fact said the latest available figures were from February 28, noting that it would equate to one in 10 of Scotland's population on a waiting list, rather than one in six.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland has had a welcome long-term strategy which addresses bowel cancer and was the first country in the UK to screen at a threshold of 80 micrograms of blood per gram of poo (μg/g), which England and Wales have since adopted.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK leader Nigel Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for his Scottish leader Lord Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The Scottish Greens would roll out 1,140 hours of funded childcare to all two-year-olds in Scotland and provide 570 hours of funded childcare to every child from six months to two years old,\" she added.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around 2% of patients have this form of the disease, which progresses rapidly and currently has no widely available treatment in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2025, the Trussell Trust published data showing almost 240,000 emergency food parcels were provided by food banks to people in Scotland alone - equivalent to one parcel every two minutes.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Deer numbers, while unknown to the exact figure, are believed to have doubled in Scotland since the 1990s and are sitting at about one million, according to environmental groups.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland's emergency departments have also struggled in recent years, falling well short of the Government target of 95% of people seen within four hours.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 6 per cent of households in Scotland use alternative fuels, with rural and island areas disproportionately affected, according to the Scottish Government.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Transport Scotland announced last Wednesday that £45m in Government cash for five bus operators, with Rock Road and Lothian Buses set to purchase from the Falkirk-based manufacturer.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47 per cent for Prime Minister Sir Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The poll also revealed the popularity of several politicians in Scotland, with John Swinney continuing to be the most popular political leader in Scotland, with a net favourability rating of minus 10%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Private providers play a significantly smaller role in the NHS in Scotland than in England.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes as the Scottish Retail Consortium (SRC) warned that medium and larger shops in Scotland will pay £162 million more than their English counterparts over the next three years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Data compiled from pump price comparison website PetrolPrices.com shows a litre of diesel costs up to 217.0p at some forecourts in rural Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK set to become Scotland's second-largest party ahead of Tories and Labour at Holyrood elections in May, poll shows - while SNP will fall short of a majority", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over a third of people (34%) eligible for bowel cancer screening in Scotland don't complete their test, , data revealed by the UK's leading bowel cancer charity Bowel Cancer UK has shown.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A total of 84 of Scotland's primary schools ensure that almost ever primary seven pupil is up to standard in reading, writing, numeracy, listening and talking according to a new league table.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scottish social housing builds fall to lowest level since 2014", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'A supreme failure': Affordable housing approvals in Scotland drop by 50 per cent", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL said the proposal would safeguard approximately 200 skilled manufacturing and support jobs previously at risk of redundancy and would retain approximately 350 roles within Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since the 1950s, Scotland has had the lowest life expectancy of all UK nations and in recent decades the country's position has worsened relative to other western European nations.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Currently, the public sector in Scotland employs 22.2% of workers, compared with 18.1% in the UK as a whole.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures published by 1919 magazine showed there were 1,334 NCHIs in Scotland in 2023, and in April 2024, more than three a day were still being logged by officers.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "⚡️💸 Scotland is a net exporter of electricity, yet households here are hit with some of the highest standing charges in the UK.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some £4.6m of this total has been allocated to Scotland, and the Scottish Government is making available an additional £5.4m.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scottish Labour's claim of one in six did not line up with the figure being put forward by ministers and Public Health Scotland (PHS), which at the time was one in nine.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This compared with minus 47 per cent for Prime Minister Keir Starmer and minus 25 per cent for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Farage has a minus 31 per cent rating in Scotland, compared with minus 15 per cent for Reform's Scottish leader Malcolm Offord, although 55 per cent of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A total of 1,197 primary schools provided data for the annual Achievement in Curriculum for Excellence Levels publications, with the remaining 729 on the government database not participating, either because no children were up to standard, the school roll was too small or the data was not collected centrally.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By the time the 2020 jobs cut was in place, ADL had already received over £8m in 'job securing' taxpayer funding which was promoted as supporting building a new greener business in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK leader Nigel Farage has a minus 31% rating in Scotland, compared with minus 15% for his Scottish leader Lord Malcolm Offord, although 55% of respondents said they had no opinion of Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "65% of voters would back Mr Swinney over the Reform UK Scotland boss, while 35% would support Lord Offord.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "McBurnie hasn't played for Scotland for five years - and may never again - but he has 13 goals and seven assists in 30 games in the English Championship.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland had 14 shots to Ivory Coast's 12 and four on target to their opponents' three.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey also found SNP leader John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10 per cent.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The private sector built 13,725 homes last year, while the social sector built 3,611 homes; while work began on 11,929 private sector buildings and 3,070 social housing units.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John Swinney continues to be the most popular political leader in Scotland, with a net favourability rating of minus 10%, compared with minus 47% for Prime Minister Sir Keir Starmer and minus 25% for Scottish Labour leader Anas Sarwar.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The year before, the charity distributed a record of more than 3.1 million emergency food parcels across the UK, including over one million parcels for children.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Government we ordered 13 cutting edge frigates for the Royal Navy, now being built in Scotland.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was perhaps her experience that drove attitudes in the recent Logos survey of Christians in Scotland, which found that more than 80 per cent of participants said they were worried about the negative reaction or criticism that Christian politicians have received.", "score": 4.545945, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Grangemouth refinery produced 97% of Scotland's aviation fuel before it closed.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Lyons crime group is considered one of Scotland's most dominant organised crime networks and has been embroiled in a violent feud with the rival Daniel clan for more than two decades.", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @theSNP: Scotland is one of the richest energy nations in the world.", "score": 4.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Britain's biggest bus and coach manufacturer which has been propped up by tens of millions in public money in Scotland has set out plans to axed a quarter of ifs staff despite a government-rescue bid sparked by its threat to move to England.", "score": 4.496495, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John Swinney has said he is 'proud' of progress in Scotland's NHS - as 'atrocious' figures show huge numbers of patients facing long waits for appointments, cancer care and A&E.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland's energy workers face redundancies on an industrial scale thanks to Labour's crippling tax on Scotland's energy with 1000 jobs a month at risk - for Anas Sarwar to pose as the friend of Scottish industry is a kick in the teeth to workers across Scotland.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This will be Scotland's first time in a World Cup since 1998.", "score": 4.46844, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cancer waiting times must be a \"serious call to action\" for the next Scottish Government, as new figures show targets have been missed for 13 years in a row.", "score": 4.460005, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"While there is still work to be done, tackling child poverty head-on will see improvements in health inequalities - the unique Scottish Child Payment, our transformational childcare offer, protection of free prescriptions and the best cost of living support package in the UK are all part of making that happen.", "score": 4.429455, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "GMB Scotland warned that public money intended to support green jobs is instead flowing abroad, undermining domestic industry and putting livelihoods at risk.", "score": 4.36914, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "READ MORE: John Swinney vows new childcare system for Scotland if SNP win Holyrood election with £500m spending boost", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This was Scotland's last game before Clarke picks the 26 for America.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But successive 1-0 defeats to Japan and Ivory Coast have underlined the need for no further distractions as Scotland prepare to return to the World Cup for the first time since 1998.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fair Feast, founded by farmer and social entrepreneur Helen Stewart, has in its first year supplied around two tonnes of locally sourced venison to food banks and community larders across Highland Perthshire.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest loss - 1-0 against Ivory Coast in Liverpool - means Scotland now have only two games to work on improvements before their tournament gets underway against Haiti in Boston on 13 June.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On November 18, 2023, Mr Fraser, then Tory MSP for Mid Scotland and Fife, shared a newspaper column which claimed the government's non-binary equality action plan would lead to children being 'damaged by this cult'.", "score": 4.331365, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Chris Provan, chair of RCGP Scotland, said: \"Health inequalities remain one of the defining challenges in Scotland's health landscape and have continued to worsen in recent years.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @STVNews: Thousands of ex-battery hens need new homes across Scotland or face death.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Scottish Labour Health spokesperson Dame Jackie Baillie said: \"Quick treatment saves lives but this dangerously incompetent SNP Government hasn't met its cancer treatment target for 13 years.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Today we've seen that the 62-day cancer waiting time target has once again been missed.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'SNP ministers should be telling Police Scotland this practice must stop to avoid the risk of criminalising Scots who haven't done anything wrong.", "score": 4.263805, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Traffic Scotland confirms that from the evening of April 2 until the morning of April 15, the stretch from River Garry to Shierglas will have temporary traffic lights in operation at all times, alongside a 10mph convoy system overnight and a 30mph restriction outside working hours.", "score": 4.2553, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "April 1 marks the start of the new non‐domestic rating year and the Scotland‐wide revaluation with many firms facing a significant jump in their bills.", "score": 4.233315, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He likely knows the majority of the 26 he'll be taking to Scotland's Charlotte, South Carolina base, but there are still a select number of slots to be claimed between now and then.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK are set to become Scotland's second-largest party at Holyrood elections in May, according to a new poll.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It also means backing our GPs - in Scotland we have the highest number of GPs per head in the UK and our new walk-in centres will make services more accessible.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The SNP have presided over a growing workforce crisis in Scotland's NHS, including in general practice and primary care.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"After 13 years of failure on cancer care, it's clear that a vote for John Swinney and the SNP is a vote for more of the same.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Food banks are at an all-time high for demand,\" Ms Stewart said.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The people of Scotland deserve better from their cancer strategy.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas, which was received in March 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Measures being taken elsewhere in the UK in relation to non-crime hate incidents don't go far enough, but in SNP-run Scotland there is complete silence on this issue.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesman said: \"Officers are investigating a report of sexual offences committed in the Cupar and Edinburgh areas which was received in March 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The report warns: \"If austerity is taken to refer to a degradation of public services in pursuit of balanced public finances, then the workforce reduction target risks Scotland slipping into austerity.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A spokesperson for the group said: \"We did say closing Scotland's only refinery would leave us fuel insecure - an oil producing country relying solely on imports in a volatile world with potential conflict, shipping problems, and at the very end of a supply chain.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Year-round childcare support, 52 weeks a year, for every child from nine months old, right until they leave primary school - that's what an SNP government on Scotland's side will deliver.", "score": 4.097144999999999, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland have failed to score in over 180 minutes of friendly football against admittedly very good opposition.", "score": 4.0921199999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week it was announced that Alexander Dennis had won an order for 123 vehicles through the Scottish Zero Emission Bus Challenge Fund (ScotZEB3) led by Transport Scotland and administered on its behalf by the Energy Savings Trust.", "score": 4.0921199999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland is Europe's second biggest oil producer. We now have to import all our oil products at inflated prices,\" he said.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year, Scotland faced what has been described as the UK's largest wildfire incident.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ministers are facing growing calls to scrap subsidy schemes after the UK's biggest bus manufacturer moved to axe more than a quarter of its workforce - despite receiving millions in public funding to keep jobs in Scotland.", "score": 4.071625, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "SNP candidate for Aberdeen Donside, Jackie Dunbar, said: \"The SNP put in place a £500 million Just Transition Fund to support renewables expansion, but the single biggest barrier to renewables development in Scotland is Labour's tax on Scotland's energy and crippling transmission charges from Westminster.", "score": 4.071625, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "FACT checkers have called out a Labour MP over his claim that one in six people in Scotland are stuck on an NHS waiting list.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Herald previously revealed that the move followed a row between ministers and ADL over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which have been worth a total of £155.8m to date.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL is one of the largest manufacturing employers in central Scotland with many roles in engineering, apprenticeships, and high-skill technical jobs.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John O'Connell, chief executive of the TaxPayers' Alliance, said it was \"shocking\" that the Scottish government had \"doubled down on on its multi-million pound bribe\" to Alexander Dennis with a furlough scheme in a \"desperate attempt\" to keep it operating in Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Herald previously revealed that the move to consolidate operations in Scarborough followed a row between ministers and company executives over levels of support and had its roots in Scottish Government schemes launched from 2020 to accelerate the use and manufacture of zero and low emission buses in Scotland and 'help drive a green recovery out of the Covid pandemic\" which up till last year was worth a total of £155.8m to date.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But when Christie and McTominay got in each other's way trying to get on the end of a Robertson cross from Kieran Tierney's through-ball Scotland were punished on the counter, having committed five players to the attack.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Martin Whitfield (Labour) is now talking about the approximately 130 quangos in Scotland and said when things go wrong and people want responsibilities quangos are blamed, but public money needs to be spent more efficiently.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SNP spokesperson said: \"The reality is we are treating more patients with cancer on time, within both standards, compared to pre-pandemic and 10 years ago.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland fans face £60 fare for 30 minute train journey as Boston locals to get free travel due to World Cup disruption", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "SNP MSP Clare Haughey said: \"Eradicating child poverty is John Swinney's number one mission and thanks to action taken by his SNP government, Scotland has the lowest levels of child poverty on these islands.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If we can donate tens of thousands of meals from just one farm, imagine what could happen if that was rolled out across Scotland,\" she said.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The report also finds that median public sector pay in Scotland remains below pre-austerity levels and argues that lower pay elsewhere in the UK \"does not constitute a good argument that it is excessive in Scotland\".", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said the Lib Dems are poised to beat the SNP in 10 constituencies across Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I'm focused on delivering as many MSPs as I can for the Lib Dems and that's happening in 10 seats across Scotland, or wherever you are, on that peach ballot paper, the regional vote, where we can win.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Scottish Liberal Democrat Falkirk West candidate, Lucy Smith, said: \"Just days after Transport Scotland announced millions of pounds in support for Alexander Dennis we get the terrible news that more than a hundred workers in Falkirk are at risk of redundancy.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Families can enjoy the one-hour Signature Tour, which explores 500 million years of natural history, folklore, and scientific research surrounding Scotland's most famous legend.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Long waits have fallen for eight months in a row, GP numbers are up, the number of operations is rising and GP walk-in centres are springing up in communities across Scotland. Our NHS has turned a corner.\"", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ivory Coast star Benie Traore was happy with the side's 4-0 thrashing of South Korea on Saturday and is hopeful they can deliver a similar performance against Scotland.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland head coach Steve Clarke admitted his side need to find more quality in the final third after their 1-0 defeat to the Ivory Coast at Everton's Hill Dickinson Stadium.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A much-changed Scotland suffered another friendly defeat with the 1-0 loss to Ivory Coast offering manager Steve Clarke few solutions to their creativity problems as he prepares for the nation's first World Cup since 1998.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mairi McAllan (SNP) said: \"Scotland's economy has outstripped the UK's GDP since the SNP has been in government.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"And that's an indictment of Westminster decision-making, causing significant damage to Scotland and our energy sector.\"", "score": 4.059075, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Continued delayed cancer treatment waits are \"unacceptable\" a cancer charity has said as latest figures show no NHS boards met the Scottish Government's 62-day pledge last quarter.", "score": 4.059075, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour pledge two weeks of funded summer childcare in Scotland", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scotsman's election hustings with Scotland 2050 is taking place at the Assembly Rooms in Edinburgh from 6pm", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was further cause to feel worried about Scotland's lack of edge up front.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland head coach Steve Clarke watches on as his team lost 1-0 to Ivory Coast.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This includes all three games in the group phase and in the knockout stages, if Scotland progresses further.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Thanks to the scheme, households in Scotland struggling with the cost of oil and liquid petroleum gas (LPG) for heating will be able to apply for £300 of support with their bills.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Tens of thousands of Scotland fans will be in the American city for Scotland's opening two games against Haiti and Morocco.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As things currently stand Alexander Dennis will close its Falkirk site and convert its Larbert facility into a chassis manufacturing hub, retaining roughly 350 staff in Scotland.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "IPPR Scotland adds that \"by failing to present (at the Scottish Parliament election in May 2026, for instance) the costs of constraining public services (in order to keep taxes down), politicians risk sleepwalking Scotland into similar outcomes\" to the UK Government's 2010 austerity programme.", "score": 3.98733, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Genevieve Edwards, Chief Executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @heraldscotland: Scottish Labour deputy leader Dame Jackie Baillie has accused First Minister John Swinney of 'cynically attempting to pull the wool over people's eyes' over the NHS.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Under the SNP, Scotland has been weaker because ministers have failed to back our own workers and industries.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chief executive of Cancer Research UK, Michelle Mitchell, said the latest figures were \"unacceptable.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"This is a short-sighted decision that removes the only diving facility in the west of Scotland. Once it's gone, it's gone-and the community will not get it back.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Liberal Democrat Scottish affairs spokesperson Susan Murray MP said: \"If you've been to an accident and emergency in Scotland in the last few years, you will know not to trust a word that comes out of John Swinney's mouth on the NHS.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Sandesh Gulhane, the Scottish Conservatives' health spokesman, said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend his Government's NHS plan is working.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dame Jackie Baillie, deputy leader of Scottish Labour, said: \"Quick treatment saves lives but this dangerously incompetent SNP government hasn't met its cancer treatment target for 13 years.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is an insult to the Scots waiting too long for lifesaving cancer care for John Swinney to pretend this government's NHS plan is working.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Grangemouth produced jet fuel for all of Scotland. The UK Government let it shut,\" he said.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scottish Conservatives were also critical of the figures as health spokesperson Dr Sandesh Gulhane said: \"These heartbreaking delays lay bare the human cost of the SNP's failure to get a grip on Scotland's cancer crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Macmillan Cancer Support have now said whoever forms the next Scottish Government needs to tackle the issue head on as \"Scotland deserves better from their cancer strategy\".", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The waiting time statistics have also been slammed by opposition parties who show there is a \"ticking timebomb\" in Scotland when it comes to cancer care, and say it shows the SNP cannot be trusted to run the NHS effectively.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland 'vulnerable' to fuel supply shortages after Grangemouth refinery closure", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Stewart said witnessing so much high-quality meat go to waste while people in her area faced food shortages resulting nutritional deficiencies was deeply troubling, particularly given that protein-rich foods are especially sought after by food banks.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pupils in Scotland whose exam performance is affected by circumstances outwith their control may be entitled to special consideration under the Exam Exceptional Circumstances Consideration Service (EECCS).", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Pubs will be allowed to open until 30 minutes after the final whistle for Scotland games, but there are different rules for other matches.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has been argued that losing manufacturing in Larbert and Falkirk would diminish Scotland's ability to innovate and scale production in green mobility - a strategic disadvantage amid increasing global demand for clean public transport.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The loss of the diving pool means there will be no diving provision in the west of Scotland, with the nearest facilities located in Edinburgh, and described the proposed leisure centre as offering \"less\" than the existing Citadel.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland will play in Liverpool for the fourth time tonight against a third different country.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The soaring prices have led to calls for the UK to 'stop abandoning' its oil and gas sector and concentrate on 'maximising our own resources' to help ease the crisis which Scotland's farming industry warns 'without intervention' risks 'undermining production and weakening the UK's long-term food security'.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And Scotland is central to that given our vast reserves of untapped oil and huge potential for renewable energy.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mackay said: \"Scotland has a huge renewables potential but we are not yet meeting it.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If Westminster won't bring them down, they should hand energy powers to Scotland.", "score": 3.898845, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Men's and Women's 10K Glasgow are among the most distinctive and inspiring mass-participation running events in Scotland, and what makes them especially memorable is that they are two separate events taking place on the same day.", "score": 3.8939399999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Easter holidays are just around the corner, and so families all over Scotland will be trying to decide how best to make the most of the time off.", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It backfired when an estimated 50,000 Tartan Army fans saw Don Masson convert a penalty and Kenny Dalglish head Scotland to Argentina.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland's only oil refinery closed in April last year, leading to around 400 jobs being lost as the facility owners, Petroineos, said the site would transition to becoming an import terminal to \"meet Scotland's demand for transport fuels\".", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland were though lucky to avoid going 2-0 down on 25 minutes when Wahi's 25-yard effort landed on top of the goalnet.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @ewangibbs: Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "England handed a debut to the Reverend Kennie Hunt, but couldn't get a win over the Scots in front of 38,000 at Goodison Park after Newcastle United striker Alexander Higgins scored for Scotland.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland are currently battling with the world's best curlers at the Men's World Curling Championship in Ogden, Utah, in the USA.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A \"life-saving\" charity is today celebrating 50 years of supporting people affected by domestic abuse and reshaping responses to the crime in Scotland.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour policies are hammering energy jobs and people in Scotland are left to pay the price.", "score": 3.860895, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It's just common sense that to lower energy bills we need to drill the North Sea, invest in nuclear and expand renewables but we're the only party saying this.", "score": 3.788715, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"The SNP cannot be trusted to cut treatment waiting times and, if they get a majority in May, their focus will be on independence, not the ticking timebomb on cancer care.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of Scotland's most notorious gangland figures is 'set to be deported to Spain' days after being arrested in Bali.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"That is a political choice, and Scotland is paying the price.\"", "score": 3.7623699999999998, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bowel Cancer UK is sharing screening uptake figures in the build-up to Bowel Cancer Awareness Month (BCAM) this April, highlighting that there is still an opportunity for more people to take part in bowel cancer screening.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"I'd rather watch Scotland get hammered having a go than get beaten not having a go. There was a substantial crowd at Hampden for a friendly, who paid a lot of money for tickets and travel. Quite simply, the fans deserved far better than the dross put on a show. Sorry, John McGinn, there was no justification, and the boos were deserved.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Opposition politicians accused SNP ministers of presiding over a growing workforce crisis in Scotland's NHS.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform's focus right now is on non-white speakers of other languages, but Welsh has taken a bit of an attack, and I think it is scary for Gaelic speakers because we are such a small proportion of the population in Scotland compared to Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scotland boss heard more jeers ring out around Everton's Hill Dickinson Stadium at both half time and full time in the latest friendly defeat to Ivory Coast.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One is making Scotland's clean energy infrastructure safer and more efficient.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the clip, he claimed the SNP are \"out of ideas and Scotland is paying the price\", pointing to \"growing\" NHS waiting lists.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yesterday, FM John Swinney, Scottish Labour leader Anas Sarwar and UK Tory leader Kemi Badenoch were all putting forward solutions to bring bills down.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Edinburgh Festival Fringe is experiencing a huge surge in artists and companies taking part in this year's event - despite widespread concerns over the cost of taking a show to Scotland's biggest cultural showcase.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motorists across Scotland faced soaring prices at the pumps", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Malcolm Offord (Reform) is now talking about how much it costs to run Scotland, and said it is a \"big fat lie\" that Scotland would be better off re-joining the EU.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Boyd, the director of IPPR Scotland, said: \"With a Scottish election approaching, voters deserve a more honest debate about the future of public services, and the taxation needed to sustain them.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "For the first episode, which starts on Tuesday, Vicky and Jonny travel to the capital to discover more about another of Scotland's most infamous murderers, William Burke and William Hare.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He says the party is centre-right and is focusing his initial pitch on \"unleashing the potential of the people of Scotland who are over-taxed and over-regulated\".", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scottish Labour leader Anas Sarwar said: \"When Scotland needs more buses built by Scottish firms, it is devastating to see Alexander Dennis downscale and workers' lives thrown into uncertainty.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Peter Hastie, the charity's external affairs manager, said: \"Three years ago, within its 10-year cancer strategy, the Scottish Government expressed the clear need for faster diagnosis and treatment.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added: \"I'm focused on delivering as many Lib Dem MSPs (as possible) and our vision, fixing our health service, driving down the cost of living, lifting up Scottish education and getting Scotland moving again.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Farage has not made any explicit attacks on the Gaelic language yet, but Munro said that is likely because it hasn't entered his consciousness given it is not as widely spoken in Scotland as Welsh is in Wales.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Swinney said: \"The impact of the ongoing conflict in the Middle East on people and businesses in Scotland is becoming more significant by the day.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although Scotland made a spirited enough attempt to rectify matters, the early goal remained the difference.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sheep farmer Tim Eagle, who is standing for the Scottish Conservatives in Moray, said: 'Serious questions must be asked about whether these consultancy fees have been value for money for two of the most dangerous roads in Scotland when so few improvements, if any in the case of the A96, have been made.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Farming groups, including National Farmers Union Scotland, warned farm businesses across the UK are facing increasing pressure due to volatility in fuel and fertiliser markets, with implications for food production, supply chains and ultimately consumers.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He promised that a Scottish Labour government will build and buy more in Scotland, \"so public money backs Scottish jobs, Scottish businesses and Scottish communities\".", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"The family farm tax put Scotland's world class produce under threat and the rise in employer's national insurance is making it harder for firms to make ends meet.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And Andrew Connon, President NFU Scotland said 'rising fuel costs are placing significant and immediate pressure on Scottish agriculture, exposing the sector's vulnerability to global shocks and compounding already high input costs'.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK TV channel: Live television coverage will be provided by BBC Scotland and BBC Two.", "score": 3.74449, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A spokesman for Transport Scotland said: 'On complex, high-value projects, specialist advice is required to ensure contracts meet contractual and legal requirements whilst meeting policy objectives.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Good Friday is a public holiday in Scotland, which is followed by the early May bank holiday - but not Easter Monday.", "score": 3.73294, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Next Wednesday, 1 April, the Scottish Emergency Oil Heating Scheme will be launched under the auspices of Advice Direct Scotland.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is an expectation that a disastrous result for Labour in Scotland, as well as in elections in England and Wales in May, will prompt an effort to oust Sir Keir among Labour MPs.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To celebrate Easter, Graham's Family Dairy will turn the whole of Scotland into a giant treasure map.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There will also be a joint effort with Police Scotland to patrol areas that are most at risk.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS staff in the region will join those from across Scotland in being given the holiday on June 15 to mark the national team's opening match of the tournament.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Andy Robertson will become Scotland's second-most capped player should be appear against Ivory Coast tonight.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland and Ivory Coast will face off for the first time tonight.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On 7 May, Scotland will hold a general election for our devolved parliament in Holyrood, Edinburgh.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland will face Haiti, Morocco and Brazil in their World Cup group.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pubs will be allowed to open late for all of Scotland games.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Team Scotland are looking to win a second successive World Curling Championship gold.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Commenting, Ms Adamson said: \"Scotland's musicians are renowned across the world, and international touring plays a vital role in helping artists build sustainable careers, reach new audiences and showcase our country's creativity on the global stage.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police Scotland defines an NCHI as 'any incident perceived by the victim, or any other person, to be motivated either entirely or partly by malice and ill will' towards someone with a protected characteristic such as race, gender or disability.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One is giving people in social housing the right to a healthy, sustainable home.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesman said: 'We have a duty to prevent as well as detect crime as part of our work to improve community wellbeing, and this information can be used for monitoring of community tensions and forward planning.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Holyrood is there to represent Scotland in all its diversity, and faith continues to play an important part in the lives of, at least, a very significant minority of the population.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He is immediately talking about taking action to reach net zero by using cheap public transport and moving away from fossil fuels, but say right now that is now equal.", "score": 3.697825, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Police Scotland would be ordered to halt its controversial policy on probing 'non-crime hate incidents' under Tory plans.", "score": 3.66573, "claim_types": ["rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Every missed target is a reminder of why we need to get rid of the SNP at the Holyrood election. The SNP cannot be trusted to cut treatment waiting times and if they get a majority in May their focus will be on independence, not the ticking timebomb on cancer care.\"", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"An SNP majority would be a disaster for Scotland's economy, but voters can stop this nightmare scenario by backing the Scottish Conservatives on their peach ballot paper.\"", "score": 3.64377, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "In November last year, the SNP accused Scottish Labour of \"spreading misinformation\" over NHS waiting times in Scotland.", "score": 3.635935, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite long waits for appointments, cancer care and A&E, First Minister John Swinney said he is proud of the improvements in Scotland's NHS", "score": 3.635935, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"They do have powers in Wales under legislation that came in this year, but we don't have the same powers in Scotland.", "score": 3.634205, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"A far more ambitious approach is required from those political parties seeking to form the next Scottish Government, one that at the very least ensures a competitive level playing field with England and which delivers on the industry's vision to make Scotland the best place in the UK to grow a retail business.\"", "score": 3.6342049999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "... whereas Scotland has always had and continued to have a different legal system, different education system, different church system, so Gaelic is less of a factor for people in terms of national identity I would say.", "score": 3.6342049999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The public funding is contentious because substantial taxpayer money - allocated to secure jobs and promote clean, local manufacturing in Scotland has coincided with offshore production, reduced domestic orders, and now a possible factory closure and mass redundancies.", "score": 3.6342049999999997, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Under the SNP, our rapid cancer diagnostic services are giving people a much faster diagnosis after referral, but we are determined to do more.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"A vote for the Scottish Greens on May 7 is a vote to cut bills, tackle fuel poverty and finally end our dependence on volatile fossil fuels.\"", "score": 3.612245, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"We need a proper industrial strategy so we build more of our ferries, buses, trains, wind turbines and vital infrastructure here in Scotland.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Mr Sarwar is expected to say: \"A Scottish Labour government will build and buy more in Scotland so public money backs Scottish jobs, Scottish businesses and Scottish communities.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"The only way we achieve lower bills and energy security is by using all of the resources, skills and opportunities Scotland has,\" he said.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Mr Swinney's pledge would provide year-round childcare for every child from nine months to 12 years of age, with a promise that \"every single family in Scotland will get help\" towards the costs.", "score": 3.599205, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scots urged to submit meter readings this week to avoid higher energy bills", "score": 3.59665, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "John McGinn may be a Scotland hero.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At 31, McGinn knows this could be his last crack at a World Cup for Scotland.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Also, Scotland's publicly owned water and ferry companies do not have equivalents in other parts of the UK.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although they pressed in the second half, with Ipswich Town striker George Hirst getting into good positions, Scotland lacked cutting edge.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Taylor Wimpey West Scotland announces first new homes for sale at Manse View in Bargeddie", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On the Radio Scotland Breakfast travel in Glasgow, there are emergency repairs, so there's one lane closed on Cathedral Street going west at North Frederick Street.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A spokesperson for the Scottish Medicines Consortium said: \"The remit of the Scottish Medicines Consortium (SMC) is to provide advice to NHS Boards across Scotland about the clinical and cost-effectiveness of new medicines.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Murdo Fraser is a Scottish Conservative MSP for Mid-Scotland and Fife", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typically the arrival of Easter also marks the beginning of school holidays around Scotland, with many councils lining up the spring term break with the annual celebration.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "MLS side Charlotte are coached by Dean Smith, the former Aston Villa manager and pal of Clarke, his assistant is the Scotland boss' former Kilmarnock player, Gary Dicker and the club's technical director is Clarke's ex-St Mirren team-mate, Tommy Smith.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We have a clear and consistent route in Scotland for licensed medicines to be appraised through the Scottish Medicines Consortium (SMC).", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RCGP Scotland's annual membership survey was carried out between July 28 and August 20 last year.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Clarke afterwards confirmed that Scotland will play Bolivia in New Jersey on 6 June.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kevin Hobbs, CMAL Chief Executive, added: \"It is a proud moment to see MV Isle of Islay carry passengers for the first time. Her entry to service is a clear demonstration of the progress being made to rejuvenate Scotland's ferry fleet. Our focus is now on expediting the delivery of her three sister vessels, which will provide further flexibility and resilience across the west coast network.\"", "score": 3.5723399999999996, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We all accept that we have to make the transition to net zero, but the decline in oil and gas is happening at too acute a pace.", "score": 3.562025, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"It's the best I've ever seen Scotland play, it's outstanding.\"", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It offers a strong possibility of Scotland qualifying from a group stage for the first time ever - but positive momentum is needed.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The search for the killer became Scotland's biggest manhunt and newspapers at the time labelled him Bible John after a witness said he quoted scripture.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"My party would fundamentally overhaul Scotland's business rates system to make them fair and transparent.", "score": 3.559555, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, 31 March, 2026, police received a report a man had fallen from a flat in Dougrie Place, Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The vessel, which will provide a mainland link for the people of Islay and Jura, arrived in Scotland at the end of February.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People were quick to draw comparisons with Gellalty's game and the world-famous Grand Theft Auto series, which is also created in Scotland with studios in Dundee and Edinburgh, by Rockstar Games.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In order to access the funding, Alexander Dennis had to provide evidence of sufficient orders to sustain its operations in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added: \"This matter remains under active consideration as part of our wider approach to supporting Scotland's learning estate.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Swinney got year-long warning England-bound bus firm was 'reconsidering' Scotland", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is also lots on offer for the whole family in terms of food, from a bustling pizzeria in the heart of the Scottish capital to a rooftop venue with views out over one of Scotland's top golf courses.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The crime boss left Scotland in 2006 and had been living in Dubai, but was expelled from the United Arab Emirates (UAE) last September after a number of headlines on the Scottish gangster began to circulate.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For Scotland, Naismith admitted getting it right for \"travel and humidity\" was paramount.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"John Swinney's strong leadership is firmly focused on the priorities of the people of Scotland and our landmark childcare policy is a clear demonstration of the type of Scotland we will build - that's what's on the ballot in May.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Mr Findlay said: \". Reform candidates are quitting before they've even begun. It's complete chaos and we're the only party with a credible, common-sense plan for Scotland.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The fear is that the wind could be knocked out of Scotland's sails all over again, just as it was on the road to Germany two summers ago.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a recent survey, the 'Pregnant then Screwed Scotland' group revealed the impact childcare is having on mothers in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The actor visits Glasgow in a new Sky History programme to find out more about Scotland's notorious serial killer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vicky added: \"The dark nature of their crimes made them Scotland's first serial killer celebrities.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police Scotland confirmed a probe had been launched into allegations made in Edinburgh and Cupar, Fife.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It's the Scotland atmosphere.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity looked at the latest screening data across NHS boards, which oversee local health services in Scotland, from May 2022 to April 2024.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Plans to make the day after Scotland men's team's first participation in the World Cup for the first time in 28 years a holiday have fallen foul of council officers for financial reasons.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy historian at Glasgow University, Dr Ewan Gibbs, also expressed his frustration as he wrote on Twitter/X: \"Last year, Scotland's only refinery at Grangemouth was allowed to close at the hands of Petroineos.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a strange and angry pocket of the Tartan Army, there is a section of Scotland supporters who have taken to booing the head coach and the team.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Clarke refused to talk about his future beyond the World Cup - he has yet to agree an extension to stay on beyond Scotland's first appearance since 1998 - but confirmed their final warm-up match will be against Bolivia in New Jersey on June 6.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They took the lead shortly afterwards with a quick break that saw them inflict maximum punishment on an exposed Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police Scotland has previously said it will continue with its current policy.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ultimately, Scotland lost to Nicolas Pepe's first-half tap-in.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chasing the game is not Scotland's strength but McTominay forced Lafont to concede a corner with a shot from distance after three team-mates had pressured Christ Inao Oulai into losing possession.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Substitute Nathan Patterson's well-timed tackle in the penalty area prevented Amad Diallo pulling the trigger after a break from a Scotland corner while Bain pulled off a good save to deny the Manchester United winger, before Monaco's on-loan Sunderland winger Simon Adingra hit the post in added-time.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Malcolm Offord is the leader of Reform UK in Scotland and the party's candidate for Inverclyde.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"Around 5.25am on Tuesday, March 31, 2026, police received a report that a man had fallen from a flat in Dougrie Place, Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After almost two decades in power, the SNP are out of ideas and Scotland is paying the price.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Responding to news of the consultation, a Scottish Government spokesperson said: \"The Scottish Government remains in regular contact with Alexander Dennis and trades unions and stands ready to discuss all options, across a range of areas, to protect skilled jobs and achieve the best economic outcome for Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SNP candidate for Edinburgh Central added: \"There is no room for complacency, but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "VIRAL experimental math-rockers Angine De Poitrine from Quebec are coming to Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On his search for Scotland's World Cup base camp, the head coach found the one in North Carolina, with a wee hand from a few familiar faces.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With the help of Charlotte assistant Dicker and Scotland assistant Steven Naismith, BBC Scotland gets the lowdown on \"one of the best facilities in the MLS\" and the national team's summer set-up.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is not in the interests of Scotland's economy for shop owners to be incentivised to invest in Berwick-upon-Tweed over Bothwell, Buckhaven, or Blairgowrie.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He mans a ship off the West Coast of Scotland and he's also, uh, very, very lyrical.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland job cuts plan risks austerity, IPPR Scotland warns", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland needs change after 20 years of SNP government,\" the Scottish Labour leader said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @theSNP: A historic SNP majority can unlock transformational change with independence - and make Nigel Farage irrelevant in Scotland's Parliament.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Steve Clarke has called for an end to speculation about his future so he can concentrate on the World Cup after Scotland suffered a second friendly defeat in succession.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Murdo Fraser said SNP ministers should be telling Police Scotland \"this practice must stop\" to avoid the risk of criminalising Scots who haven't done anything wrong", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Police Scotland said his case had been treated differently 'versus reported incidents involving other prominent public figures' and apologised to him 'unreservedly'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He claimed that if Scotland go gung-ho against top teams, we run the risk of being left embarrassed.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But from early on here, Scotland's intent was clear.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He is a former Scotland Office minister, but has got himself into hot water recently with some of his past comments.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"After 19 years of SNP rule Scotland needs a fresh start.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "🏴󠁧󠁢󠁳󠁣󠁴󠁿 Scotland's energy must be in Scotland's hands, and that can only happen with independence.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The company is a leader in zero-emission bus technology - electric and hydrogen buses - and plays a key role in delivering Scotland's and the UK's green transport ambitions.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As the ECHO spoke to James Milne, 41, from Shetland, and Andy Irvine, 32, from Paisley, outside the venue, a line of Scotland fans emerged from inside the pub.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Alexander Dennis workers have been on furlough since last September while awaiting the outcome of the latest round of bus funding, with ministers hoping fresh contracts would stabilise the firm's long-term future in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added that the wider economic environment was driving companies away from Scotland.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The criticism comes as questions mount over the effectiveness of Scotland's flagship green transport funding schemes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "BBC Scotland News understands that one of the individuals who submitted the complaint against him was Maggie Chapman, who will now take Ingerson's place at the top of the list.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The stories of refugees integrating their lives to Scotland are the subject of a new drama project being launched in Stirling next week.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland's Assisted Dying Bill was opposed by people for a range of reasons, not just religious faith (Picture: Jeff J Mitchell) | Getty Images", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week First Minister John Swinney announced NHS staff would be given a one-off national holiday to mark Scotland's men's football team participating in its first FIFA World Cup since 1998.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Poynton, standing in front of a row of houses, said in the video: \"Scotland faces an important choice this May.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland's been very badly run for two decades by the SNP,\" he said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The NHS in Scotland has made great strides in bowel cancer screening uptake in recent years, especially since the Faecal Immunochemical Test (FIT) was introduced as its primary screening tool in 2017.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Deputy First Minister added: \"Meanwhile, the UK Government has been sitting on its hands when it comes to the policy levers which would make a vital difference to order numbers at Alexander Dennis and support domestic bus manufacturing in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland's criminal underworld is in meltdown following the arrests of crime boss Steven Lyons in Bali and his partner Amanda in Dubai, the Daily Record can reveal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage published by the Daily Record yesterday showed Bali immigration officers carrying out the arrest and then Lyons being paraded by immigration and police officers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"We are aware of the arrest of a Scottish nominal in Bali and we are working closely with European partners.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was First Minister John Swinney that confirmed the new furlough support for ADL which he said would need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.\"", "score": 3.5503549999999997, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Earning fans thanks to its bustling and family-friendly atmosphere, Vittoria on the Walk specialises in Italian classics made with ingredients from both Italy and Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS in Scotland plan 'is working' says First Minister John Swinney", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The gaffer here obviously knows Steve well, I think they know they'll be looked after quite well. He worked with John McGinn and a few other Scotland players, so having that connection, understanding what teams need and being flexible with it, really helps.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Russell Findlay has promised to cut taxes permanently for businesses in Scotland if his party wins the Holyrood election.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government, and parents need a break from John Swinney's failures draining their hard-earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the same time, SNP leader John Swinney was braving the stormy winds at the St Fergus gas terminal to push the case for independence - saying this would \"put the region's energy future in Scotland's hands\".", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And they're the perfect opponents to for Scotland to play tonight, according to midfielder John McGinn.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A man that knows a fair few things about the benefit or otherwise of a World Cup warm up match is the former Scotland striker Darren Jackson, went of course and played in France 98. Darren Morning to you.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland 's big bus to Germany two years ago began to stall and splutter at around this exact same stage in the journey.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the paper, Employment, Productivity and Reform in the Scottish Public Sector, the thinktank IPPR Scotland argues that the SNP plan for public service reform is based on flawed assumptions and includes multiple strategies \"pulling in contradictory directions\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Swinney said: \"The SNP is focused entirely on the priorities of the people of Scotland - improving the NHS, increasing support with the cost of living and delivering the fresh start of independence.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland have to get back to what has brought them joy in the recent past - huge tempo, dangerous deliveries from wide, a flooding of an opponent's penalty box, a creation of chaos, a flick-on, a ricochet, a breaking ball launched into a net.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The African side were unsettled by Scotland in the opening ten minutes but asserted themselves following Pepe's goal and hit the post late on.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last night Mr Fraser said the Scottish Conservatives are 'pledging to end Police Scotland's recording of non-crime hate incidents'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Falkirk goalkeeper Scott Bain and Bologna midfielder Lewis Ferguson replaced Kelly and McTominay for the second half in which Scotland stepped up the pressure but still struggled to create clear-cut chances.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scots gangland figure arrested in Indonesia following Police Scotland raids", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Niall said it was a good time to be supporting Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said: 'For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Herald has asked Qualifications Scotland (formerly known as the SQA) to confirm whether those impacted by the disruption on Arran would be eligible to receive this form of support.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There's a lot of people in Scotland who really don't like Gaelic and don't think it should have money spent on it and it's concerning there could be that opportunism there from Reform to try and capitalise on that at a time when money is tight across everything, but it's also a really important time for the language.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police Scotland were called to the address after concerns were raised about the occupant.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last month, NHS Tayside told the Local Democracy Reporting Service it was awaiting direction from the Scottish Government about the public holiday after the First Minister and Perthshire North MSP John Swinney's proposal to make June 15 a bank holiday in Scotland was approved by His Majesty King Charles.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Officers from Police Scotland say his death is currently being treated as unexplained.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland are the defending Men's World Curling Champions - so no pressure!", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pubs in the Highlands have been given the go-ahead to stay open late for all of Scotland's World Cup games this summer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And Scotland is paying the price for it.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'There is no room for complacency but by delivering on the priorities of the people of Scotland, a fresh start with independence is there to be won and every single vote counts.", "score": 3.5503549999999997, "claim_types": ["voting", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"For many months, the Scottish Government worked intensively with Alexander Dennis and the workforce to secure the company's future, protect jobs, skills, and industrial capability in Scotland,\" she said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Our man Ryan McDonald handled the phone lines today ahead of Scotland's friendly against Ivory Coast", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"As for the booing of a Celtic player, this is a common thing even when they are playing for Scotland, ask Davie Hay.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Similarly, Shelter Scotland director Alison Watson warned that the government was on track to break their affordable housing pledge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Beyond the headline voting numbers, the survey also shows voters beginning to pay closer attention to the people who want to lead Scotland. Since February, we've seen a clear drop in the proportion of voters who say they 'don't know' their view of each party leader, indicating that engagement is increasing as the election draws nearer.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lyons - one of Scotland's most high-profile gangland figures - was detained shortly after landing at Bali's I Gusti Ngurah Rai International Airport on a flight from Singapore on Saturday, only days after he was deported from Qatar.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police Scotland confirmed Lyons' arrest on Saturday and said the force is working with partner agencies across Europe.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Clarke's former Killie midfielder Dicker agreed it's \"a really good central base\" with flights to both Scotland's match cities only a couple of hours.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scottish Liberal Democrat finance and economy spokesperson Jamie Greene MSP said: \"The Tories like to talk the big talk on business, but when it comes down to it, the Lib Dems actually get stuff done for Scotland's hard-pressed SMEs.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ahead of the visit on Tuesday, Mr Sarwar said: \"Scotland needs change after 20 years of SNP government and parents need a break from John Swinney's failures draining their hard-earned cash.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since 1976, Scottish Women's Aid has helped women, children and young people and has driven change in policy, law and public understanding in its drive to create a Scotland that no longer needs its services.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland's voters deserve better.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "They visit Glasgow to find out more about Scotland's notorious serial killer who cops believed murdered three women Patricia Docker, Jemima MacDonald and Helen Puttock in the late 1960s.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Liverpool city centre was packed with Scotland fans ahead of the World Cup warm up match at the Hill Dickinson Stadium", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The unfolding situation has exposed tensions at the heart of industrial policy in Scotland and across the UK.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We are absolutely committed to doing the right thing by our team members and our stakeholders to protect jobs, invest in our business and maintain strategically important manufacturing capability in Scotland,\" he said.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Unions said the scheme was critical to the short-term sustainability of ADL's future in Scotland after the company previously announced in June 2025 it intended to centralise its manufacturing operations at a single site in Scarborough.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We want to make the most of Scotland's participation in this global sporting event by ensuring people have the opportunity to come together and celebrate - no matter the outcome of the match.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This reaction was all the more surprising given it was no secret that Forbes was a member of the Free Church of Scotland, and it was entirely reasonable to expect that her views would be in line with her church's teaching.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Labour leader has accused John Swinney ́s party of failing to invest in Scotland (Robert Perry/PA)", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was cause to be disappointed in the way Scotland conceded from a counter-attack, a run from Nicolas Pepe that wasn't tracked by Billy Gilmour, a defensive lapse that wasn't recovered by Kieran Tierney, and a shot that Liam Kelly presumed was going in until it came off a post.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland have already scheduled a World Cup farewell against Curacao at Hampden on 30 May.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "McTominay hit the post early on against Japan on Saturday night but the ball screwed off the woodwork to safety rather than into the net or back out to a Scotland player.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "International creditors said Scotland showed good financial management so I give the alternative to the negative view of the economy.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On Tuesday, Police Scotland confirmed it is working alongside European authorities in relation to the arrest.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Armchair sports fans once again discovered a passion for curling at the Winter Olympics earlier this year - enjoying three weeks of thrills and spills on ice for Team GB (who, as ever, were from Scotland).", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eddie also had his say after Daizen Maeda was jeered by Scotland fans.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Daily Record Crime Reporter Norman Silvester says the weekend arrests are a major coup for Police Scotland and international law enforcement in the fight against organised crime.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "FIRST Minister John Swinney has called for Scotland and other devolved nations to be involved in a planned UK Government Cobra meeting on Tuesday after no receiving any invitation.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Scottish Government has released a statement detailing the First Minister has requested an invite be extended to Scotland, Wales and Northern Ireland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"Around 4am on Tuesday, 31 March, 2026, following a short pursuit, police stopped a stolen vehicle in Princes Street, Edinburgh.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steve Clarke's former Kilmarnock midfielder Gary Dicker is assistant coach at MLS side Charlotte FC - where Clarke's Scotland squad will be based for the World Cup", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Since 2021 Biogen has made tofersen available free of charge to eligible patients in Scotland, and across the United Kingdom, through an early access programme, ensuring patients can benefit from treatment while formal NHS funding decisions are ongoing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Stewart said she hopes the expansion of Fair Feast will be some sort of blueprint for other communities across Scotland and beyond.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We had JJ Bule on, uh, radio Scotland last week, who did a, I think you could like an LCD sound system kind of very funky hipster kind of track.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, IPPR Scotland argues this does not mean the sector is \"bloated.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL positions Scotland at the forefront of zero-emission transport technology, aligning with national climate targets and global export opportunities.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mathew Street was lined with Scotland fans just before 2pm, with constant chanting for midfielders Scott McTominay and John McGinn.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was back down to earth with a bump for Scotland at the weekend.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Robert Deavy, senior organiser in manufacturing at GMB Scotland, said: \"How many jobs must be lost and factories closed in Scotland before our governments stop sending contracts around the world?", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It's meant that there are portions of people across Scotland who do not support Gaelic being funded in any way.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland manager Steve Clarke specifically requested a match against strong African opposition to prepare for their World Cup group stage game against Morocco this summer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Police Scotland spokesperson said: \"A 38-year-old man has been arrested and charged in connection with the death of David Smith in Glasgow.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In her letter, Ms Hyslop said Transport for Scotland had been engaging with the UK Department for Transport over a trial being conducted in England.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That reflects a deeper, structural issue which is driving up the cost of doing business in Scotland.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The roar Nathan Patterson received when he replaced Ross McCrorie after 61 minutes suggested many Evertonians had responded to manager David Moyes' call to come out and support Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ryan Christie had a weak, close-range shot at the end of a promising Scotland attack - and seconds later the Africans were opening the scoring at the other end through Pepe.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motherwell and Wishaw Clare Adamson has welcomed new Scottish Government funding to support Scotland-based musicians with the rising costs of international touring.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Malcolm Offord from Reform UK is next saying the best form of opportunity is a good job, and says Scotland is the best country in the world for financial resources and people.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Former Olympic silver medalist Ross Whyte is captaining Team Scotland at the 2026 Mens World Curling Championship.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Green source told BBC Scotland that this was not the only complaint that had been made against Guy Ingerson.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Healthy life expectancy is falling, and for people living in our most deprived communities, it is now a quarter of a century shorter than for those in the least deprived areas.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A survey of GPs found 55 per cent reported seeing rising numbers of patients with diseases and conditions linked to or worsened by poverty", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"With figures like these, it is unsurprising that more than half of our GP members report an increase in health problems that are either caused or exacerbated by poverty.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite financial education already being included in the Curriculum for Excellence, the Scottish public believes schools should do more to teach students about money.", "score": 3.5299199999999997, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If local authorities in Scotland wish to implement a trial it would mean their acceptance that any crossing, under trial conditions, may be unenforceable which comes with risks. A collective way forward may be to proceed with shared discussions on the potential risks, benefits and opportunities of trialling and ultimately introducing side road zebra crossings in Scotland.\"", "score": 3.52944, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations according to research.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sitting metres away from the oil rig at Aberdeen's South Harbour, she said: \"I do not trust John Swinney with Scotland's energy.", "score": 3.47393, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Unlike other areas of the UK, however, Scotland doesn't recognise Easter Monday as a national public holiday, meaning that not everyone is entitled to an extra day off.", "score": 3.46698, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity has also pioneered the recognition of children as victims of domestic abuse in their own right and influenced the introduction of the Domestic Abuse (Scotland) Act, which criminalises psychological abuse, coercive control and controlling behaviour.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Earlier today, councillors decided to grant a general extension of opening hours for all of Scotland's matches until 30 minutes after the final whistle.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An update for this week's meeting of the committee says: \"The Cabinet Secretary responded but offered no current legislative route to allow the introduction of continental style zebra crossings on public roads in Scotland. The decision of the committee taken on 3 April 2025 is therefore that the proposed study should not proceed.\"", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said: \"In relation to licensed premises that have a full premises license and have televised sport if a Scotland match is played beyond the core licensing hours, there'll be late opening until 30 minutes after the final whistle.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops and our fear is this could see a shift in investment down south.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Macdonald went on to say that further work on Scotland's maritime history is expected to reveal more details about transport between the islands, and between the islands and the mainland.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "David Lonsdale, director of the SRC, said: \"As it stands, Scotland risks becoming a materially less competitive place to operate shops, and our fear is this could see a shift in investment down south.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scottish Labour has already announced plans to make heating your home cheaper through widening eligibility for the Warmer Homes Scotland grant creating a warmer homes programme, boosting the uptake of the Warm Home Discount and topping up grants for rural homeowners.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gordon Strachan has urged everyone associated with the Scotland national team to not even think about Steve Clarke's long-term future until afrer the World Cup.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"That with the election of an SNP government, we can move quickly to make sure Scotland's energy is in our hands, and we can use those powers to reduce the bills.\"", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He continued: \"My argument is that we should be able to use the energy wealth of our country for the benefit of the people of Scotland - and that's exactly what my message.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"What we need to do right now is allow new licences, make sure that we can drill our own oil and gas and use those revenues to help the people of Scotland.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Tories said they would 'make clear to Police Scotland they must end this practice'.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government acting now.\"", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Mr Sarwar told voters he is standing as first minister to \"fix the mess, get the basics right, and build a better future for Scotland\".", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He added: \"I'm standing to fix the mess, get the basics right, and build a better future for Scotland.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"With elections five weeks away, it's vital the next Scottish Government treat these unacceptable figures as a serious call to action. The people of Scotland deserve better from their cancer strategy.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The First Minister previously he wants \"as many people as possible to celebrate\" Scotland's return to the World Cup.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I've said before, I'll play for Scotland until I'm told I'm not good enough.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Thirteen arrested in organised crime raids in Scotland and Spain", "score": 3.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is vital that the UK Government ensures a long-term pipeline of orders and a supportive approach to reserved matters such as subsidy and procurement. A first step would be changes to the Subsidy Control Act 2022 in order to create that pathway for procurement reform. The future viability of companies such as Alexander Dennis with a long history and commitment to Scotland depends on the UK Government to acting now.\"", "score": 3.299735, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Only a vote for the SNP can deliver a fresh start with independence - giving us the powers to end Westminster's waste of our energy potential and the power to lower energy bills for Scottish households and businesses.\"", "score": 3.290645, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Despite some areas of Scotland being hit with snow last week, Easter is almost here - bringing with it a lovely long weekend.", "score": 3.25971, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Alarmingly, more than 140,000 of these were for families with at least one child.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John Swinney said: \"Scotland will be on the world stage this summer and I want as many people as possible to be able to celebrate that moment.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "THE UK Government has been told the closure of Grangemouth oil refinery has made Scotland \"vulnerable\" to supply shortages as the last shipment of jet fuel from the Middle East is to be received this week.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"That is what people in Scotland will get from me and the SNP Government - strong, experienced leadership that is making our NHS better.\"", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mairi McAllan, SNP candidate for Clydesdale, said: \"Our transformational childcare package will be a complete game-changer for families across Scotland.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "First Minister John Swinney confirmed the support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was First Minister John Swinney who confirmed the furlough support, which will need \"evidence of sufficient orders to sustain its operations in Scotland\" by the company.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SRC has also been campaigning for reforms to the way businesses in Scotland are taxed.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "SNP MP Stephen Flynn has criticised the UK Government over its decision not to intervene and save the Grangemouth refinery from closure, as he said \"Scotland's resources should be controlled by Scotland\".", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We remain grateful to the Scottish Government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Following the consultation announcement, Deputy First Minister Kate Forbes has called on the UK Government to \"urgently deliver\" on the promises made to Alexander Dennis and help secure vital manufacturing jobs in Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "This has been a hot topic of discussion for some time, with industry leaders calling for the windfall tax to be tweaked and new drilling licences to be issued to boost resources.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Greens want to axe the royal tax exemption paid when buying property in Scotland (Joe Giddens/PA)", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Just one example, we've delivered social security Scotland and the national investment bank bringing jobs and investment to the economy. We've used progressive taxation to fund policies like free tuition and prescriptions. We believe in using Scotland's energy wealth and becoming an independent county and re-joining the EU.\"", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The leader of the Liberal Democrats has called for the Scottish Parliament to be recalled to address the crisis engulfing Scotland's ferry network.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The SNP is clear: energy powers should be firmly in Scotland's hands.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Davies added: \"We remain grateful to the Scottish government for the furlough scheme support to secure these jobs, maintaining skills and manufacturing capability in central Scotland.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RCGP Scotland's manifesto for the 2026 Holyrood election calls on the next Scottish Parliament to ensure that resources are targeted to patients in deprived communities.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Scots council pays £30k after child given food they were allergic to", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is now hope in the form of a drug called Tofersen - the first treatment in more than 30 years proven to slow the progression of SOD1-related MND.", "score": 3.16655, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dumfries and Galloway Council recently forked out £30,000 in compensation to a family after a child was repeatedly given food they were allergic to.", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over a third (34.5%) of mothers said they often find themselves choosing between paying for childcare and household essentials.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bowel Cancer UK found that around a third of people who are eligible here don't complete their test.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's now consistently true that majorities of young people in each of Scotland, Wales and Northern Ireland want to leave the UK, and the coming elections in Scotland and Wales will almost certainly bear that out.", "score": 3.1144249999999998, "claim_types": ["rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New figures from the RAC Foundation show that the cost of the Middle East conflict has cost drivers across the country more than half-a-billion pounds in higher fuel prices.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, while it is available free of charge to patients in England and Wales, it is not currently accessible in Scotland.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I have asked Transport Scotland officials to seek further legal confirmation, as they consider the effectiveness of this type of crossing upon review of the published trial findings.", "score": 3.096735, "claim_types": ["rules", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"But listen, Scotland needs change, and if there is an opportunity to get rid of the SNP and deliver change with fairness in its heart, which shares our values, of course, we'll look at that.\"", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Scottish Labour will fix the mess the SNP has made of our NHS and get Scots the urgent cancer care they deserve - improving screening, expanding rapid diagnostic services, delivering cutting edge tech and providing support for patients and families.", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Scotland's Deputy First Minister Kate Forbes called for action from the UK Government.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "RUSSELL Findlay has promised to establish Canary Wharf-style enterprise zones in Scotland.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Few people would argue that things have got better - the economy is underperforming, NHS waiting lists are longer, we have the worst drug deaths in Europe, a housing crisis, school standards have gone backwards, infrastructure is crumbling, the A9 dualling is 10 years behind schedule and ferry services are not up to purpose.", "score": 3.063685, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"And given that the council recently paid out £30,000 in compensation after a child was given food numerous times were allergic to, it is right that we do everything possible to prevent prevent such incidents from happening again.", "score": 3.061215, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service you will find decay.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new system will prevent police from recording lawful free speech while ensuring reports from the public, which may lead to genuine harm, get the right response.", "score": 3.023415, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Thousands of people are still waiting for hours longer than they should be in A&E departments, with the SNP having failed to meet their own 95% waiting times target for, shockingly, six years,\" she said.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Survation poll on Tuesday suggested the SNP could win 62 seats at Holyrood, Reform 19, Labour 18, Tories 13, the Greens 10 and Lib Dems 7.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Union says 1600 Scots jobs at risk if government doesn't act in 'national interest'", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Other data released yesterday showed that only 61.1 per cent of patients attending A&E were seen within the target of four hours in the week ending March 22, down compared to 64.8 per cent the previous week, with 13.9 per cent waiting more than eight hours and 5.7 per cent more than 12 hours.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price of filing up at the pump has been steadily rising since the war in the Middle East broke out just over a month ago.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The most important ones in my view are those where 20% or more speak the language and that's where the extra funding will be.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "James said: \"It's my first time in Liverpool. It's amazing. I love the accent. It's just an extended city of Scotland.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It makes me happy to help people unlock their creative potential and show Scotland their captivating stories of dignity, resilience, and the desire to make the world a better place, starting with oneself.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Amongst the many hustings events I'm doing during the Scottish Parliament election campaign, I took part in one last week hosted by Christian think tank Logos Scotland.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Moving to Scotland with two young children as a single mother made it impossible to continue my acting career at that time.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Guy Ingerson was due to top the regional list for the party in the North East of Scotland in May.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He has served as an MSP for South Scotland since 2021 and has played a key role on Holyrood's standards committee", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scores of Torry residents faced losing thousands as they were told to sell up their homes for less than market value, after they were deemed unsafe and earmarked for demolition.", "score": 2.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"His party have decimated the NHS - waiting times have soared, GP numbers have plummeted and he has failed miserably on his pledge to end year-long waits by the end of March,\" he said.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He explained: \"The worst for pollution and litter is polysterene.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight men were arrested by Police Scotland as part of a joint operation with cops in Spain targeting serious organised crime.", "score": 2.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"And, of course, John Swinney only cares about independence, when breaking up the UK would instantly make our great country poorer, less stable and less safe and bring joy to despots like Putin.", "score": 2.851145, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's clearly wrong that individuals are tortured or coerced in an attempt to change their sexuality or gender identities, but such behaviour is almost certainly already illegal.", "score": 2.81209, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I hope that this project will help refugees overcome trauma and send a strong message to the world that wars and violations of human rights have always been harmful to humanity and to women.\"", "score": 2.805745, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"This should never be accepted as inevitable. No one should become ill faster because of where they were born or because of poverty.\"", "score": 2.799985, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, the £80million spent on the A96 hasn't resulted in any dualling at all.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Critics argue that despite tens of millions of pounds in public backing over recent years, jobs are still being lost and production remains under threat.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Scotland has the talent, resources and ambition to lead, now all we need is a government who will give it their full backing.", "score": 2.753175, "claim_types": ["predictions", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Leon Ward, chief executive of Money Ready, comments: \"We are seeing a massive public consensus that current levels of financial literacy are just not up to scratch. The 'cost of not knowing' is not just a phrase - it is the missed compound interest on a pension, the struggle to manage bills, and the anxiety of not understanding a credit score. By the time many people realise what they don't know, they have already missed out on years of potential financial growth and opportunities.\"", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Keeping people locked into gas is wrecking our planet and punishing households with outrageous costs.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The take down of Scotland's organised crime groups follows unprecedented levels of cooperation between police forces across Europe including Police Scotland, the National Crime Agency, the Guardia Civil in Spain, Interpol, and police in Holland and Turkey.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As an ageing property, the building presents several risks, primarily due to the use of the building beyond its intended lifespan as CLASP buildings were only expected to last in the region of 50 years, yet Dumbarton Health Centre remains in use.", "score": 2.7436800000000003, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Winds quite light with loads of 6 to 9 Celsius.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The pair killed 16 people in 10 months in 1828 selling the corpses to anatomist Robert Knox who would dissect them in his anatomy lectures.", "score": 2.72832, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Linden, the former leader of North Lanarkshire Council, was convicted of 10 offences last week, including five sexual assaults between 2011 and 2021.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scottish Liberal Democrat leader Alex Cole-Hamilton said 19 years of \"SNP failure\" had directly harmed some of the most vulnerable Scots.", "score": 2.712725, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.5}} -{"sentence_text": "'Today we've seen that the 62-day cancer waiting times target has once again been missed.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Business rates thresholds have barely moved in recent years, while inflation has pushed up costs and rateable values.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A total of 12 per cent reported a significant increase in those presentations, and zero reported seeing a decrease.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The research found that two-thirds (66.1%) of mums agreed or strongly agreed that their childcare costs are the same or more than their income.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity works with more than 50,000 people across the UK every year delivering financial education programmes.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The planned job losses are a key plank of the government's plan to fill a looming £4.7 billion black hole in the public finances.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figures are based on average daily pump price rises and last year's fuel consumption rate.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Discouraging': Lowest number of new homes begun since 2013 despite housing crisis", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Long waits are down for the ninth month in a row, more patients are being treated, and progress is being delivered.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Things are not faring much better in A&E departments, where only 61.1 per cent of patients were seen, treated and discharged within four hours.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The polling also reveals that 73% of firms expect to increase prices over the coming quarter.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average cost of petrol is 152.8p per litre, an increase of 20p since the war began.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The private sector completion figure is the lowest since 2017 (excluding the pandemic in 2020), while the start figure is the lowest since 2013.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As Swinney pointed out last year, by 2030, there will be 1 million young Scots eligible to vote, who weren't in 2014 - more than a fifth of the electorate.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scots motorists have been dealt a 'hammer blow' as the cost of petrol has soared to more than £2 a litre - the highest in the UK.", "score": 2.67708, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"People's lives are being cut short and inequality is still plaguing our communities. It's shameful that a person's postcode still determines life expectancy.\"", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, increasing workloads have led to many GPs being put at risk of burn-out.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was undoubtedly the case that some of those opposing assisted dying came at the issue from a faith perspective, but many more did so because of the belief that the weak, vulnerable and disabled would be put at risk should the law be changed in this way.", "score": 2.67029, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By the time Scots come to cast their vote in the Holyrood elections on May 7, we could be in the throes of the worst economic shock since the 2007 crash.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "READ MORE: Reform plan to stuff Lords with '900 peers' to push deportation plans", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Otherwise, there is only one conclusion to draw - that Swinney is not on the side of the victims of Linden's sexual abuse, but on the side of those who covered up for him, with the SNP putting party before the victims of sexual abuse yet again.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Unite and other unions warned that up to a multiplier of 1,600 jobs could be affected in the wider supply chain and support services if the closures proceed.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The report, authored by Stephen Boyd, Dave Hawkey, and Casey Smith, states: \"The estimate that if frontline protection means freezing teacher numbers and seeing NHS staff increase at 1% cent per year, the government's target would imply employment reductions elsewhere of 3,600 per year, or 18,000 over five years.\"", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The report authors say that if the burden is to fall on \"non-frontline\" roles in these areas, the cuts could be roughly equivalent to how many jobs \"were lost from local government in the first five years of 2010s austerity\".", "score": 2.631525, "claim_types": ["quantity", "correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Glasgow supermarket worker shot with BB gun in attempted robbery", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's a massive turnout for a 10K and hearing people cheering you on really helps when you're digging deep.", "score": 2.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"By bringing check-ups and advice into everyday community settings - from workplaces and pharmacies to football clubs and shopping centres - we can reach people who might not otherwise come forward, particularly in more disadvantaged communities where the burden of ill health is greatest,\" the First Minister said.", "score": 2.6147650000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "GPs have warned they are increasingly seeing the impact of poverty on their patients | The Scotsman", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 60 people have also been detained in the last 12 months in a separate police probe into a series of machete attacks and firebombings in Edinburgh and Glasgow linked to a long running feud between the Lyons and Daniel crime families.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So we kind of know that this stuff's out there and that people are finding their news online and you might have also heard earlier this month on Radio Wales and across BBC Wales, my investigation into political deep fakes, I found more than a dozen pages on Facebook sharing fake news about British politicians along with some AI generated images and examples of deep fake videos of Welsh politicians, although those were labeled as satirical.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three more teens and a man have been arrested and charged after a 'targeted attack' among alleged 'armed gangs' in an Asda car park.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Welcome Break's Woodall Services on the M1 in Sheffield has the highest price for petrol, at 189.9p per litre.", "score": 2.58736, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The next Scottish Parliament term must be the one to break the trend of worsening health inequalities.\"", "score": 2.579765, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The most expensive motorway service area for diesel is Euro Garages' Rivington Services on the M61 in Bolton, Greater Manchester, where the price is 200.9p per litre.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The bus manufacturing sector in the UK suffered in 2025, with 51% of all zero-emission buses purchased being sourced from overseas.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the area covered by the Fife Council a total of 10 received at least 380 points - with three earning full marks.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But just 14 of those new vehicles are understood to be double deckers - the type of bus that ADL specialises in building in Falkirk.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK's most expensive petrol is being sold for 199.9p per litre at Avenue Garage in Northwich, Cheshire.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This consists of £409 million for diesel and £135 million for petrol.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight CalMac ferries are currently out of action, four of them for planned maintenance and the others due to technical issues.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He later contested the 2024 general election for Westminster in North East Fife, finishing second with 9,905 votes behind Lib Dem Wendy Chamberlain, who received 23,384 votes.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Also scoring the full 400 points with fewer than 10 per cent of pupils from 'very disadvantaged' families is Wormit Primary School, in the village on the bank of the River Tay opposite Dundee.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The school has nine teachers and an average class size of 22.8 puils.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Following that win against Craig Levein's St Johnstone there were still 12 games to and there proved to be plenty of twists in turns.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is understood that about 85 employees have since left the business.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Dunfermline statement reads: \"With over 9,000 tickets now sold for our upcoming semi-Final tie with Falkirk, the club can confirm we have been allocated a further 2,000 tickets for the match.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Contacted by the Local Democracy Reporting the First Minister's office detailed that in 2026-27, West Lothian Council will receive £498.9 million to fund local services.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This policy alone accounted for around 7,500 new staff in local government.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Liberal Democrats are projected to receive 8% on both ballots.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The application attracted six public representations, a formal objection from Sandwick Community Council, and a petition signed by 40 residents.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average diesel prices at UK forecourts on Tuesday were 182.8p per litre, up 40p since the start of the conflict in the Middle East on February 28, the RAC said.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On that occasion, in April 2009, 17,124 supporters watched Falkirk run out 2-0 victors to earn a place in the final against Rangers.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Again, fewer than 10 per cent of pupils are 'very disadvantaged' and the school has a 93 percent attendance rate.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This included 2,159 exceeding two years, which was down 45 compared to January.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We have fewer police, we are all paying the highest taxes in the UK.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK's largest bus manufacturer is at the centre of a row over the planned axing of a quarter of its staff after over £90m in taxpayer support.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We've seen improvements consistently for the last four quarters, with 95.6% of patients being treated within 31 days and the median wait for treatment just two days - the joint lowest on record.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Lack of access to a disabled bay can have a severely detrimental impact on a person's life.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steven Lyons' arrest over the weekend followed a series of early-morning police raids in Scotland and Spain last week.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But after a promising start as Scotland felt their way back into the 3-5-2 system that had been dusted down to try to cope with the physical challenge of Ivory Coast, things began to go awry just 12 minutes in as Nicolas Pepe bundled in the opener for the so-called home team.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The teams who have qualified are United States, Canada, Japan, China, South Korea, Sweden, Switzerland, Scotland, Italy, Germany, Czech Republic, Poland and Norway.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The secretary of Interpol's Indonesian bureau, Untung Widyatmoko, added that Lyons' criminal group is claimed to have operated in countries including Spain, Scotland, the United Arab Emirates, Qatar, Bahrain, and Turkey.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices have led to motorists paying an additional £544 million for petrol and diesel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The poll also projected the SNP would win 62 seats at the Holyrood contests on 7 May, which would leave the nationalist party three seats short of a majority.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey of 1,068 people, carried out between 16 to 23 March, put the SNP on 35 per cent support in the Holyrood constituency vote and 32 per cent in the regional list.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight CalMac ferries are out of action, four of them for planned maintenance and the others due to technical issues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Pars were initially allocated just over 9,000 briefs for the April 18 clash with their bitter rivals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than half (51%) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week, it was announced that the firm was due to receive orders for more than 100 zero-emission vehicles through a Scottish Government scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The weekend arrests of more than a dozen alleged members of Scottish organised crime groups has been hailed as a major victory for law enforcement", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That is a decrease of six percent in starts and 13% in completions between 2024 and 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some £11.2m of those jobs grants from Scottish Enterprise came in 2023, three years after concerns were raised over ADL embarking on major job cuts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Poll suggests SNP could win 62 Holyrood seats with Reform in second", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK would receive 19 per cent of the constituency vote and 18 per cent of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Irn-Bru maker AG Barr serves up £437m in sales and sets out goal to double in size: shares fizz", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey put the Tories on 13 seats, with 11% of the constituency vote and 13% of the list vote, with the Scottish Greens on 10 seats and the LibDems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Malcolm Offord (-15) and Nigel Farge (-31) fare better than their Labour counterparts, although at the time of polling, most Scots (55%) had no opinion on Lord Offord.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Asked to choose who they would back in a hypothetical 1v1 scenario; 55% of voters said they would prefer Mr Swinney over Mr Sarwar, while 45% said they would support Mr Sarwar over the current First Minister.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures for the most recent week showed just 64.9% of people were seen within the goal time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 300 people are waiting for their applications to be processed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For every £80 parents pay in, they would get £20 from the UK Government and £10 from the Scottish Government.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL says it has faced an \"uneven playing field\" due to policies that favour foreign competitors, including Chinese electric bus manufacturers, whose market share last year rose from 10% to 35% in the UK market", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bus firm off to England in £90m Scots public funding row may get even more millions", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 29-year-old has scored 11 times in 45 caps and in each of the games where he has found the back of the net, the Dark Blues have won.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Dark Blues have lost four of our seven meetings against CAF nations, winning only two in total.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She added: \"We're . Gaelic speakers only 2% of the Scottish population but that means we should have two or three MSPs who speak the language or at least very supportive of it to make sure that that community's voice is heard.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Pollsters predict a 99.7% chance of a pro-independence majority - that is, a majority held by the Scottish National party and Scottish Greens, both of which support Scottish independence.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of the 10 opinion polls on Scottish independence so far this year, \"yes\" has been ahead in seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The study by financial education charity Money Ready revealed that 78 per cent of Scottish adults think schools are not providing enough financial education.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour followed closely behind in the survey, with 19% of respondents backing the party in constituencies and 17% in regional votes, equalling 18 Holyrood seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Northern Ireland's travelling contingent did their best to generate a lively atmosphere, but there is only so much 300 people can do.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In addition, only 72.6 per cent of patients started cancer treatment within the 62-day target in the final three months of 2025, which was an improvement on 70.7 per cent in the previous quarter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "SNP ministers have blown a 'jaw-dropping' £340million on design consultants and planners to dual just 11 miles of key Highland routes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is below the SNP's pledged 95% target which has not been met since 2012.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SNP could win 62 seats in May's Scottish Parliament election, with Reform UK narrowly in second place over Labour, a new poll has suggested.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That means it costs £100.52 to fill a 55-litre family car, breaching the £100 mark for the first time since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The company retains the option to evidence a claim for up to £4.1 million of Scottish Government funding to support its staff furlough scheme, subject to conditions being met. No claim has yet been received.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dunfermline have been handed an extra 2,000 tickets for their Scottish Cup semi-final against Falkirk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year, 400 jobs were at risk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The school is expected to reopen later this year after the extensive works which saw 60% of the original building torn down because of RAAC crumbling concrete roof panels.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In total, there were 17,336 homes built and 14,999 builds started across the social and private sectors last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The company said in June that it still needed to find orders for at least 300 buses a year to safeguard production in Falkirk over the long term.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35 per cent of the Holyrood constituency vote and 32 per cent of the regional list, leaving the party just three seats short of the majority.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "THE SNP could win 62 seats in the Holyrood election with Reform UK narrowly in second place, a new poll has suggested.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey of 1068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority needed to trigger a mandate for a second independence referendum.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SNP comes first on both the constituency and list ballots, with thirty-five percent and 32% of the vote.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, 58% of Scots would choose Mr Sarwar over Lord Offord, while 42% prefer the former Tory donor.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We'll also know from data from Ofcom that here in Wales, more than half of us use social media as a news source, Facebook alone in 2022 was the second most news source in Wales after BBC One.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Welsh government estimates that between 20 and 25,000 households will get the 200 pound payment and says other people in severe hardship can apply to their local councils' discretionary assistance fund, where the maximum award for heating oil has been increased from 500 pounds to 700.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "During the school holidays, only 57 per cent of households say all childcare is free or funded.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They expect the introduction of the Isle of Ila will bring some relief, however five out of Calmac's eleven major vessels are still out of action as well as a chartered catamaran and two smaller ferries.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under the existing UK-wide scheme, for every £8 parents pay for their childcare, the Labour Government adds another £2.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The maximum top up you can get for each child is £500 every three months and up to £2,000 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Sarwar Government would add an extra £1 for every £8 parents pay, boosting the discount from 25% to 37.5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour said the annual cap will increase from £2,000 to £3,000 per child and from £4,000 to £6,000 for disabled children.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"In just one quarter, we have seen a significant jump in the number of firms telling us that rates are a major pressure.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The AA said the gap between supermarket and non-supermarket retailers has widened from 5.4p per litre for petrol before the war to 7.6p a litre and diesel as much as 8.8p a litre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In addition, 20,825 have waited more than a year for an inpatient or day case treatment, with 3,132 facing waits of more than two years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scottish Conservatives unearthed the figures showing A9 expert fees alone have soared to £261.3million, meaning the cost of each mile is close to £24million with another 72 miles of the route yet to be finished.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only captain Andy Robertson - winning his 92nd cap to put him only 10 behind the all-time appearance leader Dalglish - and Scott McTominay kept their places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new figures are an improvement from 70.7% of patients being seen in the 62-day window in the previous quarter but a significant decrease from 83.7% in the quarter ending December 31 2019.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Inexplicable, when an order for another 33 double deckers for Falkirk for nearly £20,000 less subsidy lost to a comparative bid from First Bus buying from China.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After Alexander Dennis (ADL) proposed to move its operations to England last year some £4.1m was allocated in publicly funded support for a furlough scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL employs around 1,850 people in the UK, with a significant proportion based in Falkirk and Larbert.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week it emerged that ADL was to receive orders for more than 100 zero-emission vehicles through a Government scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We've committed £15.6 billion through the Spending Review to help local leaders improve transport and support the transition to greener buses.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The negative view amongst the party leadership did not seem to be, in the end, broadly reflected amongst the SNP's membership, 48 per cent of whom voted for Forbes to be leader, meaning she missed out on becoming First Minister by a whisker.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The statistics show 20,825 people had been waiting over a year for an inpatient or day case appointment by the end of February 2026 and 3,132 had been waiting for over two years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Money Ready research identified the key areas of reform Scots would like to see, including: government intervention to ensure people receive financial education (79 per cent); financial education being provided across higher education and workplaces (75 per cent), and teachers being better trained to teach financial education (70 per cent).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes after the Scottish Government spending review, announced in January, highlighted an investment of £4.1 billion health capital over four years which did not include a new health centre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey put the Tories on 13 seats, with 11 per cent of the constituency vote and 13 per cent of the list vote, with the Scottish Greens on 10 seats and the Lib Dems on seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new vessel has capacity for up to 450 passengers and 100 cars, or 14 commercial vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This boosts vehicle and freight capacity on the route by 40%, improving the overall resilience of the wider fleet.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to £3,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost of living crisis.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Alexander Dennis, which previously proposed shutting down both Scottish bases, claimed it would save around 350 jobs under the new scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "First Minister John Swinney pledged approximately £4 million in funding towards the furlough scheme until work could recommence at the Falkirk site back in September.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Without it the council faces a 20-year repayment on borrowed fundswhich would cost it £30m.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL said the proposals would secure jobs for 200 skilled manufacturing staff, with a further 115 roles now at risk of redundancy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Sunday Times report used data submitted by schools in each of the four categories to come up with a mark out of a maximum of 400.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Less than 10 per cent of its pupils come from a background classed as 'very disadvantaged'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And some £30m of jobs grants for research and development over 10 years has come from the Scottish Government's economic development agency Scottish Enterprise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rangers moved into second place with a 4-1 romp of Aberdeen before the international break, three points behind leaders Hearts and two clear of Celtic.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That gap to their Old Firm rivals remained intact when the champions went down 2-0 to Dundee United at Tannadice 24 hours later.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, Reform UK would receive 19% of the constituency vote and 18% of the list, projecting a 19-seat return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Conservatives will lose almost 20 seats, returning 13 MSPs, followed by the Scottish Greens with 10 MSPs and the Liberal Democrats with seven.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform and Labour are tied for second place with 19% each on the constituency ballot.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scottish Conservatives are projected to earn 11% and 13% of the vote on the constituency and list ballots, while the Scottish Greens are expected to pick up 8% and 11%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By contrast, Prime Minister Keir Starmer has a net favourability rating of -47 among Scots, and the leader of the Scottish party, Anas Sarwar, has a net favourability rating of -25.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"By contrast, I used those budget negotiations as leverage to squeeze the SNP for every penny I could and, as a result, secured £178 million in rates relief for pubs, clubs, restaurants, hotels and self-caterers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The researchers also highlight that while there has been a recent uptick in the number of local government jobs, this is almost entirely driven by the expansion of funded childcare for three and four-year-olds to 1,140 hours.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With adult social services and teachers at levels close to 2010, the IPPR calculates that this \"leaves the rest of local government around 12,500 FTE members of staff below 2010 levels.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SRC said Scots firms were paying £54 million a year more than those down south, or £162 million over the three-year rates period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Islanders elsewhere have also been hit hard with the price of diesel setting motorists back £2.17 a litre at one forecourt on Arran and £2.11 a litre at another in Portree, Skye.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This includes £409million for diesel and £135million for petrol, with figures based on average daily pump price rises and last year's fuel consumption rate.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ministers spend £24m a mile on consultants to dual just 11 miles of A9!", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A UK Government spokesman said: \"The UK is a global leader in bus manufacturing, with around 60% of buses funded through our zero-emission bus programme built by UK-based companies, supporting skilled jobs and a cleaner transport network.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is down from the 64.9 per cent weekly average in 2025 and significantly below the 95 per cent target.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour followed closely behind in the survey, with 19 per cent of respondents backing the party in constituencies and 17 per cent in regional votes, equalling 18 Holyrood seats.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The full details of the school meals incidents have not been revealed, but with more than 400 pupils in the region now registered with special dietary requirements, tighter measures are being sought.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A survey of more than 1,000 Scottish voters, conducted by Survation for the Diffley Partnership, forecast Nigel Farage's party will win 19 seats in the Scottish Parliament.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than half (51 per cent) of all zero-emission buses purchased in the UK are sourced from overseas manufacturers, the company said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The council has used £20m of its own resources and has made repeated calls to the Scottish Government to cover the last £15m needed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nationalists would be just three seats short of majority, with Labour third and Tories fourth", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prime Minister Keir Starmer has a popularity rating of minus 47% for and minus 25% for Scottish Labour leader Anas Sarwar.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures obtained by the Diffley Partnership predict that voters will elect 62 nationalist MSPs, two seats fewer than in 2021.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Using polling conducted by Survation between March 16 and 23, elections guru Mark Diffley contends that the Reform will form the official opposition to the SNP, securing 19 seats, while Scottish Labour will come third with 18 seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We are offering 52 weeks support, Labour are offering two.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As first reported by The Herald, a major restructuring to try and cut costs was revealed to staff and members earlier this month as the organisation looks to cut costs by 20%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Isle of Islay, left, is smaller and uses a more conventional propulsion system than Glen Sannox, right", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A farmer has delivered the equivalent of 20,000 meals to families in need over the past year by redirecting venison from culled wild deer into the food system - an initiative to tackle food poverty and bolster food security.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It adds: \"This is a significant number: Outside local government, the NHS and the civil service, there are only around 65,000 public sector workers and it seems implausible that all 18,000 job losses (representing nearly a quarter of these workers) could be absorbed here.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, according to former SNP minister Michael Matheson with 523 vehicles ordered, only 162 - less than a third - were built by Scottish manufacturers like Alexander Dennis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Before the Scottish Government-backed furlough scheme, the company had received some £90m of taxpayer cash over the past ten years and tens of millions since a 2020 plan to axe a third of its Scottish workforce in advance of June's plan to exit to England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ex Rangers winger and current Manchester United star Diallo bagged an assist in that game, meaning he has been involved in seven of his country's goals in his last nine caps.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We're happy with the result and the fact we scored 4 goals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 26-week scheme ended on March 22 of this year with the Scottish Government picking up an estimated tab of £4 million to cover 80% of workers' wages while Alexander Dennis secured the additional work needed to resume operations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The data found that NHS Lanarkshire has a screening uptake figure of 62.9 per cent - below the national average way off the highest screening uptake of 74 per cent secured by NHS Shetland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"But we also want to go further, and that means for any child aged up to 12 you can claim back your childcare costs for up to £3,000 per child, helping to drive forward access to employment, better access to childcare, but also addressing the cost-of-living crisis.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Industry leaders have warned that some individual valuations have soared by as much as 500%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes as prices on the comparison website listed a top price of £2.10 a litre for petrol and £2.20 a litre for diesel at the Skerries Co-Operative Society pumps on the Shetland isle of Bruray - though to be the most expensive in the UK.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Stac has now supported more than 120 start-ups, facilitated in excess of £50m in investment into its portfolio, and helped create some 400 jobs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cost of filling a typical family car with diesel has exceeded £100 for the first time in more than three years, new figures show.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This would put it ahead of Labour (18 seats), the Tories (13 seats), the Scottish Greens (10 seats) and the Liberal Democrats (7 seats), the research found.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform would receive 19 per cent of the constituency vote and 18 per cent of the list, with Labour following closely behind with 19 per cent backing the party in constituencies and 17 oer cent in regional votes, according to the poll.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the previous Scottish Parliament elections, held in 2021, the SNP won 64 seats, while the Tories won 31 seats and Labour won 22 seats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The data found that Shetland NHS Board has the highest screening uptake figure of 74%, while Greater Glasgow and Clyde NHS Board has the lowest uptake at 61%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While ticket prices are normally $20 (£15.14) for the return fare, it was reported the local transport authority will now charge $80 (£60.55) for all games at the World Cup.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The company had previously set out plans to close its facilities in Falkirk and Larbert, with the loss of 400 jobs, and move production to Yorkshire.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey of 1,068 people carried out by Survation for the Diffley Partnership between March 16 and 23 put the SNP ahead with 35% of the Holyrood constituency vote and 32% of the regional list, leaving the party just three seats short of the majority.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, on the regional list, Reform's support (18%) outstrips that of Labour (17%).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile the troubled MV Glen Sannox, which only entered service last year between Troon and Brodick on the island of Arran, is facing £3.2m of further costs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Here in Wales, the Welsh government has offered a one-off payment of 200 pounds for low income households who rely on heating oil, as prices have in some cases more than doubled.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The farmer said she was confronted with a significant overpopulation of red deer: around 650 animals on land capable of sustaining fewer than 50.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over 7000 people were interviewed and over 4000 statements were taken but no arrests were made.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ADL had already secured tens of millions in public money after first proposing to cut around one-third of its Scottish workforce, including facilities in Falkirk and Larbert in 2020 and then admitting it is looking to move to England last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Niall said he had forked out around £20,000 to go to the World Cup this summer, which included 10 nights in New York and six nights in Miami.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scottish Government had stepped in with what it described as an unprecedented £4.1 million furlough scheme to support workers while new orders were secured.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes one week after the £45 million Scottish Zero Emission Bus Challenge Fund (ScotZEB3) confirmed that 334 zero emission vehicles are to be built - with 123 buses awarded to ADL and 166 awarded to Chinese company Yutong.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On top of this, 23,415 people had been waiting over a year for an outpatient appointment and 2,159 had been waiting over two years by the end of February 2026.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to a survey by the Chamber, 48% of businesses say rates are their primary concern.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were also more than 23,000 waits of more than a year for an outpatient appointment in February - despite SNP ministers promising to eradicate the longest waits by the end of March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Scottish Government shelled out £260million of taxpayers' cash on the fees for the A9 dualling programme and a further £80million on the A96.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'£261.3m has been spent on consultancy fees on the A9 out of an estimated total scheme cost of £3.97billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scots hit with extortionate pump prices of as much as £2.17 a litre for diesel as Middle East fuel crisis starts to bite", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motorists travelling on the NC500 route are also seeing 'astronomical' prices with the cost of petrol listed just 4.1p off £2 at Lairg, and diesel sitting at £2.17 a litre at one forecourt in Thurso, Caithness.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steve Gooding, director of the RAC Foundation, however, said the price paid at the pumps by drivers is 'currently rising by £37million a day'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The announcement comes as the accelerator centre begins fundraising for its first dedicated deep tech fund, targeting between £15 million and £30m to significantly scale its capacity to back Scottish founders.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Additionally, UK policies under the Subsidy Control Act 2022 limit the ability to favour domestic suppliers in public funding, while Scottish rules require UK-based firms to meet Fair Work First standards, which it is claimed put ADL at a competitive disadvantage compared to international rivals who are not bound by these conditions.", "score": 2.5438549999999998, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The crime lord is the head of the Lyons clan, which originated in Cumbernauld, North Lanarkshire, and has been involved in a bloody battle with rival Glasgow-based group Daniel for more than 20 years.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"For twenty years, councils have been forced into annual cuts. This cannot continue,\" he said.", "score": 2.502525, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Every year, thousands of participants choose to support causes close to their hearts, turning each step of the journey into something meaningful beyond the finish line.", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Business confidence has hit a record low as war in the Middle East sends costs surging - just as Labour has forced firms to pay billions in higher salaries and more taxes.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Its missiles continue to penetrate Israeli airspace and kill civilians.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Treasury is set to receive a multi-billion pound tax windfall as energy prices soar because of the ongoing conflict in the Middle East.", "score": 2.57747, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It would earn around £3.5bn a year from the energy profits levy on North Sea oil and an extra £2.4bn from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The RAC has also suggested the Government could earn an extra £2bn from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research by the Institute of Directors recorded business confidence dropping to a net figure of -76 in March, compared to -63 in February.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Business confidence has dropped to a record low.", "score": 2.511005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Heart disease remains one of the biggest killers in the UK, responsible for more than 460 deaths a day - roughly one every three minutes.", "score": 5.6796, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show that tamoxifen patients are nearly three times more likely to develop deadly blood clots and endometrial cancer.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK lags behind other countries in cancer outcomes and faces a major shortage of staff and diagnostic scanners compared to countries like Germany, Sweden and Italy.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The earlier bowel cancer is found, the more treatable it's likely to be, with more than nine-in-10 people surviving the disease when diagnosed at the earliest stage.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over the course of the study the researchers found that more people who are susceptible to diabetes are now developing the disease than in the past.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Latest data suggests Long Covid still occurs in about 3 in 100 cases.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies have also shown that getting enough vitamin E - around 4mg a day for men and 3mg for women, roughly the equivalent of a tablespoon of sunflower seeds - may help reduce the risk of heart disease.", "score": 5.66914, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Latest data suggests Long Covid still occurs in about three in 100 cases.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crucially, research also shows that tamoxifen can slash the risk of breast cancer developing by as much as 50 per cent.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With nearly six million people in the UK thought to be living with diabetes, the need for realistic and effective interventions has never been greater.", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Radiotherapy on its own, meanwhile, eradicates around 40 per cent of cancers and also brings side-effects, such as skin irritation around the treatment area.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Children and young people living in the most deprived communities were more than three times more likely to have a tooth extracted due to decay than those in more affluent areas, data also showed.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'If you give women who are at an increased risk of developing breast cancer a drug like tamoxifen, then you can significantly reduce their risk of developing the disease by up to 50 per cent.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At 12 trusts, more than half of cancer patients waited too long to start treatment after being referred by their GP or other doctor.", "score": 5.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It could explain the relatively low uptake among women for cancer screening - tests and checks that save thousands of lives each year.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Higher olive oil intake, specifically extra virgin olive oil which contains more health-promoting polyphenols (as not all olive oils are created equal), has been associated with lower rates of heart disease and early death.", "score": 5.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has long been suggested that sufferers may need to overhaul their lifestyle to keep the disease at bay, with approximately 90 per cent of cases being type 2 diabetes - which has been linked with obesity, lack of exercise and chronic stress.", "score": 5.53285, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nearly 5 million people with chronic illnesses lack access to essential medications, while life-saving treatments like radiation treatments for cancer and dialysis for kidney disease have been interrupted for 16,000 and 2,800 patients, respectively.", "score": 5.517510000000001, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While in recent years revolutionary new drug treatments have increased the number of patients who beat breast cancer, it still kills more than 11,000 every year in the UK.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One person is diagnosed with cancer in the UK every 75 seconds following a surge in cases over the past decade.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than a million people with heart disease are to be prescribed the weight loss jab Wegovy to prevent them from having heart attacks or strokes.", "score": 5.51636, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Long Covid is when the symptoms of Covid-19 last longer than 12 weeks, according to the NHS website.", "score": 5.47096, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research from the charity shows awareness of the five gynaecological cancers remains low in the UK, with stigma and embarrassment continuing to delay seeking medical advice, which results in thousands of women dying.", "score": 5.47096, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, only a small number of women - those considered to be at high-risk of developing breast cancer - are offered tamoxifen for this purpose on the NHS.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Record 106,810 cancer patients waited more than 62 days to start urgent treatment last year", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity Bowel Cancer UK found that around a third of people who were eligible here, don't complete the test.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And also, you know, even those who have suspected disorders, they face incredibly long waiting lists of sometimes years, which is unthinkable for a say, six-year-old child with severe ADHD.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His various studies suggest that as few as one to four minutes of incidental vilpa each day may reduce your risk of heart attack, stroke and even certain cancers.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those that had received CBA3656 excreted significantly higher levels of plastics in their feces than the control group, providing direct evidence that the bacterium could bind nanoplastics in a live intestine and help flush them out of the body.", "score": 5.395685, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When tested in simulated intestinal fluid, a laboratory proxy for the human gut complete with bile salts, Leuconostoc mesenteroides CBA3656 adsorbed an impressive 57 percent of nanoplastics, far outpacing the others.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crucially, the drug also reduced by 30 per cent the rate of major events such as heart attacks, strokes or death due to heart disease.", "score": 5.395685, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year, scientists found aspartame, which is found in products like Muller Light yoghurts, contributed to a worrying rise in diabetes risk - with those who consumed a cocktail of additives at a more than 10 per cent increased risk than those who steered clear of the artificial ingredients.", "score": 5.36473, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK's miserly rate of statutory sick pay - one of the lowest in the developed world - thus became a factor in the spread of Covid-19.", "score": 5.36473, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Also, it's the fourth most common cancer, but why are more than a third of people not taking up the offer of bowel cancer screening?", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show women who develop breast cancer are significantly more likely to see it return later in life - at which point it is often harder to treat.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Addressing the six pillars of lifestyle medicine including eating a plant-based diet, exercising regularly, and prioritising sleep could help reverse type 2 diabetes, experts said today.", "score": 5.350285, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "More than a million people with heart disease will be prescribed a weight loss jab to prevent them from having heart attacks or strokes.", "score": 5.34754, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The plastics seemed to give cancer cells a survival boost, making them more likely to spread and migrate to new sites.", "score": 5.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, it can also result in more serious issues, including asthma attacks and problems for those with respiratory or cardiovascular diseases, with the risk of respiratory infections also raised.", "score": 5.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One 2024 study found that getting less than six hours of sleep a night could increase the risk of type 2 diabetes by 16 per cent - with the odds remaining high even when people ate well, suggesting a healthy diet cannot compensate for sleep deprivation.", "score": 5.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cancer charities warn such delays slash survival chances, can make some treatments less effective and increase anxiety.", "score": 5.20488, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It turns out that my estrogen levels were really, really low and that I've probably been in perimenopause for a lot longer than I thought.", "score": 5.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, a major study, soon to be published, found that a breast cancer diagnosis can cost women up to £12,000 a year, in large part due to lost wages, childcare and travel costs.", "score": 5.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "READ MORE: Walking for just 30 minutes could help ward off breast cancer", "score": 5.158329999999999, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Conall Watson, consultant epidemiologist at UKHSA, said: \"RSV lung infection is less well known than Covid or flu but for older adults it puts thousands in hospital each year with a risk to life.", "score": 5.0636849999999995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some people are at a greater genetic risk than others, with experts now suggesting that more of these 'at-risk' people are developing diabetes than before due to modern lifestyles.", "score": 5.0636849999999995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now then, it's the fourth most common cancer and the second biggest killer, but a charity is warning too many people aren't taking a potentially life-saving screening for bowel cancer.", "score": 5.0636849999999995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scientists have said Cicada can spread faster than other variants, and one of the UK's top microbiologists has revealed emerging evidence that it could spread most in children with no COVID immunity, increasing the risk of a new wave.", "score": 5.0521, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When you have cancer the first time around you are on a curative pathway so the idea is that they're treating you to a point where you are cured.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It can make babies larger, and can also cause a premature birth and lead to Type 2 diabetes developing in the mother.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And everybody does it, you know, in the end of the day, so, you know, if we don't, if we don't check it, then, unfortunately, you risk yourself of maybe having bowel cancer and not getting treated early enough.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But but take ADHD. You know, if a child is acting up in class, unable to concentrate, um, you know, struggling to sort of sit still, then the support that that child needs would depend on whether or not they have ADHD. Is that not true, Dennis, of any condition? I mean, you know, if you want to get treated for your, let's take an obvious, if you want insulin for example, then you're probably going to have to get diagnosed with diabetes first. If you need chemotherapy, you're probably going to have to have a cancer diagnosis first. So it's not so much about incentives, that's just how the medical system works, isn't it? To get treatment or get support, you have to have a diagnosis.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Certain warning signs could mean you have early diabetes or liver disease (stock image) (Image: Getty)", "score": 5.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is crucial because many types of breast cancer feed off oestrogen.", "score": 5.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health experts are urging caution as the Cicada Covid variant spreads, with sore throat the most common symptom and advice to consult doctors about booster jabs", "score": 5.0220400000000005, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A vaccine that is injected directly into tumours could boost survival rates from hard-to-treat cancers.", "score": 5.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Long Covid is when the symptoms of Covid-19 - extreme fatigue, shortness of breath, joint pain, aching muscles and brain fog - last longer than 12 weeks", "score": 5.0067, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A record 106,810 cancer patients waited more than 62 days to start urgent treatment on the NHS last year, damning new analysis reveals.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And really, we, you know, the prevalence of psychiatric disorders in that population, for example, ADHD is significantly lower than what you would expect in England.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And just 63.6 per cent of women invited for mammograms to screen for breast cancer in England attended last year (2024/25).", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in several European countries between Nov 2025 and Jan 2026 (Image: Getty)", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She argues that, on this low tamoxifen dose, patients typically only suffer one hot flush a day, while also seeing their risk of cancer drastically cut.", "score": 4.910905, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A study from February 2026 found that prolonged, low-level exposure to tiny plastic particles - just 20 nanometers wide - made colorectal cancer cells behave more aggressively.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Matt Sample, senior health policy manager at Cancer Research UK, said: 'Far too many people with cancer are still waiting longer than they should to begin treatment in England.", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health officials observed that the symptoms linked with Cicada are consistent with earlier versions of COVID-19.", "score": 4.884875, "claim_types": ["correlation", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new COVID strain sweeping the UK could disproportionately affect children (Image: Getty)", "score": 4.88213, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert, sparking controversy among doctors.", "score": 4.87995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A cheap daily tablet should be offered to women as young as 18 to slash their risk of breast cancer in half, according to a leading expert - sparking controversy among doctors.", "score": 4.87995, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "An ultrasound scan in July 2024 led to the 'earth-shattering' diagnosis of stage three breast cancer.", "score": 4.8539200000000005, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The one-off vaccine injected directly INSIDE a tumour which could help boost cancer survival rates", "score": 4.8539200000000005, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The party said it would deliver this through 200 extra staffed radiotherapy machines, new radiotherapy centres to end 'radiotherapy deserts', and over 3,000 more cancer nurses to ensure everyone has a specialist supporting them.", "score": 4.834525, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "In a bid to combat the increasing prevalence of type 2 diabetes, the NHS launched its soup and shake diet - which incorporates pillars of lifestyle medicine - which has now been shown to help thousands put their type 2 diabetes into remission.", "score": 4.8334, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new strain of Covid-19 has been detected in the UK amongst a further 22 countries across the world.", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You may be offered a COVID-19 vaccine in spring if you are aged 75 or over, are aged six months to 74 years and have a weakened immune system because of a health condition or treatment, or live in a care home for older adults.", "score": 4.770545, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But it works less well in cancer that has spread - and, as it targets both healthy and cancerous cells, it causes side-effects from nausea to hair loss and heart palpitations.", "score": 4.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She says the major intervention is needed to combat the rising number of young women developing breast cancer.", "score": 4.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I'm still active, you know, um, fit and, um, you know, nothing to worry about, if you like, none of the symptoms which, um, you look out for, if you like, but, um, you know, it just goes to prove, you know, because, you know, when you read up on bowel cancer, it does state, you know, some articles I've read where you can take up to 10 years to get symptoms and by then, it could be further, further down the track in terms of the stages.", "score": 4.743765, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has long been recommended that women at moderate to high risk of breast cancer should be offered preventive treatments such as tamoxifen", "score": 4.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "They said: \"Sunburn increases your risk of skin cancer. Sunburn does not just happen on holiday. You can burn in the UK, even when it's cloudy.\"", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Type 2 diabetes occurs when the body doesn't make enough of the hormone insulin, or the insulin it makes doesn't work properly.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is because tamoxifen has a number of side-effects, including hot flushes and night sweats, mood changes and fatigue.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Common symptoms are similar to most Covid-19 cases with some being resolved with rest, hydration, and over-the-counter medications.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Springtime can bring a range of seasonal health concerns, including hay fever, allergies and asthma flare-ups due to increased pollen levels.", "score": 4.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In tests on mice with bowel cancer, the vaccine was 100 per cent effective at completely eradicating tumours.", "score": 4.730845, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So that's that's the conclusion of this review, that too many children and young adults are being incentivized to get diagnosed with conditions like ADHD and autism and that there is an ongoing, this is the phrase, medicalization of distress. And I slight different points there. They're slightly kind of different conversations. But I think we're going to try and do both together because I want your thoughts fundamentally on whether you think that's right. And you might want to comment specifically on the idea that people are being overly incentivized to get diagnosed as neurodivergent. You might want to comment on the suggestion that there is a medicalization of distress that we tell too many people they're mentally ill when actually they're just sad or a bit stressed. Or you might want to comment on both. Either way, would love to hear your thoughts. Are those conclusions right? Are too many people being overly incentivized to get diagnosed with ADHD and autism? And is it true to say that there is a medicalization of normal day-to-day distress? That's been the argument for politicians for quite some time. This review has to some extent, at least, endorsed that view. Do you agree with it? Do you think it's right? 03456060973 is the number for your thoughts. You can text me on 8450, or send a comment to LBC. Before I come to your calls, let's talk about it with Dennis O'Grady, a professor of child psychiatry at Queen Mary University in London. Professor, good to have you with us. Um, let's start, shall we, with the the incentive suggestion that children and young adults are being incentivized to get diagnosed with ADHD and autism. What would be the incentive to get a diagnosis?", "score": 4.7201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It will target people with conditions such as chronic obstructive pulmonary disease (COPD), asthma, and cardiovascular disease, which can be worsened by cold and damp living conditions.", "score": 4.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The study, involving patients with type 1 and type 2 diabetes, found almost all of the participants found to have heart failure had preserved ejection fraction, which can be difficult to detect without dedicated testing.", "score": 4.712725, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was further noted that this advice applies particularly to the six most vulnerable groups: minors, elderly people, those with chronic respiratory or cardiac conditions, like asthma or bronchitis, pregnant women, outdoor workers, and finally, smokers.", "score": 4.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Surveys have shown that only 2 per cent of women who receive regular breast cancer screening - meaning they are scanned for the disease every few years - have heard of tamoxifen.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite this spread, it has not led to a notable rise in overall Covid infection rates compared with previous years.", "score": 4.698725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's because the colon believes its primary job is absorbing water - and it does so astonishingly well, absorbing up to five litres of fluid per day, meaning there's only so much that drinking extra water can counteract this action.", "score": 4.698725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of the key concerns is norovirus, which can survive on clothing and fabrics for up to a month in almost any condition.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show that, via this mechanism, drugs like tamoxifen can stop breast cancer from spreading and - in combination with other treatments like chemo and surgery - can cure patients.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Complications during breast cancer treatment are also common.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although the acute phase of the pandemic has passed, COVID-19 continues to pose a considerable health burden.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The elderly and immunosuppressed are particularly vulnerable to Covid(Image: Getty Images)", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other concerning research has suggested that artificial sweeteners added to supposedly 'healthier' fizzy drinks like Diet Coke could trigger type 2 diabetes.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the pandemic's most severe phase has ended, COVID-19 remains a significant health concern.", "score": 4.67355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Others argue that lifestyle changes - like losing excess weight, exercising regularly, and limiting smoking - are effective at lowering the risk of breast cancer, without any of the potential complications of medicines like tamoxifen.", "score": 4.67355, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Dr Rebekah Law, a breast cancer surgeon at the prestigious Royal Marsden hospital, believes the 45p pill, tamoxifen, should be offered 'in the same way as statins' - the safe and highly effective daily tablets taken by millions to cut their risk of deadly heart disease.", "score": 4.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place, including the fact that those who develop it are more likely to see it return later in life, by which point it often harder to treat.", "score": 4.636725, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Significantly, Dr Law argues that any women - regardless of family history or genetics - who is concerned about developing breast cancer should be allowed to request a tamoxifen prescription.", "score": 4.634255, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But in the past ten to 15 years, treatment of some cancers has been transformed by immunotherapy drugs.", "score": 4.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cicada's mutations to the spike protein mean that our antibodies take longer to recognise it as the invading Covid-19 virus.", "score": 4.612785, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And there is no shortage of questionnaires and no shortage of influences who will tell you that you have ADHD and you should be proud of it.", "score": 4.612785, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts also point out that, today, a breast cancer diagnosis is not a death sentence.", "score": 4.55922, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This new generation of medicines - including pembrolizumab (used to treat advanced skin, lung, bladder, breast and bowel cancers) and nivolumab (for tumours of the kidneys, head and neck) - work by taking the brakes off the immune system, so it can attack and destroy rogue, cancerous cells.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It needs to be tight to produce clear images, which are vital to detecting cancer, particularly early-stage cancers.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This can include conditions like sunburn or long-lasting issues like wrinkles, fine lines, leathery skin and pre-cancerous patches.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Edward Piper, medical director at AstraZeneca UK, said: \"Delayed diagnosis and treatment of heart failure in people with type 2 diabetes contributes to poor long-term outcomes.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Currently, tamoxifen is mainly used on the NHS to treat women who already have breast cancer - or to prevent the disease from returning.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Influencers are telling their audiences that injectable peptides are the \"glow up potion\" they need for everything from clearing up hormonal acne, thickening hair, relieving back pain and even treating chronic UTIs.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Terry's nails can also indicate other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Terry's nails can also signal other underlying health conditions, including cirrhosis, congestive heart failure, kidney failure and viral hepatitis.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There's a tendency to instantly think of expensive IV drips and elite supplements when longevity is mentioned, but fibre is actually proven to balance blood sugar, help manage cholesterol, support healthy weight and even reduce the risk of diseases like type 2 diabetes, heart disease and certain cancers,\" says nutritionist and author Emma Bardwell, who just published a bible on the topic, The Fibre Effect.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This can result in ailments such as sunburn, as well as enduring problems like wrinkles, fine lines, weathered skin, and precancerous spots.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "gestational diabetes is a temporary form of high blood sugar that can develop during pregnancy when the hormones block insulin function.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research has linked nanoplastics to cancer, though the International Agency for Research on Cancer (IARC) has not yet classified them as carcinogens.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These peptides, intended for research purposes (as some influencers do point out) and not approved for human use, are being increasingly sold through unregulated online channels.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Whilst further research is needed to understand the link between a lack of sleep and diabetes, the researchers highlighted other studies that have linked sleep deprivation to high blood pressure, heart disease and stroke.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The treatment has had a major impact in cancers such as malignant melanoma, an often lethal form of skin cancer, for which there used to be little treatment.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A growing body of research has linked them to chronic diseases, including obesity, cancer, heart disease, type 2 diabetes and metabolic problems.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Padmaja Pater, president of the ALCM, said: 'Too often, chronic disease like type 2 diabetes is managed as a condition that patients must live with indefinitely.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Children get infections all the time but this might be something to do with the fact that they have never been exposed to Covid vaccines.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of the main concerns is norovirus, which can remain on clothing and fabrics for up to a month in virtually any conditions.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hydrogen sulfide can exacerbate existing conditions, including asthma and chronic pulmonary disease.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bonning says injectable tanning peptides, which have also been spruiked online, carry \"... a risk of it causing skin cancers, and there are also reports of significant kidney dysfunction and swelling of the brain after taking that kind of injectable\".", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although cancer cells do already produce antigens, they often give off a weak signal, helping the tumour to escape the full force of the immune system.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said young children could have early anorexia or avoidant/restrictive food intake disorder (Arfid), characterised by limiting food type or quantity.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Ms Yau said: 'Heart disease is characterized by high blood pressure, a weak or irregular heartbeat, and red streaks of haemorrhage.", "score": 4.552875, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the atrocious state of the NHS, with its unacceptably long waiting lists, is not just a tragedy for patients - particularly for those who die because of the lack of treatment - but the nation as a whole.", "score": 4.552875, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Analysis has shown those aged 75 to 79 already getting the vaccine are much less likely to be hospitalised.", "score": 4.545945, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Wales has the lowest uptake of bowel cancer screening out of all the UK nations, according to research.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, crucially, they have not yet detected an overall increase in COVID cases there compared to previous years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scientists reported in the journal Bioresource Technology that CBA3656 absorbed 57 percent of nanoplastics in intestinal fluid to mimic the human gut, outperforming other tested strains by as much as 19-fold.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, crucially, they have not yet detected an overall increase in Covid cases there compared to previous years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Analysis published last March by UK Health Security Agency (UKHSA) showed there were 30% fewer hospital admissions among 75 to 79-year-olds as a result of the RSV vaccine.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 65.5% uptake figure for Wales highlights that there's still an opportunity for more people to take part in bowel cancer screening.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The study, which began more than three years ago, involved more than 700 people with diabetes from the two health board areas who had at least one other risk factor for heart failure.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Their role is to amplify the garden's message of confronting the silence that costs the lives of 21 women a day and spark conversations with visitors about women's gynaecological health to reduce the stigma and silence about the deadly cancers.", "score": 4.545585, "claim_types": ["correlation", "opinion", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Experts from Cancer Research UK and the British Association of Dermatologists recommend adopting sun safety measures between March and October.", "score": 4.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "New Covid strain sweeping UK 'could be most dangerous to kids'", "score": 4.53232, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health officials are monitoring symptoms linked to Covid-19 as a new 'cicada' variant spreads amid warnings it could disproportionately affect kids", "score": 4.52192, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr says new Covid Cicada variant 'detected in UK' could 'avoid immune system' - symptoms", "score": 4.52077, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The National Health Service (NHS) identifies the following as potential symptoms of COVID-19:", "score": 4.52077, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health officials have warned of red flag symptoms of a new Covid-19 variant set to sweep Britain.", "score": 4.52077, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Law concedes that, since, historically, tamoxifen studies have only involved patients over the age of 30, there is currently no data on how effective it is at preventing cancer in younger people.", "score": 4.498455, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was the second time Woods has been arrested for a DUI not as a result of the influence of alcohol.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ireland is \"no better prepared\" for a pandemic than it was six years ago, a panel looking at the country's response to Covid-19 has heard.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS sonographers who carry out scans at 12 and 20 weeks of pregnancy and help diagnose cancers, warn that one in four job posts are currently vacant across England at a time when the NHS is already under acute stress.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Unlike statins, which have to be taken for life, Dr Law argues that patients only need to be on tamoxifen for five years in order to lower their risk of breast cancer for the following 20 years.", "score": 4.483945, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It ́s much more like a wartime economy.\"", "score": 4.45262, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And yet, it seems that that vast numbers of young people are doing exactly that with conditions like autism and others.", "score": 4.440635, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Tamoxifen should be offered in the same way as statins to all women at risk of breast cancer ,' she says.", "score": 4.4165849999999995, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Prime Minister says resident doctors in England have 48 hours to call off their strike action, or an offer of 1,000 training places will be withdrawn.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "This five-minute procedure is used to detect human papillomavirus, or HPV, which can cause cell changes in the cervix that may develop into cancer - it's offered to women aged 25 to 64 in the UK.", "score": 4.40644, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The soap star, who played Liz McDonald on the ITV programme on and off for 30 years, revealed earlier this year that she had been diagnosed with the early stages of breast cancer and underwent her first bout of surgery shortly afterwards.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In many cases, Terry's nails suggest a chronic condition, such as liver failure or diabetes.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Jade also plans on making a donation to Tommy's Journey, a fundraiser for a five-year-old boy from Sale suffering from an aggressive form of cancer.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In many cases, Terry's nails indicate a chronic condition, such as liver failure or diabetes.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New 'Cicada' COVID variant BA.3.2 arrives in UK as health experts monitor spread", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government published its National Cancer Plan in February this year, promising to embrace a robotic revolution to boost survival rates.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This patient would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", "score": 4.400095, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This 'patient zero' would have been unable to clear the virus due to a compromised immune system, such as can occur when the patient also has HIV or is taking anti-cancer drugs.", "score": 4.400095, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"And the evidence is clear that the RSV vaccine offered to pregnant women is providing excellent protection to babies. When you are offered the vaccine, don't hesitate.\"", "score": 4.38448, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "More than a million people with heart disease are set to be offered weight-loss injections on the NHS in a major shift in how the condition is treated.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Doctors insisted a subtle change to my nail was nothing to worry about... in fact it was the ONLY sign of the deadliest kind of skin cancer.", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kimberley said: \"So just to make this clear, had you not been offered that trial that day, you potentially would not have found out that you had breast cancer for maybe another 10 years. Which is terrifying, but also amazing. Like, this is what this is all about.\"", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The actor, 28, who is best known for playing Ryan Power on the BBC drama series, is currently battling Stage 3 skin cancer.", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Covid cicada variant is sweeping the UK as a leading microbiologist who is analysing the BA.3.2 strain here tells the Mirror it could disproportionately affect children", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They say this is leading to pregnant women and cancer patients facing delays for vital ultrasound scans, which could be really dangerous for the patient.", "score": 4.36914, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, though, a large trial has shown benefit in 3,655 people who hadn't previously had a heart attack but did have type 2 diabetes.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Bowel cancer is Scotland's third most common cancer, but screening is one of the best ways to spot the disease early or remove polyps that might develop into cancer.", "score": 4.33462, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The need for better ways to prevent breast cancer is clear.", "score": 4.3342600000000004, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Writing in The Lancet's Diabetes and Endocrinology journal, the researchers said: 'We believe it is possible to view this as closely linked to societal changes that may be more conducive to developing diabetes.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And it's also partly on the edges at least to do with weight loss drugs that companies that supply packaged goods like Unilever believe that their market is likely to be damaged as the widespread use of weight loss drugs means that consumers are likely to buy less of their products.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The consultant paediatrician Dr Lee Hudson said eating disorders had become more common but pointed out that the term covered a wide spectrum of conditions, not just anorexia.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Urgent flu warning issued to Aussies after worst year on record killed 1,738 people https://t.co/EE6Qr45J65", "score": 4.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prof Gupta was leading part of the research group which reported the first evidence for immune escape for Covid-19 during the pandemic.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Professor Ravi Gupta, of Cambridge University, who advised the Government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New 'Cicada' Covid strain spreads to 23 countries as UK health chiefs on high alert", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK health authorities are monitoring the BA.3.2 COVID variant, dubbed the 'cicada' strain, which has been detected in at least 23 countries and is likely already circulating at low levels domestically", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ed Davey, leader of the Liberal Democrats, which analysed the NHS England data, said: 'Like millions of people, my life was turned upside down by cancer, which took both my parents when I was young.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The influencer, 43, has amassed a legion of followers on social media over the years, and documented her husband's battle with cancer online.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In some cases, it is offered to women with a strong family history of the disease or cancer-causing genetic mutations, to prevent the disease from occurring.", "score": 4.285765, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So because somebody's declared that they're autistic, or have autism, it doesn't mean that they necessarily should qualify for support.", "score": 4.273495, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Covid may not dominate daily life - bit it still demands respect'", "score": 4.24868, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "However, speaking exclusively to the Daily Mail at the European Breast Cancer Conference in Barcelona, Dr Law argued that women with an increased risk of the disease - such as those with a close family history of breast cancer, for example in a mother or sister - should be offered the chance to take tamoxifen.", "score": 4.23285, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Specialists from Cancer Research UK and the British Association of Dermatologists suggest that people should take sun safety precautions between March and October.", "score": 4.21566, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Where Street in the Health Secretary was one of those who came out, you might remember, fairly recently, end of last year, and said he thought that was going on. He thought that was part of the problem. He launched a new a review, um, to investigate why there was such an increase in demand for mental health services and conditions, um, like ADHD and autism. And that review has concluded today that the people are being overly incentivized. That's the word that it uses to go and get diagnoses with ADHD and autism. And that there has been, what the review called, a medicalization of distress. Which is a sort of scientific academic way of saying that too many people who are just going through the normal ups and downs of life are being told there's something clinically medically wrong with them. So maybe they're very anxious because they live in poverty and they've got an unstable job and they worry about how they're going to pay the rent at the end of the month. In which case, I would say almost, it would be strange if they weren't feeling anxious all the time. And yet in the modern world, perhaps they go to the doctor and they get told you have anxiety, you need pills. Or perhaps they go through a very difficult time, a divorce or bereavement and rather than just being told, look, yes, you feel very sad, but that's, it's difficult, but it's normal. They get told you have depression or you have this condition. Here is some tablets.", "score": 4.213585, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new COVID strain, which has been named after an insect, is set to become dominant in the UK and could disproportionately affect children, a leading microbiologist has warned.", "score": 4.1991700000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, I mean, that is true about insulin and diabetes, that is true. Um, but you know, if a child is unable to read, then you don't need a diagnosis to understand that that particular child needs support.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The emergence of the Cicada Covid variant is a stark reminder that this virus has not gone away.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scientists say cicada spreads faster than other variants and one of the country's top microbiologists has told of emerging evidence that it could spread most in children who have no Covid immunity - which could drive a new wave.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When researchers tested the same particles in zebrafish, they watched the cancer spread faster in real time.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "US scientists have recently raised concerns that the current Covid vaccines may be less effective against this new variant.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Something interesting about MS is how much the symptoms fluctuate.", "score": 4.15696, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'That's why the Liberal Democrats will make improving cancer care a top priority, and fight every day for better care for you and your loved ones.", "score": 4.154895, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "US citizens have been urged to stay vigilant after a new COVID-19 variant has been detected in over 24 states.", "score": 4.151565, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But at the same time, it chemically reprogrammes cancer cells so they proactively attract the attention of killer T-cells.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK health bosses are keeping a close eye on a new Covid variant dubbed the \"cicada\" strain that's spreading like wildfire across the globe.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Children get infections all the time, but this might be something to do with the fact that they have never been exposed to COVID vaccines.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Plastic surgeon Richard Wain, an expert in skin cancer, said: 'It can happen in any nail - on your hands or feet - and unlike other forms of melanoma, it's not related to UV exposure.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Similar to earlier versions, it contains alterations to the virus's spike protein - the component which allows entry into human cells - potentially influencing both its transmissibility and its ability to bypass existing immunity.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They can differ from person to person and may improve with rest, fluids, and over-the-counter medicines.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'We believe remission for type 2 diabetes and many other chronic conditions should be the North Star outcome guiding care.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Many will be familiar with the effect of the very well researched glucagon-like peptide 1 (GLP-1): \"it's what's made Ozempic and Wegovy and Mounjaro so fundamentally different to other weight loss drugs,\" says Bonning, who is the chair of public health for the association.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Children are being incentivised to get diagnoses for conditions like ADHD and autism", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But in rare instances, cancer is discovered.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Phytoestrogens mimic oestrogen in the body and dock onto oestrogen receptors to help modulate oestrogen dominance, which has been linked to breast cancer,' Johnston explained.", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vernon Kay said \"As a man with many important women in my life, it's vital that I understand the language, symptoms and warning signs around gynaecological cancers so we can have open conversations and encourage early detection. These cancers affect half the population directly, and the other half through the women we love and care about. It's time to bring these often-overlooked cancers into the national spotlight and give them the same awareness and attention we've seen with some men's cancer charities.\"", "score": 4.1233249999999995, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Liberal Democrats are campaigning for a guarantee that every patient starts treatment for cancer within 62 days from urgent referral, with this right written into law.", "score": 4.118985, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Woods, who has been involved in other crashes over the years, is charged with driving under the influence, property damage and refusal to submit to a lawful test.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said after going public with her complaint, other individuals contacted her to report similar experiences of trolling and harassment involving the same doctor during Covid.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new Covid strain named after a tropical insect is set to become dominant in the UK and could disproportionately affect children, a top expert says.", "score": 4.04754, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Dr Law argues that there are many other reasons why women would want to avoid getting the cancer in the first place.", "score": 4.013675, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A cheap fermented vegetable and staple of Korean cuisine may help in combating a build-up of harmful microplastics linked to heart disease, cancer, inflammation and brain damage.", "score": 4.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So when you hear words like ADHD and autism and it's like the cost it's the benefits bill.", "score": 4.006385, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In How Not to Take Supplements, the dietitian reveals how many products are missold to consumers, with some containing far less of their key ingredient than advertised.", "score": 3.986895, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His father, a heroin addict, has largely been a background character in Odom's life, and his mother died of colon cancer when he was 10.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Separate laboratory tests on human breast cancer cells produced similar results, with the vaccine resulting in their complete destruction.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She can tell that she lost performing and then she got ill and cancelled the rest of that tour, there was covid and then she cancelled it and there's sort of people being, she had a couple of, um, appearances since then, that the Paris Olympics and she was at the Grammys presenting Taylor Swift with the album of the year for Midnights that year.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It involves a speculum being used to hold open the vagina, then a hysteroscope (a telescope-like device, with a camera and light) being inserted through the cervix (the neck of the womb - a narrow space, which can sometimes be very rigid), before fluid is pumped inside to distend the womb to make it easier to see what's going on.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, in heartland regions such as Anglesey (Ynys Môn) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cancer was later ruled out, although doctors were struggling to test Ronnie's bone marrow as it was so sparse.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ed Davey, leader of the Liberal Democrats, said it is 'heartbreaking' to see how many people are forced to wait too long to start cancer treatment.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The businessman, who was 21 years Lorna's senior, battled stage four adrenal cancer after being diagnosed in April 2023.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Corrie legend Beverley Callard tearfully admits she's 'in denial' amid cancer diagnosis", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is maybe a small segment of the population, typically very affluent families, who can afford private healthcare, who do seek these diagnoses specifically.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "READ THE FULL STORY: New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'We don't want to impact an otherwise healthy woman's quality of life and sexual wellness just because there is a slight risk she might develop the disease further down the line,' says Dr Pascal Pujol, a cancer expert at the University Hospital of Montpellier in France.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Your music is also partly informed by your own experience with your own health, overcoming breast cancer, the bodily changes as well.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cases of the COVID-19 'cicada' strain linked to international travel have included detections among individuals returning to the United States from several countries, including the UK", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bev found out she had cancer on the set of Irish soap Fair City , which she joined earlier this year as Lily Patterson.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Influencer and Instagram star has announced a major life update is on the way - just weeks after her husband John Andrews passed away following a long battle with cancer", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He told the Mirror : This is different from the (Covid-19) viruses we have been dealing with for the last two years.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A brave Airdrie mum battling stage three bowel cancer says she can see a \"light at the end of the tunnel\".", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nicola has spoken about her ongoing fight as part of Bowel Cancer Awareness Month (BCAM).", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the time, he said: \"I'm really looking forward to working closely with Neuroblastoma UK to raise awareness of this cruel cancer and hopefully raise lots of money to help save more young lives.\"", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Which cancers the drug will be tested on first and what side-effects it may cause are as yet unclear.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite thinking she was low risk, she was diagnosed with cancer but has now been given the all-clear, reports the Mirror.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'In practice, I've seen this approach help many women with symptoms linked to hormonal imbalance, including PMS, irregular periods and the mood and energy fluctuations that often accompany perimenopause,' Johnston said.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dawn had been referred to hospital after a routine blood test showed raised CA125 levels - a possible indicator of ovarian cancer - and after scans revealed a polyp, her consultant wanted to examine the area with a camera.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They lost their mother, Carroll, in 2020 to cancer", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The National Health Service (NHS) lists the following as possible symptoms of COVID-19:", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Let's speak now to John Woodland from Blackwood in Cardiff, who was diagnosed at 52 years old with stage two bowel cancer back in November 2023.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Covid strain that is a spin-off of Omicron has swept the US and already arrived in the UK, health chiefs have confirmed.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Finnian, who has 18-month-old daughter Saoirse, recently said he was diagnosed with Stage 3 skin cancer, which has sadly spread to his neck.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prof Gupta was a key member of the research group that reported the first evidence of immune escape in COVID-19 during the pandemic.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The former BBC radio host first supported Neuroblastoma UK after a friend's daughter was diagnosed with this aggressive cancer.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Accused suffers from ADHD and was initially helping kids", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a new interview with Prima, Hermione responded to speculation the show would return after six years off air as well as discussing her struggle with long Covid and her children flying the nest.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Centers for Disease Control and Prevention (CDC) reported that from November 2025 to January 2026, weekly detections of BA.3.2 increased to make up around 30% of Covid-19 sequences reported in Denmark, Germany, and the Netherlands.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The CDC reported that between November 2025 and January 2026, weekly detections of BA.3.2 increased to around 30% of COVID-19 sequences reported in Denmark, Germany and the Netherlands.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The actress recently updated fans saying, \"I haven't got the all clear... In three to four weeks I'll find out if it's gone into my lymph nodes. If I am cancer free and if they managed to get it all on the left side then I begin radiotherapy so it's quite a long way to go. I am not insurmountable. I have some good days and I do have some really bad days especially if I'm over tired. But more often than not I'm doing well.\"", "score": 3.970545, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Brave Airdrie mum battling stage three bowel cancer can see 'light at the end of the tunnel'", "score": 3.94427, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you are eligible and wish to do so, you can receive the MenB vaccine, which offers protection against the infection.", "score": 3.9372949999999998, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "When tested in mice, those given the bacterium excreted significantly more plastic in their feces than untreated mice, which was evidence that it latched onto the particles and helped flush them out.", "score": 3.9334350000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Trinny Woodall added: \"I'm looking forward to being a Lady Garden Foundation Host Ambassador at RHS Chelsea and speaking to as many visitors as possible at the 'Silent No More' Garden. It's a platform to raise awareness, break taboos and encourage more open conversations about gynaecological cancers amongst its visitors. I've supported the Lady Garden Foundation since it was founded in 2014 and I'm proud to be part of a bold charity that is helping to revolutionise women's health. By educating and empowering people to recognise symptoms and talk more openly about gynaecological health, we can help drive earlier diagnoses and ultimately save more women's lives.\"", "score": 3.925145, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "This includes placing restrictions on platform access for customers where necessary and an ongoing partnership with Drinkaware to implement further alcohol safety measures, including clear signposting to support resources.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Experts have said that while current vaccines may be less effective against Cicada, vaccination still offers significant protection against severe disease.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts said the findings demonstrate the extent of unrecognised heart failure in people with diabetes, and how the condition can be easily detected using a widely available blood test (NT-proBNP) that measures how much strain the heart is under.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms associated with BA.3.2 seem largely comparable to other strains of COVID-19.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"With Clubcard Challenges on fresh, frozen and tinned fruit, veg and pulses, we're committed to helping customers get more of the healthy food they need for less.", "score": 3.901315, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "two minutes after 11 is the time this Tuesday night you are listening to late nights with Ben Kentish here on LBC. Very pleased that you are. Great to have you with us. Very, very good evening indeed if you are just joining me on the program this evening. We've been talking about Donald Trump. Suspect we'll talk lots more about his relationship with Kier Starmer and this state visit in the days and weeks ahead. But lots more. Um, topics for us to get our teeth into. After 12, we're going to be talking a lot more about divorce. Amid more warnings today that it's on the increase, specifically divorce linked to financial difficulties. Look at that after 12 o'clock. Um, for now though, want to get your thoughts on a topic that we've we've discussed fairly frequently together over the months. Um, but it's one that is very, very significant right now because it touches the lives of so many people. Um, in this country at the moment and that is the issue of neurodivergent and particularly the massive increase in the number of people being diagnosed with conditions like ADHD and autism.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And I think because a lot of things are very time critical in obstetrics, that is where the workforce tends to, to gravitate to and it is the general ultrasound that tends to suffer more and then we're trying to do patients that are on cancer pathways.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For you, you can't just say I have autism without somebody who is an expert having told you that you have autism.", "score": 3.89304, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"But I won't lie, having cancer is hard.", "score": 3.89304, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Additionally, colds and respiratory infections remain common as temperatures fluctuate.", "score": 3.88572, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Pharmacists can also support those with long-term conditions, such as diabetes or heart disease, ensuring they have the medications and advice needed to stay well over the holiday period.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Poo normally should be a chocolate brown: bile - a digestive fluid produced by the liver - is a yellowish brown to dark green, and when mixed with our gut bacteria, it turns dark brown.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Covid-19 Cicada was first identified in in South Africa on November 22, 2024 with between 70-75 mutations with some having the potential to reduce protection from a previous infection or vaccination, according to the Centers for Disease Control and Prevention (CDC).", "score": 3.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prof Ravi Gupta, of Cambridge University, who advised the UK government during the pandemic, said: \"This is different from the (Covid-19) viruses we have been dealing with for the last two years.\"", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Annette Illing, a 39-year-old mother of three, is the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The TARTAN-HF trial found one in four of patients with diabetes who had at least one other risk factor for heart failure had undiagnosed heart failure that was detected through screening using a new blood test and ultrasound scanning of the heart.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Williams, a retired civil servant who is undergoing cancer treatment, considers her pension to be \"fairly decent,\" but as the US cost of living has risen, she has had to dip into her savings.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The vaccine was initially made available in September 2024 to older adults as they turned 75, with a catch-up programme for those aged 75 to 80, plus women from 28 weeks of pregnancy.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As well as the brilliant 5-a-day-hub on the Tesco Real Food website, you'll find hundreds of healthy, easy-to-make recipes, plus heart and diabetes-friendly meal suggestions, created in conjunction with the British Heart Foundation and Diabetes UK.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Having had breast cancer, I, the relationship I had to my body was very different because, you know, you, you have a baby, you, your body goes through all of those physical changes, external, internal, then you can nurture that baby if you choose to nurse your child and then you go through these other physical changes when you get to a certain age, we go through menopause, we, it's such an extraordinary, um, machine that we have here.", "score": 3.832275, "claim_types": ["personal", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I know how difficult it's been for me, um throughout my life and when I was in school that there was nobody to say, um you might be ADHD so we might need to make adjustments.", "score": 3.832275, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mother-of-three Annette Illing, 39, is the first person to be successfully treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal, which was established after the singer died in 2021 at 39 after battling the illness.", "score": 3.8320299999999996, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For decades, cancer treatment revolved around long-established techniques such as chemotherapy - where powerful drugs are given to stop malignant cells from reproducing - and radiotherapy, when high-energy radiation is fired at tumours to destroy their DNA, halting their spread.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms are similar to other Covid strains - the usual suspects like fever, cough, and fatigue that can be treated with rest and over-the-counter meds.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Covid symptoms are no longer hallmarked by the loss of taste and smell as they were in the first couple years of the pandemic, although that can still happen.", "score": 3.82381, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If I'm cancer-free, then, a few weeks after that, I will begin radiotherapy. If I'm not cancer-free, then we'll cross that bridge when we get to it. But I have a feeling I will be. I don't why I have that feeling but I just have.\"", "score": 3.799255, "claim_types": ["personal", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite the fact that he was also diagnosed with prostate cancer which was subsequently treated and is waiting for another skin cancer operation, the PCI procedure has given him a new lease of life.", "score": 3.795165, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "My world had fallen apart; I was too young to have cancer.", "score": 3.7723649999999997, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"When I received the cancer diagnosis it was earth-shattering news, we weren't ready. You never think it is going to happen to you. It was really, really surprising but not in a good way.\"", "score": 3.7723649999999997, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pam claims her kids' plant-based diet has stopped them from needing the doctor for childhood illnesses like the flu.", "score": 3.7723649999999997, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John had battled stage four adrenal cancer after the disease returned in 2024, having initially been diagnosed in April 2023.", "score": 3.76621, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts say that while current vaccines may be less effective against cicada, vaccination still offers significant protection against severe Covid disease.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mills is no longer a patron for the charity, which aims to fund research into more effective treatments for children diagnosed with the cancer.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She thought she was low risk but ended up being diagnosed with cancer.", "score": 3.74141, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Sometimes I worry that my cancer has become the talk of the town and it's all people see in me.", "score": 3.74141, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But within two years, the keen flute player from Bracknell, Berkshire, was forced to have part of her middle finger amputated due to the discovery of a life-threatening cancer.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Katie Houston was diagnosed with stage 2 bowel cancer in August 2022, at the age of just 43.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three months later, Helen suffered from a chest rash and scans sadly revealed her cancer had returned to her lymph nodes and neck as secondary stage three breast cancer.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the hospital, it was found she had suffered a bilateral pulmonary thromboembolism, where blood clots obstruct arteries in both lungs.", "score": 3.735255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Amid Cain's health battle, after being diagnosed with aggressive prostate cancer, there's an accident next week that leaves his life on the line.", "score": 3.735255, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That led doctors to give Elizabeth the devastating news that she should have part of her finger removed in July 2022 because the cancer had already occurred twice.", "score": 3.735255, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While most respiratory viruses spread mainly through airborne particles, norovirus is different.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Customers can also earn extra Clubcard points through Clubcard Challenges by buying frozen and tinned fruit and veg, beans and pulses.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While most respiratory viruses transmit mainly through airborne particles, norovirus is different.", "score": 3.73409, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These low-dose X-rays detect early signs of breast cancer and are routinely offered to women aged 50 to 70 in the UK in a national screening programme.", "score": 3.73294, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People who smoked daily during more waves of young adulthood were significantly more likely to still be smoking later in life.", "score": 3.7310499999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I also meet with my cancer nurse every six months.", "score": 3.720035, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Immunotherapy drugs stop that protein from binding to immune cells - allowing them to identify cancer cells as foreign and launch an all-out attack on them.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms linked to BA.3.2 appear broadly similar to other forms of COVID-19.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The antigen serves as a red flag to the immune system, almost inviting it to dispatch soldier cells to attack and destroy the cancer.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Holidays reflected the needs of the farming calendar, while Esslemont School's old log books recorded closures for epidemics of measles and whooping cough in the days before vaccinations.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The drugs were developed because some cancer cells 'hide' from the body's defences by releasing a protein, called PD-L1, which binds to the surface of immune cells, instructing them not to attack.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It tends to be the first investigation for a lot of patients both in obstetrics and obviously for cancer as well.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Until now, medicines such as Wegovy and Ozempic have been used mainly for obesity and diabetes.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And so, really, you know, and and there are very effective treatments as well, specifically for ADHD.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Unlike many forms of skin cancer, subungual melanoma is not linked to sun exposure.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Diabetes was confirmed by self-report questionnaires and blood glucose readings.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing T-cells to kill off the tumour", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new non-hormonal drug has been approved to treat menopausal hot flushes.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK health officials are keeping a watchful eye on the emergence of a fresh COVID-19 variant, BA.3.2 - dubbed the \"cicada\" strain - as it makes its way across numerous nations worldwide.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They can vary between individuals and may ease with rest, plenty of fluids, and medicines available without prescription.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is standard practice when melanoma is suspected, as the cancer develops in the nail bed - the skin beneath the nail - rather than the nail itself.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By midlife, about one in 10 reported that their memory was 'fair' or 'poor.'", "score": 3.700095, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Iranian media reported Tuesday that a wave of US-Israeli strikes hit military bases, a religious site and a cancer drug plant in the more than month-old war rocking the Middle East and roiling the world economy.", "score": 3.6937550000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Law also argues that it is better to prevent breast cancer from occurring than to treat it.", "score": 3.674385, "claim_types": ["rules", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Covid-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", "score": 3.67103, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "COVID-19 boosters are also available privately from High Street pharmacies for those not eligible on the NHS.", "score": 3.67103, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A large analysis of nearly 80,000 participants found just 15 minutes of fast walking can cut your risk of early death by 20 per cent.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One analysis found that just 30 to 60 minutes of muscle strengthening activity every week is associated with a 10 to 20 per cent lower risk of death from all causes.", "score": 3.6691399999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Each year, more than 200,000 people suffer a heart attack or stroke.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Data from Healthwatch has shown that millions are struggling to access NHS dental care, with some forced to travel hundreds of miles or face waits of months.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But while fruit and veg ought to make up a third of what we eat, government figures show that fewer than one in five adults and under one in 10 children are getting their 5-a-day.", "score": 3.6691399999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Roughly 28 million Americans have alcohol use disorder, nearly 19 million have cannabis use disorder and approximately 29 million smoke cigarettes, making each condition a major public health threat.", "score": 3.6691400000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Stephen spent the last eight years of his life battling cancer with the same indomitable energy he brought to his lifelong work: the unending struggle for justice and dignity for every human life,\" his family said in a statement released shortly after his death.", "score": 3.660125, "claim_types": ["personal", "quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new Covid variant is set to become dominant in the UK(Image: Getty Images/iStockphoto)", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said: \"So, the next stage, is, in about four weeks, we will find out if she managed to get all the cancer out and we'll also get the results of whether it was in the lymph nodes or not.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the new vaccine - called iVAC (intratumoural vaccination chimera) - could boost the chances of defeating cancer, according to results published in February in the journal Nature.", "score": 3.653625, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Department of Health and Social Care also claimed the NHS will meet all of its existing cancer targets by March 2029.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Through my long-term ambassador work with the Lady Garden Foundation, I think it's incredibly important that we start having open conversations with friends and family about the five gynaecological cancers and what the symptoms can feel like. Knowing my mum had ovarian cancer has also made me take proactive steps with my own health. I've undergone genetic testing for the BRCA gene, as well as other genes that can increase the risk of ovarian cancer. Being aware of your body and taking preventative action can make a huge difference to an earlier diagnosis\"", "score": 3.636075, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The former lobbyist had contracted Covid-19 in March 2020, and in the months and years that followed, he had one of the worst cases of the virus.", "score": 3.635935, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I think about all the people during Covid that didn't have that, and I think about all the circumstances when people don't have that.", "score": 3.62671, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'm so much better after the long Covid, but I feel different, physiologically.", "score": 3.605585, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I wanted to play the flute but I want to live more.", "score": 3.605585, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The fluid, which contains lung cells and bacteria, is sent to the lab for testing.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some 10 per cent of bacterial cases are fatal.", "score": 3.57942, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Kieran Docherty, clinical senior lecturer at the University of Glasgow's School of Cardiovascular & Metabolic Health, said: \"Our results from the landmark TARTAN-HF trial identified heart failure in a large proportion of people living with diabetes, emphasising the need for a heart failure screening strategy in this group of patients.", "score": 3.566845, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The main reason for economic inactivity in the UK is long-term sickness - accounting for about a third of cases, which is a record high.", "score": 3.5589250000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the subjects the two discussed were Hedberg's dream date (Martha Stewart), among other things.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A brave West Lothian cancer survivor has shared her own story ahead of Bowel Cancer Awareness Month.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Corrie star Bev Callard put through 'terrifying' trial before cancer diagnosis", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS Lanarkshire have collaborated with a number of partners to provide new research into diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Genevieve Edwards, chief executive of Bowel Cancer UK, said: \"While there's been great work to date when it comes to people taking part in bowel cancer screening.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kimberley Walsh breaks down after Sarah Harding 'saved' breast cancer survivor", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cold Feet star Hermione Norris shares battle with long Covid - 'It gave me a shock'", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"At the same time as I was waiting to hear back, Bowel Cancer Awareness Month had just started.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tim Elliott, a professor of immuno-oncology at the University of Oxford, said this kind of approach - using drugs that both stop immune evasion and make cancer cells attract killer T-cells - is hugely promising.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Celebrity supporters of the gynaecological charity Lady Garden Foundation have pledged their support to the charity's 'Silent No More' Garden at the RHS Chelsea Flower Show, which has been designed to break the silence and stigma surrounding the five gynaecological cancers - vulval, ovarian, cervical, womb and vaginal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Davina McCall whose mother had ovarian cancer, is a long-term supporter of the Lady Garden Foundation.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "EXCLUSIVE: Emmerdale's Moira fears Cain's death as tragedy strikes amid cancer battle", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The event raised money for Maggie's cancer charity and The Meath Epilepsy Charity.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "President Donald Trump, whose former daughter-in-law Vanessa is dating Woods, was asked about the golfer when he landed in Miami on Friday afternoon for an investment summit.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To see if the strain could hold up in the human gut, the team tested it in simulated intestinal fluid containing bile salts, a notoriously harsh environment that can disrupt bacterial cell walls and render them ineffective at binding plastics.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scott Mills has been dropped as a patron by cancer charity Neuroblastoma UK following his axing from BBC Radio 2, which was announced on 30 March", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kimberley Walsh met with a mum who was treated for breast cancer thanks to research funded by the Sarah Harding Breast Cancer Appeal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS Lanarkshire collaborate with partners to provide new research into diabetes", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Club Chemistry has since set up a COVID-like 'track and trace' system which will allow it to contact club-goers if further cases emerge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour MP Antonia Bance says she is 'gutted' at the British Medical Association for refusing their pay increase offer to resident doctors.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His wife, Carroll Taylor Wiseman, a nurse in a newborn intensive care unit, died at the age of 46 in 2020 following a battle with cancer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Karl Peggs, a professor of cancer immunotherapy at University College London Hospitals NHS Foundation Trust, agrees.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"At Anthony Nolan we give hope to families affected by blood cancers and disorders, but we can't do it without the lifesavers that sign up to our register.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Alongside the meal plan, patients are provided with one-to-one support and guidance to help them sustain a healthy lifestyle for longer and reintroduce healthy foods and maintain weight loss, while medications for type 2 diabetes and blood pressure are stopped.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Kimberley Walsh met the first person to be successfully treated for breast cancer thanks to research funded by The Christie Charity Sarah Harding Breast Cancer Appeal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New 'lineage' of Covid arrives in UK as 'cicada' spread makes a turning point", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New cases of the Covid-19 Cicada strain have been detected in the UK", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity, it is also available under the different brand name Ozempic for the treatment of type 2 diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A second fan felt the diabetes idea made sense, especially as executive producer Ben Wadey promised a series \"red herrings\" leading up to the New Year's Day special, in which Penny's child will feature.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Semaglutide is already available on the NHS in England as a treatment option for people with obesity and, under the name Ozempic, for the treatment of type 2 diabetes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One major study which followed more than 90,000 people over a period of 28 years, found those who ate the most olive oil (more than half a tablespoon a day) had a 19 per cent lower risk of death from any cause, compared to people who never or rarely used olive oil.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "During the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A study published in the Lancet last year reported a 65% increase in annual hospital admissions between 2012-3 and 2021-2 for children and young people aged five to 18 with mental health concerns.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nearly half of primary teachers report pupil eating disorders, according to survey", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than a million to be prescribed weight loss drug to prevent heart attacks and strokes", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Cicada variant - technical name BA.3.2 - is better at evading the body's immune defences as it has around 75 genetic changes in its spike protein, the part of the virus that helps it get into cells.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of those who survive, one in three suffer complications, including brain damage and hearing loss.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the NHS, Rett syndrome affects around one in 10,000 girls, which results in severe mental and physical disability and there's currently no cure.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Throughout the 2024-25 respiratory virus season, the CDC estimates there were between 390,000 and 550,000 hospitalisations and up to 64,000 deaths linked to the virus.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yet one in three women experience severe pain during a hysteroscopy, rating it at least seven out of ten, according to the Royal College of Obstetricians and Gynaecologists.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Aplastic anaemia can affect anyone at any age, but is more common in people aged between 10 and 20, and those over 60.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show every four-week delay reduces patient survival by an average of 10 per cent.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'When all five physical measures were combined, mortality prediction improved even further in groups with preexisting health conditions.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In young adulthood, participants averaged two waves of binge drinking, defined as having five or more drinks in a row in the past two weeks.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Each wave of heavy drinking raised the odds by 13 percent, and that risk persisted 30 to 40 years later, when they reached their 50s and 60s.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids in a study", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They averaged just over one wave of daily smoking and less than one wave of heavy alcohol use - drinking 20 or more days a month - or frequent cannabis use, which involves using 20 or more days a month.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even after accounting for midlife smoking, each additional wave of daily smoking in young adulthood raised the odds of poor memory decades later by about five percent.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Known as the soups and shakes diet, the intervention aims to help followers lose between 22lb and 33lb(10kg to 15kg), which is enough for most people to reverse the condition, experts say.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Estimates suggest around 175,000 people aged over 65 visit their GP with RSV every year, and the virus causes around 8,000 deaths among older people annually.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But using smartphones on the loo was associated with a 46 per cent increased risk of haemorrhoids.", "score": 3.548465, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A 2021 trial found that patients with constipation who ate two green kiwis a day, 100g prunes a day, or 12g of psyllium per day for four weeks all equally increased poo frequency and decreased straining during a bowel movement.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By age 35, more than a quarter of participants showed signs of alcohol use disorder, six percent had cannabis use disorder - meaning their use of marijuana had caused significant life problems or loss of control - and nine percent smoked a pack of cigarettes or more a day.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Doses of medicinal cannabis products can be especially potent, containing up to 27% tetrahydrocannabinol (THC), the psychoactive compound in cannabis.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Street cannabis is thought to contain between 15% and 20% THC.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It demonstrates a heightened ability to bypass existing immune defences due to approximately 75 mutations within its spike protein - the specific component the virus uses to enter human cells.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People with alcohol use disorder at 35 were 32 percent more likely to report poor memory in late midlife compared to those who drank without disorder.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Disease might be prevented in around seven in 10 cases, experts estimate, based on best evidence.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Between November 2025 and January 2026, BA.3.2 represented approximately 30% of sequenced COVID-19 cases in nations including Denmark, Germany and the Netherlands.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Between November 2025 and January 2026, BA.3.2 accounted for roughly 30% of sequenced COVID-19 cases in countries such as Denmark, Germany and the Netherlands.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By late 2025, it was accounting for about 30% of Covid cases in countries like Denmark and Germany.", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Still hoping the baby will be Vinny's and Penny has gestational diabetes, which would explain the baby being larger,\" said a fan.", "score": 3.545675, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Thousands of people suffer from viral meningitis every year in the UK.", "score": 3.53287, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The one-off jab works by reprogramming cancer cells, so they become fully exposed to the body's immune system, which responds by releasing disease-fighting T-cells to kill off the tumour.", "score": 3.5194, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A survey published in the European Heart Journal informs us that short bursts of activity, such as running upstairs, can slash your risk of dementia by 63 per cent.", "score": 3.5175099999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An NHS survey of 2,000 women last year found that a fifth of women said they preferred not to have a mammogram as they've heard it's painful.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 10,000 under-50s are diagnosed with the disease every year in the UK now - 10 per cent more than in 2010.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Once considered largely eradicated in the UK, tuberculosis (TB) is rising again, with cases up by more than 13 per cent and London among the most affected areas.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Recent figures from the British Dental Association show that around nine in 10 NHS practices are not accepting new adult patients.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Up to two million people in Britain are currently thought to be using weight-loss jabs, the vast majority paying for them privately.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Through the programme, we've donated more than 10 million portions of fresh fruit and veg to schools across the UK to date, increasing access to healthy food and helping children to discover a love for fresh produce.\"", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Many melanoma patients are still alive ten years after their diagnosis; in the 1990s, average survival time was just six months.", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK health alert as 'lethal' disease that kills in hours surges 56% in Brit holidaymakers", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Covid may no longer dominate daily life, but it still demands respect.", "score": 3.50221, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An estimated seven million Americans, meanwhile, live with Alzheimer's Disease.", "score": 3.5019150000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's so much we don't know about women's health and the connections between everything but I do believe there's a really strong link between ADHD and autoimmune diseases.", "score": 3.5002750000000002, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Edi, a single mother has died young, from cancer.", "score": 3.4201550000000003, "claim_types": ["personal", "quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When we get to a certain age, night-time trips to urinate become more likely - especially for men who may have enlarged prostate glands (which can prevent the bladder emptying fully).", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added: \"I would encourage everyone who becomes eligible for the RSV vaccine from April to come forward and get vaccinated as soon as they have been invited to do so by their GP.\"", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Now 40, I have made a full physical recovery from my cholangiopathy and still attend NA meetings, but now I am one of the people who reassure newcomers that there is hope.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, and at the same time, even when I was going through breast cancer, I felt, wow, my body's extraordinary, it's still helping me heal, it's still helping me get to the next phase.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'd love to hear from you if you've got a diagnosis or you're currently trying to get a diagnosis for a condition like ADHD or autism.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Um so I'm 51, um and I was diagnosed with ADHD just two weeks ago.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "with long Covid , my focus is on being well and healthy.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um so I've been reading up on ADHD for the last four or five years trying to um understand it because a few people that know me have sent to me you know I think you might be ADHD have you ever thought about it.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cut to 2020 and Covid, and I was working really hard.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We'd love to hear from you if you've been diagnosed with ADHD or autism.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The former lobbyist had caught Covid-19 in March 2020, and in the months and years that followed, he endured one of the most severe cases of the virus.", "score": 3.3959650000000003, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As the weeks passed, though, that couple of glasses in the evening became three, then four, then the whole bottle.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK Health Security Agency has issued a warning after 13 travel-associated cholera cases were reported in 2025, a 56% increase from the previous year", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The data reveals 13 travel-related Cholera cases plus one additional case in a person who drank water from an endemic country were recorded in 2025 - representing a 56 per cent rise.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Treasury officials said suspicious activity reports related to health care rose 20 percent in 2025 compared with 2024, but warned that the reports likely represent only a small share of the fraud occurring nationwide.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Life expectancy for about half of those with the condition is between just two and give years from the onset of symptoms.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said the mortality rate for over-70s who \"cocooned\" at home was no different to the general population, but mortality rates for people of the same age in residential facilities was 21 times higher.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It happens when the bone marrow cannot make enough new blood cells for the body to work normally, with around 100 to 150 new cases in the UK every year.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The family was told his levels were at 5% with very few cells, when a baby his age should have 100%.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was a 20% reduced risk of a major heart event among the 17,604 people who took part in the study.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Indeed, figures from the Office for National Statistics show that ketamine use among women is on the rise; in 2023, female deaths from ketamine were three times higher than pre-2020.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "My team's findings, published in the journal JAMA Network Open, concluded that having an old gastrointestinal injury, such as a stomach ulcer, was associated with a 76 per cent increased risk of later developing Parkinson's.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show the five-year survival rate in melanoma patients on the drugs has improved by around 50 per cent since they were introduced", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the 17,604 people who took part in the study, there was a 20% reduced risk of a major heart event.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She also bled for several weeks (normally, if there is bleeding it lasts no more than a couple of days).", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than five million women in England are not up to date with their routine cervical screenings, for instance, according to 2024 data.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around eight million people in the UK are living with cardiovascular disease, with an estimated 1.2 million thought to have a body mass index (BMI) above 27 and therefore meeting the new eligibility criteria.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A person who engaged in heavy alcohol use in their 20s was not just at slightly higher risk of memory problems in their 30s.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show the five-year survival rate in melanoma patients on the drugs (given via weekly or fortnightly infusions into a vein in one arm) has improved by around 50 per cent since they were introduced.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And a recent study of more than 5,000 people in the US, Canada and the UK found 34 per cent of those aged 18 to 34 experienced at least one bowel disorder (e.g. chronic constipation or diarrhoea) - in contrast to 22 per cent of those over 65.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He had lost his job and taken out a payday loan to fund his prescription, which was now costing up to £1,000 a month.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figures show 13 travel-associated Cholera cases and an additional case in an individual who consumed water from an endemic country were reported in 2025 - a 56 per cent increase.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One 2021 clinical trial found that people with high blood pressure who ate around four tablespoons of flax seeds a day experienced significant reductions in body mass index (BMI), total cholesterol levels and blood pressure.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For each additional wave of daily smoking in their 20s, they were nearly twice as likely to be smoking a pack or more a day at 35.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Participants with at least one of 131 common illnesses were considered 'unhealthy.", "score": 3.38124, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I was immersed into a tank with the worst things you've ever seen and that was terrifying,\" says Bev.", "score": 3.357955, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As days get hotter and the sun becomes more intense, people risk skin damage from sun exposure.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Collagen is not going to give you the same benefits as certain skincare treatments, using sunscreen, drinking more water and reducing alcohol or smoking.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This stomach bug can remain on fabric for up to a month, making contaminated clothing a more significant transmission risk.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This stomach bug can survive on fabric for up to a month, making contaminated clothing a greater transmission risk.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Patients with conditions such as peripheral arterial disease, or those who have already experienced a heart attack or stroke, face a significantly higher risk of another potentially fatal event.", "score": 3.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 or over in addition to other medicines, such as statins, and alongside a reduced calorie diet and increased exercise to prevent heart attacks and strokes.", "score": 3.3502850000000004, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Anyone can be affected but at-risk people include those aged under five, 15-to-24 and over 45.", "score": 3.3502850000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'It's positive to see the UK Government commit to meeting cancer wait time targets by 2029.", "score": 3.34943, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions more will be eligible for the potentially life-saving jab (Image: Getty)", "score": 3.3475400000000004, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"When it comes back at that point it is no longer curative, you are then on a palliative pathway. It is no longer about can we get you better, no cancer, it's about how many years can we keep you alive and comfortable. That's incredibly hard news to deal with when you've got two young children and you want to be there to bring them up.\"", "score": 3.347495, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said how this latest incident leaves Moira \"worried\" amid her fears she will lose Cain as he battles cancer.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She also has ADHD.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ronnie, from Merseyside, was diagnosed with the rare blood disorder aplastic anaemia just before his first birthday.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I really hope so and that this is all a red herring by Wadey to throw us off,\" the fan said before adding: \"The diabetes thing would make sense too.\"", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said: \"My mother had ovarian cancer, and in those days no one talked about women's gynaecological cancers, their symptoms, or how they affected women's bodies - it's like there was a real sense of shame and embarrassment.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hermione Norris has revealed she has suffered from long Covid, which left her concerned about her ability to take on physical challenges.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"I also use an infrared sauna for my autoimmune condition. I get really stiff joints. I'm so much better after the long Covid, but I feel different, physiologically. It gave me a shock, as I've always been quite fit and strong.\"", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Describing how her battle with bowel cancer began, Nicola said: \"It was so frustrating knowing that something wasn't right, but also feeling like the people who were meant to be helping me, just weren't listening.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's been particularly tough as my mother died of lung cancer at a relatively young age, but she did smoke and I never have.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Beverley Callard, who played Liz McDonald on Coronation Street, has tearfully explained that she is \"in denial\" amid her cancer battle as she waits for results to come back following an operation", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Coronation Street legend Beverley Callard was on the verge of tears as she admitted she is \"in denial\" amid her cancer battle.", "score": 3.347495, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And nothing to panic about, whether it be blood or whether it be, and nothing I'd found in the diary or anything of that, any of the symptoms, so as I say, you know, for me, it was definitely a shock without a doubt because, you know, we all believe, um, you can say cancer free if you stay fit and healthy and all those things, but it just goes to prove that isn't the case.", "score": 3.347495, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Thousands of people living with motor neurone disease could be given the chance to live longer, thanks to a new drug which has been shown to slow the progression of the most common form of the degenerative illness.", "score": 3.31933, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when NICE approved Wegovy for weight loss on the NHS.", "score": 3.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An estimated one in 50 UK adults now use fat jabs with demand soaring since 2023 when the National Institute for Health and Care Excellence (Nice) approved Wegovy for weight loss on the NHS", "score": 3.31818, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since the cameras stopped rolling, Bev has been diagnosed with breast cancer and is currently undergoing treatment.", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lorna Luxe has revealed that she finally went ahead with her charity auction in honour of her late husband John Andrews - after his death from cancer last month.", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Weisman lost his wife Carroll (left) to cancer in 2020", "score": 3.310385, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is recommended for those with a Body Mass Index (BMI) classed as overweight or obese - higher or equal to 27.", "score": 3.3040900000000004, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Never hold in a poo - the longer it sits in your colon, the more water will be drawn out of it, making it harder to go.", "score": 3.2821300000000004, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "In 2022, the World Health Organization recorded a worldwide surge in cholera notifications, with more cases emerging from a growing number of nations.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Almost 424,000 people now receive the devastating news each year, with the frequency up from once every 90 seconds just ten years ago.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show only around 40 per cent fully respond to them.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Its popularity as a recreational drug has surged in recent years - particularly among young people - largely because it is cheap compared to other drugs.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'The earlier we can diagnose and treat ALS, the greater the potential to preserve function and maintain quality of life for longer, which are key to making ALS livable until we can cure it.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When looking at walking speed, the team found slow walkers were more likely to have higher resting heart rates than brisk walkers, which signals increased stress on the heart.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Preliminary analysis indicates the cicada variant may be more capable of evading antibodies generated through prior infection or vaccination, raising concerns about reduced immune protection.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These metrics can show how much stress essential organs like the heart are under on a day-to-day basis, but improving them can take months or years of dieting, exercise and medication.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And similarly, when we think about some of the physical health outcomes, cardio metabolically, so for our hearts and for lots of different bio markers, from activities like dance, and actually direct trials have compared dance to non-dance exercise, are often showing greater benefits physically from the dance compared to the non-artistic equivalent.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Moreover, tamoxifen patients are warned not to get pregnant while on the drug as it significantly raises the risk of birth defects, including physical deformities and genetic diseases.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Early research suggests the cicada variant may possess a greater ability to sidestep antibodies produced by previous infection or vaccination, sparking worries about diminished immune defence.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is particularly important for older people or those with weakened immunity, with studies showing it can reduce the number of infections.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show that half of women who have breast surgery will experience persistent pain after the procedure.", "score": 3.226865, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'In practice this could cut around three to five major cardiovascular events per 100 patients every few years.", "score": 3.226865, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People who used cannabis frequently in young adulthood were more likely to report poor memory decades later - an eight percent increase in risk for each wave of heavy use.", "score": 3.226865, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eating an excess of sweets and chocolate is directly linked to poor dental health in children, due to the foods' high sugar content.", "score": 3.2202399999999995, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These months are when the UV Index can reach three or higher, which is when people should take measures to protect themselves from the harmful effects before they happen.", "score": 3.2139949999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "These months mark when the UV Index can climb to three or above, which is when people should take steps to shield themselves from the damaging effects before they occur.", "score": 3.2139949999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.", "score": 3.20373, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An alert has been issued following 13 cases of a potentially deadly disease that can prove \"fatal within hours\" being identified in individuals returning to the UK from four destinations.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Heavy marijuana use in one's 20s raised the odds of developing cannabis use disorder by age 35.", "score": 3.197505, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Her oxygen levels quickly plummeted to 65% - which is lethal.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To date, it has gathered 8,000 testimonies of women with shocking stories that echo Dawn's - many report not being informed that a hysteroscopy can be painful or being given information about pain relief options.", "score": 3.197505, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Weight-loss jab Wegovy will be offered for free on the NHS to more than a million people in England at risk of heart attacks and strokes.", "score": 3.19476, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another,\" she said.", "score": 3.18436, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A warning has been issued after 13 cases of potentially lethal disease which is 'fatal within hours' were detected in people returning to the UK from four destinations.", "score": 3.16655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's thought that artificial sweeteners can significantly alter the make-up of bacteria in the gut.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Expired sunscreen can lose its effectiveness, failing to protect your skin from the sun damage you think you're covered from.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tooth decay remains the most common reason for hospital admissions in children aged five to nine.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eating pumpkin seeds can also help support hair health, the nutritionist adds, with one of the most notable symptoms of a zinc deficiency being hair loss.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And if they're feeling stressed and anxious and a bit sad about that that's not a medical condition.", "score": 3.15833, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ultra-processed foods (UPFs) have changed how we poo - and not for the better.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Low sick pay is making Britain sicker", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As temperatures rise and sunlight becomes stronger in the coming months, people may face an increased risk of skin damage from UV exposure.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even on overcast days during early spring and autumn, UV levels can still be strong enough to cause harm, specialists warn.", "score": 3.15833, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Specialists warn that shortfalls in worldwide genomic monitoring mean BA.3.2's actual distribution may be greater than currently understood.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Furthermore, the fact that, since 2014-2016, women have lost almost four years of healthy life expectancy and men have lost three years demonstrates just how systemic the problem has become.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disease affects around 58,000 women every year.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The analysis also finds that the majority of workers (58 per cent) reported working when they didn't feel well enough, and a third of these cited sick pay as one of the financial reasons for working through illness.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The National Education Union (NEU) poll also revealed that two-thirds (68%) of secondary school teachers who responded regularly encountered absenteeism linked to students' mental ill-health.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Almost half of teachers (48%) who responded said they regularly witnessed chronic anxiety among pupils, while almost a third (31%) saw students living with social isolation.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With around 17,600 new cases of melanoma in Britain every year, and between one and three per cent are subungual melanoma.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to analysis of that data shared exclusively with the New Statesman by the Centre for Progressive Change think tank, 10 per cent of the workforce - 3.7 million people - have worked through illness in the past year because they couldn't live on statutory sick pay alone.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Each year in the UK, there are around 100,000 hospital admissions due to heart attacks, another 100,000 people experience a stroke and around 350,000 people live with peripheral arterial disease.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And those who developed the disorder were 36 percent more likely to report poor memory later in life compared to those who used cannabis without developing a disorder.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That figure is slated to double by 2060, driven by the rapid aging of the baby boomer population as well as an overall rise in the number of Americans living into old age - the leading risk factor of the disease.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I mean, this report finds that one in ten young adults self-identify as autistic.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ronnie, from Merseyside, had just started crawling when his mother Laura noticed he was bruising more.", "score": 3.120805, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ronnie was rushed to hospital where medics initially suspected he had leukaemia, a type of blood cancer.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nicola added: \"On April 4, 2019, I was called into the hospital and told I had stage 3 bowel cancer.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Speaking after her second melanoma was removed - leaving her cancer free - she added: 'The whole way along I never felt I was going to die because the surgeon was very reassuring that it was cancer but it was very treatable as it was diagnosed early.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But for one woman, it turned out to be the only signs of a rare, deadly kind of cancer that ultimately cost her part of her finger.", "score": 3.107525, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Iranian government also said airstrikes had hit a plant making cancer drugs and anaesthetics, claims AFP could not independently verify.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2025, cases were reported in 33 countries across 5 WHO regions, with the highest number of cases in the Eastern Mediterranean, followed by Africa, South-East Asia, the Americas and the Western Pacific .", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The team reported 33,318 deaths.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But, other experts say even the smaller dose could put women at needless risk of side-effects and complications.", "score": 3.083055, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health", "score": 3.04313, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If the majority of your nail beds appear pale and washed out, with a thin reddish-brown strip near the tip, this could be a sign of 'Terry's nails'.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Limb amputation is a potential side effect if septicaemia (blood poisoning) occurs.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This hormone is needed to bring down high blood sugar levels - which left unchecked can increase the risk of heart attack and stroke as well as problems with the eyes, kidneys and feet.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This, experts say, changed the way the body absorbs and regulates blood sugar, which over time increases the risk of developing the disease.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kids could be particularly susceptible to catching cicada(Image: Getty Images)", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Quitting by age 35 did not erase the risk.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"High LDLs over a lifetime increase your risk.\"", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Evidence suggests that low sick pay means workers battle on regardless of their symptoms, or return to work too soon - spreading disease and making themselves sicker.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Changes in colour, width, or pigment spreading onto the surrounding skin should also raise concern.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "statins and tamoxifen and yet because we haven't normalised it in society, women aren't aware of its potentially life-saving effects.", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As MND gets worse, a sufferer may experience problems breathing, swallowing and speaking.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A daily smoking habit in young adulthood predicted worse self-reported memory by age 50, regardless of whether the person had quit by age 35.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Alcohol use disorder, meanwhile, is defined as meeting two or more diagnostic criteria for problem drinking over the past five years, including loss of control, cravings or continued use despite harm to oneself.", "score": 3.037655, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Looking at your smartphone on the loo is a modern-day habit - but a study my team ran, published in the journal PLoS One last year, proved this is something you should never do, as it is associated with a significantly heightened risk of haemorrhoids.", "score": 3.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "For this reason, experts liken the side-effects of tamoxifen to an early menopause - though most women find that their periods return if they stop taking the tablets.", "score": 3.00555, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The actress, who is still awaiting her results which will indicate whether she is cancer-free or not, has relocated to Ireland to star in the soap opera Fair City so had to go through the rigmarole of changing the GP she was registered with, but the process made her realise that she has not been letting herself really think about the situation at all.", "score": 2.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has also called for a new 'Cancer Fellowship' scheme to welcome scientists from the US whose cancer research has been defunded by the Trump administration.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "One of the key pieces of medical evidence cited during the trial was a 1989 academic paper by Canadian neonatologist Dr Shoo Lee, which examined how air embolisms present in babies.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UKHSA revealed that across England, Wales and Northern Ireland, 14 confirmed cholera cases were recorded in 2025, marking a 56% rise compared to 2024 when 9 cases were documented.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around 5,000 adults in the UK have the condition and there is a one in 300 risk of developing it over the course of a lifetime.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NHS hospitals performed 56,143 extractions on children and teenagers in the financial year ending 2025 - up 14 per cent on the previous year's total of 49,112.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the UK between one and three times a day is normal - while in eastern India, the average is 14 stools per day (partly down to local diet, which is heavier in fibre and spice).", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At 500 million bacteria per milliliter, the strain trapped 87 percent of the plastics, its peak performance under ideal conditions.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Freedom of information data from NHS Business Services Authority showed there were 659,293 unlicensed cannabis products privately prescribed in 2024, more than double the 282,920 issued in 2023.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In fact, one small study found a 10-minute walk immediately after eating had a greater benefit than a 30-minute walk 30 minutes after eating.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Boyle pointed out more than 1,500 adverse incidents from GLP-1's reported by the FDA, which Writesman contended could be even higher.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Weight-loss jabs to be given to 1.2m heart patients on the NHS in major treatment shift", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And the injections may only be given if someone's LDL is higher than 3.5 mm/L, while taking the maximum doses of statins and ezetimibe.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hospital visits increase during these events, \"even up to five days after the episode ends\".", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UKHSA said that in England, Wales and Northern Ireland there were 14 confirmed cholera cases reported in 2025, which represents a 56% increase to 2024 where 9 cases were reported.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were 336,023 people in the healthy group and 71,546 in the unhealthy group.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Treatment typically involves a combination of potent antibiotics over a long period (over 18 months in my case and the infection is still there).", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Throughout 2021, these bouts of pain became more frequent and intense, and on 14 occasions I went to A&E.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK Health Security Agency has released data showinga 56 per cent increase as symptoms explained", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, figures released by the British Association of Aesthetic Plastic Surgeons revealed that in 2023 there were 4,641 procedures carried out in both the NHS and private sectors.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around one in four (24.9%) of those screened were found to have the condition within six months, in contrast to only 1% in the group continuing their usual care.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scope, a charity that supports people with disabilities, puts the average at £1,095 a month.I do all these things, like physio and personal training, to help my mobility so that I don't rely on the NHS.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When replacing cholesterol and blood pressure, NRI improved 11 percent for women and 14 percent for men.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The numbers might look small at first glance, but what makes them significant is that these risks did not fade after a few years.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People exposed to passive smoking or with suppressed immune systems, such as patients undergoing chemotherapy, are also more at risk.", "score": 2.93364, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Taking paracetamol and ibuprofen about an hour before the procedure can help with cramping.", "score": 2.93117, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Researchers discovered that the mutant strain 'Circada' surged globally in September 2025.", "score": 2.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'd obviously signed up to some kind of trial at the time, and they were checking up on people post-Covid.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She told Prima magazine : \"I'm not great at extreme discomfort. I had long Covid a few years ago, so I was worried about my physical fitness and the demands of walking so much every day, plus carrying the backpack. But we did a couple of massive walks and I was fine. I was pleasantly surprised.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I also organised a \"let's talk\" session with a disabled influencer who has endometriosis.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's really good with my ADHD brain because it ties into my competitiveness and also gives me a focus, so that I'm not thinking about how well I'm standing and therefore I'm often more stable when I'm doing the exercise.", "score": 2.922625, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'I don't think that is an unusual concern but that is outside of my influence to change even were I to make a prevention of future deaths report.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Before delving into the evidence with resident GP Dr Margaret McCartney, James finds out what it feels like to have a hot flush.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Instead, she is calling for patients to be offered a smaller daily dose - a quarter of the current amount - in order to avoid these side-effects.", "score": 2.9201050000000004, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He had been diagnosed with stomach cancer eight years ago.", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pressing on your nailbeds may temporarily make the discolouration disappear, though this is not a cure for Terry's nails.", "score": 2.9158299999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's also possible to use a local anaesthetic gel and, if the cervix needs to be held steady, a small anaesthetic injection can numb the area.", "score": 2.9158299999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions are being urged to act after a huge change in guidance.", "score": 2.91556, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "They are also more likely to suffer financially as a result of their illness and to develop long-term complications such as chronic pain.", "score": 2.9142349999999997, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Doctors should also prescribe lifestyle changes that include eating healthily and getting enough exercise to help people keep the weight off.", "score": 2.90771, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", "score": 2.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "So, one 'hit' a night became two - and then one during the day, too.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Annette had received a letter inviting her to take part in a trial funded by The Sarah Harding Breast Cancer Appeal.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Beverley Callard breaks down in tears as she issues update after breast cancer surgery", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Elizabeth was a keen flute player before having her finger amputated", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She may develop scoliosis.", "score": 2.884875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Once the coil is in place, the uterus may briefly contract - a feeling like period pain.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For example, a drop in the hormone oestrogen after the menopause means vaginal tissue can be thinner and drier, making the insertion of a speculum more painful.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, for those whose heavy drinking, whether frequent or episodic, continued into their 30s and led to alcohol use disorder by age 35, the effect was significant.", "score": 2.884875, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A three-tablespoon serving contains over a third of an adult's daily magnesium, which helps calm the nervous system and regulate circadian rhythms - playing a crucial role in sleep-wake cycles.", "score": 2.88131, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A mother who 'hates' the way she looks with her 'heavy and saggy' size 40K-cup breasts is desperately fundraising for surgery after claiming the NHS turned her down at least 20 times.", "score": 2.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Today's guidance will no doubt help save lives as cardiovascular disease is still one of the country's biggest killers.\"", "score": 2.875965, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These changes include more sedentary lifestyles, unhealthy ultra-processed foods which make it harder to maintain a healthy weight, and more high-pressure working environments which drive stress levels and impact sleep.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We know that people who have already had a heart attack or stroke face a much higher risk of having another.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Besides being good for the gut, regularly eating flaxseeds - especially in their milled form - has been shown to reduce total and so-called bad cholesterol levels, decrease blood pressure and improve blood sugar control.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Cholesterol-lowering drugs that are alternatives to statins may become more widely used after a major trial has shown they can stop heart attacks and strokes even in people not thought to be at the highest risk.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So many people seem to believe that lurking in your colon are 'toxins', and the longer your poo stays in your intestines, the more dangerous these are.", "score": 2.8717300000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Drug trials suggest Wegovy can help slash the risk of future heart and circulation problems.", "score": 2.8717300000000003, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Swedish researchers, who tracked nearly 250,000 Britons, said their findings should serve as a 'reminder that sleep plays an important role in health.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "walking pace was the strongest individual predictor of mortality, particularly in those with a prevalent health condition,' the researchers wrote.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'There are lots of people out there who have got complex coronary disease which they've been told can't be treated or they have not been offered a treatment,' says Dr Hanratty.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Guidance says the treatment can be used by patients with a body mass index (BMI) score of 27 and above in addition to other medicines, such as statins, and alongside a reduced-calorie diet and increased exercise.", "score": 2.8655049999999997, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Today, the NHS typically prescribes only a small number of licensed CBMPs - those approved by the medicines regulator - for conditions such as severe epilepsy, multiple sclerosis and chemotherapy-related pain.", "score": 2.856485, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meningitis patients 'may have been left disabled' because of hospital delay", "score": 2.85392, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR6bMj https://t.co/YQoQMBYDJE", "score": 2.85392, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'My son's only meningitis symptom was feeling cold - hours later he was dead' https://t.co/voK7PR5DWL https://t.co/Ge4yc8pRu5", "score": 2.85392, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In fact, research shows that nine in ten women are alive five years after diagnosis.", "score": 2.850355, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An alert has been issued after a potentially deadly disease was identified in individuals returning to the UK from four destinations", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the National Institute on Drug Abuse, opioids are 'addictive'.", "score": 2.83094, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts can't seem to agree on the magic number of steps per day for optimal health - is it 5,000, 7,000 or 10,000?", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'No one should have to endure racial harassment from a registered medical practitioner.", "score": 2.81209, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, having fewer people in the workforce - whether for health or any other reasons - almost inevitably means a smaller economy.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However if more people become infected, then a similar proportion of those who experience severe disease becomes a bigger total number.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So for example, for depression outcomes, we see greater reductions in depression when people are engaged in arts-based social groups compared to non-arts social groups.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies show that women who get the disease are significantly more likely to see it return later in life.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some people may live for up to 10 years, and, in rarer circumstances, even longer.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So, you know, this is bowel cancer awareness month and I'd love people to just, just, if they've got that test sitting in the loo waiting to be done, just do it today.", "score": 2.7863350000000002, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The narrative that seems to be being pushed out there saying are we need to spend more money on defense and we can't be spending money on benefits.", "score": 2.7846200000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The condition can also affect toenails, where it is even more likely to go unnoticed.", "score": 2.7820099999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fatty foods, for example, produce yellower poos as you produce more bile (which is yellow-ish green) to digest them: anyone on a keto diet - which is high in fat, low in carbohydrates - should watch out for this side-effect.", "score": 2.7808599999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "An army veteran has been given a £120 fine after he pulled over to have an anxiety attack in a car park.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Former firefighter Glenn Perkins would spend up to £60 a day on Uber Eats getting cider and other drinks.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yesterday, the manufacturers of the drug, Prilemia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a new study, 400,000 adults were divided into four groups based on their lifestyle habits, body mass index (BMI), cholesterol, blood pressure, age and death status.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a 2022 study, researchers assigned participants to eating the same diet for 11 days; the only difference was that one group's meals contained carbomethylcellulose, a common synthetic emulsifier in many UPFs.", "score": 2.772635, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yesterday, the manufacturers of the drug, Prilenia Therapeutics and Ferrer, announced their first enrollment in the pivotal study in patients with rapidly progressive ALS.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Currently, treatment with Wegovy is limited to two years on the NHS through specialist services and its long-term risks are still being studied.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You know, three years of wait is could be a life sentence for that child.", "score": 2.7705450000000003, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, in the early stages, cirrhosis usually doesn't show many symptoms, or sometimes none at all.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But many other experts oppose the move, arguing that tamoxifen can have serious side-effects including debilitating symptoms - often likened to an early menopause - as well as significantly raising the risk of birth defects.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disease causes muscle weakness that gets worse over a few months or years,", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms typically first include stiff or weak hands, weak less and feet which may cause someone to trip over a lot, and twitches spasms or muscle cramps.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "During this window of heightened neuroplasticity, the brain is highly sensitive to rewards and more easily rewired by substances like alcohol, cannabis, and nicotine.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People who have already had one of these health issues are at higher risk of experiencing more problems and stand to benefit from medicines that can cut that risk.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Breasts are also more sensitive before a woman's period, while a cold examination room and sudden exposure to cold surfaces can increase sensitivity.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Small breasts can sometimes be more painful as there is less tissue to spread between the plates.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Another 2022 study found that people assigned to a diet containing common added sweeteners (e.g. aspartame, sucralose and saccharin) experienced new diarrhoea, constipation and pain after eating - symptoms that were all reduced for those assigned to diets with minimal sweeteners.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A dark line running from the base to the tip can be a sign of subungual melanoma - especially if it does not grow out or is getting wider.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Creatine is a performance enhancing compound which, when taken regularly, draws more water into the muscles increasing their fullness and potentially, their size and strength over time.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With signs, it spreads faster and may hit children harder; vigilance matters more than ever.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Claims of benefit are \"seriously and significantly\" overblown and can't be supported by any evidence, because most of these peptides have not been clinically trialled, Bonning says.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We've also committed, where possible, to ensuring that a healthier version of a product won't cost more than the standard version.\"", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bonning says topical products that contain peptides such as skin creams and lip treatments for skin hydration generally differ from injectables which involve changes to cell signalling, that can cause harm.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But actually, we've had randomized control trials that have directly compared arts engagement to non-creative social interaction, for example, and actually showing that the arts engagement is more effective for lots of these mental and physical health outcomes.", "score": 2.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It can also lead to irregular periods or stop them altogether.", "score": 2.74701, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms may begin within hours to 5 days following exposure.", "score": 2.74701, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'I was worried about the long-term consequences like handwriting and playing the flute.", "score": 2.742565, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tributes to 'beautiful ́ autistic girl, seven, who drowned in golf course pond", "score": 2.7416799999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under new guidance, patients who have had a heart attack or stroke will be eligible for a weekly Wegovy jab to cut their chances of another life-threatening event.", "score": 2.7395899999999997, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Certain medications can also cause nail problems.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Certain medications can also trigger nail problems.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "LDL in the blood can stick to arteries, slowly building up plaques that block off the blood supply to the heart or trigger blood clots.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bacterial meningitis requires urgent treatment at hospital with antibiotics.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Thin loo paper is rougher on the skin, which can lead to damage to the anal area.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "TB is highly infectious to others, but NTM infections are not.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Headache is one of the main symptoms", "score": 2.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But cigarettes diverged from alcohol and cannabis.", "score": 2.73546, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yellow, thickened or brittle nails are most commonly caused by fungal infections.", "score": 2.73546, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This rose to 80 per cent for children up to four years old and 86.5 per cent for those aged five to nine.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average age was 58, and participants were followed for about 16 years.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the UK, most PAO symbols range from six months to two years.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tesco has donated more than 10 million portions of fresh fruit and veg to schools across the UK", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They suggest a heart failure screening programme for diabetics could improve diagnosis rates, lead to earlier treatment and potentially reduce the risk of hospitalisation and death.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'If a woman is anxious, she'll be tense in the pelvic floor .", "score": 2.716055, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Suspended dust is expected to negatively impact the air quality, weather forecasts indicate.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We have one example of someone, a lady in Kentucky, she had only been on the drug for one month and had kidney failure. Now, let's just take that example and say that there was a bad batch and a thousand people got that drug and had to have kidney transplants. The finger is going to be pointed back at the FDA on that, and we don't have a thousand . kidneys],\" she said.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But two young people, including sixth-form pupil Juliette Kenny, died of meningitis during the outbreak.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sebnem Avsar Tuna, general manager of Wegovy manufacturer Novo Nordisk UK, said it means clinicians now have access to the first GLP-1 receptor agonist proven to reduce the risk of heart attack, stroke or cardiovascular death in this high-risk group.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Brice says she has requested a breast reduction through the NHS at least 20 times since 2000, citing both physical pain and mental health struggles.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reportedly on a cocaine binge in the days before the brothel incident, Odom suffered kidney failure, multiple heart attacks and 12 strokes.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This was the fourth time Woods has been involved in a car crash, most recently in February 2021 when his SUV ran off a coastal road in Los Angeles at a high rate of speed, leading to multiple leg and ankle injuries.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chemotherapy can be very effective.", "score": 2.704505, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Be mindful of those around you, what may feel like a minor illness to one person could pose a serious risk to someone else.", "score": 2.7004400000000004, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The federal government provided more than $2 billion annually for mental health between 2019-2024.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is currently £118.75 a week, still one of the lowest among advanced economies.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A promise to keep prices low on thousands of products from more than 1,000 of the nation's most-loved brands, including Heinz Baked Beans and Weetabix.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some people with MCI stay stable; a small percentage even improve (stock)", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now after a period of going dormant cicada has spread to 23 countries and is spreading across the US, being detected in the wastewater systems of 29 states.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some 40 per cent of smartphone users spent more than five minutes on the loo to poo, compared with only 7 per cent of non-users.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than four in five trusts (83 per cent) missed the key target of treating 85 per cent of patients within this time frame.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Next, the society of radiographers has said that the demand for ultrasounds has increased, but that there aren't enough people being trained to do the work.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of extractions because of tooth decay made up 60.5 per cent of all tooth extractions for those aged up to 19.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And nationally, the longstanding target of treating 85 per cent of patients within 62 days has not been met since 2014.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three-quarters (76%) regularly saw their students experiencing social difficulties, while the number of teachers complaining that their school did not have a counsellor rose from 29% to 40% in three years.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest global data is from February, so the strain may have spread more widely since then.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight out of ten are alive a decade later.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2025, cases were confirmed in 33 countries spanning 5 WHO regions, with the Eastern Mediterranean recording the highest numbers, followed by Africa, South-East Asia, the Americas and the Western Pacific, reports the Mirror.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The highest amount of PIP you can get each month is about £750 or £800, yet costs can be way higher.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said from early on \"there was no one on it with serious epidemiological experience\" and that by the end of the pandemic it had up to 50 members, adding \"you can't run a committee with 50 people\".", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But of course, you know, 10% of the population is not autistic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2022, the World Health Organization reported a global increase of cholera notifications, with more cases reported from an increasing number of countries.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They lower LDL levels by 60 to 70 per cent, compared with 30 to 50 per cent for statins.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Decades of study have concluded that anywhere from three times per day to once every three days is within the healthy range.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In lab experiments, the bacterium trapped up to 87 percent of nanoplastics and 57 percent of them in gut-like conditions.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Known as 'Cicada', the new variant is set to affect the vulnerable members of society the most, with the elderly, chronically ill and children told to stay indoors.", "score": 2.698365, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "You can naturally get enough omega 3 by eating two portions of oily fish throughout the week.", "score": 2.6831300000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Paddy had his operation and his life improved until he had a resurgence of a skin cancer that had been on his head.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John was originally diagnosed with a rare form of cancer in 2023, but after a period of remission his cancer returned the following year, spreading to his brain.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "John went into remission in November 2023 but sadly, his cancer had returned by May 2024 and had spread to his brain.", "score": 2.682655, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It can be fatal.", "score": 2.67931, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Your nails can reveal a lot about your overall health, often offering crucial hints about parts of your body that might need further examination.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But there is limited evidence that cannabis is a suitable treatment for depression.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They also contain healthy fats, essential amino acids our bodies can't make on their own and powerful antioxidants that can ward off the visible signs of aging whilst protecting our hearts.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Poppy seeds are a great source of calcium for people who don't eat a lot of animal products, which isn't only great for bone health but also for nerve signalling,' Johnston said.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The typical symptoms of meningitis include a high temperature, seizures, cold hands and feet, and being very sleepy or difficult to wake.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Sonya Babu-Narayan, clinical director at the British Heart Foundation, said: \"So-called 'weight loss drugs' like semaglutide have proven benefits beyond reducing the number on the scales - they are now considered important medicines for preventing deadly heart attacks and strokes.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Flax seeds are absolutely incredible for not only your gut but also your heart and overall health,' Johnston explains.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Khan explained that vaccines and boosters remain a tool for protection even as the virus evolves over time.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other early symptoms of heart failure can include fatigue, shortness of breath, or leg swelling.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So much stigma surrounds mothers who fall into drug abuse, and it keeps women silent and trapped in their addiction.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Viral is rarely life-threatening but can cause long-lasting effects, such as headaches, fatigue and memory problems.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although ineffective, antibiotics may be given when patients arrive at hospital just in case they are suffering from the bacterial form of the disease.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You certainly don't have pounds of poo sitting around for weeks inside your colon that only an intense juice cleanse can fix.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Poor memory is a common sign of early dementia.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And most MCI never becomes Alzheimer's - it can be caused by vascular issues, depression, medication or sleep disorders.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Your nails can tell you a great deal about your overall health, often providing vital clues about areas of your body that may require closer attention.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Out-of-date sun cream can lose potency, leaving your skin vulnerable to sun damage you thought you were shielded from.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "High \"bad cholesterol\", also known as low-density lipoprotein (LDL), is one of the major causes of heart attacks and strokes.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vaccines are available against certain strains of bacteria that cause meningitis, such as tuberculosis.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It might seem fine to use what is left of an old bottle of sunscreen from last year, but there is a symbol that tells you exactly how long it is good for.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research has shown that eating a healthy diet, exercising regularly and prioritising sleep can help ward off the disease", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nails can reveal a lot about your overall health through changes in colour, shape and texture", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ketamine is an anaesthetic drug, used on humans and animals, and also used to treat depression", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RSV is a common cause of coughs and colds and usually resolves on its own, but it can cause severe illness in babies and older adults.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's very difficult, then, to have regular, predictable bowel movements and support gut health on an ultra-processed diet.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Blood pressure, weight and cholesterol are considered the top measures for predicting a person's overall health and how long they may live.", "score": 2.6735499999999996, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The human brain continues developing well into a person's mid-20s, particularly in regions responsible for impulse control, decision-making and long-term planning -the functions needed for someone to recognize when a habit is becoming a problem.", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The firm says if an Uber courier has concerns about the validity of a person's ID or their sobriety, they are instructed not to complete the delivery and return the alcohol delivery to the store.", "score": 2.66521, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Rather, young adult users were more likely to develop the disorder, and that disorder caused the memory problems.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of the reasons that people are maybe less inclined to offer some of these patients treatment is that they're concerned about the potential for complications, the potential for risk.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "at least that's the conclusion of a government review today into the number of people who have been diagnosed with those conditions and why that has shot up so much in the last few years", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With multiple pregnancies, uh, some women are having scans every two weeks, or if a problem is identified in the community, they'll be brought in and a scan really needs to be done within 24 to 48 hours.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's important to stress because we don't want to alarm women, especially if they're pregnant, that you know, there is necessarily a correlation between a need for more scans in pregnancy and a riskier pregnancy.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And we see that particularly when people have had arteries that have been blocked for a very long time, and which is regarded as more challenging to treat.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It had been used by another 16-year-old, Adam Raine in California, who in April 2025 took his own life after what his family's lawyers allege in an ongoing lawsuit was 'months of encouragement' by the AI chatbot.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "DS Garry Knight from the British Transport Police told the inquest that digital forensics teams had found he had been using ChatGPT at around 12.30am asking for advice on suicide.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Jewish people could be going to get a procedure done by someone threatening to kill people.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was also discovered that the teen had been using ChatGPT the night before to plan his suicide.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'When it's treated later, you may have to remove the finger - and it can kill, absolutely it can.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scraps from earlier in the novel - about voices in the head, suicide attempts, even a seemingly uncrucial factoid about Josef Mengele injecting adrenaline into children's eyes to change their colour - re-emerge as pre-echoes, ancestral kinship.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We are very worried that the regime is seeking to exhaust (Mohammadi), to wear her down, slowly killing her,\" Ardakani said.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Though if it is not caught quickly it can be aggressive and highly dangerous.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Whilst it's currently not approved by any regulatory authority, researchers believe the global study, which will involve more than 500 participants, could pave the way for therapeutic treatments that slow down the progression of the disease.", "score": 2.649215, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nanoplastics are tiny plastic particles even smaller than microplastics, measuring just one micrometer (μm) or less in diameter, making them invisible to the naked eye.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is a stark omission, given the government's focus on the huge rise in people dropping out of the economy because of illness.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most therapeutic peptides are prescription only, with some on the list of prohibited medications, Bonning says.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The report also cites the growing use of weight loss drugs as a key part of the change compared to recent years.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The menB jab was introduced on the NHS for babies in 2015, meaning the majority of young people born before then are not protected against it unless they have had the vaccine privately.", "score": 2.638815, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Oliver's law\" calls for a ban on prescriptions for people with serious mental illness, mandatory consultation with NHS mental health teams, face-to-face assessments for complex cases rather than video consultations, tougher CQC oversight (including routine audits and publication of prescribing data), mandatory reporting of serious harms and clearer General Medical Council sanctions for unsafe prescribing.", "score": 2.634255, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "An 'academically gifted' teenager asked ChatGPT for advice about how to kill himself before taking his own life the next day, an inquest heard.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Luca Walker, 16, asked the AI chat bot about suicide hours before his death on a train track.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A senior Perth doctor has been suspended amid explosive allegations he ran a covert online trolling network that targeted fellow medical professionals with antisemitic and racially abusive attacks.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Throughout the UK, most PAO markings indicate a range of six months to two years.", "score": 2.6153500000000003, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We need to make sure everybody gets their cholesterol down as quickly as possible and as low as possible,\" said Dr Joseph Cheriyan, a heart researcher at the University of Cambridge.", "score": 2.6147650000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Sales of heart, liver, and kidneys soar as 'nose to tail' eating has a resurgence", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And so because of that, and because these patients are maybe limited by symptoms, but they're out in the community, they're just left to kind of trundle along and perhaps their quality of life isn't that good and they aren't able to do much.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In other words, frequent cannabis use in young adulthood only mattered if it continued into midlife and became a disorder.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A faint brown line under a fingernail might not seem like a cause for concern.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was found that he had written 14 messages for his family and friends in his notes apps to say 'farewell' and 'I love you'.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kerry is stunned to hear how bad things are, and she's made everything 10 times worse.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Researchers then counted how many of those waves a person engaged in heavy use, such as daily smoking, binge drinking or using cannabis 20 or more times a month.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK is lagging behind the latest recommendations from countries such as the US, where new guidelines say people should start getting their cholesterol levels tested from the age of 30 (Photo: fcafotodigital/E+/Getty)", "score": 2.6046199999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In some areas, patients have reported waiting over a year for routine treatment - while others cannot register with an NHS dentist at all.", "score": 2.6046199999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Disabled people get a lot of abuse online.", "score": 2.6042500000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's worth checking the side effects of any medicine you are currently taking.", "score": 2.59917, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The pain from a hysteroscopy - used to examine the womb for polyps or causes of infertility - usually happens as the camera (typically less than 4mm) enters the womb and saline solution is injected to dilate it and make it easier to see inside.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some users were enraged at the amount of chocolate Gemma had bought her children and called it 'greedy' and 'unhealthy'.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scientists say the variant called cicada - technical name BA.3.2 - appears to spread faster than other variants and one of the UK's top microbiologists has told of emerging evidence that it could disproportionately affect children.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'They said it's melanoma, stage 1A meaning it's invasive but not hugely,' she said.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'In people with existing health conditions, replacing blood pressure and cholesterol measurement with self-reported walking pace improved the model's ability to predict mortality, meaning people were reclassified into a more-appropriate risk category.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nice said that evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His wound became infected and he now has permanently limited use of his hand, restricting what jobs he can do and how much he can work.", "score": 2.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Helen Williams, national clinical director for cardiovascular disease prevention at NHS England, added: \"For more than a million people at high risk of heart attack and stroke, this treatment on the NHS could be life-changing - offering a powerful new way to protect their hearts and improve their health.", "score": 2.5893050000000004, "claim_types": ["quantity", "correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "All of which can trigger pain.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And also partly maybe can explain some difficulties that these families face with their children.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You know, there is a percentage of kids who cannot sit still, who cannot concentrate, or impulsive.", "score": 2.586125, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Because the nail-producing cells sit in the nail bed, removing this tissue usually means the nail will not grow back normally.", "score": 2.58383, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some people also experience gastrointestinal issues like nausea or diarrhoea, according to the CDC.", "score": 2.58268, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some of the screenshots show the 55-year-old had ordered 16 items over a five-day period, totalling £80.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around 45,000 coils are fitted every year in the UK.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Indeed, one study from the 1990s at the University of Bristol on the bowel patterns of nearly 1,900 people found that the most common time of day to poo is between 7am and 9am, with a second peak after about 6pm (when people eat what is typically the largest meal of the day).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The next closest strain managed only about 18 percent", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There are the two standard scans at 12 weeks and 20 weeks, but women are obviously all assessed and there are a lot more that are deemed high risk, so they come in and they need growth scans further in the pregnancy.", "score": 2.5769, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the UK, the target is 2.0 mm/L.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some 33,976 of these were due to a primary diagnosis of tooth decay, marking an increase of 11 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Swansea Bay and Cumtaf Morgano Health Board have the least number of people taking part in screening at 64%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By her first daughter's birth in 1996, she was a 38DD and by her second daughter's birth in 2000, a 40EE", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fibre helps maintain healthy habits because it ensures we retain more water in our faeces as it passes through our system, making it easier to pass.", "score": 2.5686799999999996, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's why Tesco is committed to helping the nation get more of its 5-a-day.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The evidence from the clinical trial is compelling. It showed that people taking semaglutide alongside their existing heart medicines were significantly less likely to have another heart attack or stroke.\"", "score": 2.56732, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Amyotrophic lateral sclerosis (ALS) is the most common form of motor neurone disease, a muscle wasting condition progressively damages parts of the nervous system and is incurable.", "score": 2.5633350000000004, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prop Gupta, of the Cambridge Immunology Network, said: \"The immunocompromised and the elderly are at the biggest risk but vaccines should prevent some of the most severe complications in most people.", "score": 2.5633350000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'm a doctor and the medical establishment doesn't want me to tell you this - but this drug will save thousands", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Their privates will smell like rotting fish, I'm not joking.", "score": 2.563275, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity looked at the latest screening data from 2024 and found that Pales Teaching Health Board and Holza Health Board have the joint highest uptake for screening at 67%.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "9. \"Uncircumcised men have to retract their foreskin to wash their penises properly. Not doing so can cause recurrent yeast and bacterial infections in their partner's vagina. Not washing properly is also a cause of UTIs for men.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Fingernail warning sign could be early symptom of heart failure or liver disease", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cholera is an acute, severe diarrhoeal illness triggered by consuming food or water tainted with the Vibrio cholerae bacterium.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It leads to rapid, serious dehydration and vomiting, which can prove deadly within hours without treatment, although many instances are mild.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disease flourishes in locations with poor sanitation.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They include sudden onset of severe, painless, watery diarrhoea, vomiting, and rapid dehydration.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is thought to be because T-cells - the 'killer' cells released by the immune system - can become over-stimulated by a tumour's presence, which weakens their ability to attack effectively.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The agency said the schemes often involve \"nonexistent, exploitative, substandard, or unnecessary medical care,\" with fraudsters illicitly obtaining the names and identification numbers of beneficiaries and using \"kickbacks and bribes to complicit medical professionals\" to secure federal payments.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These particles have built up in the environment as well as the human body since the plastic boom of the last century, where their continued presence is increasingly linked to adverse health effects.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The book is called Art Cure, the Science of How the Arts Transform Our Health.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts warn that tamoxifen also raises the risk of life-threatening complications.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'We can often treat it locally, but if it's very thick, we have to amputate the whole finger.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Yau said this is because fungi damage keratin - 'a protein that helps form the cells for your hair, nails and skin' - leaving nails weakened and discoloured.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The most common NTM infection, MAC, is known as Lady Windermere Syndrome because it's associated with elderly, white, underweight women with suppressed coughs.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vibrio cholerae bacteria spreads via the faecal-oral pathway, typically through contaminated water sources, ice, or food.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The agency added: \"Cholera is an acute diarrhoeal disease caused by ingestion of food or water contaminated with toxigenic strains of V. cholerae.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Khan said: \"The vaccine still is effective, boosters can be effective. At least some of the data suggest the virus is obviously mutating, and that's how it's going to dodge some of the immunity from the vaccines.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meningitis is inflammation of the membranes that surround and protect the brain and spinal cord.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rett syndrome is a rare genetic disorder that affects brain development, resulting in severe mental and physical disability.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This can lead to what's known as a 'visceral' reaction, triggering nausea or labour-like cramps.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"As stroke survivors live with the worrying threat of further strokes, it's vital they have options to help prevent that from happening, which suit their own circumstances.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'As stroke survivors live with the worrying risk of further strokes, it's vital they have options to help prevent that from happening,' she said.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The bacterium, Leuconostoc mesenteroides, relied on a surface binding process that trapped nanoplastics before they infiltrated human tissue.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Studies have shown these particles can cross the blood-brain barrier, raising concerns about potential long-term neurological harm (stock)", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For binge drinking and cannabis, the harm to memory was indirect: heavy use in young adulthood raised the odds of developing a substance use disorder by midlife, and that disorder directly damaged cognitive health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bonning stresses these research peptides are not approved for human use, and people could be getting \"something that's very dangerous\" because they carry unknown toxicity profiles.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Specialists say the key warning sign is a single dark line running from the base of the nail to the tip that does not fade or grow out.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nails that widen and curve around the fingertip may be a sign of low oxygen levels in the blood.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This can be linked to lung disease or heart problems.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The organisms are found in soil and water and cause opportunistic infections in people with pre-existing lung conditions or weakened immunity.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Symptoms include acute, profuse watery diarrhoea 'rice water stools' and vomiting, and can lead rapidly to severe dehydration.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cholera is an acute, severe diarrhoeal infection caused by ingesting food or water contaminated with the bacterium Vibrio cholerae.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It causes rapid, severe dehydration and vomiting, which can be fatal within hours if untreated, though many cases are mild.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vibrio cholerae bacteria spread through the faecal-oral route, usually via contaminated water supplies, ice, or food.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Chia seeds are also packed full of antioxidants, including compounds such as caffeic acid and kaempferol, which have powerful anti-ageing properties,' she said.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It gradually stops patients being able to move, talk, swallow and even eat.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's no cure for Rett syndrome, so treatment focuses on managing the symptoms.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "(We noted that stomach ulcers, as well as being aggravated by stress, are prevented by dopamine, the very chemical that is depleted in the brains of people with Parkinson's.)", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People whose meals included the emulsifier experienced increased abdominal discomfort after eating.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An obvious one is red or black, which can indicate bleeding.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms include tiredness, shortness of breath, headaches, bleeding from the nose or gums, and infections.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New research points to the effects someone's risky behavior in their 20s has on their cognitive health in their 50s and beyond.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In other words, the damage from cigarettes appears to come from cumulative exposure in young adulthood itself, not from whether the habit continued into midlife.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Occasional experimentation, over repeated exposure, strengthens neural pathways that reinforce compulsive use, making it harder to stop even as consequences mount.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The people spruiking peptides are \"often the same people who are telling you to not trust the milk you drink or the bread you buy,\" citing health and safety concerns, he says.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Evidence from a clinical trial shows the injection reduces the risk of a heart attack, stroke or cardiovascular death.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a 2017 study titled: \"Terry's Nails: A Sign of Systemic Disease\", researchers stated: \"Although the abnormality can occur with normal aging, Terry's nails can also be an indication of an underlying medical condition, most notably, cirrhosis, chronic renal failure, and congestive heart failure.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These include sudden onset of severe, painless, watery diarrhoea, vomiting, and swift dehydration.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Grip strength is a well-established biomarker of overall health and is strongly associated with lower all-cause mortality,\" says Aaron Deere, health and performance director at Hooke Fitness (where my longevity fitness parameters were assessed).", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Balance training improves neuromuscular co-ordination and proprioception, which are critical for preventing falls - one of the leading causes of morbidity and loss of independence in older adults,\" Deere explains.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's also a risk of epileptic seizures, there's breathing difficulties.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Lucy Hooper says endometriosis can affect how nerve endings sense pain", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's this idea that has led to wellness detoxes, enemas and colon cleanses.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, there are some colours that are concerning, and demand medical attention.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Silver poo - highly rare - is a medical emergency, as it is the result of a blocked bile duct and bleeding from your upper gastrointestinal tract.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is because the anal area is highly sensitive - dense with nerve endings and is not meant to be scrubbed harshly.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is different enough from the JN.1 strains that the vaccine may not do as good a job of priming the immune system against it, allowing it to evade detection.\"", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And among the new measures, walking speed was the 'strongest predictor of death.'", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Symptoms seem to appear similar to other recent variants, and include a sore throat, cough, congestion, fatigue, headache and fever.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The SARS-CoV-2 variant BA.3.2, nicknamed Cicada, is a highly mutated strain that could be very contagious and cases are continuing to rise across the world.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Even if someone did have data - you can't be sure what you are getting in your little vial is actually what they say it is, firstly, and secondly, that it's made to a standard that is safe to put in your body.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This causes a type of white blood cell that is essential for fighting bacterial infections to become abnormally low.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typically, subungual melanoma is first detected when someone visits their doctor after noticing what they believe is a bruise under the nail that isn't going away.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In younger people, they can sometimes signal illness or nutritional deficiencies.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Alterations in shape, ridges, bumps and discolouration can all indicate underlying conditions.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, in the early stages, cirrhosis usually doesn't present many symptoms, or sometimes none at all.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The NHS backs the idea that people need to exercise particular care between 11am and 3pm.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, she underscored how it is not a replacement for good diet and exercise.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Oh, without a doubt, you know, it can, can't emphasize enough how much tests save your life potentially, that's the purpose of them.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We know that many of the symptoms and signs of heart failure are non-specific, and may go unrecognised as potentially being due to heart failure for a long time.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There is no safe dosing or amount that someone can take, because we just don't know what's in there,\" Bonning says.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On Tuesday health experts took part in a discussion with Ireland's Covid-19 Evaluation Panel, set up to examine the planning for and handling of the pandemic in Ireland.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lewis spent a lifetime fighting for causes close to his heart - including human rights, equality for women and the plight of African families decimated by AIDS.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To begin with, two bags would last a week, costing £30, so it was significantly cheaper than my old wine habit.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Compared to this time last year, sales for lamb liver have spiked by 33 per cent, lamb kidneys by 25 per cent, lamb hearts by 91 per cent, and beef rump heart steak by 88 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It lowered their cholesterol levels by a further 50 per cent, compared with those who got placebo treatment.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Another showed 15 items ordered over a three-day period and totalling £67.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Loveden's video of the eggs has racked up more than nearly 2,000 comments and 25,000 likes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Weekly figures from the UK Health Security Agency show that, among positive cases analysed in England between February and March, only 2.13% were identified as the BA.3 strain.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Stanley Family Foundation announced another $280 million for the Stanley Center for Psychiatric Research at Broad Institute earlier this month, bringing its total contributions to the Massachusetts-based nonprofit over $1 billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But lesser-spotted in the government's flagship workers' rights reforms is that the rate has not actually gone above inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said the government can pay whistleblowers \"up to a 30% reward for the recovered funds.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A further 18 people were admitted to hospital.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Like around 60,000 women in the UK each year, Dawn underwent a hysteroscopy in May 2023 - a procedure to look inside the womb, which the NHS generally regards as routine and low risk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A YouGov survey last year of 3,000 women found 42 per cent found it painful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, after a period of dormancy, Cicada has spread to 23 countries and is spreading across the US, with detections in wastewater systems in 29 states.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The jabs can cost between £75 and £100.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Waitrose has seen a 91 per cent increase in sales of heart, a 33 per cent increase in liver, and a 25 per cent increase in kidneys, compared to this time last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But, a few days later, he received an email with a £120 fine, but if he paid within 24 hours would be reduced to £70.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A third of people who are eligible for screenings here in Wales don't take their tests.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new study, published earlier this month in the journal Mayo Clinic Proceedings, looked at 407,569 adults from the database UK Biobank ages 40 to 69.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NICE said clinical trials have also indicated the drug works directly on the heart and blood vessels - and it expects that 1.2 million people across England could benefit.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 80,000 people in the UK are thought to be in receipt of a private prescription.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So far, clinical studies have demonstrated its safety and efficacy with data from more than 1,600 patients, some of which have received active treatment for seven years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'At the moment they have seven each but it may go up to about nine plus each.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We found 66 per cent of the participants used their smartphones while pooing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "No, he admitted to a Question Time audience, he could not live on statutory sick pay, which was £94 a week at the time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those on the drug were 20 per cent less likely to suffer a major heart event, such as a heart attack or stroke, than those given a placebo.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It allows kids to pick up a free piece of fruit in store during the school holidays, and we've given away more than four million apples so far.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The team found that replacing blood pressure and cholesterol metrics with the five new measures improved mortality risk classification by 10 percent for women and 19 percent for men.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It follows the impact of Storm Theresa, which hit the region hard, generating upwards of 700 litres of rain per square metre in some spots.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 13,000 adults in England were enrolled on the 800-calorie-a-day plan in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government reported about 5,000 NHS prescriptions for licensed CBMPs in 2023.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His father devoted $825 million altogether.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sales of 'forgotten cuts' including heart, liver, and kidneys soar by 91% as Brits embrace 'nose-to-tail eating'", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It warns that one in four NHS sonographer job posts are vacant in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The highest number of reported cases occurred in early December, marking a turning point in its spread.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Wales has the lowest average screening uptake compared to all of the UK nations, they say.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They're now £170.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's much better when I can go out with my powered wheelchair, which was £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yet it wasn't until September 2025 that worldwide detections started climbing substantially.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While confirmed UK case numbers stay relatively small, the variant's identification amongst international travellers and its appearance throughout Europe indicates it is probably already spreading at modest levels within Britain.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Matching the prices of selected Tesco products against comparable or identical branded products at Aldi - two thirds of which are deemed healthy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The family raised over £8,000 for the charity Meningitis Now over the weekend.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The mother is now warning other parents be vigilant and react quickly if they notice symptoms following the recent outbreak of the infection in Kent - which killed two young people.", "score": 2.54548, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The injections are more expensive, so NHS guidelines say they should be reserved for people who have already had a heart attack or stroke, and cannot tolerate statins because of side effects, or for whom statins aren't reducing their cholesterol enough.", "score": 2.5438549999999998, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "State coroners and pathologists warn the new rules could bog them down with paperwork and cause more trouble than help, insisting their existing standards protect families well enough, the outlet reported.", "score": 2.5438549999999998, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Issues affecting your liver, lungs, and heart can all show up in your nails, so it's beneficial to keep an eye on them regularly.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "However, certain warning signs could imply you have early-stage heart failure or liver disease, and necessitate a visit to your GP.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "With MS, it's really important to keep your body moving.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Health authorities have urged people to refrain from staying outside for extended periods, keep windows shut, and steer clear of heavy physical exertion outside.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "People are being encouraged to look out for specific warning signs on their nails that could suggest early-stage heart failure or liver disease, including cirrhosis.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It's worth examining the side effects of any medication you're currently on.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "However, certain warning signs could suggest you have early-stage heart failure or liver disease, and warrant a visit to your GP.", "score": 2.53726, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Ms Yau said: 'If you suspect white patches are due to a vitamin or mineral deficiency, you should get a blood test to be sure.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Dr Hanratty says if you have been diagnosed with a heart issue and you feel that the treatment you have been receiving hasn't been working for you, then it is worth asking for a second opinion, particularly if your quality of life has been badly affected.", "score": 2.53726, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "10 years ago, the 46-year-old had a near-fatal overdose and suffered kidney failure, 12 strokes and six heart attacks.", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Glenn Perkins died after spending up to £60 a day having alcohol delivered to his home", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nightclub at centre of Kent's deadly meningitis outbreak is to reopen... with a kissing warning https://t.co/oFoTjDDeyj", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2024, I found that Parkinson's disease could be predicted by gut problems decades before people developed tremors.", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Club Chemistry, where the meningitis outbreak began, will reopen its doors this Thursday with a kissing warning", "score": 2.5323200000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'We have continued to improve ChatGPT's training to recognise and respond to signs of mental or emotional distress, de-escalate conversations, and guide people toward real-world support.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is not fully understood why MND occurs and there are currently no treatments to halt its cruel march - instead doctors focus on alleviating the worst of the symptoms.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fingernail symptom could be early warning sign of heart failure or liver disease", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People are being urged to watch for specific warning signs on their nails that could indicate early-stage heart failure or liver disease, including cirrhosis.", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Our analysis found that walking pace was the strongest single predictor of death,' Professor Tom Yates, paper author and physical activity researcher at the University of Leicester in the UK, said.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An expanding body of scientific research has linked nanoplastics in the brain to cause a range of pathological changes, including inflammation, oxidative stress, an accumulation of Alzheimer's-associated amyloid plaques, as well as Parkinson's-linked Alpha-synuclein proteins.", "score": 2.5219199999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ALS claimed the life of Grey's Anatomy star Eric Danes at just 53-years-old earlier this year and the acclaimed scientist Stephen Hawking famously suffered from it.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tiger Woods had two loose opioid pills in his pocket when he was arrested for DUI in Florida on Friday.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The NHS claims that people need to be most vigilant between 11am and 3pm.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Romero said her two-year-old was buried without her heart and is now behind new legislative change", "score": 2.5146300000000004, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, it was not until September 2025 that global detections began to rise significantly.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'MS symptoms can change from one day to the next, one week to the next, and that makes it really frustrating', says Georgina", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The body produces collagen naturally from protein rich foods such as chicken, fish, eggs and dairy, but millions of people have begun supplementing it on top of their regular diet following studies suggesting it can slow the visible signs of ageing.", "score": 2.500545, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health Secretary Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A new deal for the NHS with £4 billion to build new hospitals, same-day mental health support and a new focus on women's health", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health Secretary Wes Streeting said it meant that 'for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000'.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The PM has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over it's costing that the government even more money because now because of the staffing gaps that they have, they need to employ temporary staff that will be at higher rates, whether they're consultants, whether there's resident doctors, they're higher rates and of course when the strikes go ahead, they the rates are higher as well for doctors to step in and to make sure the staff are at safe, um, at a safe number.", "score": 4.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Because I, I fully accept that that resident doctors have lost out over the past 17 years.", "score": 4.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The union said this was not enough, given inflation is expected to rise, and that pay for resident doctors has not kept pace with inflation since 2008.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Resident doctors make up nearly half of medics working in the NHS - two thirds of them are BMA members.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I, I don't think resident doctors should be striking at all, but if they are, I mean, six days really is far too long, isn't it?", "score": 4.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Invest £4 billion in a Hospitals of the Future Fund to build state-of-the-art new hospitals, including replacing Wrexham Maelor Hospital and University Hospital Wales, and a major hospital development in West Wales", "score": 4.636345, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "That means resident doctors have to, when this short staffing, they have to look after more patients that they probably wouldn't have if the it was well staffed, more acutely unwell patients, could be probably complex medical patients, where they miss their breaks, miss their lunch, and have to stay overtime.", "score": 4.598275, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer gave the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics given a pay rise of 35% over three years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer hits out as union bosses snub doctors' 7% pay rise in 48 hour strike deadline row", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer accused the BMA of rejecting a \"historic deal\" that would have delivered \"another above-inflation pay rise this year\" of 3.5% to bring their total pay rise since 2023 to 25.5%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Out-of-pocket expenses for things like exam fees were also to be covered, while progression through the five resident doctors pay bands was to be speeded up.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It will be the joint longest since the dispute began - only once before have resident doctors taken part in a six-day walkout.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The deal also included a commitment to create at least 4,000 new specialty training posts in the NHS, for which resident doctors - previously known as junior doctors - can apply after their first two years of training.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Resident doctors in the final stages of speciality training, who now earn £73,992 in basic pay, would earn £77,348.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week, the BMA's resident doctors' committee rejected an offer worth up to 7.1 per cent for this year without even putting it to members for a vote.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has given the resident doctors committee of the BMA a 48-hour deadline to reconsider the offer, which would have seen medics handed a pay rise of up to 7.1% this year", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said that the deal meant \"for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000\".", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BMA argues that, despite the pay rises of the last three years, resident doctors' pay is still a fifth lower than it was in 2008, once inflation is taken into account.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We're seeing waiting lists coming down slightly, we're seeing urgent and emergency care improving, we're seeing the NHS hitting its financial targets for the first time in nearly 10 years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Resident doctors will be worse off.", "score": 4.489365, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer has threatened to withdraw an offer of thousands more NHS jobs should resident doctors go ahead with strike action next week", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a 48-hour deadline to reconsider the deal, which currently includes an offer of thousands of extra NHS training posts.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "So with the thousand places that Keir Starmer is saying, it's a step in the right direction, but when you have 18,000, over 18,000 doctors waiting to get into GP training, these are applicants that have passed the exam, are on the waiting list to get into GP training.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Here Keir Starmer has accused junior doctors of being reckless after they rejected a deal which would have paid some of them more than 100,000 pounds a year.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The walkout, which is due to run from 7am on April 7 until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The walk out, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, it is happening under a Labour government, from April the 7th, there will be no resident doctors working in our hospitals for six whole days.", "score": 4.451035, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has threatened to withdraw the offer of thousands of new training positions for resident doctors if the British Medical Association (BMA) doesn't call off strike action within 48 hours.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The BMA said the ballot raises the prospect of all secondary care doctors in England taking industrial action during the same period in a major blow to patients and Labour's pledge to tackle long waiting lists.", "score": 4.400095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And I think that's a signature pledge, uh, in our manifesto that is not present in others, building three new hospitals across Wales.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has threatened to withdraw an offer of thousands of extra NHS training posts if resident doctors do not call off a six-day strike after Easter.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I think resident doctors need to be a special case because it's a long-term investment in the NHS.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Because the truth is this: no one benefits from rejecting this deal. Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", "score": 4.182605000000001, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "You look at Plaid, for example, they they're saying, well, we don't expect waiting lists to drop in the first three months of of a Plaid led government, whereas we know already under Labour, that they are dropping.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer gives resident doctors 48 hours to call off strike or lose training offer", "score": 4.16355, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", "score": 4.132820000000001, "claim_types": ["correlation", "rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Jack Fletcher, chairman of the resident doctors committee of the union, said: \"It is wrong for Government to withhold desperately-needed jobs as part of negotiating tactics.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said waiting lists have built up since the pandemic and if they are not tackled they will become \"our starting point for the next big crisis\".", "score": 4.128005, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Addressing resident doctors, Prime Minister Sir Keir Starmer wrote in The Times: \"The truth is this: no-one benefits from rejecting this deal.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer claimed \"patients will pay the price\" if resident doctors go ahead with \"reckless\" strikes, as a furious row erupted with union bosses.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I feel like the Prime Minister Keir Starmer's statement seems quite threatening in nature.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes after the Prime Minister accused resident doctors of \"recklessly\" walking away from the deal without putting it to members for a vote.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "@bbcnickrobinson presses Dr Jack Fletcher, from the BMA, on previous pay increases and the planned industrial action by resident doctors over a pay dispute with the government.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The bitter war erupting between Keir Starmer and the British Medical Association (BMA) means patients are once again caught squarely in the crossfire.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer has given the resident doctors committee of the British Medical Association (BMA) a deadline to reconsider a deal on pay and jobs which includes an offer of thousands of extra NHS training posts.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And yet you look at other people in the NHS, you look at nurses, for example, or ancillary workers, they haven't anywhere near caught up, and their pay is far, far less than resident doctors.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than £100,000 a year - and given them 48 hours to call off their planned strike.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Prime Minister Sir Keir Starmer has accused resident doctors of 'recklessly' walking away from a pay deal that would have seen some earn more than £100,000 a year - and given them 48 hours to call off their planned strike", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And doing so without even giving resident doctors the chance to vote on it makes it worse.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And doing so without even giving resident doctors themselves the chance to vote on it makes it even worse.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BMA then announced that resident doctors would go on strike after Easter.", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The walkout, which is due to start at 7am on April 7 and run until 6.59am on April 13, will be the 15th round of strikes by resident doctors in England since 2023.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Resident doctors are in the front line working hard and if you're losing these doctors, and they're leaving the NHS, they're going to countries like Australia, Canada, America, this short staffing, that means that it's affecting patient care overall.", "score": 4.0067, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The prime minister has now given the doctors' union an ultimatum, demanding that they cancel the resident doctors' strike action within 48 hours.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Max's account of trying to understand why his daughter has FTT (Failure to Thrive) reads like a horror story, a Covid-era variant of the environmental illness suffered by Julianne Moore's character in the Todd Haynes film Safe.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'm not sure Keir Starmer ever envisaged him being in a position after 18 months as Prime Minister where he'd essentially have to issue threats to resident doctors.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's a staffing pressure because this staffing pressure when you're not retaining doctors, and doctors are leaning towards leaving the NHS or going to these different countries, there's a lot of pressure on resident doctors on the shop floor.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Communities were not trusted enough during the pandemic to manage their own risks, a former World Health Organisation (WHO) chief told Ireland's Covid-19 Evaluation on Tuesday.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer said it would be 'reckless' for resident doctors to walk away from the offer.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steve Thomas, a public health professor at Trinity College Dublin, warned that waiting lists and healthcare staff morale need to be tackled.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer marched into the 2024 general election campaign vowing to end the NHS strikes that brought misery to millions of patients under the Conservatives.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I mean if I had a pot of money and I was going to dole it out, having seen that the the resident doctors have had such a big pay rise last year, they would not be first in the queue.", "score": 3.922175, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If the strike goes ahead, it will be the 15th round of action by resident doctors since 2023.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The British Medical Association has dared Sir Keir Starmer to follow through on his threat to ditch thousands of training places if the union refuses to agree a pay deal.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Resident doctors will be worse off. Instead of improved pay, progression and support, they will receive the standard pay award this year, with none of the reforms that would have strengthened their working lives.\"", "score": 3.851805, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It seems like it will have a negative impact on the NHS in the future, because he's, um, he's threatening to remove the extra training posts he wanted to give when he knows that there's a big job crisis in the NHS with resident doctors.", "score": 3.851805, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Jack Fletcher, chairman of the BMA resident doctors committee, said: \"The Government made very late changes to the pay offer, reducing the pay investment and stretching it over a longer period in a way that had not been previously talked about. Ministers effectively moved the goalposts on the deal at the last minute.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crunch talks between resident doctors and the Government are set to continue in a bid to avert strike action.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I think that that resident doctors are underpaid.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, I would say that he needs to take this seriously, Keir Starmer, and Lisa, actually understand that there's a big job crisis, it's causing unemployment, and it's causing a lack of job security as well.", "score": 3.6886, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Dr Ryan, who also served as the WHO's deputy director general, was appearing as part of a roundtable as part of Ireland's Covid-19 Evaluation Panel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crunch talks are to take place between resident doctors and the Government after ministers threatened to remove a key element of the deal currently on the table.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The British Medical Association has hit back at Keir Starmer's call for the union to cancel next week's strikes or risk losing the current deal.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has accused resident doctors of \"recklessly\" walking away from a Government pay deal without putting it to members for a vote.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer has issued an ultimatum to resident doctors to call off their strikes or lose the deal on the table.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Sir Keir Starmer is \"ramping up the war of words\" with the doctors' union by giving resident doctors 48 hours to reconsider their upcoming strike, reports @ashishskynews.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Keir Starmer has criticised resident doctors for \"recklessly\" abandoning a government pay deal without presenting it to members for a vote.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But with the junior doctors, resident doctors, there's never an element of that conversation where it feels like actually they do understand that there is another side to this.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Writing in the Times, Sir Keir Starmer said the decision to announce the 15th walkout of the long-running dispute was \"reckless\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer gives 48-hour deadline to resident doctors to call off strikes", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It is understood that the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in an ongoing row over jobs and pay.", "score": 3.539295, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Addressing the resident doctors, he added: \"There are still 48 hours left to choose a better path. For patients, the NHS, and our doctors - I urge you to take it.\"", "score": 3.499645, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He added: \"So I say this to the BMA's resident doctors' committee: reconsider.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It says Sir Keir Starmer warns resident doctors to call off next week's walkout within 48 hours or risk losing new NHS training posts.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Their last six-day walkout cost the NHS a staggering £250 million, but it's the human cost that is sparking the biggest fear.", "score": 3.4061450000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said resident doctors, the NHS and patients will be \"worse off\", highlighting that each strike costs the health service £250 million.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'There are patients right now being treated in corridors in A&E and yet we are turning tens of thousands of resident doctors away from training places in the NHS.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Each strike costs the NHS £250million in paying for cover.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But I think that leaders are really really keen to get back to the business of driving down waiting lists of improving emergency care and of transforming the NHS.", "score": 3.363845, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions face fresh misery as a new six-day strike looms from April 7, threatening cancelled operations and stretched hospital corridors already at breaking point.", "score": 3.31818, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the working conditions are getting worse for them, this grueling hours, this overtime, this mis-breaks, this causing them fatigue, causing them to burn out.", "score": 3.235835, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It is completely unacceptable that vulnerable individuals are left waiting months, in some cases nearly two years, for appropriate mental health care.\"", "score": 3.18436, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We are an under doctored country compared to the rest of the OECD.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In terms of the pay, like you mentioned, I think it's really important and I think sometimes people sort of forget that doctors have faced the largest pay erosion in the public sector over the last decade and a bit.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is understood the proposal will be removed from the deal if resident doctors in England press ahead with a six-day strike from April 7 in a row over jobs and pay.", "score": 3.1144249999999998, "claim_types": ["correlation", "rules", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of these jobs, 1,000 would have opened for applications this month, but the PM has now warned they \"will be gone if this deal isn't put to a vote on Thursday\".", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As we'll be discussing after 9 o'clock this evening, Sir Keir Starmer has told the British Medical Association that it needs to come to an agreement on resident doctors pay by tomorrow night, or see the current offer withdrawn.", "score": 3.092465, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"From A&Es to cancer waiting times to the erosion of NHS dentistry, wherever you look in our health service, you will find decay.", "score": 3.037655, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "2024: January 2024 saw the longest strike in NHS history at the time - six days - over their pay erosion, and another in February.", "score": 2.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The prime minister has accused resident doctors of 'recklessly' walking away from an offer that would have seen some earn more than £100,000 a year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir yesterday gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "93% of them are telling doctors to stay at work.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nobody else has seen a pay increase like that over the last...", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although I seem to remember a massive pay rise for resident doctors that restating almost as soon as the election was over.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Starmer says that if the BMA doesn't cancel the strikes, the government will withdraw the extra 1,000 speciality training posts it has promised.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Some doctors are set to lose more than £2,000 from their retirement pots as a result of the strikes that have been taking place since the start of last summer, calculations for The i Paper show.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BMA is demanding that consultants who cover for striking junior doctors get paid up to £2,500 per shift to do so.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The prime minister has given the British Medical Association 48 hours to call off the six-day doctor strike after Easter in England or face losing 1,000 extra training places.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "little prediction that by 2048 would be 11 to 15,000 consultants short based on population I think the media was talking about the fact they're being paid as they just want more money but actually the jobs is quite an important part too", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I understand from the news that these junior doctors, these student doctors, they get only 18 pounds something an hour.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Health secretary Wes Streeting said the pay offer meant that 'for the most experienced resident doctors, basic pay would have increased to £77,348 and average earnings would have exceeded £100,000'.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On Monday, Sir Keir gave the BMA 48 hours to call off the strikes before the Government withdraws an offer to create at least 4,000 new specialty training posts in the NHS, for which resident doctors can apply after their first two years of training.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Now, the Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor's strike in England after Easter, or face losing 1,000 extra training places.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Oh, well let's let's give every doctor 100,000 pounds a year then.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "We've seen the largest pay erosion in the public sector.", "score": 2.9358750000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Anyone who works in the NHS knows that patients need these 4,000 jobs created as soon as possible.", "score": 2.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "So if Jack Fletcher, the, uh, head of the resident doctors' committee, the BMA rang you up today and said, look, um, Rida, I want your advice, I'm not sure what to do here, I don't want to put these training posts at risk.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "and I I fail to see why it is always the resident doctors who should get a better deal than any other group.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister has threatened to withdraw an offer of thousands more NHS jobs if the strike goes ahead.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"He promised to end year-long waits in the NHS by the end of this month, but tens of thousands of Scots are still suffering these outrageous delays on his watch.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Unless we start to invest in community and participatory public health and have communities ready for the next pandemic, we're going to fail, not because of the technological and the innovation solutions, but we have not prepared, supported and involved our communities in preparing for the next pandemic", "score": 2.901365, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the prime minister said.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So without having any, uh, surgical skills by just having letters signed by by other people or from other departments, for example, and so essentially you don't act you don't actually have to have any surgical skill to be appointed as a surgeon.", "score": 2.884875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister has issued the resident doctors committee of the British Medical Association (BMA) a 48-hour ultimatum to reconsider the offer, which would have granted medics a pay increase of up to 7.1 per cent this year.", "score": 2.856485, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, everyone's facing cost of living pressures, I also know that MPs got a 3% pay rise.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I just don't think that it's, it's valuable or useful to be making threats in the media to withdraw jobs from doctors because ultimately that's bad for doctors and bad for patients.", "score": 2.805745, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant short based on population.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's a prediction that by 2040, there would be 11 to 15,000 consultant shortfall based on population.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We're running a poll in the article online now, do you support the BMA resident doctors strike and subscribers are having their say, Hugo, more than 16,000 votes in so far.", "score": 2.7846200000000003, "claim_types": ["voting"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I don't recall the conservative government indulging in this sort of thing because he's essentially saying to them, unless you agree by the end of Thursday to the terms of the offer that you've already got, we are going to abolish 4 and a half thousand training places for resident doctors.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Well, I think that's, that's all true, but the fact is, if he delivers on this threat, you're going to be a thousand, I think 1500 worse off this year, and four and a half thousand all together if he then repeats it for the next two years.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He's given them a deadline of Thursday evening, think that's right, to accept the terms of this new offer, or he will withdraw more than a thousand training places.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The BMA's resident doctor committee hasn't barged on the plan six day strike planned between April the 7th and April the 13th.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Completely, because it's 26% pay increase they've asked for, because they've not got that, they've got an they had a very good offer, they're going to go out on strike. That's so irresponsible.", "score": 2.75796, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the issue is, you're not going to retain doctors.", "score": 2.73922, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "FSCS protection for your savings and current accounts has risen to 120,000 pounds per eligible person at UK authorized banks, building societies and credit unions.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Leyla Hannbeck, chief executive of the Independent Pharmacies Association, said medicine shortages pose a 'serious and growing threat to patients'.", "score": 2.7201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Every time doctors strike, they lose pay, with those who have taken part in each strike day losing thousands of pounds overall.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "and at the moment there basically aren't enough specialty training jobs to match the number of doctors.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK imports about three quarters of its drugs and many others made from materials that are shipped from the likes of China and India.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Every year, they accrue 1/54th of their salary as an income each year in retirement, and this is uprated every year by inflation plus an additional 1.5 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Also on the table are thousands of extra NHS training posts.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The British Medical Association says they're unhappy with the government's proposed 3.5% pay rise.", "score": 2.6975749999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Progress slows. Waiting times fall more slowly. Pressure on staff increases. That is what makes this so frustrating - and so completely avoidable. So I say this to the BMA's resident doctors' committee: reconsider.\"", "score": 2.6746749999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Covid nearly broke NHS - 'never again can nursing and the public be failed like this'", "score": 2.6735499999999996, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I mean, just speaking for myself, but I think a lot of my colleagues, there's there's all of these targets that are being imposed on us, mean that, for example, if I want to schedule patients for surgery, sometimes I have to prioritize patients who've been waiting, um, a long time over patients who have been waiting less time, but who have cancer or more urgent conditions, um, just because, uh, a certain target or patient would breach a target.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So all of this is costing the NHS way more money than it would if they actually just negotiate.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "They have to apply to positions, very slim chance of getting it and right now universities offers are going out and we're probably turning back three out of every four people who could become doctors are probably going to be rejected because we don't have enough training places, which we should be making more.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Participating junior doctors will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The medics will walk out for six days from April 7 to April 13 - just after the Easter Bank Holiday weekend - in pursuit of a 26 per cent pay rise.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is more than many NHS staff in other roles will earn at the peak of their career.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Or the suggestion is he'll withdraw the offer of thousands more places for doctor training.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, the union said this was not enough, given inflation is expected to rise and that pay for resident doctors has not kept pace with inflation since 2008.", "score": 2.631525, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the the net effect will be a significant loss.", "score": 2.6158, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The blockade of the Strait has already pushed up oil prices and is expected to have a major knock-on effect on the rate of inflation.", "score": 2.6158, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Medicine shortages pose a serious and growing threat to patients across the UK, and the Government must act now to ensure people are not left without the vital treatments they depend on.", "score": 2.6147650000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And this is really, really over the years going to affect the NHS.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And if he doesn't win, and in a sense, everyone's a loser.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Seastrums threatening to withdraw thousands of specialty training places if the strike is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The union said this was not enough given inflation is expected to rise because of the war with Iran and the fact the pay of resident doctors, who used to be called junior doctors, has not kept pace with inflation since 2008.", "score": 2.61247, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Suggesting that Simon's threatening to withdraw thousands of specialty training places is that the stoppage is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Not just that, he's saying that he'll abolish 4 and a half thousand training places for doctors, which Zoe, it it's brinkmanship, which I wouldn't have necessarily expected from someone like Kier Starmer.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So Thomas is threatening to withdraw thousands of specialty training places if the stoppage is not called off within 48 hours.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Given the increase that you've already seen from the government, and given the context that we're talking to you in right now, is your position really morally justifiable?", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I think the Prime Minister is one of them.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BMA said global events such as the Iran war, plus the rising cost of living, mean doctors are facing further pay erosion, causing them to leave the UK to work elsewhere.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of these jobs, a thousand would have opened for applications this month, but \"will be gone if this deal isn't put to a vote on Thursday\", the Prime Minister said.", "score": 2.57747, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "but it does progress up to 40, 50, 60, 70,000.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well I'd give them a minimum of 20 pounds.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And for consultants, a 2% pay rise.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "My, my point is that last year, there was, I can't remember whether it was 22 or 29%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 1,000 extra training places, which were to be created this year, were part of a package of measures that would see a total of at least 4,000 extra speciality posts created over the next three years under the deal put forward by the government.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, Sham, I could talk to you for the rest of the program, but we have only got 10 and a half minutes left.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure is clearly bad for patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He added: \"Removing potential doctors' posts at a time when corridor care and GP queues are already putting the NHS under pressure, is clearly bad for patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We've now seen threats to withdraw jobs for doctors at a time when we are seeing corridor care rife as the norm in A&E in a lot of places, as well as seeing patients this morning who were trying to get a GP appointment, calling their GPs and facing hold music because there aren't enough of them, and yet we've got the government saying that they're going to cut training places for resident doctors even further.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We know that these intolerable waits, which were virtually eradicated by the previous UK Conservative government, have a devastating impact on patients' physical and mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This overtime causes burnout, causes fatigue, causes them to be demoralized, low morale, and then they drop out of medicine or they want to just completely move to a different country.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On the table is an above-inflation pay rise, along with government funding for postgraduate exams that doctors have historically paid for themselves, and an offer of 4,500 additional specialty training places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "First-year doctors fresh out of medical school would earn on average £52,000 a year, £12,000 more than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the NHS, the waiting list in England was 7.29m in December 2025, even after the NHS delivered a record 18.4m treatments and operations in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As medics also earn on average an extra £20,500 a year for overtime, weekends and night shifts, the highest earners could take home more than £100,000 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People are still waiting more than two years, way more than the situation in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Quilter's calculations suggest that a first-year foundation doctor - those just out of medical school - would lose around £2,230 of pay if they were involved in all 21 days of strike action, while the most experienced resident doctors could lose around £4,260.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir said union leaders had rejected a \"historic\" offer - including another above-inflation pay rise of 3.5% this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I think 95% of appointments were managed and kept during the last period of strike action.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Consultants and other senior doctors are to be balloted on industrial action after ministers announced they would be getting a 3.5% pay award.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The deal sets out a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the elements of his offer was a 4.9% uplift to average basic pay between 2026 and 2027, which would make them an average of 35.2% better off compared to four years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of course, what Streeting fails to do is put that \"35.2% better off\" into proper context:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But I've talked about those 1,000 extra jobs, the 1,000 extra jobs is part of a minimum of 4,000 new additional specialty posts to be delivered over the next three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, at the moment, for example, for GP, there's over 18,000, um, trainee doctors that are waiting to get into GP training with over 4,000, probably just over 4,000 places.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, I mean doctors are paid far more than the average of anybody in the UK, admittedly in their first year they they're not paid a huge amount, it's about 38,000 I think.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We had a 65% turnout and 83% of residents rejected.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour won the general election in July, and the new government offered a 22% pay rise over two years, which junior doctors accepted two months later, ending the strikes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By December 2024, only 71.1 per cent of A&E patients were admitted, transferred or discharged within four hours, far below the NHS standard of 95 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The union has rejected a pay rise of up to 7.1% this year without putting it to members, but says it's keen to attend fresh talks.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 3.5% rise that is coming to them in April was recommended by the independent pay review body and covers all doctors.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It will be the fourth strike by members of the British Medical Association (BMA) since last July, with 21 days of industrial action having taken place since then.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's a 10% pay rise for doctors in their first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The goalposts were changed at the last minute by the government where the investment offer was reduced and stretched to over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And on the face of it, it's a reasonable offer, three and a half percent pay rise this year, that's slightly more than inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Department of Health and Social Care said basic pay for new senior doctors has increased by 28.5 per cent over the past four years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We had a 65% turnout and 83% of residents rejected it, just did we been telling the government and therefore we've not put this to members because we don't think it's a good deal on pay.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week the government announced that doctors would get a 3.5% pay rise after agreeing a recommendation from the pay review body.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last summer there were 30,000 applicants for around 10,000 jobs, although some of those were doctors applying from abroad.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Doctors to lose £2,000 from pensions due to 21 days of strikes", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But they also lose entitlement to some of their generous defined benefit pensions, with calculations by wealth manager Quilter suggesting this could total over £2,000 for many doctors over a 20-year retirement.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BMA announced the strike as it emerged doctors were to be given a 3.5% pay rise this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the same way that inflation between January 2022 and January 2026 was around 28%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But a six-day strike, and the previous strikes weren't six days.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And when you when you put it in an hourly rate like that, it doesn't sound very much but if you multiply 20 pounds an hour by 52 weeks of the year, um, it's a reasonably sizable sum.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of these positions, 1,000 would have been available for applications this month, but the PM has now cautioned they \"will be gone if this deal isn't put to a vote on Thursday\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And I think that we've had a much more constructive set of discussions over the last six months or so, certainly over the last three months or so, much more conciliatory and really trying to find a solution.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures released on Tuesday confirmed the pledge had been missed, with 44,000 waits of a year or more still ongoing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government pledged to create 4,000 extra training places over three years, including 1,000 places this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It warns that one in four NHS sonographer job posts are vacant in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We had a 65% turnout and 83% of residents rejected it.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The deal, which was rejected last week by the union's leadership without consulting members, would see a pay rise of up to 7.1% this year and the creation of 4,000 specialty training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The union, which is to stage a walkout from 7 April to 13 April, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For 21 days of strike action, the most experienced resident doctors could lose £78.83 per year; over 25 years, because of the way pensions are uprated, that could be worth £114.38, adjusted for inflation.Over a 20 year retirement, that is worth £2,280 before tax.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week, the BMA resident doctors' committee rejected an offer that would have given doctors a pay rise of up to 7.1% this year, without putting it to members for a vote.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under a new deal on pay, which the medics have rejected, some of them would have been on over 100,000 pounds a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He's accused them of being reckless for walking away from a pay deal under which at least some would have earned more than £100,000 a year when overtime and night payments are added.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You know, a first year doctor, fresh out of medical school would earn £12,000 more than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And for those in their second to fifth year, a 3.5% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And frankly, with the current inflation rates, we think that is about 20%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the government's offer of 10% for junior doctors and 2% for consultants is significantly below that.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After entering No10, Starmer agreed to pay rises worth 22% over two years, with further increases following last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The PM went on to reiterate the terms of the rejected deal, mentioning a total pay rise of 35% over three years, reimbursements for Royal College exams, and 4,500 new speciality training posts over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although a figure of 4,000 has been mentioned, but I think that's over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They have budgeted the government 250 million pounds for these jobs, which is about a week's worth of strike action, which is what seems to be going ahead next month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"But what I think we should be looking at today is that we've got nine months of continuous reductions in long waits for outpatient and inpatient treatment - that's thousands and thousands of people receiving the healthcare treatment they require and more and more people getting treatment within the 12-week period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The union's rejected a pay rise of up to 7.1% this year but says it's keen to attend fresh talks.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'm not sure anybody knows anybody who's been given a pay rise of what 28%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week the BMA called the strike after rejecting a deal which would see doctors receive a 3.5% pay rise this year, some expenses including exam fees paid for, and an increase in the number of training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, he said, new graduates entering the profession would earn on average £12,000 more annually than three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The union, which is set to stage a walkout from April 7 to April 13, is demanding \"full pay restoration\" to 2008 levels, the equivalent of a 26% pay rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The walkout, which is due to begin at 07:00 BST on Tuesday, will be the joint longest of the dispute - only once before have resident doctors taken part in a six-day strike.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the government have offered to create an extra 4,000 training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yet last year, there were 13 fully qualified doctors who were applying for every job in NHS to train to be an any.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And that's why it's only 10% for those in their first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour leader hopeful Wes Streeting had always maintained he could not offer resident doctors more pay after they were given rises totalling nearly 30% in the past three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, last week the BMA called the strike over a deal which would see doctors receive a 3.5 percent pay rise this year, so slightly above inflation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some expenses, including exam fees paid for, and an increase in the number of training posts.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And also in terms of those jobs existing in the first place, those 1,000 extra jobs, which is part of the deal.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Can you tell us what the settlement was after the election that West Streeter came to, because we were told something like 22%.", "score": 2.5459449999999997, "claim_types": ["quantity", "voting", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And I think that we've had a much more constructive set of discussions over the last six months or so, or certainly over the last three months or so, much more conciliatory, um, and and really trying to find a solution.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"In the 2015 structure, any reduction in pensionable pay creates a gap that compounds because each year's accrual is uprated.\"", "score": 2.5315000000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And a dog owner has been convicted after his XL bully attacked and killed an elderly man in Cheshire.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We've already had a couple of supply shocks in the last 12,18, months or so.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And at the point might be made that, well, the 4,000 specialty jobs, we all need them.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.5, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So, you know, those numbers do sound large because they're taken over a number of years, inflation peaks and troughs during that time.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just 8% said it \"rarely\" or \"never\" has an impact on classrooms - compared to almost a third of teachers (31%) in private schools, according to a major survey by the National Education Union.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Private school pupil, 16, killed himself a day after asking ChatGPT for advice on how to take his own life", "score": 4.36914, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The NEU said the different outcomes between state and private schools showed \"the roles that resourcing, class size and pupil to adult ratios play in behaviour\".", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Plans by Spain's socialist prime minister to hit British expats with a tax of up to 100% of the value of their holiday home purchases have stalled.", "score": 3.3956850000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the National Fraud Intelligence Bureau, 4,441 cases of rental scams were reported in the past year across England, Wales and Northern Ireland, with people aged between 20 and 29 years old proving the most likely to fall prey.", "score": 3.3647299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The world's second-most visited country after France is also among the European nations where public anger is most acute over affordable housing shortages, with rental supply halving since the pandemic.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As part of our investigation, we have spoken to four other people who say they lost more than £6,000 between them in the same scam.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Foreigners made up 20% of all buyers last year, unchanged from a year earlier.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This represents a 15% increase from 2020 while there are thought to be many more that operate without an official licence.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Brits remained the largest group of foreign purchasers, at around 8%, preliminary official data showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crime on the Tube has soared 46 per cent under Sadiq Khan and most Londoners are afraid to ride it at certain times of day, damning report finds", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Latest figures show nearly 190 London police officers were sacked and barred from returning to the service in 2025.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prime Minister Anthony Albanese has warned of a growing threat from extremist ideologies as he declared he felt 'no sympathy' for self-proclaimed sovereign citizen Dezi Freeman, who killed two Victorian police officers.", "score": 4.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The £65 million inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded.", "score": 4.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Hurst also raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Duggar, who starred with his parents and siblings in TLC's \"19 Kids and Counting,\" was arrested March 18 in Tontitown, Arkansas, after police officers interviewed a 14-year-old girl who told them Duggar had molested her several times during a family trip to Panama City Beach, Florida, when she was 9.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Residents have described 'people sitting on the stairs, smoking crack cocaine' and a rampant issue with knife crime.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The animal had to be shot 10 times by police officers who were called to the scene.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Video shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand in the middle.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dezi Freeman murdered two police officers and fled", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He had been on the run for seven months after killing police officers Neal Thompson and Vadim de Waart-Hottart as they served a warrant related to alleged child sex offences.", "score": 4.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Christine Hurst raised her concerns about the lack of blood on Mr Ainsworth's pyjamas after having murdered his wife with a hammer and knife, according to police officers", "score": 4.4703800000000005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'(It) will be laser focused on grooming gangs and will explicitly examine the role of ethnicity, religion and culture of the offenders and in the response of institutions.", "score": 4.41762, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Woodhouse, who was targeted, groomed and abused as a teenager, was part of Restore Britain MP Rupert Lowe's private investigation into grooming gangs, which has claimed to have found child sexual exploitation in 85 local authorities in the UK.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dezi Freeman, wanted for shooting dead two police officers on a property near the town, was killed on Monday roughly 150km away in Thologolong, after seven months on the run.", "score": 4.41429, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'He made the decision to murder two police officers.", "score": 4.300755, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Conservative Party leader Kemi Badenoch said: 'This appears to be a significantly strengthened terms of reference for the national grooming gangs inquiry.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Conservative Party leader Kemi Badenoch said the terms of reference appeared to have been \"significantly strengthened\", but Reform UK leader Nigel Farage said he has \"absolutely no faith\" that the grooming gangs inquiry will get justice for victims.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A photo from the scene shows three police officers taking a suspect, who was allegedly under the influence, into custody", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In each area, the inquiry will conduct 'local investigations' into 'serious failures identified in response to child sexual exploitation by grooming gangs'.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The problem is any third party inquiry is a waste of space unless you can subpoena police officers, social services, civil servants, who were all part of of turning the collective blind eye, and I think everything this Government has done on this issue is an attempt to literally kick the can down the road, to not fully open this up.", "score": 4.25444, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The audit found systemic failures and institutional paralysis had enabled grooming gangs to operate for many years.", "score": 4.25444, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The people behind this showed absolutely no regard for the driver, the local community or police officers, whose lives could have been put at risk,\" she said.", "score": 4.228095, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Farage said: \"I've wanted a national grooming gangs inquiry, I've done everything I can to try and push the Government into it.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers and vehicles continued to surround the property on Tuesday, 24 hours after Freeman was killed in a hail of bullets after refusing to surrender.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In its 'terms of reference' published this morning, the inquiry said it would 'investigate how grooming gangs operated and how institutions, including police, local authorities, health services, social care services, and schools, responded to abuse'.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Marcus Johnstone, managing director of PCD Solicitors, said: 'Grooming gangs have not disappeared, but simply evolved their tactics to largely escape detection.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nahom Medhanie was shot dead in a car outside Euston Station in London - Metropolitan Police officers were called to reports of gunshots at 11pm on Saturday", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The grooming gangs inquiry was set up in response to a recommendation from Baroness Louise Casey's National Audit on Group-based Child Sexual Exploitation and Abuse.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage posted on social media showed police officers watching on as an army of feral youngsters stormed through the supermarket.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers in Tontitown had the father call Duggar with a detective on the line, and he again admitted to the actions, according to the affidavit.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Scottish man identified as Steven Lyons, who is described as a senior figure in an international crime syndicate, center, is escorted by police officers at the regional police headquarters in Denpasar, Bali, Indonesia, Tuesday, March 31, 2026.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He described it as a reckless attack, which could have endangered local people and police officers.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Home Secretary Shabana Mahmood said: 'The grooming gangs scandal is one of the darkest moments in our country's history - where the most vulnerable people were abused and exploited at the hands of evil child rapists.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to reports, Brueckner has repeatedly tested police officers' patience in the period since - especially when drinking alcohol.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New footage shows the moment an army of youths caused chaos in a Marks and Spencer shop in London as police officers watched.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A child sexual exploitation survivor has urged the grooming gangs inquiry to investigate every council and police force in the UK after the probe outlined its terms of reference.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "🔴 Police officers who failed to investigate Asian grooming gangs will be held to account by the public inquiry into the scandal, its head has pledged.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Uh, well, the national inquiry into grooming gangs, Hugo, will not flinch from uncomfortable truths, its chair has announced as a three-year investigation begins.", "score": 3.9255500000000003, "claim_types": ["correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Met Police officers then swooped on the scene, with hundreds of children sent fleeing through Soho after the sound of sirens brought the stunt to an abrupt close.", "score": 3.862985, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The inquiry will look into how grooming gangs operated and how institutions, including the police, local authorities, health services, social care services and schools, responded to abuse.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'I have full confidence that the National Crime Agency will expose and prosecute the grooming gangs.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Local investigations will be carried out in areas where serious failures have been identified in response to child sexual exploitation by grooming gangs.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tory leader Kemi Badenoch said the terms of reference of the inquiry had been 'significantly strengthened ́ (Yui Mok/PA)", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage shows more than a dozen youths pushing each other and running riot in the frozen food aisle as three police officers stand helpless in the middle.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Members of the public are entitled to accept the highest standards from police officers and to ensure they do not abuse their power and position.", "score": 3.7404349999999997, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For the families of the police officers and also Freeman's, they will get a clear outline on what occurred through the coronial process.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A dangerous social media trend is turning US cities \"into The Purge\" with police officers overwhelmed after already dealing with Spring Break.", "score": 3.62201, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'That ideology led him to murder two police officers in cold blood,' Albanese said.", "score": 3.563255, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The reward was one of the largest ever offered in Australia, and came amid a search involving 450 police officers and members of the defence force", "score": 3.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Met Police officers appear to try and control the group by gently pushing a few of the teens, which has little impact", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Its findings are calamitous for London's transport and policing bodies and for Mayor of London Sadiq Khan: the committee's chair, Marina Ahmad, said that while she expected 'to find a problem, what we found was a crisis'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Greater Manchester Police officers are currently responding to a concern for welfare on Barton Bridge on the M60, reported at around 9:40am this morning.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers are at the scene responding to a concern for welfare.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Met Police officers then swooped in on the scene, with hundreds of children sent fleeing through the streets after the sound of sirens brought the stunt to an abrupt stop.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers were joined by an ambulance crew and they managed to get Gornall to safety.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Underneath the surface, this series is a nuanced character drama about two police officers - and supposed colleagues - operating on opposite sides of the law. Throughout the season, Harry goes head-to-head with his long-time adversary and corrupt detective Tom Waaler,\" reports the Express.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers were spotted at both schools on the Monday and armed officers were photographed at Eastern High in Trowbridge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That came after police officers found Woods slumped at the wheel of his car near his home.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Greater Manchester Police officers are responding to the incident at the scene.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers were seen at both schools on the Monday and armed officers were pictured at Eastern High in Trowbridge.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers in Lanarkshire have issued advice to residents over keyless car theft.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police officers search the area.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Their Sky History show examines unsolved murders, miscarriages of justice and milestone cases that have changed the law, and the co-hosts speak to historians, police officers, victims' families and a number of other contributors along the way.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just a few seconds later, police officers in the parking lot walked back to the car and realized their suspect had fled.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New video shows the moment an army of youths caused chaos in a Marks and Spencer store in London as police officers watched on powerless.", "score": 3.5194, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Devices were seized, and analysis discovered 64 \"child sexual abuse material files\" which were deemed to be category C.", "score": 3.450375, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'The initial draft did not, amongst other things, examine ethnicity and religion, nor did it ensure those in positions of authority like politicians or police officers would be investigated.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Oldham is the only area that has been confirmed, it means that local investigations won't begin until at least a year after Sir Keir Starmer announced this national inquiry, that itself came after his U-turn because he previously insisted that a national inquiry into abuse was not necessary.", "score": 3.436025, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He had been on the run since August 26 after killing two Victorian police officers and injuring another when cops raided his remote Porepunkah property over historic sex offence allegations.", "score": 3.4142900000000003, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police who failed to investigate child sex grooming gangs will be held to account, the new independent inquiry's head pledged today - as she promised issues of ethnicity, culture and religion will also be scrutinised.", "score": 3.40507, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The street value of the retrieved cocaine was estimated between £719,040 and £898,000.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Stats out in 2024 show Black men were 2.4 times as likely to be arrested as white men and Black people were 3.7 times more likely to be stopped and searched compared to white people.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across no less than a third of the country, not a single case of this devastating crime was cracked by constabularies.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Excesses are regularly in the thousands.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ten police officers had attended his property he shared with his wife, Mali and their two children, to serve a warrant on August 26 2025.", "score": 3.2291, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Longfield said that the inquiry will examine cases in which public officials and police officers were reluctant to investigate allegations because of concerns about how it may look.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And Sarah Champion, Labour MP for Rotherham, who first called for action on grooming gangs, has criticised the amount of time the inquiry has taken to get going and believes its budget would be better spent on supporting the National Crime Agency bringing gangs to justice.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The 13-year-old girl from the Bayside area was charged with 52 offences including reckless conduct endanger serious injury, multiple counts of theft, multiple counts of theft of motor vehicle, burglary, handle stolen goods, and threaten physical harm or property damage on ground of a protected attribute.", "score": 3.1637750000000002, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The £65m inquiry, to conclude no later than March 2029, 'will examine why children were so often disbelieved, dismissed, or blamed for their own abuse'.", "score": 3.09782, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Overall crime on the network has risen almost eight percent in the last three years alone.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of all public transport crime reports in 2025 almost a fifth, 4,593, related to VAWG and another 1,724 were incidents of hate crime.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only a handful of incidents ever led to a charge, and a suspect was not identified in 58 per cent and 66 per cent of VAWG and hate crime incidents respectively.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Almost half of travellers - 45 per cent - say they're either 'very' or 'fairly' worried about being harassed while commuting, and more than half say they have little to no confidence in TfL, the Met and the BTP to take action.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just 1 per cent of these disgusting robberies leads to anyone being punished.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NCHIs were introduced in 2014 by the College of Policing, and saw a 400% increase in police recorded hate crimes in the decade from 2012, based on analysis of force figures.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In its report, the Independent Scrutiny and Oversight Board (ISOB) said just six of the 44 forces covered by the PRAP have publicly acknowledged institutional racism.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With a further 240 RSOs either in custody or in hospital.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crime on London's public transport network has risen by almost 50 per cent since the pandemic - with 'unacceptable' levels of violence against women and girls, according to a devastating new report.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disgraced BBC News presenter Huw was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", "score": 3.08627, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Girl, 13, is charged with more than FIFTY offences involving alleged stolen cars and antisemitic abuse in Melbourne", "score": 3.03734, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The expert warned that if he were set free, his probability of committing another serious offence within two years could be between 30 and 50 per cent.", "score": 2.983715, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A modern day Fagin ran gangs of teenage robbers who stole more than £100,000 worth of mobile phones in two weeks, a court heard.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "COPFS said the street value of the cocaine was estimated to be between £719,040 and £898,000.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of 562 investigations into alleged sex offences reported in 2025 involving CCTV evidence, 250 either had no CCTV available, or was of unusable quality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Arrow MORE: Thieves steal £8,000,000 worth of paintings in just three minutes", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cost of living crisis has made food and beverages an increasingly attractive target, with thefts rising as much as 79% in 2024 according to one report.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shockingly, out of 185,000 cases of forced entry where an investigation occurred last year, the police were unable to identify a suspect in 143,000 of them.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "London TravelWatch estimates as many as 80 per cent of incidents go unreported.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three teenagers charged with murder of girl, 16, who was stabbed to death", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Southport killer Axel Rudakubana, who murdered three schoolgirls at a dance class in Southport in 2024, is alleged to have launched his horror knife rampage out of an incel hatred of women.", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Perth prisoner has been put on the sex offenders register after he was heard shouting rape threats at visiting children, aged between one and eight to one.", "score": 2.965595, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So why does a Californian-based non-working royal, raking in £75m from Netflix and £20m from his book Spare, think a nation facing a cost-of-living crisis should fork out for his security detail, let alone police protection officers?", "score": 2.93986, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'It is a terrible truth that violence, abuse, assault and in the worst cases, murder, can often come at the hands of a partner.", "score": 2.9264200000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We can never eliminate risk entirely, but sexual reoffending rates of RSOs remain very low.", "score": 2.925415, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Brueckner has repeatedly tested police officers' patience since being released from jail, including one incident when he is said to have briefly managed to escape them on a bicycle", "score": 2.91647, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ashley Warren, 41, has been jailed for more than 10 years after owning one of two XL bully dogs that mauled 68-year-old Esther Martin to death at his home in Jaywick, Essex", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A £20,000 reward from Crimestoppers remains in place in connection with the murder of Donna.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is also revealed that across the north-east, there are 469 registered sex offenders in the community.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The law makes it a criminal offence to own or possess an XL bully dog in England and Wales without a certificate of exemption.", "score": 2.8912199999999997, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steven Lyons is escorted by police officers at the Bali police headquarters", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the first police officers, who were unarmed, could not get to Mr McColl.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An aspiring rapper has been jailed for more than 10 years after he was found guilty of owning an XL bully dog that mauled a pensioner to death.", "score": 2.87995, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He is the first juvenile to be charged with murder after the passage of Queensland's controversial \"adult crime, adult time\" laws, mandating he will face a life sentence if found guilty.", "score": 2.8512649999999997, "claim_types": ["quantity", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Arrow MORE: Rapper whose XL bully mauled gran to death is sentenced to 10 years in prison", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children two years ago.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Metropolitan Police detective has been sacked after using sex workers and class A drugs while on trips aboard over a seven-year period.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A former Merkinch youth worker caught with indecent images of children has been jailed for 14 months.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He warns they can often grow into \"altercations that turn into gunplay with potential fatalities\".", "score": 2.805745, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'The biggest development in child abuse happens on encrypted web sites, social media and apps, where the police are hopeless at investigating.", "score": 2.78525, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two women feared for their life after thug put knife to their faces during Glasgow attack", "score": 2.7736400000000003, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In just one raid on the Three store in Woolwich, southeast London, the gang snatched £30,000 worth of goods.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 80% of trucks on the road, estimate the RHA, are from firms with six trucks or fewer.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By most estimates, there are twice as many trucks on UK roads than there are places for them to pull up.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage shows the moment Ashley Warren (left) told police poodles are 'more aggressive' than XL Bullies days before his dogs mauled a grandmother to death", "score": 2.72471, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The teenage boy who accused Mills of serious sexual offences in the 1990s was under 16, it was claimed today.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Seven people suffered serious injuries when a Suzuki Swift mounted a pavement and mowed down pedestrians at 9.30pm in Friar Gate on Saturday 28 March", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disgraced BBC News presenter was handed a six-month suspended sentence after pleading guilty to three charges of making incident images of children.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The wound quickly proved fatal and he bled to death on the driveway of the house where he had collapsed. For four of the five men in the BMW those thoughtlessly discarded cigarette butts were to prove their undoing. Each had left traces of DNA on one of more of the cigarette butts.\"", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "PC David Wren, 57, who had been investigating 13 incidents of domestic violence inflicted on the woman ended up exchanging hundreds of personal messages with her.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Perth jewellery maker bit his wife's face in a drunken attack, forcing her to spend £400 on reparative skin treatment to remove his teeth marks.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The chains can be five or six deep, the profit margins getting smaller each time.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About a quarter of all the theft Dawber sees comes from curtain-slashing.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Insurance premiums rise with every claim.", "score": 2.6831300000000002, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A drug dealer fled police in his underwear while his accomplice flooded a bathroom in a bid to flush £10,000 worth of heroin down a toilet.", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A woman was held at knife point when four armed men ransacked her Brisbane home, breaking her finger while attempting to call the cops", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If we are serious about ending violence against women and girls, the system has to work for those who currently trust it least.", "score": 2.671075, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "We are sliding towards becoming a society in which we suffer some of the worst aspects of a police state - above all, an insidious and dangerous erosion of our freedom of speech - with none of the more tolerable aspects of authoritarianism, specifically its stern punishment of petty offenders.", "score": 2.664635, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He quietly watched his victim before walking up to his home and stabbing him", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In addition to raping the woman, who has since died, Brueckner has convictions for child abuse and drug trafficking.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those responsible for the hijacking of a delivery driver and the attack on the PSNI station in Lurgan have nothing to offer our communities but harm, fear, and disruption.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"A teenage boy was taken to hospital with a stab wound to his lower back.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Delivery driver threatened at gunpoint in attack on police station", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died on Saturday morning after suffering stab wounds", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Family of girl, 16, stabbed to death in 'row over boy' pay tribute to their 'world': Murder police arrest fifth teen", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Grooming gang inquiry will expose bungling police who failed to investigate gangs of Asian men, chairman pledges", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just before 8.30pm yesterday, were called to a report of a stabbing inside McDonald's on Elmhurst Drive.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The investigation related to allegations of serious sexual offences against a teenage boy.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Double cop-killer Freeman was shot dead by an elite specialist police crew after he was tracked down to his rural lair, before firing on cops with a gun he stole from one of his victims.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three teenagers charged with murdering 16-year-old girl", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Shoot her, shoot her,' another man urged.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Teen among three people charged with murder of girl found 'stabbed in back' https://t.co/9jUMuBDXYs", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chloe Watson Dransfield, from Gomersal, West Yorkshire, died at the weekend after suffering stab wounds 'in her back' following an alleged 'row over a boy'.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She had been stabbed in the back and there was quite a bit of blood.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 36-year-old also faces other charges, including attempted murder.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mould - posing as the woman, but using a fake name for her - went on to send the sick clips to a fellow paedophile, who was later snared with the videos.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is understood that Mills' departure relates to a historic police investigation into alleged \"serious sexual offences\" against a teenage boy.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He brandished a kitchen knife and swung at the victim, and caused a piercing wound to his chest.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cop killer Dezi Freeman was shot dead by an elite specialist police crew on Monday", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The hour-long standoff ended in bloody chaos after Freeman shot two officers dead as they attempted to pry open his door.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sen Const Vadim De Waart-Hottart and Det Leading Sen Const Neal Thompson were murdered by Freeman", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Detectives poring over the welter of material released by the US Department of Justice have set up a Gold Group of specialists to look into allegations of sexual offending, including abuse, exploitation and trafficking carried out in the UK.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He died in prison in 2019 after being found hanged in his cell while awaiting trial for child trafficking offences.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The device, which was placed in the boot of the car, has been described as \"about the size of a briefcase\" and was said to have \"carried a huge amount of danger\", putting both the driver of the car and those in the station at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The assessed threat level for dissident republican attacks in Northern Ireland remains substantial.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After her uncle forced her into oral sex, she collected his biological material and presented it to other family members, who subsequently reported the crimes to the police.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Everard was abducted, raped and killed by serving Metropolitan Police officer Wayne Couzens in south London on 3 March 2021.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She was hit on the head and face, strangled then stabbed in the neck.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's rare for drivers to be assaulted, though people within the industry told me stories of drivers being threatened with knives, machetes, baseball bats and, on one occasion, a gun.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I utterly condemn the reckless act of violence overnight in Lurgan directed at the police, which forced dozens of families from their homes and put people's lives at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Police say pregnant mum, 18, shot dead by 29-year-old boyfriend in Philadelphia", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is the moment a man who smothered his ex to death with blue tape the day after they broke up confessed to police 'I've killed my girlfriend' on the side of a motorway.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Neighbour Wayne Mallows described how he tried to save the girl but she had been stabbed in the back.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Baroness Anne Longfield, a former children's commissioner for England, who is chairing the inquiry, said: 'Children across England and Wales were and are sexually abused and exploited.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Chloe Watson was attacked after a party in Austhorpe, Leeds, at 5.55am on Saturday before being rushed to hospital where she was sadly pronounced dead.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage showed the stolen Hyundai sedan making a right-hand turn from the wrong lane and female occupants appearing to yell 'f*** Jews' at the group of Jewish men.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The report into the racist murder of the 18-year-old in 1993 found the Metropolitan Police had been incompetent and was institutionally racist.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Moment murderer who smothered his ex with blue tape slumps beside a motorway and confesses to traffic officer: 'I've killed my girlfriend'", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A teenage girl \"stabbed in the back over a boy\" reportedly messaged a friend asking to be picked up from an \"out of hand\" house party moments before.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Met police has said the former BBC Radio 2 presenter Scott Mills was investigated in 2016 in relation to allegations of his stanoic serious sexual offenses against a teenage boy.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A teenage girl and boy accused of stabbing a 16-year-old girl to death have been pictured for the first time.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Delivery driver held at gunpoint and forced to take suspicious object to police station", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And the father of another Rotherham grooming gang victim said police and officials who turned a blind eye or covered up the abuse of girls by Asian gangs should be jailed and forfeit their pensions.", "score": 2.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A striking thing about the cargo crime crisis is that the firms most affected are doing little to alleviate it.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A fifth arrest has been made after a 16-year-old girl died after being stabbed in Leeds.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is where truck parking is most oversubscribed and where regional crime gangs in Leeds, Liverpool and Birmingham overlap.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Paterson dumped nine kilos of the class A drug concealed in a black box beside a housing estate near Hogganfield Loch in the city's East End.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Following Wheeler-Spink's arrest, officers discovered two lock knives, a dagger and a knife in a sheath alongside almost £12,000 worth of cocaine and cannabis.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She added about 100 homes have been evacuated as a result of the incident and that a controlled explosion has taken place.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Judge Talbot-Hedley said there was 'a clear power imbalance' in their relationship with him being a police officer and her being a victim of domestic violence involving 16 cases of abuse in 2021.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Modern-day Fagin ran gang of teens to steal £100k of phones in two weeks and used old man with Motability car as getaway vehicle", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At a previous hearing, the court heard how Paterson had thrown a box of cocaine worth hundreds of thousands of pounds from a car window into the street during a police pursuit in March 2023.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Another of McGowan's phones was confiscated which held a video displaying what seemed to be 11kg blocks of cocaine and heroin.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A fifth teenager, a 17-year-old boy, was arrested on suspicion of murder on Monday after four others were held over the weekend.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "During the one-and-a-half day hearing the panel heard that the senior officer sent sexually inappropriate messages to his younger, more junior, colleague whilst on and off duty, over several months.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A senior South Wales Police officer who \"should have been a role model\" preyed on a younger, more junior colleague for months with \"malign intent for sexual gratification\".", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Given the seriousness of the allegations and the risk of the suspect fleeing, the DPCA requested preventive detention, along with additional measures including a search of his property and access to his digital data.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The bullet struck the officer below his bulletproof vest, mortally wounding him.", "score": 2.58268, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If carried out by dissidents, it would be one of the most serious attacks since the shooting of senior detective John Caldwell in Omagh in February 2023.", "score": 2.57747, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The online appeal had raised more than £13,000 by Monday evening.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He travels about 30,000 miles a year and brings his own sandwiches.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Footage shows the moment an aspiring drill rapper told police poodles are 'more aggressive' than XL Bullies just days before his dogs mauled a pensioner to death.", "score": 2.56732, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Met, with a workforce of 33,293, had the highest number of dismissals, followed by Greater Manchester, Thames Valley and West Midlands forces.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The biggest breakfast show in the country currently brings in a weekly audience of some 6.5million, after listeners lost under Mills' predecessor Zoe Ball returned.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "People clash with Serbian police officers during a local election, in Crvenka, small town located in the municipality of Kula, Serbia, Sunday, March 29, 2026.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crime dipped three percent on buses, 2.7 per cent on the Docklands Light Railway and 40 per cent on Trams in the same time period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Last year we received a 20 per cent increase in reports, showing us that more passengers know how to report crime to us and have the confidence to do so, knowing they will be believed and taken seriously.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Phone records reveal that on one instance, 70 messages were dispatched to numerous contacts within a 10-minute timeframe.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nottinghamshire Police detectives confiscated assets belonging to McGowan including £28,186 in cryptocurrency and bank holdings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since 2017, when Dawber joined Navcis, the number of cases that reach him have more than tripled, to about 5,000 each year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Drivers can reach it from the ports at Dover and Felixstowe; drivers departing Leicester with goods can reach 95% of the country in their allotted driving time.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the College of Policing, the Metropolitan Police had 183 of the 735 UK-wide dismissed in the year to March 31, 2025 - about one in four.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A relative of Chloe's has launched an online fundraising appeal which had accumulated nearly £15,000 by Tuesday morning.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of Chloe's relatives has set up an online fundraising page which had raised nearly £15,000 by Tuesday morning.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Between 2023 and 2025, crimes on the Underground rose 12.5 per cent, while they rose 60.4 on the newest part of the network, the Elizabeth Line, and rose 15 per cent on the Overground.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research published this week shows British police forces failed to solve 92 per cent of burglaries in a year ending last March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mills receives between £355,000 and £359,999 per year for his BBC duties, based on the 2024-2025 remuneration report.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When accounting for lost revenues, VAT and insurance costs, cargo crime is estimated to cost the UK economy about £700m a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ever since, about 70 or so companies pay an annual fee (from £700 to £2,500 depending on turnover) for access to the one-man cargo-crime department that is Mike Dawber.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of the 5,000 cases that Dawber deals with each year, only 300 or so result in arrests.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the 500,000 present, there were just 25 arrests reported, two of which were for protesters attempting to climb columns at the National Gallery, and 18 of which were due to alleged support for Palestine Action.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "British police forces failed to solve more than nine in ten burglaries in a year ending last March", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Four of the seven victims - four men and three women aged between 36 and 52 - have been discharged from hospital, police confirmed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mills, who earned between £355,000 and £359,999 annually for his work at the BBC, according to the 2024-2025 pay report, was reportedly sacked over the weekend.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Witnesses reported seeing more than 10 police vehicles at the hotel on Monday evening.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dawber didn't know what eyelash technology was, exactly, but he later learned that a pallet of it was worth more than £500,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One supermarket chain fired 75 drivers last year on suspicion of collusion with thieves, yet the firm only reported seven of those to the police.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When they did, they substantially downplayed the size of the protest, quoting a Metropolitan Police figure suggesting 50,000 attendees - around 10% of what was reported almost everywhere else.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "City of London Police had six - taking the total across the capital to 189.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After dedicating over 25 years to BBC radio and television output, he stands as the broadcaster's 11th highest-earning presenter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When I first spoke with him last spring, he was investigating a case of stolen plastic drinking cups worth about £70,000, and laptops worth £250,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This was on top of the 1,300 investigations each year he assisted, the 300 or so arrests in which he played a key role, and the 50 or so police operations, from stakeouts to searches, he took part in.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of those, only about 10% result in convictions.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 20 officers were in attendance on Well Road on the day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The inquiry has a maximum duration of three years, to conclude no later than March 2029, and has a budget of £65 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Glasgow drugs courier who dumped nearly £1m of cocaine during police chase ordered to repay thousands", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around 48,000 crimes were reported across Transport for London (TfL) services in 2025 - up 46 per cent against a pre-pandemic average of 16,544.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the members of Yarword's company, there were more than 400 losses of this type in 2024, compared with a handful of thefts from truck stops.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Given the most recent statistics indicate 11.2 arrests annually per 1000 people in England and Wales overall, for 0.005% of march attendees to have been arrested on any charge shows that Saturday's march was extremely safe and peaceful, and claims or predictions of \"unrest\" were nothing short of anti-leftist scaremongering", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'This proactive approach saw a 44 per cent increase in arrests last year, while shoplifting across London fell by four per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It currently sits as the fifth most-watched TV programme, and presently maintains a 90% score on review aggregator Rotten Tomatoes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three people have been charged with murder over the fatal stabbing of a 16-year-old girl in Leeds.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three teenagers have been charged with the murder of a 16-year-old girl who was found stabbed in the back in the street.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two members of the group remained outside, one sitting on a bike and the other patrolling the pavement, waving a huge machete to ward off any intervention.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three people were charged with murder today", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two males, aged 17 and 18, have been arrested and charged in connection with assault to endangerment of life, breach of the peace and weapons offences.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gunmen hijacked a car, placed a device inside and forced the occupant to drive the vehicle to a police station in Northern Ireland on Monday, prompting a security alert and the evacuation of about 100 homes.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For six of the raids, teenagers wearing gloves, balaclavas and hoodies stormed into the shops threatening violence to staff as they stuffed their bags with phones.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The man in question had a £1,000-a-week crack habit.", "score": 2.5326649999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We're describing this as a viable device so yes, we would say lives were at risk,\" he said.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scott Mills questioned over 'serious sexual offences against boy who was under 16'", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scott Mills 'probed by police over serious sex offences against teenage boy'", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The schoolgirl later died in hospital from knife wounds to her back.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The text alerted users that the line was actively accepting orders and customers would call the Vic Line number to purchase drugs.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Rapper Ashley Warren jailed after his XL bully mauls screaming pensioner to death", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bar staff laughed in face of machete robber thinking he was 'prankster neighbour'", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The disgraced BBC News presenter Edwards was handed a six-month suspended sentence after pleading guilty to three charges of making indecent images of children.", "score": 2.5207699999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Warning for millions as rising energy bills could hit £27,286 per year", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Read more: Energy bills predicted to surge by nearly £300 a year from July", "score": 5.66914, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average energy bills in the UK are also forecast to rise an average of £288 a year from July for a typical dual-fuel household.", "score": 5.51636, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July while motorists are already counting the cost of the war, with drivers paying £544 million extra for fuel since the US-Israeli bombing campaign began.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills https://t.co/JvIVvWPeg9", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills are predicted to surge by nearly £300 starting from July.", "score": 5.1947600000000005, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills are predicted to surge by £288 in July because of the ongoing Middle East war, households have been warned.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict (Yui Mok/PA)", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills are expected to soar by £288 a year from July after Donald Trump's war in Iran sent wholesale costs rocketing.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ed Miliband's 'mad plan' slammed as energy bills to rise by £288 a year from July", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills predicted to surge by £288 a year from July as rise 'unavoidable ́", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills 'to rise by almost a fifth' in just three months", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's a mad mechanism that in 2023 added 43 billion pounds to our energy bills unnecessarily.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This caused people's energy bills to drastically increase - although the Conservative Government provided financial support to all households.", "score": 4.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The forecast hike is £288 a year higher than the £1,641 cap on energy bills set for April to June after the Iran war pushed the UK's gas market past three-year highs in recent weeks.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills 'to rise by almost a fifth' in just three months https://t.co/Mf6hLucbfI", "score": 4.9398599999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills predicted to surge by nearly £300 a year from July https://t.co/h8bqxvMjCj", "score": 4.9398599999999995, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "5 million people in our country can't afford to pay their energy bills, why are they paying VAT on top of that?", "score": 4.925415, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cheap Power Plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", "score": 4.90684, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", "score": 4.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of households are being offered the chance to slash their energy bills", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister pointed to the reduction of energy bills by £117 a year for the average household, a rise in the national minimum wage to £10.85 and in the national living wage to £12.71, the start of the £1 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of households are being handed the opportunity to cut their energy bills by nearly £100 annually - with a simple change.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills predicted to surge by nearly £300 a year from July", "score": 4.66777, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills in Great Britain forecast to hit almost £2,000 a year this summer", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy price cap forecast to hit £1,929 in July but that's LOWER than feared", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be £300 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And of increasing concern is the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be by £288 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Institute of Grocery Distribution has warned that a shock spike in energy bills could heap an extra £150 on the average household's annual grocery bill.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It already has the highest inflation in the G7, and investors also fear it could embark on a borrowing splurge to protect households from surging energy bills.", "score": 4.641985, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills is forecast to jump in July after a three month reprieve following an April cut", "score": 4.62122, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lorraine Hammer, 79, was thrilled to get solar panels attached to the roof of her Ontario house so her costly energy bills would drop in price, but instead she's been left shelling out more cash for nothing in return.", "score": 4.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", "score": 4.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of households are being offered the chance to slash their energy bills by almost £100 a year - by shifting when they use electricity.", "score": 4.562435, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ofgem has announced that the energy price cap will fall from £1,758 to £1,641 in April for the average household.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average pump price of a litre of unleaded petrol in the UK stood at 148.8p on Monday March 30, up 4.6p week on week and a jump of 16.6p, or 13%, since March 2, according to figures published by the Department for Energy Security & Net Zero (DESNZ).", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Back in September 2022, PM Liz Truss tried to shield households by capping average energy bills at £2,500.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This follows further announcements made on March 16 including cutting the energy price cap until the end of June, extending the cut in fuel duty until September, and providing £53 million for households that are most exposed to heating oil rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to £2,394 on average.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Government estimates that a typical UK home could save £70 to £110 a year on their energy bills from plug-in solar, meaning a family could make their money back in around four years.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If customers commit to every Sunday Saver challenge and flex their energy use, they could achieve an average of 266 hours of free electricity on Sundays, and £96 on their annual energy bills.\"", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Household energy bills could also increase by £288 a year in July, according to latest forecasts from analysts Cornwall Insight.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They talk about average household energy bills falling by over 100 pounds from tomorrow.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cornwall Insights estimates revised July energy price cap at £1,929, a rise of £288 on April's price cap.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those who completed every challenge throughout 2025 built up an average of 266 hours of free electricity across the year - worth around £96 off their annual energy bills.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a post on social media, they pointed out that the Ofgem energy price cap is dropping on Wednesday by 6.7%, and this means your bills may drop too.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest forecast by Cornwall Insight is a slight fall from its forecast earlier this month, which had seen the energy price cap surging to £1,973 in July.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When it comes to the energy needed to operate machinery or equipment, 78% of small businesses said they were affected by rising energy prices, with 41% of respondents saying they would have to pay more than £1,000 extra a month to cover energy bills.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government changed the law so that wind farms no longer have to provide expensive and time consuming like for like compensation for the birds they kill.", "score": 4.543855, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average council tax for a typical band D property in England is currently £2,280.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The typical household will spend £1,641 a year on gas and electricity bills, according to the regulator Ofgem's energy price cap.", "score": 4.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prosecutors had argued that Jones and Dowling bribed Public Utilities Commission of Ohio chair-to-be Sam Randazzo for legislative and regulatory favors, most notably his work championing House Bill 6, a $1 billion bailout for two aging FirstEnergy-affiliated nuclear plants at the center of the bribery scheme.", "score": 4.49814, "claim_types": ["quantity", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A typical home with rooftop solar panels could save around £500 a year on its energy bills, according to Government figures.", "score": 4.4978, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills forecast to surge by £288 a year from July due to Iran war", "score": 4.491165, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There are fears that the conflict in the Middle East will trigger a crippling hike in energy bills in Britain this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As part of its local elections campaign, the Conservative Party have also called for a cut in VAT on domestic energy bills and the scrapping of green taxes on power generation, saying these measures will cut bills by £200.", "score": 4.431615, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of EDF Energy customers can cut their energy bills by up to £96 a year with a simple change", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Conservatives are urging Ms Reeves to slash household energy costs by £200 immediately by taking VAT, taxes and levies off energy bills.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"The Government must adopt the Conservatives' Cheap Power Plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny. We would cut bills for everyone rather than taxing working people to fund yet another bailout for people on benefits.\"", "score": 4.398595, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The energy price cap is the maximum amount of energy suppliers can charge you for each unit of gas and electricity, as well as the standing charge to have your home connected to the energy grid if you're on a standard variable tariff.", "score": 4.386215, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills will increase by almost a fifth when the price cap is next updated in July, according to energy market experts.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Ofgem energy price cap is expected to leap by 18 per cent after June as households brace for the impact of spiralling oil and gas prices.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills are not yet increasing in line with the crisis in the Middle East but are expected to go up later in the year as a result.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills expected to rise again in July, with forecasts predicting an 18% increase", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Treasury is set to rake in billions from higher VAT on fuel and the windfall tax on oil and gas.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills 'set to soar by £288 more a year' due to Iran war https://t.co/68uq6ZPRQm", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills could increase by £288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem's price cap, according to the latest forecasts.", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills could increase by nearly £300 a year in July due to the Iran war, experts have warned.", "score": 4.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shadow energy secretary Claire Coutinho said: \"The Government must adopt the Conservatives' cheap power plan to cut bills by £200 immediately by taking VAT, taxes and levies off energy bills without costing taxpayers a penny.", "score": 4.349745, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Latest forecasts by experts at Cornwall Insight predicted that Ofgem's energy price cap from July to September will be £1,929 for a typical dual fuel household.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Distraught California homeowner left $80,000 out of pocket after trying to install solar panels to lower her energy bills", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This Bill would stop the lawfare and free our oil and gas industry to start drilling, creating new jobs and bringing in revenue to get energy bills down.", "score": 4.33582, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The government is under mounting pressure to announce what help it will provide with energy bills from the summer onwards as households are facing a huge surge due to the Middle East war", "score": 4.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.5}} -{"sentence_text": "Sir Howard, a former deputy governor at the Bank of England, warned that 'splurging' money on a big energy bills bailout could panic international investors and send borrowing rates even higher.", "score": 4.276675, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of households are being given the opportunity to reduce their energy bills by nearly £100 annually - by adjusting when they use electricity.", "score": 4.240835, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Today, millions of people up and down the country will see energy bills go down by £117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this Government has taken.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The energy price cap that governs most people's bills could be less than previously feared from July, according to a respected forecaster.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cornwall Insight has published its latest forecast for the energy price cap, and claims household energy bills will increase by almost a fifth in July.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cut to the energy price cap comes on top of the £150 Warm Home Discount that around six million families will have received this winter following its expansion last year.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The energy bills price cap is expected to increase in the summer by £332 to £1,963 annually", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While Ofgem's latest price cap will reduce energy bills by £117 on average, this saving will be more than cancelled out by increases elsewhere.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "From tomorrow, the new energy price cap kicks in and will save the typical working family around £117 a year off their energy bills.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", "score": 4.224345, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Today, millions of people up and down the country will see energy bills go down by £117, wages go up for the lowest paid, and more support will be available for people who need it most - because of the decisions this government has taken.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax bills will rise by as much as 15 per cent on April 1.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tomorrow's change to the energy price cap comes alongside a raft of annual rises for households, including hikes to water, broadband and council tax bills.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She believes thrift cuts her energy bills by almost two-thirds.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although UK energy bills have not yet risen because the price cap was set beforehand.", "score": 4.186764999999999, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Catch up now on yesterday's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to @ClaireCoutinho the shadow energy secretary, who says the Government could cut your energy bills by drilling more in the North Sea, but chooses not to...", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "This election will boil down to a straight choice for the people of Scotland - a permanent cost-of-living crisis under Westminster or lower energy bills with independence", "score": 4.150510000000001, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Are you saying it's likely that energy bills don't rise after July?\"", "score": 4.1384050000000006, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The BRC said the Government could fuel further inflation if it fails to listen to calls for relief from looming costs, including red tape on workers' rights and green levies on energy bills.", "score": 4.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Miliband is slamming his foot down on the net zero charge, and driving us into a ditch.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, some fixed tariffs can be lower than the energy price cap, so it might be worth shopping around for the best rates, according to Martin Lewis.", "score": 4.088055000000001, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The rise in energy bills is likely to spark fears among economists that inflation will surge in the middle of the year as a chain reaction of higher prices dampens consumer demand and knocks GDP.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The exact discount you'll receive on your energy bills will depend on the size of your household and the type of household, as well as the location, building type, how you pay your bills, and how much energy you regularly consume.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", "score": 4.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Department for Energy Security & Net Zero publishes monthly figures on the average price of heating oil.", "score": 4.0467200000000005, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Recalls yesterday from opposition politicians for the government to remove VAT from household energy bills for the next three years.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But people will know that whatever happens over the next three months in the Middle East, energy bills will be lower here.", "score": 4.026165, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is growing pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Principal consultant Dr Craig Lowrey said a surge in energy bills was \"pretty much unavoidable\" as international market changes will now have been \"baked in\" to forecasts.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kemi Badenoch has been talking about this for a few days, but she also keeps saying it's not actually going to reduce bills even if we do drill.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rachel Reeves thinks our net zero targets to the answer to the economic crisis.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kemi Badenoch has urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Household energy bills set to soar by £288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills set to soar by £288 a year from July as Iran war sends wholesale costs rocketing - with Brits warned of an even bigger hit in the autumn https://t.co/8LhrGd37kQ", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Households looking to cut their energy bills could get free electricity on four days over the coming weeks under a scheme from EDF Energy.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But they can know that from tomorrow, because of the energy price cap, bills will come down rather than going up.", "score": 3.911715, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This will pile more pressure on Rachel Reeves to provide an energy bills bailout package for hard-pressed Brits.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "What I can point to to go back to my original point is, you know, people thinking about what's happening tomorrow, they know that their energy bills will come down.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer will chair a meeting of the Cobra crisis committee to consider the impact on households and the wider economy from soaring energy costs.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "🗓️ TOMORROW's energy price cap fall will put more money back into the pockets of families across #CardiffEast.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "MSE shared a warning ahead of April 1, reminding Brits that energy bills are about to change.", "score": 3.88572, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But equally, I think if there are big rises in energy bills to come, and we don't yet know if there are, then the government might need to go further in terms of providing targeted support to some households.", "score": 3.861005, "claim_types": ["correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Cornwall Insight said a hike in energy bills this summer is 'pretty much unavoidable' - and they warned an even greater hit to household finances could come in October.", "score": 3.851805, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy bills could increase by £288 a year in July as soaring wholesale costs caused by the Iran war are set to push up Ofgem ́s price cap, according to the latest forecasts (Jacob King/PA)", "score": 3.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So I think our tax system needs a whole bunch of reforms and I would start with taking VAT off of energy bills and I would add it to flying to keep it fiscally neutral.", "score": 3.7754250000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Absolutely, of course, it should be used to alleviate the burden that is being faced by motorists and indeed households right now, but what would be far better for the country would be if they were to remove the windfall tax, remove the energy profits levy from the oil and gas industry so it could generate yet more revenue from the treasury.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Greg Marsh, CEO of Nous.co, said: 'This calculator shows how quickly lower energy bills are cancelled out by other rising costs.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He said: \"With the energy price cap coming down in April, Sunday Saver continues to give customers a simple, practical way to cut costs and save even more when they need it most.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "On the environment, both offshore and onshore wind farms encroach far more on the British coastlines and countryside, and the species that live there.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The increased windfall tax take was based on analysis of Office for Budget Responsibility figures from 2025 by Chris Wheaton, of financial services firm Stifel.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Tune in now to today's Daily T where @timothy_stanley and guest co-presenter @RachelSJohnson speak to shadow energy secretary @ClaireCoutinho who says the Government could cut your energy bills by drilling more in the North Sea....", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Cornwall Insight has published its latest forecast for the energy price cap, ahead of a fall in gas and electricity bills coming into effect tomorrow.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "President Donald Trump has apparently told aides he is considering ending his military campaign even if Tehran does not reopen the critical Strait of Hormuz - through which around a fifth of the world's oil supplies normally pass.", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Welsh Conservative spokesperson said \"this one-off payment will only go so far for families already under pressure\", adding that the UK Conservatives had launched an enhanced Cheap Power Plan to cut energy bills by £200 to help families with the cost of living.", "score": 3.739565, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The energy price cap will fall on April 1 (Picture: Getty Images)", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And are you saying it is likely then that energy bills don't rise after July?", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There should be no mass subsidy of domestic energy bills.", "score": 3.712335, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "You know, I think a lot of people will be seeing the news from the Middle East and will see the instability and the uncertainty and might be worried about what's going to happen to energy bills in the months ahead.", "score": 3.6825799999999997, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For example, one thing the government could do that would be short of the probably unaffordable universal support provided in 2022, would be some sort of targeted discount on energy bills for low income households.", "score": 3.661095, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Jørgensen said although he doesn ́t foresee a repeat of the 2022 natural gas crisis where companies reaped huge profits from a massive gas price hike, a one-time \"windfall tax\" on such companies \"is a possibility.\"", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The National Emergency Plan for Fuel is produced by the Department for Energy Security and Net Zero.", "score": 3.61976, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "📉 Our @UKLabour Government is taking decisive action to lower energy bills.", "score": 3.612245, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yeah, I don't think we should have VAT on our energy bills at all, because VAT is a luxury tax.", "score": 3.5980049999999997, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But what we can do is to shield people from those prices on their energy bills through the energy price cap that I've talked about, and also by making contingency plans for the future.", "score": 3.566845, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Unlike households, these businesses are not shielded by an energy price cap and have more energy requirements, according to Novuna.", "score": 3.562025, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Through its partnership with SGN, they've been handing out energy packs to support people in fuel poverty.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The forecast Cornwall insight has raised its forecast for the July energy price cap.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The estimates come as Sir Keir Starmer hosts another Cobra emergency meeting over the looming hit from the Iran crisis, with the Tories insisting he take action instead of holding more talks.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Sir Keir Starmer is hosting another Cobra emergency meeting today over the looming hit from the Iran crisis", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kemi Badenoch urged the PM to drop his 'bonkers' ban on new drilling in the North Sea.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Energy consultancy Cornwall Insight said a hike in Ofgem's energy price cap was now 'effectively unavoidable'.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy and Net Zero Secretary Claire Coutinho was questioned on #BBCBreakfast about plans to annually award licences for oil and gas projects in the North Sea", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Kemi Badenoch and other figures on the right have shouted about exploiting North Sea gas instead.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Reform said Labour had undermined energy security with net zero madness and the Welsh Conservatives said the help would only go so far for families already under pressure.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Speaking to the Press Association on a visit to Hertfordshire, she said the Tories would cut VAT off energy bills for three years and scrap \"unnecessary\" green levies.", "score": 3.541385, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gilts suffer worst month since Truss mini-Budget as IMF warns UK faces a gas shock as bad as the energy crisis", "score": 3.5163599999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Separate figures showed the collective debt of two million British households to their energy supplier reached a record high of £4.55bn at the end of last year, according to official data published by Ofgem, after climbing by £7m over the final three months of 2025.", "score": 3.5163600000000006, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform has also announced tax cuts on VAT on domestic fuel and green levies, including the Carbon Price Support and Renewables Obligation, but has not said how it would fund any of these cuts.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Martin McCluskey, the Minister for Energy Consumers, said: 'Action taken by this government on bills will see the energy price cap coming down from tomorrow.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Martin McCluskey, Minister for Energy Consumers, said: \"Action taken by this government on bills will see the energy price cap coming down from tomorrow.", "score": 3.4269350000000003, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The party claims more drilling would secure cheap, reliable energy and cut energy bills - in addition to making Britain more resilient to global energy supply and price shock.", "score": 3.4269350000000003, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Keir Starmer last night appealed to oil and banking executives to help Britain deal with a looming 1970s-style energy shock as he warned: 'The Government can't do it on its own'.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Addressing leading figures from multinationals, including Shell, BP, Centrica and HSBC, the PM acknowledged public fears that the economic impact is 'going to hit them and their families and their households... and I think probably uppermost in their minds at the moment is energy bills, petrol and also food prices.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Traditionally, tumble driers are one of the biggest energy eaters - costing households as much as £275 in electricity a year, which Katherine is now able to save.", "score": 3.4061450000000004, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to new data, since the Iran war, 82% of UK small businesses have already felt the impact of rising energy prices.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, it has twice the power output of the above and will last for twice the time so the real comparison figure is one fourth - £10bn - and, of course, it will kill no wildlife.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK Chancellor earlier this month confirmed that more than £50 million will be provided for low-income families who have to heat their homes with oil.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The closure of the Strait of Hormuz has put pressure on global fuel supplies, with diesel reaching more than $3 a litre in Australia and more than 500 service stations suffering from petrol or fuel shortages in NSW and Victoria.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "No, I think people should go about their lives as normal, knowing that the government is taking action to bring energy bills down.", "score": 3.363845, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "This would be in contrast to the universal support provided by the previous Tory government in 2022, when Russia's invasion of Ukraine caused energy bills to soar.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform used a press conference at Heathrow Airport today to criticise net zero policies and announce their plan to scrap Air Passenger Duty on short-haul flights if they won power.", "score": 3.299735, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Reduce by 50% - gain the maximum 16 hours weekly", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He said: \"With around 22 million households on their supplier's Standard Variable Rate, most are paying the maximum allowed by the regulator. Check your current contract, and if you haven't switched in the past year, it's likely you'll be free to leave - and you could save up to £917.\"", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about £40 from a DIY store, which can be used to water the garden rather than using a hosepipe.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "THE latest forecasts suggest household energy bills are set to soar as a result of wholesale costs caused by the Iran war.", "score": 3.2544399999999998, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Conservative leader Kemi Badenoch said her party's Get Britain Drilling Now Bill would \"stop the lawfare and free our oil and gas industry\".", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The energy price cap, which was announced by Ofgem before the Iran war began, will see costs fall between April and the end of June - but that will change again in July.", "score": 3.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Dickinson also flagged charges added to businesses' energy bills, echoing criticism from Marks & Spencer boss Stuart Machin last week, who said these were 'just not sustainable'.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Indeed, prices have nearly doubled since the start of the war.", "score": 3.17364, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In addition, more than three in four small business owners said business worries keep them awake at night with concerns over economic volatility and geo-political uncertainty reaching a record high (52%).", "score": 3.134055, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Respected energy analyst Cornwall Insight has said electricity costs for businesses have increased by between 10% to 30% since the conflict began in late February, while gas prices have soared by between 25% and 80%.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Government's own numbers say that 93 per cent of the oil and gas which could be extracted from the North Sea fields has been extracted.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The strait usually carries 20% of the world's oil and gas supplies and since it has been closed the global economy has been hit hard with soaring fuel prices.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said the EU's executive arm is preparing a string of measures designed to help families and businesses weather the huge spike in oil prices that have resulted in about a 70% price hike for gas and 60% for oil in Europe.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'They now make up over half our bill.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Strait of Hormuz, which typically handles roughly one-fifth of global oil supply, has seen traffic collapse by as much as 95 percent since the conflict began, according to maritime intelligence estimates, with shipping severely curtailed amid security threats and mounting restrictions tied to Iran's actions.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The impact here of a war more than 7,000km (4,300 miles) away is being felt strongly - with the country's jeepney drivers among the worst affected.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started Feb. 28 when the U.S. and Israel attacked Iran.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "FRANKFURT, Germany (AP) - Europe's inflation rate rose to 2.5% in March, according to official figures released Tuesday, as the Iran war sent fuel prices sharply higher.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's only half the job. They left wholesale prices to be driven by global markets and in the last energy crisis, 2022, wholesale prices over took retail and it bankrupted half the players in the energy market.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Its blockage and the disruption to supply, combined with attacks and stoppages at energy infrastructure across the Middle East, has sent gas prices soaring and the cost of crude surging past 100 US dollars a barrel since the conflict started on February 28.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Conservatives have called on the Government to take urgent action to support all households and businesses by cutting VAT, taxes and levies off energy bills.", "score": 3.074775, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He also said that the UK has the most expensive industrial energy prices in the world.", "score": 3.074145, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Before the Government introduced their new fuel-relief package, they were taking in 1million euro EXTRA a day from their cut of price increases.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Make UK estimate that the average cost to a manufacturer will be £100,000, rising to £250,000 by 2030.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And when it comes to energy, consultancy Cornwall Insight has said that bills could go up by £332 in July when Ofgem sets the new price cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the end, the final cost was closer to £27billion, but we can't even afford that today.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Even when you look at the means-tested State pension - which is for people who reach that age without having sufficient social insurance contributions to qualify for a contributory pension, so we know those people are on low incomes - only 56 per cent of those qualify for fuel allowance.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Shutting down the North Sea means we are losing out on £25 billion in tax receipts that we could use to cut bills and reduce the cost of living.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Filling up: Brent crude has reached nearly $117 a barrel as prices for petrol and diesel continue to climb amid fears of a repeat of the 2022 energy crisis", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Small businesses across the UK say that the estimated hike in energy prices following the war in the Middle East will cost them an average of £2,273.90 a month, coming to a whopping £27,286 over a 12-month period.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @DailyTPodcast: By 2035, we would only need to import 6% of liquified natural gas from abroad if we drilled in the North Sea...", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Opposition leaders argue the €250million fuel-relief package announced this week does not go far enough, while one leading economist said wealthy people driving 'big SUVs' will benefit most from the measures.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since the start of the war, the EU ́s bill for imported fossil fuels has jumped by 14 billion euros, according to Jørgensen.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Diesel went from about €1.72 per litre to €2.30 cent per litre, meaning an increase of 11 cent per litre in the 23 per cent VAT take.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They said rising energy prices mean they will pay an average of £753.56 more each month for transport, travel and logistics and an average of £734.42 more each month to heat their office/workplace.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"This is why people are now concerned that there's a developing shortage of diesel and jet fuel - jet fuel prices have gone up 50% since the war began and I think they'll go up further.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Chancellor can expect a multibillion-pound windfall in tax as the war drives up energy prices at petrol pumps", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Mumbai - a city of more than 22 million people - as many as a fifth of all hotels and restaurants fully or partially shut in the first weeks of March.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The concept of fracking has the support of 41 per cent to 30 per cent opposed.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Farage stated that household bills have been 15-20% higher for \"the best part of two decades\" due to these subsidies.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nuclear projects currently face up to eight separate regulators, multi-year planning battles, and a legal environment where any local challenge can derail nationally significant infrastructure for years.", "score": 2.93752, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Because this is the second one of this decade already, you'll probably realize, it's only 2026, this is our second one, there'll probably be a third one for all over.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nearly everyone in England, Wales and Scotland is benefiting from the cut irrespective of their tariff, although the amounts will vary between households.", "score": 2.88131, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A bath typically uses 100 litres of water while taking a four-minute shower with a £20 water-saving shower head uses just 32 litres.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Every kWh delivered by green energy is less use of oil / gas.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He explained: \"If supplies are cut by 20%, then someone is using 20% less.\"", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A washing machine requires up to 150 litres of water per wash.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mistreatment or hostility will only slow communication and resolution.", "score": 2.867685, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", "score": 2.8610100000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the UK petrol stations have already started to run dry, with closures reported from as far as Northern Ireland to Essex at the start of this week.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "From mortgage rates to the price of fuel, cost of living pressures are increasing and there seems to be no signs of relief anytime soon.", "score": 2.8194, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At the same time, refusing to fully exploit North Sea oil and gas just forces us to import dirtier energy, lose jobs, and weaken our economy.", "score": 2.8109650000000004, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts fear that Brent crude could reach all-time highs of $150 a barrel if the conflict continues.", "score": 2.78611, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With conflict in the Middle East driving volatility in the energy market, the cheapest tariff is now priced at a similar level to the upcoming cap rather than saving you anything.", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, the attacks on energy infrastructure in the region have only served to push prices higher.", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The annual cost of essentials, including council tax and water, will increase by more than £200 from April even before the economic impact of the Iran war is felt by UK consumers.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, there will barely be a chance to enjoy the savings, amounting to around £10 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said that the fuel increases, especially the record increase for diesel, would have a devastating result on the cost of logistics and transportation, with knock-on effects on inflation in coming months.", "score": 2.7756499999999997, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir said he was focused on 'de-escalation' of the crisis that has led to the blocking of the Strait of Hormuz, which normally carries 20 per cent of the world's oil.", "score": 2.76525, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Green energy is the cleanest and cheapest energy available.", "score": 2.751055, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If your provider can't install one, they must offer you an 'assessed charge', which could save you money. Around 2.5 million households are also eligible for social tariffs, with average discounts of around 40%.\"", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The average figures quoted for additional monthly costs are national averages that include those not affected by price rises.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In terms of unit costs under the April cap, the maximum that households on a default tariff are paying is 24.67p/kWh for electricity and 5.74p/kWh for gas, with standing charges of 57.21p and 29.09p respectively.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Water bills in England and Wales are also due to rise, by an average of £33 a household from April, up 5.4% to £639.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some households could also save costs by installing a water meter - those who switch typically save up to £100 a year.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "BT, EE, Plusnet and Virgin Media are all hiking broadband prices by £4 a month, Sky by £3, and Vodafone by £3.50 - adding nearly £50 more per year to bills.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The estimated 22 million households still languishing on their supplier's Standard Variable Rate are paying the maximum allowed by the regulator.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At around £400, these panels are much cheaper than traditional rooftop solar and can be put on balconies, in outdoor spaces or fixed to an outside wall that catches the sun.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Food price inflation came in at a relatively moderate 2.4% while services, a broad category ranging from medical care to haircuts, rose 3.2%.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nuclear power's safety record, measured by deaths per unit of energy produced, is better than oil, gas and coal, and comparable to wind and solar.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While 16% of businesses said they may need to reduce staff numbers, 34% are looking to automation to cut long-term costs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This crucial waterway has global significance for Asia, serving as the gateway for 20% of global Liquified Natural Gas (LNG) and 25% of seaborne oil.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the UK does have among the highest industrial energy prices in the developed world, this is primarily because the country is more reliant on gas for generating electricity compared to other European countries.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Petrol and diesel combined come to €1,195,000 a day.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With 80 per cent of regional energy currently dependent on imported oil, the crisis has accelerated the push for local clean energy generation.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The economy barely grew at the end of last year, official figures confirm, leaving it vulnerable to a further downturn triggered by the latest energy price shock.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is worth noting that current wholesale costs remain well below the extremes of 2022, which means that, despite the turbulence, the scale of this crisis is not yet comparable to the price shock households faced three years ago.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'There is some relief in the timing, summer is when energy demand is at its lowest, which should soften the impact on household energy expenditure.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While reducing emissions is a factor, for these nations responsible for just 0.03 per cent of global conditions, the primary driver is energy security.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over two in five said they are likely to raise their prices; 20% said they would reassess their funding arrangements with lenders to free up more working capital; and 17% said now was the time to explore renewable or green energy options to lower costs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "On average, those taking part currently secure approximately 18 hours of complimentary electricity monthly, based on company figures.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has approximately 1.2 billion barrels of onshore crude inventories, Kpler estimates.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The additional revenue includes billions of pounds levied from North Sea oil and gas profits, power generators and VAT on petrol sales.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gas and electricity bills are set to fall by £117 a year on average from April 1, to £1,641 a year for a typical household.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Because back then the amount of goods - not just oil but also fertiliser, aluminium, all sorts of other products - was a lot less than what we are dependent on today.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gas prices are climbing just as quickly, and with 26million UK homes relying on boilers, we're more exposed than most.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Fewer than 30 per cent of people in receipt of the State pension get fuel allowance.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Production has been falling for a long time - last year, production was about 20 per cent of what it was in 2000, near its peak.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On average, customers taking part earn around 18 hours of free electricity per month.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Customers have racked up more than 20.5 million free hours of electricity", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It's always hard to be 100 percent, but we can detect more than 90 percent of what's happening in real time.\"", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Oil has almost doubled from around $60 a barrel to almost $120.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the US, it takes an average of eight years for a hydroelectricity facility to become fully licensed.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mobile customers can save an average of £304 switching from a handset contract to a SIM-only contract.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Electricity is measured in kilowatt-hours (kWh) - with one unit equivalent to a 100-watt light bulb running for 10 hours, or a 200-watt fridge for five hours.", "score": 2.6831300000000002, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We need far more oil and gas as part of our overall national energy situation.", "score": 2.6746749999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The Strait of Hormuz, through which about one fifth of all global oil traded passes, has been a contentious point in the conflict.", "score": 2.67238, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, instead, the first response of the government seemed to be to to whip up a storm about profiteering, which was, you know, extremely unhelpful and, you know, annoyed petrol retailers and actually put some of their staff at risk of, um, verbal and physical assault.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was no reduction in the home-heating oil tax, which Age Action Ireland has predicted will contribute to a 'significant rise' in poverty amongst elderly people.", "score": 2.649215, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Experts are warning that when the Government's quarterly price cap comes in at the end of June, bills are expected to jump by £332 to an average of £1,972 a year.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "What they never add is that they'll rise by almost 300 pounds come July.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, I mean, for example, we had the publication this morning of the latest estimates from Cornwall Insight, a very sensible people who forecast what the off-jam cap might be in July, and they were predicting an 18% rise, which would be clearly very painful, but we're nowhere near as big as the rises that we saw in 2022.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Iran is blockading the Strait of Hormuz in response to air strikes by Israel and the US, preventing about 20% of the world's oil trade from passing through.", "score": 2.648555, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The biggest . challenge] is just the lack of awareness of our solution, but that's really flipped in the last nine months. We still keep our 40-50% tax credit, while wind and solar [equivalents are sunsetting,\" says Davies, referring to the Trump administration eliminating Biden-era federal subsidies for solar and wind energy ventures.", "score": 2.641985, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"There is almost no crude oil arriving\" in Asia currently, and no viable alternatives to energy imports from the Middle East while \"inventories are being depleted\", Maynier said.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Zero Carbon Analytics energy transition researcher Amy Kong said small economies were already spending huge proportions of GDP on fuel imports.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The energy experts warned a rise in Ofgem's price cap in July was 'effectively unavoidable' with rocketing wholesale prices over March now locked into the calculation and little chance that they will fall below pre-war levels in the coming weeks.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other parts of the world in Asia, they're having four day weeks and rationing and stuff like that already because they depend on the Middle East and Gulf states for their oil supply, we don't.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, with gas prices soaring once again - before they even had a chance to recover from the spikes generated by the Ukraine war - it is becoming blindingly obvious that solar and wind power are the way to go.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Labour may have lost grip of the national spirit.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "£400 plug-in solar panels will quietly change the whole country", "score": 2.603815, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The deal hinges on households cutting their usage during peak weekday hours - typically between 4pm and 7pm - when demand on the grid is highest.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He now pays just £70 a month on gas and electricity bills.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over four weeks, that adds up to a maximum of 64 free hours.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But if you wash using the eco-mode setting it can be just 50 litres.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nearly a third of homes in Ceredigion and Powys are reliant on oil, as well as 24% in Carmarthenshire.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That amounts to €1,045,000 per day, based on around 9.5million litres of diesel being sold per day in March 2025.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 7% of households in Wales depend on oil as their primary heat source, but there are much higher proportions in rural communities.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is a 7 per cent drop.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Through the Discretionary Assistance Fund, the maximum award for heating oil has increased from £500 to £750.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That is £148 a month on average - 48 pc more than Gloria.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That equates to roughly £6.6 million in total bill savings", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We've just had another stark report out from the UN detailing just how real and urgent the climate crisis is. Ditching green policies that lower bills, reduce pollution and make our communities safer and healthier, is exactly what I'd expect from a party funded by the fossil fuel industry and billionaires.\"", "score": 2.5649800000000003, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most households in England and Wales will see an increase of about 5% in their council tax, while in Scotland bills will go up by between 4% and 10%.", "score": 2.55971, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fuel costs are the airline group's single biggest expense and accounted for around 30% of its spending in recent months, the spokesperson added.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This all comes with the price tag of £49bn in today's money, making it the most expensive reactor in the world.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average price of unleaded petrol in the UK has climbed to its highest level since May 2024 (Simon Belcher/Alamy)", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's why the nuclear Nimby's safety and environmental concerns must be met head-on.On safety, the accidents that shaped public perception involved older designs and, in two cases, catastrophically outdated regulatory cultures.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"However, the key word is responsible. You can't put something up just for the sake of harnessing the energy, while at the same time doing harm . or potentially doing harm to the environment and the human and non-human life that depend on that environment.\"", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "It is perhaps also worth pointing out to the anti-nuclear zealots like John Swinney that nuclear reactors produce the products required for medical procedures like CT and PET scans and radiotherapy treatment for cancer patients.", "score": 2.5528750000000002, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To qualify for the Council Tax Reduction Scheme residents need to be receiving one of the following, and have less than £16,000 in savings and property:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "All in all, her energy saving tricks have cut her monthly bills in half to just £100, she believes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409m for diesel and £135m for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They could total around £12billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That is set to rise by at least €117million this year, with a new rate for carbon tax to be introduced in May.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And according to estimates, the Government was taking in more than €1million extra per day on petrol and diesel VAT alone, ahead of the new relief package, compared to before the Iran crisis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Petrol prices went from about €1.73 cent per litre to €2 per litre, meaning a VAT increase of 5 cents per litre, according to UCD energy economist Ciarán Mac Domhnaill.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That equates to an extra €150,000 per day, based on the CSO's record of around three million litres of petrol sold per day in March 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The CSO's report noted older households benefited the most from temporary supports in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It would represent a £288 rise from the cap set between April and June.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shadow energy secretary Claire Coutinho urged the government to capitalise on North Sea oil supplies as she suggested it could yield £25bn more in tax receipts, which could be used to support households through the crisis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Analysis in The Times has suggested that the government's levies on energy companies' profits was making the government around £20m more a day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cornwall Insight said its prediction for the Ofgem's price cap from July to September now stands at £1929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, this is less than people were originally promised by the Chancellor, as the cut was expected to be around £150.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Octopus Energy, the UK's largest energy supplier, has seen a 54 per cent jump in solar panel sales since the start of the Iran conflict as households look to protect themselves from the scourge of soaring gas prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409 million for diesel and £135 million for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Read more: Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's now predicting it will be 1929 pounds, almost 300 more than its previous forecast.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But their pump prices are slipping like a third higher than they were at the start of the year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Coutinho said: \"Shutting down the North Sea means we are losing out on £25 billion in tax receipts that we could use to cut bills and reduce the cost of living.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under the cap fell by 7% from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shipments from Yanbu have surged to around 5 million barrels per day of crude, along with additional refined products, offering a critical - though incomplete - offset to the disruption of roughly 15 million barrels per day that typically move through the Strait.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million a day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The RAC has also suggested the Government could earn an extra £2billion from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Industry experts Cornwall Insight hiked its latest forecast for Ofgem's price cap by 18% to £1,929 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cap is actually due to fall by 7% to an average £1,641 a year from tomorrow thanks to measures taken by Chancellor Rachel Reeves in the autumn Budget.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average price of jet fuel rose to nearly $200 (£151.45) a barrel on 20 March, more than double what it was in February, according to the latest International Air Transport Association figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The study finds that nuclear generation at Torness has been more than £2 billion cheaper than the market baseload price over this period.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On drilling for oil in the North Sea, Britons are supportive by 57 per cent to 15 per cent against.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On average, participants currently earn about 18 hours of free electricity per month, according to company data.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Power supplier EDF Energy is launching four \"free electricity\" Sundays this spring through its \"Sunday Saver\" initiative, offering customers the chance to bank up to 64 hours of complimentary power over the coming month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The most engaged participants in 2025 secured an average of 266 hours free throughout the year", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "82% of UK small businesses have already felt the effects of rising energy prices (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The rise in marine power generation is happening at a time when, across the Great Lakes, electricity prices for residential and industrial consumers have surged.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The current there gets to about 2.3 to 2.5 knots, which is pretty slow for turbine technologies. But it's very easy for Vivace to harness that power,\" he says.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Northern Ireland rates are due to increase between 1.96% and 4.5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Hundreds of licences issued between 2010 and 2024 have delivered the equivalent of just 36 days' extra gas.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While predictions have dipped slightly in the past few days - £44 since 19 March - the forecast still represents... pic.twitter.com/Q2hJm3zDz8", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £33; Potential savings: £100", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price 'hike': minus £117; Potential savings: £338", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Seventeen commodities vessels crossed the the strait over the weekend, 12 of them on Saturday, making it one of the busiest days for crossings since March 1, according to Kpler.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year's energy tax yield breaks down to €2.737billion in levies for petrol and diesel, as confirmed in response to a parliamentary question from Independent TD Carol Nolan - €545million in VAT on gas and electricity, Finance Minister Simon Harris said in response to queries from Sinn Féin TD Pa Daly and €1.174billion in carbon taxes, according to figures from the Government's Tax Strategy Group (TSG).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy prices increased 4.9% percent in March compared to a 3.1% decline in February, Eurostat figures showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Watching the pennies: Energy prices are set to rise from July - but the forecast has been reduced from what was previously expected", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While this would still represent a £288 or 18 per cent rise from April's cap, it is £44 lower than Cornwall Insight's previous prediction of £1,973 per year, made on 19 March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under the cap fall by 7 per cent from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And by the way, it was helping the Tories had decided to jack up the tax rate to something like 75% for North Sea sending a major disincentive.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to £1,973 in July.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In March, flows were about 3.8 million barrels a day, above February ́s 3.2 million but still below the mid-2023 peak of 3.9 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said one day a week of working from home would 'save about a fifth, or around 20 per cent, of fuel consumption'.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or £117 a year, to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, esteemed energy analyst Cornwall Insight has projected that the regulator's price cap for July to September will now be £1,929 for a typical dual fuel household - a rise of £288 or 18% on April's cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Heating is expected to add a further £734.42 each month (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These new findings come at a time when Novuna Business Finance's tracking research revealed the growth outlook of UK small business owners was already fragile, with just 27% predicting growth for the first three months of 2026.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When it came to travel, transportation and logistics costs, 21% of small businesses expected energy costs each month to rise by more than £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The much maligned Hinkley Point C nuclear power station is now reckoned to cost near £40bn.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Government has announced a £53 million package of support for heating oil customers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Diesel has climbed to an average of 182.77p a litre, taking the cost of filling a typical 55-litre family car to over £100 for the first time since early December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A full tank of petrol is setting drivers back £84 after pump prices climbed to an average of 152.83p.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Petrol prices at supermarket forecourts were an average of 7.6p a litre lower last week than at other sites, the AA said, compared with a price difference of 5.4p before the conflict in the Middle East began late last month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is the highest price for unleaded petrol since May 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Diesel peaked at 199.2p per litre in July 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motoring research charity the RAC Foundation estimates the increase in road fuel prices have led to motorists paying a cumulative additional £544 million for petrol and diesel since the start of the conflict.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Switching can save broadband customers an average of £329, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In some - albeit temporary - good news, the price most households pay for energy will fall by 7% from April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fixed energy deals that can save you money have been disappearing from the market, with the best fixed tariff at the moment coming in £9 above the April price cap.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For July, it predicts that the cap will increase from £1,641 to £1,921, but its confidence in this prediction is very low.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This left 22 million households lumbered with variable-rate deals.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The TSG's estimated carbon tax take for this year is €1.291billion, a rise of €117million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "From April 1, the energy regulator's price cap, which controls how much you can be charged, will drop from £1,758 to £1,641, which is a reduction of £117, fixed until the end of June.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This means that a typical household using electricity and gas will see its bills slashed by £117 for three months, or around £10 per month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, forecaster Cornwall Insight has reduced its estimate, cutting it to £1,929 per year for a dual-fuel household with average usage.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'The size of the increase depends on the duration of the conflict.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They went slower and now we've got about, I don't know, about three billion barrels of equivalent reserves which isn't that much.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yesterday, there was little sign of respite as oil prices surged again, with Brent crude climbing to a high of almost $117 a barrel, before falling back.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to Cornwall Insight, that will mean an increase of £288 or 18% in annual bills.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to analysis for The Times, the Government is set to get around £3.5billion a year from the energy profits levy on North Sea oil and an extra £2.4billion from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Torness nuclear power station saved Britain's electricity system more than £2 billion since the 2021 energy crisis, according to industry analysis.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is, clearly, a collective exhaustion with the cost of living, such that even local fracking is not a non-starter for more than a third of the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy giant EDF Energy is rolling out four \"free electricity\" Sundays this spring under its \"Sunday Saver\" scheme, with customers able to earn up to 64 hours of free power over the next month.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The most active users in 2025 earned an average of 266 hours free across the year", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the headline offer of \"free electricity\" may sound generous, it requires households to actively shift when they use power - and in some cases cut peak usage by up to 50%.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "EDF suggests the scheme could slash roughly £96 yearly from bills for the most dedicated participants.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That is nearly four months of its overall seaborne crude imports, which cushion short term impacts from the war.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite the PM's stark warnings, last night it emerged that the Government is reportedly raking in an additional £20million a day through taxes and levies linked to oil and gas price rises.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For a household on a tariff governed by regulator Ofgem's price cap, and using a typical amount of gas and electricity, the annual bill will drop to £1,641.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest forecast by analysts at energy consultancy Cornwall Insight suggests the household with typical energy use will pay £1,929 a year from July, an 18% rise.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She says she has calculated that by just boiling enough for half a dozen cups a day, it can save almost £90 over the course of a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cost of phones and broadband are expected to rise by an average of £39.60 for an annual bill and £27.60 for a typical mobile contract, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average diesel prices on Tuesday stood at 182.8p per litre, up 40p since the start of the conflict on February 28.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figures estimate how much extra the rise in pump prices has cost UK drivers in total, compared with what would have been spent on petrol and diesel had prices remained at the same level they were on February 27.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average price per litre of gas oil stood at 99.5p in March, up 51% from 66.0p in February and the highest monthly figure since November 2022, when it reached 128.1p.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under the cap fall by 7% from April 1, or £117 a year to £1,641, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the Government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £72; Potential savings: £633", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, the reduction is lower than the average £150 cut to bills pledged by the Chancellor in November, when she moved 75% of the cost of the renewables obligation from household bills onto general taxation and scrapped the energy company obligation (Eco) scheme.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of those, 120 were by oil tankers and gas carriers and most were travelling east out of the strait.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cheapest deals were fixed-rate tariffs, with variable rates normally reserved for households that had reached the end of their cheap tariff and not switched.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The relief package announced on Tuesday includes a 15 cent per litre reduction on petrol, 20 cent per litre off diesel and the removal of the two cent per litre National Oil Reserves Agency levy, all in effect until the end of May.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures collated by the MoS show that €4.456billion - 18 times the value of this week's package - was collected in energy taxes last year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under the cap fall by 7% from April 1, or £117 a year to £1641, driven by the UK Government's pledge to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is an increase of £288 - or 18 per cent - on April's cap set by the energy regulator.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Roughly 60% of its liquefied petroleum gas (LPG) is imported, and about 90% of those shipments pass through the Strait of Hormuz.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under the cap fall by seven per cent from April 1, or £117 a year to £1,641.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "British Gas, Octopus, Eon, EDF, and OVO customers face £288 surge in bills", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The April price cap was set at £1,641 per year for a typical UK home by energy regulator Ofgem before the war in Iran resulted in a spike in costs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The field, which is about 80 miles north west of Shetland, is said to contain up to 300 million barrels of oil and some gas.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It built 56 reactors in 25 years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "EDF claims the initiative can knock around £96 a year off bills for the most committed users.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This amounts to approximately £6.6 million in combined bill reductions", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "29% of small businesses said monthly heating bills had gone up by up to £500, while 47% of respondents believed they would pay £1,000 or more extra a month, with 21% citing a figure over £2,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Drivers in the UK are already facing more than £500m in higher fuel prices owing to the oil crisis triggered by Iran's chokehold of global oil exports from the Gulf through the strait of Hormuz, according to the RAC Foundation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is the highest price for diesel since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This means it costs £100.52 to fill a 55-litre family car, breaching the £100 mark for the first time since December 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest figures, released on Tuesday, show the average price per litre of standard grade burning oil stood at 104.1p in March.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Forecasts for July now sit at £1,929 per year for a typical dual‐fuel household.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million-a-day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hundreds of millions of pounds would also be raised in taxes from Britain's power generators, which have been charged excess profit levies since the outbreak of war in Ukraine.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But a week later, after her lender paid the company $83,200 for the job, workers walked away, leaving their materials behind.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Government is set to rake in well over €4.5billion in energy taxes this year, the Irish Mail on Sunday has learned.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £114; Potential savings: £570", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Industry body Water UK says bills are expected to increase by £33 a year - 5.4 per cent - on average to £639 a year from £606.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of £48 a year - an inflation-busting rise of 11 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by £332 in the summer to £1,963 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey also suggests the average price of a litre of diesel stood at 176.5p on Monday March 30, up 9.6p week on week and an increase of 34.4p, or 24%, since March 2.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ofgem's price cap will drop from the current £1,758 to £1,641 - a reduction of £117 or around £10 a month for the average household using both electricity and gas.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As of 1700 GMT on Monday, commodities vessels had made just 196 crossings of the waterway this month, a huge decrease from before the war.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The funding forms part of £3.8m allocated by the UK government on 16 March and it's estimated that between 20,000 to 25,000 households will be eligible in Wales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She said that while the oil company she used had offered her the chance to purchase 350 litres, it still cost £425, which was still a lot for half the amount she normally ordered.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That number is even greater in certain communities away from the main towns.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The scheme was expected to cost up to £150billion, funded by borrowing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The tax rate on the fuels such as home heating oil, green diesel, natural gas, and coal and peat, is due to increase from €63.50 per tonne to €71.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The £1,641 bill coming into effect from Wednesday will be a reduction of £117 from the first three months of the year due to Rachel Reeves' Budget moves to strip energy subsidy costs from the price cap and onto general taxation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"While prices may have calmed a little over the past few days, prior to the conflict our forecasts pointed to a relatively stable price cap through the summer, now we are forecasting rises of 18 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This marks a slight fall from its forecast earlier this month, which had seen the cap surging to £1973 in July.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ofgem's price cap to drop by £117 from April 1, potentially lowering bills for standard variable tariff customers", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With an average installation cost of around £7,000, that means the investment is typically paid off in eight to 15 years, depending on the efficiency of the panels - and how much sun they see.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The annual rate for the 21 countries using the euro currency compared to 1.9% for February before the war started and blocked supplies of oil and gas from the Persian Gulf.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Shutting down the North Sea means we are losing out on £25billion in tax receipts that we could use to cut bills and reduce the cost of living.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since launching in 2024, EDF says customers have earned more than 20.5 million hours of free electricity through the scheme, saving a combined £6.6 million.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cornwall Insight's forecast is £44 a year lower than its previous estimate of £1,973 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Torness nuclear power station has cut £2bn from electricity costs since 2021 gas crisis https://t.co/gRaZuUZaTz", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 200 interested parties want to take part in the upcoming public inquiry into the row.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Recent polling showed more than half of Scots back nuclear as the most popular form of energy generation in Scotland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I was speaking to one retailer and he said, you know, people think we're we're profiteering here, we're not, we make about six pence a litre out of every litre that we sell or we we we gather six pence a litre for every litre that we sell, but the government is taking something like 97 pence for every every litre.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More Green voters support drilling in the North Sea (38 per cent) than oppose it (33 per cent), and 29 per cent of the party's voters support fracking in principle.", "score": 2.5459449999999997, "claim_types": ["quantity", "opinion"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In fact, it is split - 36 per cent in favour to 35 per cent opposed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Customers have clocked up over 20.5 million free hours of electricity", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Its oil imports from Russia jumped to roughly 1.9 million barrels a day in March, from about 1 million barrels before the Iran war.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "From Wednesday, the amount most households pay for energy under Ofgem's cap will decrease by £117 per year to £1,641, spurred by the Government's pledge to reduce bills by an average of £150 through the removal of green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Small businesses also said that rising energy prices would cost them an average of £785.92 more per month to run machinery and equipment essential to their operations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Home to one of the largest deposits of freshwater on the planet, the Great Lakes region has on its shores some of the largest cities in North America in Chicago, Toronto, Montreal and Detroit, where electricity demand is growing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Scotland, the world's most powerful tidal hydro generator can power up to 2,000 homes.", "score": 2.5408099999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And and would they ever react more quickly than perhaps they need to, I wonder if there is a a kind of preemptive reasing of prices potentially ever.", "score": 2.53941, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keep in mind that the annual price quoted is only what the average household can expect to pay over the year.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Currently, adequate coal stocks are available at all power plants across the country.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household energy prices are poised to surge by 18 per cent in July, adding £288 to a typical annual bill, as the war on Iran pushes up the cost of gas https://t.co/s3QnCqPk07", "score": 2.5175099999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is unrealistic and dangerous and you can have your say now in the usual places.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A typical gas and electricity bill is now forecast to reach £1,929 a year from July under the industry regulator Ofgem's quarterly price cap, according to analysis by the energy consultancy Cornwall Insight.", "score": 2.51499, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the headline promise of \"free electricity\" might appear attractive, it demands households proactively adjust when they consume power - and sometimes slash peak consumption by as much as 50%.", "score": 2.512925, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Look, higher energy prices are not good news for anyone.", "score": 2.50677, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We know people will be concerned about energy costs and rising prices at the pump.", "score": 2.50677, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ofgem's cap limits the unit rate paid by tens of millions of households on standard variable tariffs.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The nation of 117 million is an early warning for Southeast Asia.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cap doesn't limit your total bill - energy companies charge for energy by the kilowatt hour (kWh).", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hospitality's tax burden - the highest in the economy - is suffocating the sector", "score": 5.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only must trust, it seems, needs to be reminded of what happened next with the national debt at a crippling 96% of gross domestic product.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, VCT tax relief will be slashed from 30 per cent to 20 per cent and inheritance tax relief on qualifying AIM shares will fall from 100 per cent to 50 per cent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "What do you think would happen if a country has a very high tax burden and some of the highest energy costs in the industrialized world?", "score": 4.9374, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions will be forced to pay hundreds - or even thousands - a year more on many of their bills, from council tax to water and broadband.", "score": 4.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The tax year also begins with frozen inheritance tax (IHT) thresholds, at £325,000 nil rate band and £175,000 residence nil rate band, regardless of any possible rise in property and asset values.", "score": 4.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most councils in England are hiking council tax by the maximum 4.99%, with seven councils given permission to exceed the cap, including North Somerset and Shropshire, which are nearly 9%.", "score": 4.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Income tax rates remained unchanged in last year's Budget but the threshold freeze will remain until at least 2031, intensifying fiscal drag.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And households endured a grim 2025, with real disposable incomes falling.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister pointed to the reduction of energy bills by £117 a year for the average household, a rise in the national minimum wage to £10.85 and in the national living wage to £12.71, the start of the £1 billion crisis and resilience fund helping vulnerable households with soaring heating oil prices, and a freeze on prescription prices.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "GDP per capita is thought to have decreased by 0.1 per cent in the last quarter but it increased by 1.1 per cent on the year.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The growing squeeze is compounded by income tax thresholds being frozen, pushing more workers into higher-rate bands where the PSA is cut in half from £1,000 to £500 - a 50% reduction.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Our new online calculator reveals how much household bills will rise from April 2026, as increases to council tax, water, broadband and mobile costs wipe out the benefits of falling energy prices for a typical household.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax is increasing by 4.9% on average, adding around £111 a year for many households, while some areas are seeing rises of up to 8.9%.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The thinktank estimates that UK companies invest the equivalent of 11.1% of GDP, well behind countries such as Japan at 18.2%, and European nations including France, at 12.7%, and Germany, at 12%.", "score": 4.698725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills are falling from April 1, but are expected to rise by £332 per year from July, many broadband providers are hiking prices by almost £50 per year, water bills are rising to an average of £639 per year (up to £759 in some areas) and most councils are hiking council tax by 4.99%, with some rising by more than 8%.", "score": 4.66777, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But there are mounting concerns about the amount energy bills could rise by from July as a result of the Middle East conflict, with latest predictions suggesting this could be £300 a year.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a joint plea for help, they said: 'Hospitality's tax burden - the highest in the economy - is suffocating the sector.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Hospitality's tax burden - the highest in the economy - is suffocating the sector,\" UKHospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster said in a statement.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Justifying her decision in the Budget, Reeves said she was targeting the industry because it was 'associated with the highest levels of harm'.", "score": 4.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dark financial clouds are gathering as the conflict in the Middle East threatens to hit British households with higher prices on everything from energy bills and petrol to food and mortgage rates.", "score": 4.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across England, the average Band D council tax in 2026/27 will be £2,392 - an increase of £111 or 4.9% on 2025-26, according to the Ministry of Housing, Communities & Local Government.", "score": 4.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The OECD predicted that gross domestic product (GDP) will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7% - the biggest cut to the growth outlook of all the countries in the G20.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The increases are on top of a 6.7 per cent rise for over 21s and 16.3 per cent rise for 18 to 20 year olds respectively in 2024, where there was also a spike in employers' National Insurance (NI) contributions.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "double quotation markGDP growth for Q4 was unchanged at 0.1% q/q, suggesting that the economy entered the current crisis with very little momentum, even though growth in 2025 as a whole was revised up slightly.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A high-ranking DWP minister has discussed the future of the triple lock policy, which is set to boost payments by 4.8 percent from April.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite the widespread increases, nearly one in five councils chose to raise council tax by less than the maximum.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The new post-2016 state pensioners will get up to £47.91 extra per month, assuming they have a full National Insurance record.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This payment is accessible for those who have reached the UK Government's qualifying retirement age, which is presently 66 for both men and women, and have contributed at least 10 years' worth of National Insurance (NI) payments.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Keir Starmer promised to ease the cost of living and freeze council tax, yet families now face back-to-back hikes and a total council tax take rising by £2.7billion - another broken promise.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The confirmation that real GDP grew by just 0.1 per cent in the fourth quarter of last year is a reminder that the economic backdrop is much weaker now than the last time energy prices surged in 2022,\" Dales said.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Local authorities with responsibility for social care will raise council tax bills by 4.99 per cent again this year - to £2,394 on average.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "GDP grew by just 0.1 per cent between October and December, the Office for National Statistics said, confirming its earlier estimate and matching the equally sluggish growth recorded in the third quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Real GDP per head decreased by 0.1 per cent in the final quarter of 2025, but it was up 0.6 per cent compared with the same quarter a year earlier - in an apparent reflection of the increased tax burden.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We've lifted 100,000 businesses out of rates, GDP figures show we outperformed the UK, Scotland has the highest levels of foreign direct investment outside of London and two global credit rating agencies have given Scotland a high investment grade - that's what you get with an SNP government on Scotland's side.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That means the average council tax for a Band D property in England will increase to £2,392 a year, up £111 on last year.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the ONS increased its GDP estimates for the year to 1.4 per cent, up from its previous 1.3 per cent estimate, more recent figures show the economy flatlined in January.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The ONS found that GDP rose 1.4 per cent across 2025, up from previous growth of 1.3 per cent.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The ONS also said real disposable income per head increased by 1.2% in the final quarter of last year, following a downwardly revised decrease of 1.2% in the third quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Office for National Statistics confirmed that gross domestic product grew by just 0.1% in the October to December quarter.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It found that GDP increased by 0.1 per cent in the last quarter of the year, an unrevised figure on a previous estimate.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And real household disposable income expanded by 1.2 per cent in the last quarter, driven by an increase in wages and salaries.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So interesting little snippet in it, GDP per capita, which has been a bit of a problem for the UK economy did go up in 2025, just grew by 1.1% and something which I think people will find very, uh, counterintuitive, the savings ratio. so the proportion of income that's being saved rather than spent for households has gone up again, a bit to 9.9%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax rates in Scotland can increase by up to 10 per cent following several years of limited rises.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Older state pensioners will see their payments increase from £176.45 to £184.90, while new state pensioners will see theirs rise from the current £230.25 to £241.30 per week, for those with a full National Insurance record.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Each 'qualifying year' you add to your National Insurance record after April 5, 2016 will add a certain amount (about £6.57 a week in the 2025/26 financial year, this is £230.25 divided by 35) to your 'starting amount', until you reach the full amount of the new State Pension or you reach State Pension age, whichever happens first.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With national debt now almost 100% of GDP, another blanket bailout is simply not on the table.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Uh, the ONS looks again and comes back with a revision for GDP and often the numbers do get revised upwards when they take a second look, but unfortunately not this time, uh, in the last three months of last year, so the last quarter of 2025, the economy grew by 0.1% ONS says so they haven't changed the number on that, so it's hardly growing at all really.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The minimum wage increases are on top of a 6.7% rise for over-21s and a 16.3% rise for 18 to 20-year-olds respectively last year, when there was also a rise in employers' National Insurance contributions.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @WilfredFrost: Important to note that debt is NOT lower today than July 2024, & indeed will be higher at the end of the parliament than today - it will be up from 93.2% of GDP to 95.1%.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax increases for the new financial year have now been finalised across England, with all 153 top-tier local authorities confirming how much bills will rise from April 1.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average council tax for a typical band D property in England is currently £2,280.", "score": 4.53035, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yesterday was the first day in British history when the amount paid out in welfare exceeded what was brought in through income tax, as quoted on Call Chemy last night.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "William Hill is preparing to close 200 shops just hours before tax rises smash the gambling industry, the Daily Star can reveal.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But there are fears the conflict will trigger a crippling hike in energy bills this winter.", "score": 4.46302, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The escalating cost of the state pension prompts questions about the sustainability of the triple lock and whether ministers will need to transition to a model with less generous increases.", "score": 4.386095, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Greater National Insurance contributions boost the health service and businesses need healthy workers.", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The OECD predicted that GDP will be 0.5 percentage points lower in 2026 than prior forecasts, at 0.7 per cent.", "score": 4.377125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The day your State Pension is paid depends on your National Insurance number.", "score": 4.3705, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They've promised huge tax cuts and seem to think they would just pay for themselves...🧵(1/7)", "score": 4.329355, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cheng said: \"Each new tax year quietly brings more families into the inheritance tax net.", "score": 4.326185, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases.", "score": 4.326185, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I see this in my constituency of Woking, but I talk to so many businesses who wanted to expand, wanted to grow our economy to lower that welfare bill, but because of national insurance increases, because of sort of Trump inflation, uh, the unpredictable world that we're in, then not growing.", "score": 4.318895, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We can't influence Donald Trump, we can't influence Benjamin Netanyahu, the war and the damage to our economy is going to happen whatever we think about it.", "score": 4.26484, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax is a compulsory charge on properties in England, Scotland and Wales.", "score": 4.25617, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Band D households in the London Borough of Wandsworth will see their council tax rise by just £30 a year, compared to £209 in Shropshire.", "score": 4.2553, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They are massively out of step and siding with bad bosses, not working people.", "score": 4.25444, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Savers can also look to reduce their inheritance tax exposure by taking stock of estate values, as rising property prices can push estates closer to inheritance tax thresholds.", "score": 4.249805, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crucially, both of these will still be below the £12,570 Personal Allowance threshold for income tax.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The energy bills price cap is expected to increase in the summer by £332 to £1,963 annually", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While household bills will be protected by the energy price cap until July, businesses are likely to suffer from the variable costs of higher oil and gas prices, which are around 70 per cent higher than before the war began.", "score": 4.224345, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Council tax bills will rise by as much as 15 per cent on April 1.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The DWP has confirmed that the Triple Lock will result in an approximate £575 increase for new state pensioners from April.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eligibility for the over-80 pension doesn't depend on your National Insurance contribution record.", "score": 4.21887, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She added: \"Interest rates are higher than back then, and more savers are expected to see their savings income taxed in the years ahead due to fiscal drag.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most households are on a variable rate tariff, which means that the cost of their energy rises and falls in line with energy regulator Ofgem's energy price cap.", "score": 4.213945, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The businesses might turn around to you and say, hang on a second, under your government, you've increased National Insurance, you've increased business rates, you've increased minimum wage.", "score": 4.206655, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So they're saying, um, that actually if they do not take off, uh, this strike, which we know is scheduled for April the seventh, um, onwards, um, if they don't call that off in the next 48 hours, then the government is essentially taking off this pay deal that they've been in negotiations with those junior doctors as resident doctors with since January.", "score": 4.132820000000001, "claim_types": ["correlation", "rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The money is not paid automatically when someone reaches State Pension age as some people choose to defer making a claim in order to keep working and generate more towards their pension pot, especially if they have not paid the full quota of 35 years' worth of National Insurance Contributions, or were 'contracted out'.", "score": 4.118985, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With bills set to rise from April, households across England are likely to see higher council tax charges, with the exact increase depending on where they live.", "score": 4.0944199999999995, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Council tax, water, broadband and mobile bills are all going up at the same time.", "score": 4.0839, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Although debt interest payments are increasing, higher inflation is also expected to ramp up the income tax take.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Higher inflation will eat away at household disposable incomes and higher interest rates will diminish borrowing capacity, softening demand.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The rising cost of the state pension raises the question of how long the triple lock will be sustainable and if ministers will need to move to a model with less generous increases.", "score": 4.064495, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A host of local authorities in Scotland have increased council tax sharply.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament. That is the £30 billion increase in state pension expenditure over the course of this Parliament.\"", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ONS Director of Economic Statistics, Liz McKeown said: 'Our latest figures show GDP was unrevised in the last quarter of the year, with the economy growing a little.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While energy bills are falling - for the time being at least - hikes to council tax, water, broadband and mobile phone costs are threatening to stretch many households to breaking point, charities have said.", "score": 4.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even a small award can unlock help with housing costs, council tax and energy bills.", "score": 4.0489, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Not quite right, I think it's the first time it's not a particular day where this happens, but it is now true that on an annualised basis, we're spending more on welfare benefits than we get through income tax.", "score": 4.046805, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"It's almost certainly going to be a muted second quarter for spending and GDP growth as the worst of the inflation shock hits consumers,\" she warned.", "score": 4.037835, "claim_types": ["quantity", "correlation", "predictions", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But increasing National Insurance, increasing National Insurance contributions on businesses does not increase their ability to invest in people or their products, does it?", "score": 4.035135, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So the decisions the Chancellor took last year at the budget to bring down the energy price cap, to take those green levies off energy bills, to make sure people's energy bills go down.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you have qualifying years on your National Insurance record as at April 5, 2016, DWP works out a 'starting amount' for you for the new State Pension.", "score": 4.035135, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We've had some GDP numbers this morning, they're not new, but they are a bit of a fresh look at what happened at the end of last year, our business correspondent Dominica Connell is here, morning.", "score": 4.008475, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You have a completely rigid pension policy, which I don't agree with, and every time that there's somebody on pensions, they're not they're not earning and paying an income tax.", "score": 4.006385, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Martin Beck, chief economist at WPI Strategy, said: 'With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said: \"The triple lock may become unaffordable if pension payouts rise faster than Government revenue, particularly as the population ages and life expectancy increases. Analysts suggest this could become a significant strain over the next decade, forcing policymakers to review or amend the system to balance cost and fairness.\"", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Martin Beck, chief economist at WPI Strategy, said: \"With so little momentum heading into 2026, the economy is particularly vulnerable to the latest energy price shock, and it would not take much for GDP to tip into outright contraction.\"", "score": 4.0045850000000005, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis, figures showed today.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer's vow that Brits will be richer under Labour was at risk even before the Middle East crisis", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cuba ́s gross domestic product has plummeted by 15% over the last six years, triggering a historic exodus.", "score": 3.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This payment is available for those who have reached the UK Government's eligible retirement age and have paid at least 10 years' worth of National Insurance Contributions.", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The payment will typically appear in your bank account marked with a reference that begins with your National Insurance number followed by \"DWP WFP\".", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's also important to be aware deferred State Pensions increase each year in line with the September Consumer Price Index (CPI) inflation rate and not the highest measure of the Triple Lock policy.", "score": 3.932475, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But what they can know is that from tomorrow, their energy bills will in fact go down and they will stay down for April, May and June.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The first State Pension payment might also be higher or lower than expected even with full National Insurance Contributions.", "score": 3.911715, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The growing squeeze is compounded by income tax thresholds being frozen (Image: Getty)", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In doing this, time and time again, after lockdown, after the crash, you end up with a government borrowing so much and so much in debt that the overall tax burden is crushing the growth out of the economy.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'While council tax is an important funding stream, it cannot solve the long-term pressures facing councils, raising different amounts in different parts of the country - unrelated to need.", "score": 3.901315, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They've got to start advertising them, they've got to put them in the budget for the next financial year, which as we know, we're coming to the end of that and the start of the next.", "score": 3.898845, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But it's not all about the national insurance payments and it's not all about the rather small instruments that have been done by this government.", "score": 3.894025, "claim_types": ["support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some good news for the government is that increased petrol price means more tax coming in to the Treasury, the bad news is, uncertainty means they're paying more to service the national debt.", "score": 3.894025, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "April will bring cost increases set to hit household bills and businesses, even as Sir Keir Starmer touts Government measures \"bearing down on the cost of living\".", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Rachel Reeves appears to be overly influenced, if not controlled, by Ed Miliband's unfeasible Net Zero agenda, and remains determined to uphold the 5p increase in the Autumn Budget. She is either neglecting her responsibilities or acting ideologically by failing to do what her role requires: preventing inflation from rising, protecting jobs, supporting GDP growth, and maintaining consumer spending.\"", "score": 3.834115, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Broadband Genie says that vulnerable customers and those with less disposable income are likely to be on the cheapest tariffs, so the new regulations are set to affect these people the most.", "score": 3.786985, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There isn't much you can do, of course, about council tax, but when it comes to your other bills, things like your energy and your broadband.", "score": 3.7796950000000002, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We need to make sure we get the NHS back on its feet and that is why we took the difficult decision, it was one of the toughest decisions of that first budget, but the difficult decision to increase employer National Insurance, that helps to get our NHS back on its feet.", "score": 3.7577350000000003, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "New figures show a spike in older Ford, VW and Vauxhall cars being scrapped due to Vehicle Excise Duty rises seeing owners facing big tax bills", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "State pension update as DWP minister confirms triple lock 'slightly higher' plans", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Bell also told the committee: \"The Government's revealed objective is that we want to see a slightly higher level of the state pension relative to earnings, which is being delivered by the maintenance of the triple lock over the course of this Parliament.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too expensive for the Government.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reports of Denby's imminent collapse come at a challenging time for businesses in Britain, hit by increases in employer National Insurance contributions, minimum wage hikes and high energy costs.", "score": 3.748535, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, let me, let me spell this out really clearly, because of the decisions the Chancellor took at the budget last November, energy bills will go down tomorrow and they will stay down for April, May and June.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But we already took the decision at the budget last year to extend the 5p duty cut, so that's going to last until September.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Many councils have faced having to increase council tax bills to try and protect services from further cutbacks at a time when they are acutely aware of the financial pressures facing households,' a spokesman said.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For months businesses have been anticipating the impact of a range of tax and regulatory measures announced by the government in the budget and in the weeks since.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government has kept in place the freeze on tax thresholds on income tax.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Northern Ireland uses a domestic rates system instead of council tax.", "score": 3.61976, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He urged people to check if they have any gaps in their National Insurance (NI) records that they can voluntarily top up, which could increase their state pension payments.", "score": 3.612245, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Motorists with the keys to older vehicles built between 1986 and 2001 are set to be face higher car tax bills within hours as changes come into effect from April 1.", "score": 3.599205, "claim_types": ["rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The GOV.UK website explains: \"You cannot use this service if Self Assessment is the only way you pay Income Tax.\"", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Daily Star led a campaign last year to stop tax rises on horse racing bets.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When Chancellor Rachel Reeves announced the increases in the Budget last year, she said the cost of living was still the biggest issue for working people.", "score": 3.560815, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One question he was asked was whether or not he thinks the Government should keep the triple lock.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Andrew Prosser, head of Investments at investment platform InvestEngine, spoke about how the triple lock could become too costly for the Government.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prime Minister Sir Keir Starmer has highlighted the Government ́s cost-of-living measures (Stefan Rousseau/PA)", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since the run up to the 2025 Autumn Budget, the conversation surrounding the income tax trap has gathered speed with families scrambling to sort their finances in a bid to prevent being dragged into a higher tax band.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In response to the question, Mr Bell stated: \"We going to be keeping the triple lock, yes, through this Parliament.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Spencer says his business is being squeezed from every angle - as well as minimum wage, he has had increases in business rates, national insurance, and statutory sick pay.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the run-up to the Budget last year, the Daily Star led a campaign to stop Rachel Reeves from introducing tax rises on horse racing bets.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Certain elderly people believe that having savings or being homeowners would disqualify them from the means-tested benefit, which can additionally grant access to assistance with accommodation expenses, winter heating support and Council Tax.", "score": 3.5503549999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a round of broadcast interviews this morning, Treasury Chief Secretary James Murray refused to say whether further action would be taken on energy bills or on keeping the fuel duty freeze in place after September.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Welsh Labour ministers say supporting people through cost of living pressures is a priority, and households receiving council tax support will be invited to apply for the payment if they rely on heating oil or LPG.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Mr Bell said in response: \"We going to be keeping the triple lock, yes, through this Parliament.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And so if you look at what the Chancellor did in the budget last year about taking money off energy bills by extending the 5p duty cut on petrol, those are all decisions we've taken already.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is part of Making Tax Digital (MTD) for Income Tax Self Assessment (ITSA).", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Guardian noted that manufacturing a medium-sized new vehicle may produce over 17 tonnes of CO2 - nearly equivalent to three years' worth of gas and electricity usage in the average UK household.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Welsh government says the one-off payment will be available to households which receive support from the council tax reduction scheme.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One you have a note of your Personal Allowance tax code, you can go to the GOV.UK website and use the online \"Check your Income Tax for the current year\" service.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"Someone who has or is about to move up an income tax band would be wise to use up their cash ISA allowance, or lose it, as it resets on 6 April,\" she said.", "score": 3.414065, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "He encouraged people to find out whether there are any gaps in their National Insurance (NI) records which they can fill in, potentially boosting their state pension entitlement.", "score": 3.414065, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Isabella Galliers-Pratt, investment director at Rathbones, said: \"AIM shares and VCTs haven't lost their place entirely, but the tax advantages that once justified the risk have been diluted. For many investors, the sums involved, including the prospect of a six-figure inheritance tax bill, mean these decisions now demand far more scrutiny.\"", "score": 3.4092450000000003, "claim_types": ["correlation", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Chancellor has ruled out the type of blanket support provided after energy bills soared in 2022 when Russia invaded Ukraine, but has promised to support 'those who need it most'.", "score": 3.4092450000000003, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I thought Labour were supposed to be the party of working people.", "score": 3.407405, "claim_types": ["personal"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dext said the \"AI slop impact\" on tax is so bad that just over a fifth (21 per cent) of accountants in Scotland warn that relying on generic AI could actually trigger insolvency or business failures this year.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "William Hill has announced it will be closing 200 high street stores just months after the Labour government's 'highly damaging' gambling tax increases", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Department for Work and Pensions (DWP) has announced tax changes that could cost disabled Motability users £400 each.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some $250 million intended to feed children from low-income families during the pandemic was fraudulently taken, according to the Department of Justice.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The payment needs to be claimed, or retirees could face a delay in receiving their first payment of up to £230.25 each week, or £921.00 every four-week pay period.", "score": 3.38007, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Meanwhile, businesses, which are not protected by a price cap, are set for painful increases in their gas and electricity tariffs from April as the Iran war and disruption to key shipping routes sends wholesale prices soaring.", "score": 3.29984, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other water-saving methods include using your roof - it can collect 50,000 litres of water in a year, so install a 50-gallon butt costing about £40 from a DIY store, which can be used to water the garden rather than using a hosepipe.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Howard Cox, the founder of FairFuelUK said that 36.4% of 3,678 sole traders, including bricklayers, plumbers, electricians, and others across the UK, have informed his organisation in an online survey that current pump prices could \"drive their businesses to the brink of collapse\" unless the Chancellor takes immediate action to reduce the cost of fuel, specifically diesel.", "score": 3.2593950000000005, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "UK GDP figures out, we'll assess the state of the UK economy and growth with the economist and commentator Liam Halligan.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of workers are being urged to check their payslips before the end of the tax year, as one small error could leave them overpaying tax by thousands of pounds.", "score": 3.21125, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The freeze of fuel duty, energy price caps, they were all announced prior to the conflict.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour pledged in its General Election campaign that it would keep the triple lock for the duration of this Parliament.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He was questioned about whether he believes the Government should maintain the triple lock.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A senior DWP minister has spoken about the future of the triple lock policy.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Labour promised during its General Election campaign that it would maintain the triple lock throughout this Parliament.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But America's got better conditions for growth than Europe does, and if we'd only look across to our cousins in the US, we might actually be able to create the conditions needed for growth, a lower regulatory burden, a lower tax burden and lower energy costs.", "score": 3.200295, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Millions are being pulled into paying tax on their nest eggs as frozen allowances and higher interest rates combine to erode protections once meant to shield them.", "score": 3.123595, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Millions of people on State Pension face future tax risk after April increase", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "👧🏻 Lifting 450,000 children out of poverty by removing the two-child cap", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And I think the government has been given a really bad hand by events by the Conservative government, but they have made awful decisions on national insurance contributions and other things that has meant our economy isn't growing the way it should.", "score": 3.120805, "claim_types": ["personal", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I forgot how anti the national insurance rises the lib dems were.", "score": 3.09907, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As the organization raked in more than $3 million in reimbursements, he reportedly carved out at least $129,000 for himself.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "but 25% are not yet ready and that and that's quite a scary thought, this comes into effect next month.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figures contrast with headline CPI inflation of 3 per cent last month - although that is now expected to rise in response to the Middle East turmoil.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Wage expectations also inched up slightly, which could worry Bank of England policymakers concerned about inflation.", "score": 3.083055, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "DWP tax changes to Motability will cost users £400 each", "score": 3.074085, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now I started off for good debate on national insurance, but speaking to businesses in my constituency and beyond, that has been awful for our economy.", "score": 3.0681149999999997, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yeah, I agree with you, that's what I do the right thing and I get tax bills for it, whereas it's like said the barbershop or other service is like that.", "score": 3.0681149999999997, "claim_types": ["personal", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One small mistake in your tax code could mean you are overpaying tax without realising and refunds from HMRc are not automatic.", "score": 3.044, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "All this while tax thresholds for working British people have been frozen since 2021 and are set to remain frozen into the 2030s.", "score": 3.0286850000000003, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Forecasts from the Organisation of Economic Cooperation and Development (OECD) last week gave Britain the biggest downgrade of all major economies.", "score": 2.981275, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "State pension age to be reviewed by UK Government amid fears that 45% of workers are not saving", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite pushing taxes to record highs, she's still spending £150billion more a year than she raises.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is a government which is borrowing something like 400 a day.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Make UK estimate that the average cost to a manufacturer will be £100,000, rising to £250,000 by 2030.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The gambling sector is preparing for online gambling duty to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The popular bookies have around 1,300 shops in the UK with approximately 15% of them set to close from May due to increased cost pressures including significant tax increases in the gambling sector", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even before the start of the US-Israeli campaign against Iran, 93% of hospitality businesses said energy costs were impacting profitability, according to UKHospitality.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I hate that. I hate the idea as shown by HMRC's forecast of this, that the government is going to make money on this, it's going to be 2.9 billion, the cost to the taxpayer and small businesses are buying software and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A big change is on its way when it comes to how self-employed workers and landlords earning more than £50,000 a year submit their tax returns and deal with HMRC.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This compared to a surge of 0.7 per cent in the first quarter of the year before President Trump's Liberation Day.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The combination of a smaller multiplier with a much higher value meant higher bills, with publicans and hoteliers claiming average valuation increases of more than 30%.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "HMRC has estimated that H M R C that introducing making tax tax digital will cost about 4.3 billion pounds, 1.4 billion of that being government spending and 2.9 billion being the cost to taxpayers and small businesses of buying software and employing accountants.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But then HMRC estimates will cost taxpayers and small businesses some 2.9 billion because they will have to buy the software, in some cases on which they make their tax digital and employing accountants and what have you, given the number of tax returns they have to complete goes up from one to four or possibly even five with a nice end of year one just to make sure you've definitely got all the numbers right.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Three in four of these local authorities (119 out of 153) have proposed or confirmed a 4.99 per cent bill hike - the maximum increase they can make without holding a local referendum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "EDF Energy estimates that from this month, transmission charges to businesses will double, adding 5% to electricity bills.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rathbones estimates that more than 3,500 estates could face IHT bills breaching £500,000 by the end of the current tax year, up from 2,520 estates in the 2021 to 2022 tax year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rachel Reeves 'critical' warning as 1.3k businesses could be 'on brink of collapse'", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The warning comes ahead of the April 5 deadline, with experts saying many people are on the wrong tax code without realising it - the average taxpayer could be owed more than £3,000.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Energy bills could go up by £300 in July (Image: Getty)", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now this does apply in the first instance to those with a gross income above 50,000 pounds, all of this is kicking in next week.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The move comes just months after Chancellor Rachel Reeves made the decision to almost double taxes on online gambling from 21 to 40 per cent, while hiking sports betting from 15 to 25 per cent.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Think we need to acknowledge that the majority of that is on pensioners.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There is going to be a degree of excitement or at least people are going to be excited about the fact that they are going to be made to make their tax digital four times a year, rather than one and for some people who don't aren't able to get it for free, you will have to pay on average about 300 pounds for the pleasure of registering your tax return four or five times a year.", "score": 2.9597550000000004, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The trade body warned that increases to employment costs and business rates from Wednesday will cause job losses and harm business viability.", "score": 2.9142349999999997, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Industry experts had warned the move could cost 40,000 jobs and risk consigning the 500-year-old sport to the knacker's yard.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He admitted using the nonprofit Youth Inventors Lab as a shell company to siphon millions of dollars through fraudulent reimbursement claims for roughly 1.5 million meals that were never served to children in need.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ali admitted using a nonprofit as a shell company to siphon over $3 million in reimbursements for millions of meals that were never served to children, pocketing at least $129,000 for himself", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The DOJ said the scheme saw $250 million intended to feed children from low-income families during the pandemic fraudulently taken", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Prime Minister has given the British Medical Association 48 hours to call off the six-day doctor strike in England after Easter or face losing a thousand extra training places.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Almost half of Scottish accountants reported that clients trusting public AI have already been hit with real-world financial losses, from heavy HMRC penalties and overpaid tax to missed allowances.", "score": 2.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Maria, who's sending out her wedding invitations and Jack, who's just being a teenager again.", "score": 2.885515, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A bath typically uses 100 litres of water while taking a four-minute shower with a £20 water-saving shower head uses just 32 litres.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Around 2.7 million people are set to receive a pay rise this week as the national minimum wage goes up by 50p to £12.71 for over 21s.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A washing machine requires up to 150 litres of water per wash.", "score": 2.88131, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the, the question is, as the war goes on, will there be a reduction in available supply of fuel?", "score": 2.8610100000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you leave it, the mistake will simply roll into the next tax year - and you will keep overpaying without realising.", "score": 2.83673, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The national living wage for over-21s increases by more than 4% to £12.71, and to £10.85 for 18-20 year olds, an 8.5% hike.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It takes a couple of minutes to look at your payslip, and it could save you hundreds or even thousands of pounds.", "score": 2.8194, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Having more than one job or pension can also cause problems.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This can reduce your tax free allowance and result in higher deductions from your wages.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Petrol supplies are fine for now, but do you accept there will come a time when petrol might need to be prioritized because ultimately you have to accept there is going to be a reduction along the line in petrol supply?", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you increase the cost of doing business, the businesses will do less, will employ less, they'll pay less.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Even with transitional caps in place limiting increases, those increases will still compound and bills can more than double by the end of the cycle.\"", "score": 2.801995, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of course, backward looking is an understatement for Q4 data, the outlook for growth is now materially weaker for this year and 2027 as higher energy prices will squeeze real incomes and further weigh on an already weak employment market.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It kicks in for people, uh, with 50,000 pounds or more, but it is going to come down much, much lower over the course of the next few years, so it will get to you in the end.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Overall, a typical household is expected to be £143 worse off from the start of April.", "score": 2.801995, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Observers say the government's hand may eventually be forced given that Indonesia is required by law to keep its fiscal deficit under three percent of gross domestic product.", "score": 2.786985, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So do you not accept the premise of the question that as the war goes on, the availability of fuel will be reduced?", "score": 2.7846200000000003, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, there will barely be a chance to enjoy the savings, amounting to around £10 a month, before prices start to rise again due to the ongoing conflict in the Middle East.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Here's why William Hill are closing 200 shops as tax hikes hit gambling industry", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Without it, you may be placed on an emergency tax code such as 1257L W1 or M1, which can result in higher deductions until the issue is resolved.", "score": 2.7705450000000003, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'F*** it, I'm opening a few daycares and a Medicare hospice care center, so you do a few years for several million dollars, which is a lot easier than working until you hit 70,' one comment read.", "score": 2.7679549999999997, "claim_types": ["personal", "quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 1.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The state pension is guaranteed to increase every year based on one of three metrics - inflation, wage growth or a flat 2.5%, and this is protected by law for both the new post-2016 state pension and the older, basic state pension.", "score": 2.76698, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, and for the whole year, they've got a new number, 1.4% for the whole year of 2025.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's also worth pointing out that when people's expenditure shifts to energy and fuel, because the VAT rate is typically 5% there, rather than the standard rate of 20%, there is less VAT being paid.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The most common mistakes being found include incorrectly interpreting business expenses (61 per cent of cases), and messing up VAT claims (46 per cent).", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some households could also save costs by installing a water meter - those who switch typically save up to £100 a year.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Indeed Britain spending about 112 billion pounds this year servicing debt.", "score": 2.72853, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you haven't given it enough information, you're really at a high risk of undertaking a task or an activity or making a decision that could ultimately lead to business failure.", "score": 2.716055, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Accountants expect the risks to intensify this year if businesses continue relying on public AI tools without professional oversight.", "score": 2.716055, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I think the question's quite right, so look, welfare spending is at a record high.", "score": 2.7091849999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It means that cars which produce more than 225g of CO2 emissions per kilometre are hit by Vehicle Excise Duty (VED) - with those producing 201-225g/km paying £430, 226-255g/km £735 and over 255g/km £750.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over the past decade, basic-rate taxpayers alone have paid more than £4.7bn in tax on their savings interest, underlining how the allowance has failed to keep pace.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Treasury said around 2.7 million people are on minimum wage", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I think we just need to put that in context that the majority of welfare spending is on on pensioners.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "No, but the reason why this is such a huge increase in young people.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The cars affected are those which are older than 20 years - but they have to reach 40 to be considered 'classics' and be tax exempt.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, but more recent figures have shown the economy flatlined in January with zero output.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Annual growth for the whole of 2025 was, however, revised up slightly.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The overwhelming majority of town halls are imposing the maximum allowed without being obliged to trigger a referendum - with some strugglers given permission to smash the 5 per cent ceiling.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "🥣 Free breakfast clubs in schools - saving parents up to £450 a year", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But our economy's still growing faster than Europe.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There are also more than 700,000 older people eligible for a State Pension top-up of £4,300 annual income top-up.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But despite a sharp rise in interest rates over recent years, the thresholds have been left frozen - meaning more savers are now exceeding them.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Unfortunately, over a third (36%) of people have never heard of the PSA... This shows how the PSA has not moved along with the times.\"", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This category is also set to be affected by annual inflationary price hikes this April, with fees up by as much as £15.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For metropolitan areas the increase will be a 5.2 per cent, ad in shire areas it will be 4.6 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The full basic state pension will rise from £176.45 a week to £184.85 a week, or £9,612 annually.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Business rates, paid on bricks-and-mortar premises, are the means by which companies contribute to local government funding and are forecast to contribute £34bn in 2026-27.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Really interesting, we've done some research on this and about 70% of business owners that are impacted by making tax digital are aware of it.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gas and electricity bills are set to fall by £117 a year on average from April 1, to £1,641 a year for a typical household.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, household spending rose by only 0.1 per cent, while business investment dropped by 2.5 per cent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pension Credit supplements weekly income to a guaranteed minimum threshold of £227.10 per week for individual pensioners or £346.60 for couples.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Services showed no growth, while production grew strongly, partially offset by a weak quarter from construction.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Meanwhile, the household savings ratio increased and remains high by historic standards.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'On top of that, many households are already overpaying by hundreds of pounds a year simply because it's so hard to keep track of everything.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We saw a huge increase in the number of people claiming entitlement related benefits particularly after the pandemic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dividend tax is also set to increase by two percentage points for most investors, tightening the tax net on income held outside tax-free wrappers such as pensions and ISAs.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But because these cars are now worth very little - often under £1,500 - the annual tax bill can represent 25-50% of the car's total value and people are getting them scrapped.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Your State Pension increases by the equivalent of 1% for every nine weeks you defer, this works out as just under 5.8 per cent for every 52 weeks.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Debt interest alone is costing £112billion a year.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now because VAT on energy and fuel are typically at 5 per cent, rather than the standard 20 per cent, that can actually mean overall revenue goes down.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Inflation, meanwhile, has remained stubbornly above target, keeping interest rates higher for longer and tightening the squeeze on activity.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So people spent less on other items, so there's less VAT coming in on other purchases.", "score": 2.6987249999999996, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And on average, you will pay about 300 pounds a year for the privilege of doing something that was once free.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'From a business sense, coffee prices have gone up in the last three years by 40 per cent, milk has gone up from $2 to $3.15 and bacon has gone up from $46 to $59 - everything's going up.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mobile customers can save an average of £304 switching from a handset contract to a SIM-only contract.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So you think actually despite people not being ready, the system will allow for people to get used to this as it as it has becomes a necessity for people, not just in the first instance who aren't 50 grand a year, but 40, 30, 20 and then eventually to everybody.", "score": 2.6966349999999997, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Greece can actually borrow more cheaply than the UK.", "score": 2.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, the staggering amount, rich relief is in no position to do a giveaway right now.", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If you're not self-employed, do you see it as the right thing to do to self-employed people, to make them do their taxes more often to try and stop any, I don't know, what would we call it, any creativity in those accounts?", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is the end of the financial year and spirits are in the sky as a whole raft of changes are being brought in over the next few days and weeks that make life largely more expensive and more bureaucratic.", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "First applied to those with a gross income above 50,000 pounds, but rolling out for everybody over the course of the next few years, a scheme which will cost the taxpayer some 1.4 billion in order to set it up.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some customers will see monthly costs rise by more than double than what they would've done under the previous system, according to Broadband Genie, with those on the cheapest packages hardest hit.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Times reporting this morning, the tax windfall for you in the Treasury could get from rising fuel prices might amount to 20 million pounds a day, that would amount to billions of extra income over the course of a year or so.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At first, you'll only have to do this if you make over 50,000 a year, but that amount will gradually come down over the next few years to mean that in effect, uh, even the children who come round offering to wash cars for pocket money will be feverishly been counting every quarter as the man from H M R C glowers at them.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Providers have not hesitated to raise customers' prices far beyond the rate of inflation, costing bill payers millions.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'These are people trying to keep up with costs that are rising faster than their wages,' Compare Club's head of research, Kate Browne, told the Daily Mail.", "score": 2.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She needs to reverse her disastrous £26billion jobs tax, cut red tape and get the economy moving.", "score": 2.636345, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'This is part of a very large fraud scheme, the largest in the District of Minnesota and one of the largest ever in the country,' Brasel said, according to KARE.", "score": 2.62293, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some of the most desirable cars from 20 years ago are now virtually worthless and being scrapped because it costs too much to tax them.", "score": 2.62122, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'The result is that most of us will be worse off overall - not better.", "score": 2.6158, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Industry experts had warned the move could cost 40,000 jobs and risked consigning the 500-year-old sport to the knacker's yard.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ali confessed that he and his co-conspirators relied on fake invoices for food and services, falsely claiming to have served over 1.5 million meals provided by S & S Catering in just seven months.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The criminals falsely claimed they had served 91 million meals.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And Trump's busy putting up tariffs that's damaging his economy and ours.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The impact is clear: more lost jobs; less investment; and business closures.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "' And increasing energy prices now threaten to 'accelerate all of these impacts', they added.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To what extent is it your fault because this has been in the making for some 10 years ago, there have been adverts about it, there have been conversations about it already.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You have you have actually outed yourself as the reason for why this has to happen because there is a person on payroll listening going, well hang on.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You usually multiply the number in the tax code by 10 to get the total amount of income they can earn before being taxed.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You typically need 35 years of NI contributions to get the full new state pension and 30 years of contributions to get the full basic state pension.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Generally, 35 years of NI contributions are required for the full new state pension, while 30 years are needed for the full basic state pension.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under existing rules, councils can raise tax by up to 4.99% without a local referendum.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Single-person households qualify for a 25% discount, full-time students can be fully exempt, and those on low incomes can apply for a reduction of up to 100%.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The planned change to the official age of retirement has been in legislation since 2014 with a further rise from 67 to 68 set to be implemented by the mid-2040s.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The policy ensures the state pension increases each April in line with the highest of inflation, the rise in average earnings or 2.5 percent.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The policy guarantees that the state pension rises each April in line with the highest of inflation, the increase in average earnings or 2.5 percent.", "score": 2.5843949999999998, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If they earn £30,000 per year, taxable income is £17,430 (£30,000 - £12,570).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Official figures show the average levy in England will rise 4.9 per cent next month, with a typical Band D property paying £111 more.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In London the typical figure is set to see a smaller 4.4 per cent rise to £2,068.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "However, the ONS did revise annual growth for the whole of 2025 up slightly, from 1.3% to 1.4%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It'll go up to 53, sorry, 54 pence a litre, at the moment it's 53 pence a litre, to fraction under on both, but, and then two pence a litre more, uh, in six months increments from then on.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But if you wash using the eco-mode setting it can be just 50 litres.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Personal Savings Allowance (PSA), introduced in April 2016, allows basic-rate taxpayers to earn up to £1,000 in savings interest tax-free, while higher-rate taxpayers can earn just £500.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to analysis from motor experts Pete Barden, older cars registered before March 2001 with large engines above 1549cc will pay £375 per year.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under the updates, owners of petrol and diesel cars with engines below 1549cc will pay £230 per year, a £10 rise on the current £220 annual charge.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The household saving ratio increased this quarter by 0.8 percentage points to 9.9%, which the ONS said was caused by higher non-pension saving and \"remains high by historic standards\".", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The full-year growth was previously estimated at 1.3 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hagger added: 'You need an average balance across the whole month of a minimum of £10 to enter the draw and each multiple of £10 gives you another entry, so the more you put in, the more chances you have.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Bath & North East Somerset: 4.99%Bedford: 4.99%Blackburn with Darwen: 4.99%Blackpool: 4.99%Bournemouth, Christchurch & Poole: 6.74%Bracknell Forest: 4.99%Brighton & Hove: 4.99%Bristol: 4.99%Buckinghamshire: 4.99%Central Bedfordshire: 4.99%Cheshire East: 4.99%Cheshire West & Chester: 4.99%Cornwall: 4.99%Cumberland: 4.99%Darlington: 4.99%Derby: 4.99%Dorset: 4.99%Durham: 1.99%East Riding of Yorkshire: 4.99%Halton: 4.99%Hartlepool: 1.98%Herefordshire: 4.99%Hull: 4.99%Isle of Wight: 4.99%Isles of Scilly: 4.99%Leicester: 4.99%Luton: 4.99%Medway: 4.99%Middlesbrough: 2.00%Milton Keynes: 4.99%North East Lincolnshire: 4.50%North Lincolnshire: 4.70%North Northamptonshire: 4.99%North Somerset: 8.99%North Yorkshire: 4.99%Northumberland: 4.99%Nottingham: 3.50%Peterborough: 4.99%Plymouth: 4.99%Portsmouth: 4.99%Reading: 4.99%Redcar & Cleveland: 4.99%Rutland: 2.00%Shropshire: 8.99%Slough: 4.99%Somerset: 4.99%South Gloucestershire: 4.99%Southampton: 4.99%Southend-on-Sea: 4.99%Stockton-on-Tees: 4.95%Stoke-on-Trent: 4.99%Swindon: 4.99%Telford & Wrekin: 4.99%Thurrock: 4.99%Torbay: 4.99%Warrington: 7.48%West Berkshire: 4.99%West Northamptonshire: 4.95%Westmorland & Furness: 4.99%Wiltshire: 4.99%Windsor & Maidenhead: 7.49%Wokingham: 4.99%York: 4.99%", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The saving ratio increased by 0.8 percentage points to 9.9 per cent in the fourth quarter.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We've got about eight or nine different bands.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A £4 monthly increase represents an 8 per cent increase on a £50 deal, compared with a 20 per cent increase on a £20 deal.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged, which followed unrevised growth of 0.1% in the previous three months.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across England, the pattern remains consistent, with most county councils, metropolitan boroughs and unitary authorities implementing rises of 4.99%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Pension Credit tops up this amount up to £238 per week, which is only a few pounds less than the new state pension anyway (£241.30).", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By contrast, the same £20,000 placed in a leading cash ISA paying 4.45% would generate £890 completely tax-free.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Office for National Statistics (ONS) kept its estimation for the October to December quarter unchanged at 0.1%, which followed unrevised growth of 0.1% in the previous three months.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It means the number of £100,000 prizes will fall from 78 in the most recent draw, to an estimated 71 in April.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For every £10 you deposit, you get one entry into the monthly draw up to a maximum of £85,000.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Bournemouth, Christchurch and Poole Council set an increase of 6.74%, while Trafford, Warrington and Windsor and Maidenhead approved rises of around 7.5%.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other lower rises include 1.99% in Durham and around 2% in several London boroughs, including Wandsworth and Westminster.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Smaller English councils are allowed to raise bills by only 2.99 per cent, while in Wales rates could rise by as much as 15 per cent.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For most people with one job or pension, the standard tax code is 1257L.", "score": 2.5688, "claim_types": ["quantity", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Look, higher energy prices are not good news for anyone.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An accountant and professional adviser will always ask you more questions until they've got enough information to be able to come to a conclusion or the best plan of action.", "score": 2.5686799999999996, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The State Pension age is set to start rising from 66 to 67 in April, with the increase due to be completed for all men and women across the UK by 2028.", "score": 2.55971, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week, OECD forecasts delivered the biggest downgrade to Britain compared with other major economies, slashing its growth prediction by 0.5 percentage points to just 0.7 per cent.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The policy has resulted in substantial increases in payments in recent years, including a record 10.1 percent surge in April 2023, due to skyrocketing inflation the previous year.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The OECD warned last week the UK would face the biggest hit from trade disruption in the Middle East as growth could come to 0.7 per cent.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The policy has delivered sizeable increases in payments in recent years, including a record 10.1 percent hike in April 2023, thanks to soaring inflation the year before.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's not the highest ever that was during the COVID pandemic, but it is still pretty high.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, we know that one of the reasons why people are out of work is because of long-term ill health, including long-term ill mental health.", "score": 2.5528750000000002, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Between 2024 and 2025, scrappage increased by 550%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among the providers applying the largest price rises as a percentage of their average monthly costs include Three, Hyperoptic, Virgin Media and TalkTalk.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This represents an 18 per cent increase, as opposed to the 7.5 per cent rise that would've applied under the old rules.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1 per cent to 1.5 per cent growth that had previously been widely expected.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When you look at fuel prices, they're still lower than they were, um, three years ago.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Household incomes are still marginally higher than when Labour came to power, but remain below pre-Covid levels.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It also puts the UK at second lowest in the G7 in terms of economic growth this year, behind only Italy.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is a £15 rise on the £360 fee currently paid by road users taxing one of these vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Customers served by Thames Water can expect their bills to rise by just £3 a year, compared to £57 for customers of United Utilities.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The OECD forecast the UK would see inflation jump to 4% this year, up from 3% in the latest official figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But while surging oil costs have left motorists paying more than £1.80 for a litre of diesel and £1.52 for petrol, the Treasury is believed to be seeing a £20million a day boost to revenues.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The RAC has also suggested the Government could earn an extra £2billion from VAT on petrol sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Business investment over the year was two per cent higher, with a fall of 2.5 per cent in the fourth quarter dragging down on the figure.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pensioners then experienced an 8.5 percent rise the following year, in line with the increase in earnings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There will also be a new online sports betting duty of 25% from 2027, covering all sports except horse racing.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So that's actually something that is really tough. We've recently done some research that said that the average business owners spending multiple across the UK, multiple millions of pounds on financial tools.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than nine in ten UK accountants believe public AI tools should be regulated and/or restricted when providing financial advice, with 70 per cent calling for regulation.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is making these changes to offset an additional £300m in taxes introduced in last year's autumn budget.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Costs have doubled for us in the last month and we only do short trips in the car.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Before the crisis, we used to fill up for $50 a day, now that's jumped up to $150 a day,' he said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "William Hill is set to close 200 of its UK shops in a hammer blow to Britain's high street.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The rises in national minimum wage and national living wage highlighted by Sir Keir represent a £1.4 billion additional annual increase for hospitality businesses, the body said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Show me, show me a government, any Prime Minister, you've had about seven of your guys in recent times, show me one of them who has actually created growth.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £33; Potential savings: £100", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price 'hike': minus £117; Potential savings: £338", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crossing the threshold triggers the tapering of the personal allowance, creating an effective 60 per cent marginal tax rate on income between £100,000 and £125,140, turning bonus and pay rises into a \"tax shock\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is the fourth year in a row that the England-wide increase has averaged around 5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Virgin Media's average monthly price is £22.86, with prices rising by £4 this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In April 2016, the state pension age was set at 66, which means that new state pensioners today are aged up to 76, though they could turn 77 just after April 6.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK borrowing costs are already the highest in the G7, with 10-year gilt yields recently topping 5%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reeves once had around £23.6billion of fiscal headroom.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Savings over £10,000 are taken into account, but many people with modest savings still qualify.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That comfortably breaches the £500 PSA for higher-rate taxpayers and comes close to the £1,000 limit for basic-rate taxpayers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"This return in savings interest is shielded from tax due to the PSA for a basic-rate taxpayer, but only £500 is safe for higher-rate taxpayers.\"", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The broader trend highlights a shift in household finances, with the UK savings ratio rising to 10.2% in the second quarter of 2025, up from 6.8% in the same period in 2016, according to official figures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We know that there are 25,101 prizes in total, ranging from £5 to £25,000 - but we don't know the number of customers that are eligible or how big their balances are.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For every £25 you invest in Premium Bonds, the likelihood of winning £1million is 1 in 2,737,381,167.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This will lift payments by 4.8 percent this April, increasing the full new state pension from £230.25 a week to £241.30 a week, or £12,548 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The full basic state pension will go up from £176.45 a week to £184.85 a week, or 9,612 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And, uh, Heathrow was wanting to put up prices as a result, the Civil Aviation Authority have come out this morning and said, in essence, you can't spend the 10 billion, we'll allow 5.8 billion, so quite a big reverse for Heathrow and we'd like per passenger charges to go up from the current 28 pounds 40 per passenger to just, well, actually they give a range, the midpoint of the range is 28 pounds 80, so pretty flat actually.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Uh, and Heathrow was asking for just over 33 pounds, so it's a big, a lot.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Revised figures suggest that the economy grew by just 0.1% in the last quarter of 2025, a period where there was no war in the Gulf, and the price of Brent crude was around $70 a barrel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This will boost payments by 4.8 per cent this April, raising the full new state pension from £230.25 a week to £241.30 a week, or £12,548 annually.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under regulator Ofgem's price cap will fall by by 7%, or £117 a year, to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a member survey carried out by UKHospitality in February with other trade associations, 64% of hospitality businesses said they would slash jobs as a result of the cost increases, 51% said they would cancel investment plans, and 42% said they would reduce trading hours.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Today's rise in minimum wage rates will see pay for 18 to 20-year-olds jump by 8.5 per cent to £10.85 an hour, while those aged 21 and over will get a 4.1 per cent hike to £12.71.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ryan, a consultancy, has calculated that the overall bill will rise by £3.4billion.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Seven councils were granted this special permission to raise bills by more than 4.99%, including North Somerset, Shropshire and Worcestershire, each approving rises of up to 8.99%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Seven councils were granted this special permission to raise bills by more than 4.99% (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Faced with a backlash from landlords and political opponents, Ms Reeves announced a 15% cut to rates for pubs and live music venues, plus a two-year rate freeze to mitigate the increases, until the next revaluation at least.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Eight million broadband and 14 million mobile customers are currently out of contract, or will be before April 1, according to price comparison website Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Switching can save broadband customers an average of £329, according to Uswitch.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In pounds and pence terms, prices would have risen £1.71 previously on average, so customers are an extra £2.29 a month out of pocket, Broadband Genie said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This reveals that 45 per cent of customers who took out a broadband contract after the introduction of fixed price rises didn't know their prices would rise annually, while 58 per cent were in the dark about how much their tariff would go up by in April.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For example, an employee with the tax code 1257L can earn £12,570 before being taxed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Category B (lower) Basic State Pension - spouse or civil Partner's insurance: £110.75 (from £105.70)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Almost 1.4m elderly people throughout Great Britain, including over 125,000 residing in Scotland, are presently receiving the means-tested benefit which could deliver an average of £4,300 in assistance over the coming year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nevertheless, recent DWP statistics indicate that more than 700,000 qualifying pensioners remain without the benefit to which they're entitled.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The increase in interest rates that has happened for us means about £12billion a year of additional interest payments.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Scotland, some councils are pushing through rises of up to 10%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The ONS increased the out-turn for 2025 as a whole to 1.4%, up from previous growth of 1.3% recorded because of updated expenditure calculations, but more recent figures have shown the economy flatlined in January with zero output.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figures showed the UK's dominant services sector flatlined in the fourth quarter with zero growth, while production expanded by 1.2% and construction fell by 2%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to analysis for The Times, the Government is set to get around £3.5billion a year from the energy profits levy on North Sea oil and an extra £2.4billion from gas sales.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Inflation held steady at 3% in February, which was in line with expectations but still well above the government's 2% target.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK economy grew 1.4 per cent in 2025, official data has shown as data analysts nudged up the estimate for the year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK gas prices have risen by more than 70 per cent since the start of the war while the Brent Crude Oil benchmark surpassed $115 per barrel.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Treasury-backed bank is cutting the rate from 3.6 per cent to 3.3 per cent, and also lengthening the odds for each £1 bond winning a prize to 23,000 to 1 from the current 22,000 to 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But in this quarter's 'big prize draw' there are 100 prizes of £1,000, 5,000 prizes of £10 and 20,000 prizes of £5 - as well as the grand prize of £250,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And it estimated that the average hike to business rates for a hotel in England totals £205,200, and £14,300 for a restaurant.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The average English hotel's bill will rise by 30 per cent, or £28,900, to £125,300 this April, and a typical restaurant faces an increase of £1,800 on the current average of £12,200, analysis by UK Hospitality showed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 60 people have been convicted in the case so far and a total of 79 have now pleaded guilty or been convicted", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This comes following Rachel Reeves' Budget measures, which will see gambling duty shoot up from 21% to 40% from April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We support currently over 800,000 businesses, we've built a waitlist at 50,000 businesses for making tax digital and I would have never thought that 50,000 people would be saying, I'm so excited for these changes and excited for these tax things.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Motability company, which administers the scheme, estimates that the scheme will cost the average customer around £400.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Apparently we had at least a month worth of fuel in the country, so for those 30 days, that fuel should have stayed the same price, but it hasn't.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £72; Potential savings: £633", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ford, VW and Vauxhall hit by £790 car tax trap 'being scrapped' new figures show ahead of April 2026", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An entitlement of merely £1 weekly is sufficient to access additional help.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The benefit boosts income to a minimum of £227.10 per week for single pensioners and £346.60 for couples - more if an individual has a disability or caring responsibilities.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Financial and related professional services generated £110.2bn in tax in 2024, equivalent to 12.3 per cent of total receipts, making it one of the largest single contributors to the Exchequer.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Which is about a third of the total raised by fuel duty last year according to the OBR.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But even if there were 20 billion a day, which I don't doubt from, um, extra oil prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the final quarter saw a 1.2 per cent recovery in the key metric, the ONS revised the drop in the third quarter up from 0.8 per cent to 1.2 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RHDI per head - a measure of what is left after taxes and benefits and the effects of inflation - was £6,353 at the end of 2025, compared to £6,413 at the end of 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In that scenario, it's easy to see the economy stagnating or even slipping into recession, rather than achieving the 1% to 1.5 per cent growth that had previously been widely expected.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Analysis from Moneyfactscompare.co.uk shows someone who locked £20,000 into a top one-year bond paying 4.58% would earn £916 in interest over a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The increase in bond yields poses a major headache for Chancellor Rachel Reeves, knocking billions off her £23.6billion 'headroom' against meeting tax-and-spend rules.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A £15 and £10 rise mirrors the increase paid by drivers this time last year, where fees jumped from £345 to £360 and £210 to £220.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Rachel Reeves is under growing pressure to help desperate drivers today as it emerged the government is in line for an £8billion windfall from soaring energy prices.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK economy grew by an unrevised 0.1% in the final quarter of 2025, official figures have confirmed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But it increased the out-turn for the year as a whole to 1.4%, up from previous growth of 1.3% recorded for 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Whereas in a savings account paying 4 per cent you'd get the equivalent of £16.66 per month or £200 per year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two lucky savers a month can win £1million, while 78 can win £100,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Pensioners then enjoyed an 8.5 percent increase the next year, in line with the increase in earnings.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "To date, more than 60 people have been convicted in the case - most from Minnesota's Somali community - and a total of 79 have now pleaded guilty or been convicted.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The company said last year that changes to online gaming duties and a new online sports betting tax would see its duty costs rise by up to £135 million a year from 2027.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The popular bookmakers has around 1,300 shops in the UK, meaning approximately 15% of its stores are set to shutter for good in a hammer blow to Britain's high street.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were fears among racing chiefs the rate would rise to 21% but after the successful campaign, the rate remained at 15%.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Findings of Scottish research by Dext, based on consulting 29 accountants and bookkeepers in Scotland, found that 82 per cent reported a general surge in clients using \"public AI\", such as ChatGPT, for tax \"advice\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "You got to the supermarket and you come out with two bags and it's cost you $140.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fuel excise will be cut from 44.2 cents per litre to 22.1 cents for a period of three months", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes after Compare Club's Financial Stress Index published in March this year, revealed that more than a third of Aussies (38 per cent) said they were financially worse off than the year before.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In its survey of around 600 business owners, the IoD said 71 per cent were concerned about geopolitical tensions and 69 per cent were worried about energy price volatility.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is rising by an average of 4.9% for households in England.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Many councils are allowed to increase bills by up to 5%, but seven have been given government permission to implement bigger hikes to help address a \"challenging financial position\".", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Hartlepool, bills will rise by just 1.98%, one of the lowest increases in the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Typical price hike: £114; Potential savings: £570", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Industry body Water UK says bills are expected to increase by £33 a year - 5.4 per cent - on average to £639 a year from £606.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those with BT, Plusnet, Virgin Media, TalkTalk, and Hyperoptic will face the steepest bill hikes of £48 a year - an inflation-busting rise of 11 per cent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Expert analyst Cornwall Insight has forecast that the price cap could jump by £332 in the summer to £1,963 a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Car.co.uk's analysis demonstrates that scrap valuations for the VW Golf have jumped by 323% since the closing quarter of 2025, while the Land Rover Freelander trails closely with a 233% hike.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A petition on the parliament website has now garnered nearly 50,000 signatures, demanding that the government slash Vehicle Excise Duty by 50% for vehicles aged 20 to 39 years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As the petition surpassed 10,000 signatories, the Treasury has issued a response.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Internet providers are set to pocket an extra £15.5million from their customers each month from April thanks to a change in billing rules, research claims.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to broadband comparison platform Broadband Genie, they will make an additional £186million a year compared to what they would've collected under the old system of inflation-linked price hikes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those with incomplete records will see lower total take-home for their pension payments, depending on how far off the full record they are, which the DWP calculates on a case-by-case basis when you first hit state pension age.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For example, an older state pensioner who only qualifies for the basic state pension will get £184.90 per week.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Springall said: \"Savers who locked £20,000 into the top one-year fixed bond of 4.58% back in March 2025 would receive annual interest of around £916.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Less powerful cars are charged a lot less but are still facing higher prices as of April 1.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just look at the number of people with ILR status who are claiming Universal Credit, in April 2022, it was 95,612, in January 2026, it's 222,076, that's a 132% increase.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK economy grew by 0.2 per cent and 0.1 per cent in the subsequent quarters.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Usually, Chip's monthly draw offers at least one grand prize of £10,000 and 250 additional prizes of £10.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "About 43 per cent of the 1000 Australians surveyed said they relied on credit at least occasionally to cover everyday household bills.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cost expectations rose to the second highest level on record after last September at the height of pre-Budget tax speculation while revenue expectations for the year dipped.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Online gambling duty is set to skyrocket from 21% to 40% on April 1 as part of Rachel Reeves' budget measures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The survey, by UK Hospitality, the British Beer and Pub Association, the British Institute of Innkeeping and Hospitality Ulster, also found 42 per cent will reduce trading hours while 15 per cent of venues will be forced to close.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "On Saturday, February 28, there were 38 fixed tariffs on the market - there are 26 available today.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Higher energy prices, um, are not good for households, or good for businesses.", "score": 2.5324400000000002, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And but we do have an increase in youth unemployment.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And, um, the other thing is that historically, the cost of motoring is really quite low.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Research by Yorkshire Building Society found 36% of people have never heard of the PSA.", "score": 2.500545, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At least 1,411 people have been killed by illegal migrants, nearly all of whom have been killed during the last 25 years, according to a list assembled by a grassroots group that opposes mass migration.", "score": 5.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He has memorialized 1,280 deaths since 2018, all of which are based on reports from government agencies or reliable media outlets that declare the murderers to be illegal migrants.", "score": 5.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That analysis likely understates crime by migrants, but Cato admitted on March 30 that illegal migrants from Latino and African countries are more criminal than citizens with roots in Europe or Asia.", "score": 5.309265, "claim_types": ["quantity", "correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @ukhomeoffice: Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK government claims the deal has prevented 42,000 illegal migrants getting on boats, although the overall number making the journey across the Channel has continued to increase.", "score": 5.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The program uses tax dollars to help illegal migrants game the system to attain legal status despite having broken our laws to get here in the first place.", "score": 5.023415, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Keir Starmer has now presided over the most Channel crossings of any Prime Minister - up 45 per cent since the election.", "score": 4.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This office has had far-reaching consequences for decades aiding tens of thousands of illegal migrants to attain legal status each year.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We have prevented over 40,000 crossing attempts by illegal migrants since this government took office. Our landmark deal means illegal migrants who arrive on small boats are being sent back to France.\"", "score": 4.910905, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "it had been due to expire tonight ministers claim 42,000 illegal migrants have been stopped from crossing the channel in the 21st month since Labour's election", "score": 4.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She was allegedly led down a ramp onto the beach at Brighton and raped by Alshafe and two other asylum seekers - Iranian Abdulla Ahmadi, 26, and Karin Al-Danasurt, 20, from Egypt.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And there's forcibly removing women and children asylum seekers who arrive illegally.", "score": 4.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nearly 700 officers from units dedicated to intercepting small boats will continue to patrol the French coastline.", "score": 4.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Illegal migrants used to come in large numbers as stowaways on trucks etc.", "score": 4.638815, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Dublin Convention did nothing to make it easier to return asylum seekers.", "score": 4.612785, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "is published on Tuesday and who is also a member of the government's independent Migration Advisory Committee, said: \"Governments of all stripes like to make bold claims, from 'stop the boats' and 'smash the gangs' to 'net migration falling below 100,000'.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A huge share of the deaths are Latinos, including some who are illegal migrants, he added.", "score": 4.55978, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.5, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.5, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We made 5,500 requests for asylum seekers to be returned.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year, the French stopped around 35% of people smuggler small boats - carrying around 22,500 migrants - from getting across the English Channel.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was the lowest rate of interceptions since the small boats began arriving in 2018, down from a peak of 46.9% in 2023.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In the same year, under the same convention we accepted 1,215 asylum seekers.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But reports show that in the first 12 weeks of 2026 the number of small boat crossings being stopped by France has dropped to 33.1%, the lowest rate since 2018 when the crisis began.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As of 25 February, 2,209 people had arrived in the UK in small boats in 2026 - up by about 7% compared with the same period in 2025.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Talks with France on a deal to tackle small boat crossings have been extended by two months, with the UK set to pay more than 16 million pounds for French beach patrols during that period.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", "score": 4.529545, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A man used Facebook to advertise 'dangerous' small boats crossings, urging migrants to 'hurry and get a seat'.", "score": 4.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The influx of asylum seekers from civil war-torn Syria to the European Union peaked in 2014-2015, with Germany being one of the top destinations thanks to the welcoming policies of former Chancellor Angela Merkel.", "score": 4.486035, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Cameron, who was prime minister between 2010 and 2016, promised to reduce annual net migration from \"hundreds of thousands\" to \"tens of thousands\".", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There have been just three interceptions at sea since Mr Macron announced last July that France would modify its maritime policy to allow officers to board small boats.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So far this year, some 4,441 people have arrived in the UK on small boats.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But the French authorities are reported by The Guardian to be concerned that UK demands could put the lives of asylum seekers at greater risk.", "score": 4.331365, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Xavier Ducept, France's junior minister for the sea, has criticised the UK for making demands that risk the lives of asylum seekers.", "score": 4.313675, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If the UK accepts illegal migrants or legalizes them or gives them work permits, of course this is going to encourage other people to come.", "score": 4.30329, "claim_types": ["correlation", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "National Crime Agency Branch Commander Saju Sasikumar said: 'These defendants used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The jury of seven women and five men was told the three asylum seekers had been partying at Horizon on the seafront during the evening in question.", "score": 4.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Voters will in time judge the impact of the claimed millions in savings - but more immediately they're facing council tax hikes of a high 4 percent.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK is to pay France £16.2m to patrol beaches for the next two months, as the two sides continue to hammer out a new deal to intercept small boats attempting to cross the English Channel.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It said 700 officers from units dedicated to intercepting small boats will patrol the French coastline round-the-clock.", "score": 4.224345, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Paris is concerned that UK demands could put the lives of asylum seekers and French officers at greater risk.", "score": 4.20493, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NCA Branch Commander Saju Sasikumar said: \"This group used social media to advertise small boats crossings for migrants, claiming cheap prices and urgency to entice people looking for a new life.", "score": 4.173405, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But he argues the same welcoming nature that propelled his family to success is now being taken for granted by asylum seekers living on welfare in tax-payer funded accommodation, while the very fabric of Britain is torn apart by high levels of legal migration.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Trump administration has gutted a Justice Department program that helped many thousands of illegal migrants fight the department's own deportation cases.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The pugnacious 39-year-old tech millionaire delivers his Dover assault on migration in the gravest of terms to a room of Reform enthusiasts, hitting out at the \"invasion\" of people who have arrived in the U.K. without permission on small boats.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hove Crown Court heard the three asylum seekers then targeted the lone drunk woman in a 'cynical, predatory and callous' attack.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform UK leader Nigel Farage said the UK needed to pull out of the European Convention on Human Rights (ECHR) to stop small boat crossings.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Keir Starmer's pledge to \"smash the gangs\" profiting from small boat crossings has followed a pattern set by Conservative-led governments of employing \"bullish rhetoric\" with little evidence that it can be delivered, an expert has claimed.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'She is determined to deliver the best deal for the British people to prevent illegal migrants getting to Britain,' the source said.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Home Secretary said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 4.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The gritty video that Springsteen released for \"Streets of Minneapolis\" captured a city under siege by 3,000 federal officers, which President Donald Trump's administration called its largest immigration enforcement action anywhere in the country.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Home Secretary has agreed a two-month extension to the small boats deal with France, just hours before it was due to expire.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "One of the things that Shamal Ameen would like to see happen is to have this more closely related, relate the money to the effectiveness of the patrols in stopping migrants crossing in small boats.", "score": 4.037115, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "RT @afneil: Keir Starmer claims Nigel Farage is to blame for the boat people because Brexit took us out of the Dublin Convention (in 2020), which allowed us to return asylum seekers to the EU countries from whence they came.", "score": 3.98733, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Nigel Farage said the UK needs to come out of the European Convention on Human Rights to stop small boat crossings.", "score": 3.98733, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Two Vietnamese nationals who advertised small boats people smuggling on Facebook have been sentenced following a major UK-French investigation.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The gang shared video clips of people travelling on small boats and posted UK mobile numbers for migrants to arrange travel via Zalo, a Vietnamese instant messaging app similar to WhatsApp.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "After the Horizon nightclub closed at 5am the three asylum seekers left the club and CCTV played to the jury allegedly showed them on the street outside the club.", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Among other services, the representatives accredited by the office helped illegal migrants appeal their immigration denials and ward off deportations.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Migrant ran Facebook network to lure hundreds to the UK in small boats", "score": 3.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As a result the Dublin Agreement actually made us a net recipient of asylum seekers.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He said a Reform UK government would order the Royal Navy to tow small boats back to northern France, which he claimed would be possible if the UK pulled out of the ECHR.", "score": 3.7800599999999998, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Home Office sources slammed those proposals saying they were \"completely reckless\" and would lead to a \"surge in illegal migrants getting to Britian\".", "score": 3.7800599999999998, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Farage warned the government's failure to strike a deal by the deadline could trigger a fresh wave of illegal migrants crossing the English Channel.", "score": 3.7800599999999998, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vietnamese people smugglers who advertised small boat crossings for £15,000 on Facebook are jailed for a decade https://t.co/TUA0rJfxPV", "score": 3.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Speaking to the media at Heathrow Airport, Mr Farage demanded the UK leave the European Convention on Human Rights (ECHR) to bring an end to small boat crossings.", "score": 3.7623699999999998, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A Home Office spokesman called France the UK's most important migration partner and said joint efforts were helping to reduce small boat crossings.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Home Office spokesperson said: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Home Office spokesperson told the Press Association: \"The Home Secretary is driving a hard bargain with the French to deliver the best deal for the British people to prevent illegal migrants crossing the channel. Essentially getting more bang for our buck.\"", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We'll also look into the UK's deal with France to combat small boats.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So I mean, I think what what's clear amongst all this is the entire strategy of stop small boats is this smoldering wreck.", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These charges or convictions included serious and violent offenses, including 57,081 assaults; 18,579 sexual assault and sex offenses; 12,895 weapons offenses; 11,822 burglaries; 5,462 robberies; 2,894 homicides; and 2,766 kidnappings ...", "score": 3.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Dublin Convention was a two-way street for asylum seekers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The court heard Alshafe and Ahmadi had arrived in the UK by small boats in June 2025, while Al-Danasurt had arrived by the same method in September 2024.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK has failed to renew a deal with France to pay for beach patrols to intercept small boats attempting to cross the English Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Now, that deal that Kate was talking about, the UK French deal on patrolling beaches to stop small boats.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK and France extend talks over new small boats deal", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shabana Mahmood, the Home Secretary said that a \"new and improved UK-France deal\" was yet to be finalised but stressed that whilst negotiations took place \"French law enforcement operations to stop illegal migrants in France will continue.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK is locked in last-minute talks with France over the renewal of a deal to pay for beach patrols to intercept small boats in the English Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel", "score": 3.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a statement, Ms Mahmood said: 'Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In a statement, Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "She lives in the area where small boats are now leaving from.", "score": 3.47393, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The stopgap arrangement, which will last for two months, comes after French negotiators refused to agree to UK demands for further interventions and patrols to stop asylum seekers from reaching the UK via the Channel.", "score": 3.436025, "claim_types": ["correlation", "rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Vietnamese people smugglers who advertised small boat crossings for £15,000 on Facebook are jailed for a decade", "score": 3.287855, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'If there are eighty people on an overcrowded boat, including women and children, then it is extremely dangerous to try and stop them.", "score": 3.281555, "claim_types": ["quantity", "correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "At midnight tonight, the deal between the UK and France designed to combat small boat crossings is due to end.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue.", "score": 3.228755, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In this half hour, the UK and France remain locked in last-minute talks over a new deal to tackle small boat crossings across the channel.", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "French police will continue to patrol beaches where small boats are launched from after the British government extended the agreement covering it for two months", "score": 3.228755, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The British prime minister urged \"closer work together on returns (of illegal migrants), on border security, and on tackling people smuggling networks\".", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Many claim they are asylum seekers, despite the Balkan country being categorised as a safe place to live.", "score": 3.128005, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The NCA said it worked with social media networks in 2025 to have more than 10,000 posts, pages or accounts linked to organised immigration crime removed from platforms, a record number.", "score": 3.10771, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It's a key part of the operations of the, of the anti, anti-immigration, uh, service, seeking to root out and remove those judged guilty of being illegal migrants in America.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"In practice the results have disappointed, because factors outside their control have played a huge role. That included EU membership; in the case of net migration, France's willingness to cooperate on asylum policy; or the sprawling, decentralised activities of smuggling gangs that are very difficult for government to contain.\"", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "During FY 2024, the 81,312 criminal noncitizens ERO arrested had 516,050 charges and convictions, for an average of 6.3 charges or convictions per person.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hop Can Nguyen, 46, and Hoang My Tra Nguyen, 25, helped traffic at least 250 migrants into the UK - offering journeys costing up to £18,000 - before disappearing from Home Office accommodation.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When it was announced in 2023, the previous Tory government said the £478 million package would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Officials pointed to some 42,000 illegals having been stopped from making the crossing.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hop Nguyen was jailed for 12 years after he helped traffic at least 250 migrants into the UK - offering journeys costing up to £18,000", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A five-month NCA investigation found the group facilitated crossings for at least 250 people between January 2023 and April 2024.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Home Office officials insist that nearly 60,000 migrants who have made the illegal channel crossing have been deported since the general election.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "For example, a 2011 study by the Government Accountability Office reported 25,064 foreigners arrested for homicide from 2001 to 2004.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"While we finalise a new and improved UK-France deal, French law enforcement operations to stop illegal migrants in France will continue. I will do whatever it takes to restore order and control at our borders.\"", "score": 3.092465, "claim_types": ["correlation", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "And talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", "score": 3.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Mahmood said: \"Our work with France has stopped 42,000 attempts by illegal migrants to make the journey across the Channel.", "score": 3.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Talks on a new 650 million pound deal with France to stop small boats crossing the channel are deadlocked because the French are rejecting British demands for payment by results.", "score": 3.061165, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Americans are being slaughtered in massive numbers by the non-enforcement of our existing border immigration laws ... and it's all 100 percent preventable through the adequate enforcement of our existing laws.", "score": 3.039905, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Yusuf has called for US Immigration and Customs Enforcement (ICE) style removals to deport 600,000 people from the UK over five years.", "score": 3.0274850000000004, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "According to St. Fort ́s arrest warrant, he is under indictment on charges of conspiracy to commit offenses against the United States, bribery involving programs receiving federal funds, and violating a law prohibiting interstate travel for unlawful activities.", "score": 3.023415, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Starmer has now presided over the most Channel crossings of any Prime Minister - up 45% since the election.", "score": 2.981275, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shabana Mahmood has extended a deal with France attempting to stop migrants boarding small boats in Northern France.", "score": 2.975225, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yes, you can, and certainly, you know, the idea that there have been thousands of people crossing, uh, you know, the channel and the government wants to point out it's prevented 40,000 crossing attempts, but equally there have been pretty much 40,000 successful crossing attempts in the last year.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only a third of the migrants who tried to cross illegally between January and March were stopped.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ultimately, does Nigel Farage really want 42,000 more migrants coming to Britain?", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They are now going to pay £2 million a week for continued failure.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of Albanians entering Britain via the Channel route spiked in 2022, with more than 17,000 individuals applying for asylum.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ledgers recovered from their homes showed payment amounts against 250 names, meaning the pair stood to make around £750,000 from those crossings alone.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"They are now going to pay £2m a week for continued failure.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Home Secretary Shabana Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Because I mean, numbers don't seem to have significantly dipped in in illegal migration while that deal was in place.", "score": 2.970815, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Britain is to pay millions more to France to police the Channel - despite the French refusing to accept targets to stop the boats.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Over the four weeks ending March 22 this year, just 23.2% of migrants attempting to cross the Channel were prevented by French police.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I mean, the argument from the British side here is that we've paid over 400 million pounds to the French for this previous three-year deal and yet the rates of boats being stopped has actually gone down, the success rate is worse.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Saying the English Channel would be \"busy\" once the deal expired, the Reform UK leader said \"it wouldn't make any difference whether we agreed to a further £365 million or not\" adding that those who make the crossing have a 97.5% chance of staying in the UK.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By 2023 the office had greatly increased the number of accredited representatives dealing with illegals.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I mean, if you look at the most recent weeks figures, um, there were 272 migrants who crossed in four boats just over a week ago on the 23rd of March.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "French authorities have prevented around one in three attempted channel crossings, but the interception rate was higher two years ago at around 45%.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025, and Ms Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Crossings in the Channel have increased over the past three years, with 41,472 people arriving in the UK by small boat in 2025 and Mahmood is under pressure to bring numbers down.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This issue may have gone off the back on the back burner a little because of the war, but conflict brings more immigration.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Migrant working as Uber Eats delivery driver is jailed for 44 months after raping female customer at her home", "score": 2.93464, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I heard the deal between the UK and France on stopping small boats crossing the channel comes to an end today.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ALIPAC posted a list of 1,409 victims of migrants last week and has been forced to add new names over the weekend.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Something which hasn't particularly worked to be frank, because numbers have not gone down since then.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But none of the establishment media sites track the growing number of Americans killed by the federal and state governments' refusal to exclude migrants from American communities.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More messages were exchanged where the victim accused him of raping her.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We've had many incidents, uh people dying of course in in the water, and I think the responsibility that the European Union, um carries in this issue and the fact that we are not addressing the roots of the problem of this, these my these migration these migration fluxes are really, are at the at the core and and the people who have not decided to stop immigration are greatly responsible for this tragedy that's happening on the French coast and on the channel with all these people going to the UK.", "score": 2.851145, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Immigration enforcement has sharply reduced the flow of migrant workers, and the labor market is adjusting to the new arithmetic.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Villanova report, titled \"The Crisis of Unrepresented Immigrants: Vastly Increasing the Number of Accredited Representatives Offers the Best Hope for Resolving It,\" says:", "score": 2.7846200000000003, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Similarly, Reuters and ABC News are tracking deaths in migrant detention centers, and as of March 31, have reported 14 deaths.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Migrants who have legally lived and worked in the UK for years could see themselves deported if Reform scraps permanent settled status.", "score": 2.7705450000000003, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The business-backed Cato Institute downplays the scale of deaths by arguing that migrants' arrest rates are lower than those of the U.S. population.", "score": 2.75796, "claim_types": ["quantity", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It comes as specialist French police units attempt to intercept small boats on canals and within 300 metres of the shore.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A Home Office spokesperson said: \"France is our most important migration partner and together our joint work is bearing down on small boat crossings.", "score": 2.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Normally during the winter months we see a drop in the amount of boats making the journey.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Normally during the winter months, we see a drop in the amount of boats making the journey.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A migrant who raped a customer while he was working as an Uber Eats delivery driver has been jailed for 44 months.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In all, just 2,064 out of 6,233 attempted crossings have been stopped.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And it wouldn't make any difference whether we agreed to a further 365 million or not.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Net immigration ran at roughly three million a year, creating a labor supply so abundant that employers could hire aggressively while workers cycled rapidly from job to job.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And of course, we need to have much stronger policies in saying if you are caught, uh being illegal as an illegal migrant, you cannot, you will be sent back.", "score": 2.6867799999999997, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Britain is on a \"catastrophic\" path headed for \"sectarian violence,\" says the entrepreneur tasked with selling Reform UK's hardline migration policies - and talking up Christianity.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yusuf says if Britain stays on its current trajectory \"we're headed to sectarian violence in this country.\"", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "After delivering the food at midday he returned to the property at 5pm where the harrowing sexual assault took place (file image)", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He told a French parliamentary committee last week that such funding would 'be extremely dangerous for migrants, for the security services, and for France.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just 90 minutes later at around 6am he allegedly helped target a 'visibly intoxicated' female as she was leaving the club before raping her with two others on the beach, pictured", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "ICE is calling on Virginia Governor Abigail Spanberger and Virginia's sanctuary politicians to not release this murderer back into our communities.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "These crossings are extremely dangerous and the defendants had no interest in the safety of those making the journey aside from ensuring they received their payment and made significant profits.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As weather improves, we'll hear from a fisherman in the channel this morning in about five minutes time, who says he's seen more crossings in the last few days than at the same time in the last few years.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "British taxpayers will now be forced to fork out an extra £16 million over the next two months while negotiations continue.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Then there's scrapping Britain's permanent settled status for migrants, a move that could see people who have legally lived and worked in the U.K. for years deported.", "score": 2.62201, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ms Dutka added: 'The boats were managed by third party criminal syndicates after deducting those costs, for example accommodation, profit per migrant would be £1,500 to £2,000.'", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At a press conference at Heathrow on Tuesday, he said: \"Tomorrow will be a very busy day in the English Channel, and it wouldn't make any difference whether we agreed to a further £365m or not. Even if the French do stop boats from crossing, the same people come back the next time there is a calm day, and it's all about pull factors, it's all about the fact you've got a 97.5% chance, whoever you are, of staying in the United Kingdom if you illegally cross the Channel in a small boat.\"", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The two were part of a larger international organised crime group bringing Vietnamese migrants into the continent, with Ramal Briem jailed for more than 10 years on March 26 for his role in the same crime group.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is a huge problem, it will not get better until we address the roots of this problem and until we stem the influxes upstream.", "score": 2.6029299999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "I also think the UK government needs to do more of course, they need to say any illegal any illegal migrant in the UK that's found in the UK is going to be sent back and cannot come back to the UK.", "score": 2.600525, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"We're headed for not just a bad outcome, but a catastrophic one, where everybody's now divided amongst racial or religious lines, voting accordingly, the economy is not growing, the most productive people are leaving,\" he warns.", "score": 2.59811, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As long as the the the the people know, the human traffics know and these people know, once I'm in Europe, once I'm in France or once I'm in the UK, I will not get sent back.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But it likely has missed many American victims because police, politicians, and the media do not want to know the murderers' legal status, he told Breitbart News.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But this month, the senior DOJ attorneys who oversaw the program were reassigned and the program was effectively neutered.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reform plan to stuff Lords with '900 peers' to push deportation plans", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Is there a sense that the last deal, I mean, everyone's very concerned about it coming to an end, but did it actually work?", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So I think it's it's a problem that we share and that we cannot solve by by trying to send the people back once they've traveled so far, um, and when there's so many of them on the French coastline.", "score": 2.58644, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only 209 transfers were agreed.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The two month extension to the patrol deal is being backed by £16.2m in UK funding, according to the Home Office.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was a really interesting argument made yesterday in a French parliamentary committee by the French, by the man responsible for but basically for boats and and this, boat security policy, small boats.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Negotiations for a new 650 million pound channel migration deal are currently deadlocked hours before the current three-year deal expires at midnight tonight.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As you just heard, you know, as you just said, the 650 million pound cost over three years compared with the last deal which cost 475 million pounds.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Out of 6,233 attempted crossings in the first 12 weeks of this year, some 2,064 (33.1%) were stopped.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 4,400 migrants have crossed the Channel this year by the end of last week.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That has only had about 300 people who have left the UK from it and the same amount of people are coming in return.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than 4,400 have already made the crossing since the start of the year, despite poor weather.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The program was huge and involved more than 850 nonprofit migrants' rights organizations.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Figures published by the UK Home Office show that French interception rates have fallen to the lowest on record so far this year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under a 2023 agreement signed by then Prime Minister Rishi Sunak, the UK has paid £476m to France for extra patrols to disrupt smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This is the original three-year deal, 475 million pounds, struck by Rishi Sunak, I must add, comes to an end I understand at midnight.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That's down from 35.1% last year and 36.7% in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The figure reached more than 300,000 by 2015.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The then Tory government announced the £478m package in 2023, saying it would fund a new detention centre in France and hundreds of extra law enforcement officers on French shores.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Shabana Mahmood has signed off a £16.2 million cheque for a two-month extension to the current deal with Paris, which subsidises French beach patrols.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of crossings have risen in the following years, with some 41,472 people arriving in the UK by small boat in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He's told Times Radio the number of crossings is going up.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "These accredited non-attorney representatives, for instance, helped 7,779 migrants with their removal cases between 2010 and 2020, Villanova added.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only 33% of crossings are now being stopped (Image: Getty)", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It saw the UK paying £476million to France to fund extra patrols to catch smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under the current deal, nearly 700 law enforcement officers are on the ground patrolling beaches, using drones and buggies to stop people getting on boats.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number intercepted as they tried to cross the Channel in the first three months of the year was the lowest on record.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The government is trying to renew it, try and, you know, even potentially putting in extra money into it, 650 million over three years.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since then, the number of crossings has increased, with 41,472 people arriving in the UK by small boat in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since Labour came into power, numbers in such accommodation have increased by over 6,000, with continued pressure on communities like ours in South Northamptonshire.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The existing near £500 million arrangement was due to end at midnight on Wednesday morning and the extension has been signed while the UK and France continue to thrash out a deal.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But wouldn't that involve appointing 900 or so new Reform peers to get a majority from a baseline of zero, I ask?", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "By 2024, that had fallen to below 3,000, according to Migration Observatory analysis of Home Office numbers in October.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So we were net recipients by over 1,000.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK to pay France extra £16m in stopgap deal to patrol Channel beaches", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK will pay France an extra £16.2m to keep police patrolling Channel beaches and prevent a surge in small-boat crossings after negotiators failed to agree a permanent deal before a midnight deadline.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At present, the UK pays nearly two-thirds of the annual cost of patrols in northern France.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some 6,233 attempted crossings took place in the first 12 weeks of the year, with only 2,064 being stopped according to reports by the Telegraph.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under a three-year agreement signed in 2023, the UK has paid £476m to France for extra patrols to disrupt migrant smuggling gangs.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to city records, the city agreed to pay Fort NYC Security more than $7 million to provide security services from 2023 to 2027, including at a Bronx hotel used as a homeless shelter.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Activists in Illinois note that they have served approximately 948 individuals in Central and Southern Illinois, according to WGLT.org.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And now the Boriswave, the low-paid millions who arrived earlier this decade, are soon to be granted Indefinite Leave to Remain (ILR), giving them access to benefits and housing at taxpayers' expense forever.", "score": 2.545585, "claim_types": ["correlation", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "All three men are charged with rape while Al-Danasurt - who is said to have filmed the attack and egged them on - is additionally charged with sharing intimate videos of the attack.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The roster of approximately 850 recognized organizations includes public libraries, job training and workforce development programs, domestic violence shelters and treatment programs, English language programs, labor unions, parishand faith unit-based charitable organizations and ethnic ministries, family resource centers, DREAMer programs, and other student groups.", "score": 2.5315000000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yusuf doubles down on his pledge to embark on an unprecedented mass deportation program and rip Britain out of its international human rights treaties.", "score": 2.5271350000000004, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He allegedly raped a lone drunk female on a beach after spending part of the evening chatting up another woman", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average energy bills are forecast to rise by almost £300 from July while motorists are already counting the cost of the war, with drivers paying £544 million extra for fuel since the US-Israeli bombing campaign began.", "score": 5.36473, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He's twice in the last week, or at least his administration has, mocked our armed forces once again.", "score": 4.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Department for Energy Security and Net Zero figures showed the average price per litre of standard grade burning oil stood at 104.1p in March, nearly double the average in February (53.5p) and the highest monthly figure since official data began in January 1989.", "score": 4.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Well, what I've just been saying, we need to increase our defence spending, a fair bit, not to the full 3%.", "score": 4.409655, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Our changing world and increased #threats mean that historic #defence spending targets are no longer enough.", "score": 4.386095, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The former EastEnders actor and friend of the Armed Forces is behind a drive, launching today, to secure the final £2.5m needed to open the Royal Marines Experience at the National Museum of the Royal Navy.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Donald Trump tells UK to secure Strait of Hormuz and 'go get your own oil ́", "score": 4.29984, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Putin has released tens of thousands of killers, rapists and thugs on condition that they are conscripted into the Russian armed forces.", "score": 4.163775, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "President Trump is right, the US armed forces are the best equipped, best trained, and most effective in the world.", "score": 4.12379, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Donald Trump shows absolutely no sign that he realises he's got to avoid it.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Where our armed forces are being insulted routinely by Donald Trump, where today we have a threat that the US won't come to our defense in our time of need, because of Donald Trump.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Podolyaka's report reversed years of messaging that the Armed Forces of Ukraine (AFU) troops were inferior to Russia's military.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Donald Trump said the UK and other countries which did not take part in strikes against Iran should secure the Strait of Hormuz themselves.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Donald Trump dramatically washed his hands of the crisis and told the UK to 'go get your own oil' today as the strategic Strait of Hormuz remains blocked.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "MPs have privately expressed concerns there is potential to embarrass the king if the US president continues his criticisms of the UK's armed forces before or during the trip.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prime Minister Keir Starmer said on Thursday he had authorised the military to board and detain Russian ships in British waters to disrupt a network of vessels that his government says enables Moscow to export oil despite Western sanctions.", "score": 4.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Lieutenant General Sir Robert Fulton, former Commandant General Royal Marines, said: \"This £2.5m target represents more than a financial goal - it represents a national commitment to our Armed Forces and remembrance.", "score": 4.061165, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And I don't really see the right level of seriousness when it comes to approaching those issues, whether or not they're security issues, to do with defence spending, economic issues, to becoming more economically independent of the US.", "score": 3.96055, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A reserve fleet of fuel tankers can be deployed at short notice to increase distribution capacity, while the Armed Forces could also be called upon to assist with deliveries if required.", "score": 3.866315, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "But as if to highlight the diplomatic tight rope Charles and Queen Camilla must walk, the announcement came less than an hour after President Donald Trump launched another blistering attack on the UK for failing to give more direct help on his attack on Iran.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Keir Starmer has made announcements about increasing defence spending, but actually in the financial statements that we've heard so far, it's not clear how we're going to meet those new targets that have been set.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of course, this administration and the United States Armed Forces will always act within the confines of the law.", "score": 3.734295, "claim_types": ["rules", "support"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Designed as a place of inspiration, the experience will ensure extraordinary stories from the Napoleonic Wars, both world wars, the Falklands War, Northern Ireland, operations in Iraq, Afghanistan, and global humanitarian missions can continue to be told.", "score": 3.7135350000000003, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"We recognise the interest that the Royal Family takes in us, and that is reflective of the armed forces' relationship with the nation. That's what it symbolises, that's what it signifies, and that's why it's so important.\"", "score": 3.703135, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "President Donald Trump has told Sir Keir Starmer that the UK will have to \"fight for yourself\" as the US would not provide any support in fuel supplies.", "score": 3.653625, "claim_types": ["predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Despite the drop in 2024, suicide rates among active duty troops overall still have gradually increased between 2011 and 2024, while the National Guard and Reserve have stayed largely stable, the report said.", "score": 3.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Donald Trump told countries including the UK 'go get your own oil' as he challenged nations to get supplies straight from the Strait of Hormuz", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The King reflected on the UK's relationship with its allies at a \"difficult time\" amid war in the Middle East, the former head of the armed forces said as he attended Windsor Castle for his investiture.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Separately, the Times reported that Ms Reid, the MP for East Kilbride and Strathaven, left the Armed Forces Parliamentary Scheme (AFPS) last year following an alleged incident at Faslane with a different officer.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "US President Donald Trump's approach to foreign policy is often dismissed as chaotic or erratic.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Speaking to the Press Association after the ceremony, Sir Tony said: \"He reflected on my service and I reflected on his support to the armed forces, and how grateful I am for all that he and the royal family do for us.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ingrid Seward, editor-in-chief of Majesty Magazine, said: \"It's going to be a slightly tense situation because of his dissing of Starmer and British institutions starting with the armed forces.\".", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Tony described the relationship between the Royal Family and the armed forces as \"extraordinary\" and said their visits boost morale, adding: \"I think the armed forces really covet their relationship with the Royal Family and with His Majesty the King.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Visiting the UK Armed Forces at Dukhan air base, Healey said the government has extended the deployment of UK Typhoon jets to Qatar.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The King himself today reflected on the UK's relationship with its allies at a 'difficult time' as he gave a knighthood to a former head of the armed forces at Windsor Castle today.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Tony described the relationship between the royal family and the armed forces as \"extraordinary\" and said their visits boost morale.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last week Keir Starmer made a point of announcing that he would allow our forces to conduct maritime interdiction operations to board Russian Shadow Fleet vessels in the Channel.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The head of its armed forces, Field Marshall Asim Munir, is in US President Donald Trump's favour.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Tories and Reform have been very clear about how they would get the money for defence spending, but actually, Labour and the Greens, how are they going to, how are they going to get that?", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The overall trend in suicide rates for active duty service members \"mirrors the increase in the U.S. population suicide rates over time,\" the report said.", "score": 3.548465, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Germany's decision to remove defence spending from its fiscal rules will put it on a course for debt to reach 100% of GDP.", "score": 3.534885, "claim_types": ["quantity", "rules", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ministers also have a series of measures to maintain supply in the event of a shortage - such as a fleet of reserve fuel tanker vehicles; calling on the Armed Forces to make deliveries; or releasing emergency oil stocks which the UK is obligated to hold.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "WASHINGTON (AP) - Fewer American service members died by suicide in 2024, with the number of deaths falling by 11% to 471 from a year earlier, according to a Pentagon report released Tuesday.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the report, nearly half of the active duty service members who died by suicide in 2024 had a mental health diagnosis such as alcohol use disorder, depression or anxiety.", "score": 3.3956850000000003, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The material can be fairly quickly enriched to the 90% threshold needed for weapons-grade uranium.", "score": 3.281555, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "During Merz's last visit to Washington DC in early March, Trump laid into Spain's PM, Pedro Sánchez, over his refusal to allow US access to Spanish air bases for strikes on Iran, and for failing to meet Nato's defence spending target of 5% of GDP.", "score": 3.27318, "claim_types": ["quantity", "support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The continued blockage of the Strait of Hormuz and threats to shipping routes in the Red Sea have led oil prices to jump above $100 per barrel.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But in the same breath, Donald Trump has threatened to obliterate Iran's power plants and oil wells if a deal isn't reached soon.", "score": 3.2280949999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Even the UK talks the talk, but still hasn't released its plans for the future of the armed forces.", "score": 3.211065, "claim_types": ["support", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The US and Israel began attacking Iran in late February, striking the mullah regime's leadership, nuclear and ballistic missile programme and armed forces.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The move risks further alienating US president Donald Trump, who has threatened to cut trade with Spain for denying the US' use of Spain's bases during the Middle East war.", "score": 3.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Asked about concerns among some of President Donald Trump's base about the possible use of ground troops in Iran, Hegseth declined to tip his hand.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "US President Donald Trump said Tuesday the countries that have not joined the Middle East war but are struggling with fuel shortages should \"go get your own oil\" in the Strait of Hormuz.", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Sir Keir Starmer discussed the Middle East crisis with Syrian President Ahmed al-Sharaa (Justin Tallils/PA)", "score": 3.10166, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The rebellion controlled nearly a third of the country with an estimated 15,000 to 20,000 fighters at its peak in the mid-2000s.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @ModernNavy: There's been a tenfold increase in security incidents at Britain's nuclear submarine base since #Russia's invasion of #Ukraine (16 to 149 last year).", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The arrival of 2,500 Marines and another 2,500 sailors is keeping the number of US soldiers in the Mideast region at over 50,000, while last week the Pentagon also ordered about 2,000 soldiers from the Army's 82nd Airborne Division to the region in order to give Trump additional military options.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"If you drop 2,000 guys on there, you need 8,000 liters of water every single day... never mind food, ammunition... never mind how you're going to evacuate the wounded,\" he said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Um, we've seen uh thousands of additional troops sent.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\". Support is at 30% and falling. They don't know what to do.\"", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The conflict has left more than 3,000 dead and caused major disruptions to the world ́s supply of oil and natural gas, roiling global markets.", "score": 3.09725, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most service members who died by suicide in 2024 were enlisted men under the age of 30, the report said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Billions of public funds have been poured into defence, with next to no oversight.\"", "score": 3.05185, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prime Minister Sanae Takaichi 's Cabinet in December approved a record defense budget plan exceeding 9 trillion yen ($58 billion) for the fiscal year beginning April and aims to fortify its strike-back capability and coastal defense with cruise missiles and unmanned arsenals.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The decrease emerged under Defense Secretary Lloyd Austin during the Biden administration and followed a rise in the number of military suicides in 2023.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But respected energy analyst Cornwall Insight said its prediction for the watchdog's price cap from July to September now stands at £1,929 for a typical dual fuel household - an increase of £288 or 18% on April's cap.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The rate of suicides per 100,000 service members also dropped that year compared to 2023, the report said.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The notoriously unreliable vertical takeoff and landing (VTOL) aircraft has earned the nickname 'widow maker,' having led to 30 deaths before it even entered active service in 2007.", "score": 2.959835, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And we've only got limited amount, not not enough.", "score": 2.9374000000000002, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Reduced flows of hydrocarbons and other essential commodities from the Persian Gulf have pushed global prices higher, raising the risk of significant economic disruption.", "score": 2.9374000000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'I am proud of the courage and professionalism our armed forces have shown since the start of the war and my message to Gulf partners is Britain's best will help you defend your skies.", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The use of the base is governed by a treaty between Rome and Washington: routine armed forces flights and work are permitted including operational and logistical, but warfighting activity requires the express permission of the Italian government.", "score": 2.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Many of the other 16 who died were burned alive.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Authorities name 16 killed in Tennessee explosives factory blast", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two dozen people have died in Gulf states and the occupied West Bank.", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to the FT, the $3.2bn equity fund pursues \"growth opportunities by investing in companies that may benefit from increased government spending on defense and security amid geopolitical fragmentation and economic competition\".", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Britain will send more troops armed with air defence systems to the Middle East to help blow Iranian missiles out of the sky.", "score": 2.8878899999999996, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Last week, the head of France's armed forces held a videoconference with 35 nations to discuss restoring movement through the Strait of Hormuz, according to the nation's defence ministry.", "score": 2.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Pentagon demands gigantic build-ups costing billions, the generals never seem prepared for what happens after phase one, the soldiers are far too keen to kill people - not just enemy soldiers but enemy civilians.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"They'd have to clear the city, every building... They're gonna have casualties, and a lot of casualties,\" Krapivnik said.", "score": 2.851145, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Food costs could also surge as fertiliser supplies are choked off, and the region is a huge source of aluminium.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Such a move would involve raiding Kharg Island, the 'crown jewel' of the regime where 90 per cent of its oil is loaded on to tankers.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is believed almost 8,000 Marines and Paratroopers will soon be gathered in the Gulf, with a further 10,000 on standby for deployment.", "score": 2.77565, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hundreds of flights operated by the flag carrier for Sweden, Denmark and Norway are said to be scrapped.", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some 7 per cent of diesel is imported from the Middle East.", "score": 2.72968, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Exactly, which is why we need to have stronger defenses.", "score": 2.72472, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The British government would be duty bound to respond in some way militarily to that act of military aggression.", "score": 2.712875, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'No survivors' in munitions factory explosion after 16 killed, police say", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UN's Interim Force in Lebanon (UNIFIL) wrote online: \"Two UNIFIL peacekeepers were tragically killed in south Lebanon today, when an explosion of unknown origin destroyed their vehicle near Bani Hayyan.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A former Royal Navy officer who put his erect penis through a shower curtain where a female colleague was washing has been jailed for two-and-a-half years.", "score": 2.712725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More than a decade of civil war in Syria led more than 5 million people to flee and a significant number to seek asylum in Europe, with social and political ripples for the continent.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And many other countries have now exceeded the 2% target which was set many, many years ago.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While all allies reached the 2 percent of GDP spending target on defense last year, there's still a big gap in how much countries shell out.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A third had workplace difficulties, while 45% had intimate relationship problems.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The carrier strike group consists of more than 6,000 sailors.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Average diesel prices are up 40p a litre since the war began, while petrol has gone up 20p.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But many European nations have increased the amount that they're spending on defense.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "More British troops are being sent to the Middle East, bringing the number of UK service personnel in the region to nearly 1,000.", "score": 2.6975749999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So far be it for me to start jumping to the defense of Donald Trump but I'm going to on this one when he says it's about time you started looking out for yourself a bit more and stopped relying on us.", "score": 2.658185, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Navigation becomes unsafe in British waters, where any vessel may be subject to piratical seizure.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"Its application to residents of the occupied Palestinian territory would constitute a war crime,\" he said.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "He groped other officers without permission, including one attack where he 'put his hand down the back' of a woman's swimming costume 'around her bottom and on to her vagina'.", "score": 2.652965, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The visit comes as Iran continues its aggressive missile and drone campaign against civilian infrastructure, military sites and critical national assets across the Gulf, with more than 3,500 missiles and drones fired to date.", "score": 2.648555, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"You've got basically a half ton of what's effectively weapons grade uranium that you've got to extricate,\" Ruhe said.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were two \"very high risks\" to vehicle mobility and lethality that were unresolved as at February.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Hegseth added: 'Our adversary right now thinks there are 15 different ways we could come at them with boots on the ground.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "While the majority of those troops are part of a rotation of forces planned before the war, some are among roughly 1,500 paratroopers the Trump administration decided to surge into the region last week.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And either there is one, like there is now, in which case it's unsafe to go in at all, no, very few merchant vessels except the ones that are run or are allowing, and no US warships.", "score": 2.598275, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ultimately, the biggest boost to the axis of autocracies might be the stress that the Iran war has put on the dynamic between the United States and its allies.", "score": 2.5968999999999998, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And then when we're in the conflict, we are dragged in massively.", "score": 2.58644, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Defence had paid Hanwha a total of $148,129 in interest penalties as at October 2025, with $335,889 in payments remaining, according to the audit office report released on Monday.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Special operations forces and conventional infantry units could be deployed if the President chooses to escalate the war.", "score": 2.5765849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Trump has maintained the US has 'plenty' jet fuel, but airline bosses say firms are facing an 'existential challenge' with depleting supply pushing up the cost of flying.", "score": 2.56732, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The military's statistics generally reflect suicide rates for society as a whole, when adjusted for age and gender, because a majority of those in the military are young and male.", "score": 2.56707, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Diesel and petrol prices are running at the highest levels since 2022, and projections this morning suggest typical energy bills will increase by £288 in July when the cap next changes.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The S&P 500 surged 2.9% to its biggest gain since last spring, while the Dow industrials advanced more than 2.5% as doubt about a possible end to the war swung back to hope on Wall Street.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Sir Keir Starmer discussed the situation with Syrian President Ahmed al-Sharaa in Downing Street.", "score": 2.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Beijing has boosted the share of non-fossil energy sources in its mix from 26% a decade ago to 40% now, the analysis said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Have racked up more than 1,280 hours protecting British nationals, bases and partners.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The restriction on cutting troop levels below 76,000 slows the process, but doesn't change its direction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "At least 3,500 Marines have arrived on USS Tripoli , an amphibious assault warship.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Government has announced a £53 million package of support for heating oil customers.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I'm telling to you, sir, more than 10 verbal notes, official notes, we declared to the FCDO, we sent to the FCDO to give me some to give us some evidences.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The pair are accused of pocketing $162,663 in winnings, which they agreed to split, with the reservist's share transferred via cryptocurrency.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Ministers also cite how around 90 per cent of the crude oil refined in the UK was imported in 2025, but only around 1 per cent of this came from the Middle East.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of active duty service members who died by suicide that year was 302, while 64 were reservists and 105 were in the National Guard.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The price most households pay for energy under regulator Ofgem's cap will fall by £117-a-year to £1,641 from Wednesday, driven by the Government's promise to cut bills by an average of £150 by removing green subsidies.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK is currently sourcing at least half its jet fuel from the Middle East amid a fall in domestic refining and a halt on Russian imports since the Ukraine invasion in 2022.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And they were able to get about three to four vessels out a day, uh, whereas the total is about 135 when the straits is functioning normally.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motoring research charity the RAC Foundation estimated that rises in pump prices since the conflict in the Middle East began on February 28 have led to motorists paying an additional £409 million for diesel and £135 million for petrol.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "I mean, we know that the number of destroyers that are actually active is only down to three, we saw HMS Dragon get deployed, um, with some of their air defense systems and radars, which are useful.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel Tuesday, up more than 45% since the war started Feb. 28.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "NATO countries hit 2 percent of GDP spending target", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This final measure was enacted on March 11 as part of the UK's coordinated release with the International Energy Agency (IEA) of 400million barrels of oil to the market.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Spot prices of Brent crude, the international standard, hovered around $107 a barrel in early trading, up more than 45% since the war started on February 28, when the U.S. and Israel attacked Iran.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Taxpayers will be slugged hundreds of thousands of dollars in penalty payments after Defence bungled the procurement of a $7 billion contract for infantry fighting vehicles.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We were the number two contributor to NATO, we're now something like number 12.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "WASHINGTON (AP) - Thousands of additional U.S. troops are heading to the Middle East as the Trump administration has insisted that progress has been made in talks with Iran and has threatened to escalate the war if a deal is not reached soon.", "score": 2.540725, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The United Nations rights chief has slammed the Israeli parliament's approval of a 'deeply discriminatory' new death penalty bill, warning that applying it in the occupied Palestinian territory 'would constitute a war crime'.", "score": 2.538635, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Mr Trump wrote: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "In a post on his social media platform Truth Social, the US president said: \"All of those countries that can't get jet fuel because of the Strait of Hormuz, like the United Kingdom, which refused to get involved in the decapitation of Iran, I have a suggestion for you: Number 1, buy from the U.S., we have plenty, and Number 2, build up some delayed courage, go to the Strait, and just TAKE IT.", "score": 2.516675, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "According to a report from the Los Angeles Homeless Services Authority (LAHSA), homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured over $500 million into fixing it", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "According to a report from the Los Angeles Homeless Services Authority, homelessness in Los Angeles in 2025 stood at a staggering 67,777 people, down just 141 people despite a reported $516 million being spent.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The data shows that while the population of people experiencing homelessness in Savannah rose from 579 in 2024 to 628 in 2025, the number of people living unsheltered decreased, the Current reports.", "score": 4.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"No party has put forward a credible plan to deliver the homes Scotland needs, meaning politicians of all parties are planning for more people to be pushed into homelessness.", "score": 4.751055, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In 2025 the Affordable Housing Supply Programme delivered 6,289 affordable completed homes, approved 5,833 homes, and started 5,856 homes.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Annual decreases were reported for approvals (9% decrease), starts (15% decrease), and completions (25% decrease) of homes provided via the Affordable Housing Supply Programme between 2024 and 2025.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The First Minister added that his Government had put more than £900 million into the affordable housing sector for the next financial year and there was an uptick in housebuilding in recent months.", "score": 4.545945, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Prosecutors said the nonprofit's executive director, Roberto Samedy, 50, and its former board chairman, Jean Ronald Tirelus, 50, embezzled from the organization - at one point pocketing $800,000 earmarked for \"economic growth and affordable housing\" in distressed Brooklyn neighborhoods.", "score": 4.486035, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Indirect investments from the Savannah Affordable Housing fund further helped support applications for three low-income housing tax credits, service centers and infrastructure.", "score": 4.3787199999999995, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Those tax credits will now help developers build 41 new affordable units for people experiencing homelessness, officials said.", "score": 4.347765, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The dearth of affordable housing made the state ́s Division of Housing move quickly on releasing AB540 funds.", "score": 4.347765, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was also a fall in affordable housing.", "score": 4.187915, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Under Bass's leadership, homelessness has failed be brought down significantly even as the city poured huge funds into fixing it.", "score": 4.173405, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An idyllic city known for its historic buildings and Southern charm has been beset by homelessness and drug use under a Democratic mayor.", "score": 4.10166, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, in heartland regions such as Anglesey (Ynys Môn) and Gwynedd, a lack of access to good employment and affordable housing has driven a youthful exodus, undermining the prospects of predominantly Welsh-speaking communities.", "score": 3.975225, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A bill last year that would have replicated the model for affordable housing projects died without a full vote in the Assembly.", "score": 3.920805, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Authorities have also implemented a City of Savannah's Top 10 Most Wanted list, the mayor said, as he applauded the Dundee Cottages project comprising 39 new cottages and 16 brand new apartments for people experiencing homelessness.", "score": 3.862985, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Just days before the Labour Yimby curry night, to the dismay of some councils and social housing groups, Reed announced \"emergency measures\" to cut the amount of affordable housing that developers were required to build in London.", "score": 3.748535, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Powderhall project in Edinburgh, centred on the grounds of a former waste transfer station, bowling greens and adjacent stables, will deliver a mix of affordable housing, community facilities and green space as part of a long-term transformation.", "score": 3.74449, "claim_types": ["predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The West Wemyss mass evictions controversy could be the first of many unless politicians act, a major homelessness charity has warned.", "score": 3.7135350000000003, "claim_types": ["correlation", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "\"It's all because we find it too difficult to build the volume of social housing that would change the game.", "score": 3.703135, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'America's prettiest city' beset by homelessness and drugs nightmare under woke mayor: 'They're injecting in broad daylight' https://t.co/UTYgfC7MqM", "score": 3.62201, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fife Council housing spokesperson Judy Hamilton gave an update on new builds.", "score": 3.58131, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The housing factory surety guarantee idea is \"super innovative,\" said Jan Lindenthal-Cox, chief investment officer at the San Francisco Housing Accelerator Fund, a nonprofit that directs philanthropic money toward cost-cutting affordable housing projects.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Councillor Tim Pogson, convener for housing, homelessness and fair work at the City of Edinburgh Council, said: \"This is a very exciting moment for the Powderhall regeneration.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "When it was built in the late 1960s and early 70s, its concrete expanses and 'walkways in the sky' were touted as a modern British success story, where the poor were to be supported by access to decent social housing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The homelessness charity says other corporate landlords will be watching the West Wemyss situation with interest.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"So, there has to be a combination of interventions: the Government's affordable housing programme; the attractiveness of Scotland for investment purposes; and also, for example, bring void accommodation into use by the public sector.\"", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Raman has been labeled a 'progressive' member of city council, whose main policies involve affordability and tackling the homelessness crisis.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Bass, on the other hand, was labeled as an incumbent and a 'veteran legislator' who is also focusing on homelessness.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In London and other major cities Reform of course needs to make a pitch on the cost of living, including affordable housing.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "A major operation was launched by the council in partnership with police, homelessness charities, gang crime experts and drug specialists to tackle the 'out of control' antisocial behaviour.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The move followed a meeting between government housing officials and several firms represented by the LPDF - including Barratt and Vistry Group - in which developers asked for affordable housing requirements to be slashed.", "score": 3.5503549999999997, "claim_types": ["correlation", "opinion", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A number of social housing groups and homeless charities who spoke to The i Paper said they are concerned at not being granted the same access to the Housing Secretary as private developers.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There has to be a combination of interventions - the Government's affordable housing programme, the attractiveness of Scotland for investment purposes and, also, for example, bring void accommodation into use by the public sector", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "'With a plan like this, we can actually really effectively remove and resolve homelessness,' added Stephanie Kaple, the Executive Director of the Savannah Chatham County Interagency Council on Homelessness, the lead organization in the plan's development.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "They also put together a five-year strategic plan to end homelessness in the city.", "score": 3.541385, "claim_types": ["quantity", "predictions", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This government wants you to believe it's normal that over 17,000 people, including nearly 5,500 children, are now homeless.", "score": 3.5175099999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Legislature authorized a wide-ranging study in 2017 that determined the state ́s supply of affordable housing was in crisis.", "score": 3.436025, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Yet problems have persisted, as residents started mixing Xylazine, also known as tranq, with fentanyl in February 2025 for a stronger high, according to WSAV.", "score": 3.3239400000000003, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Homeless numbers are rising every month, demand from the council on housing associations for temporary accommodation means more than half of all lets are for people who are homeless.", "score": 3.2500299999999998, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @ChamberVoice: We've spent £20bn on fibre - yet 90% of social homes are still offline.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In recent years, the share of this group - non-graduates in their late 20s - who are in private rented accommodation, which can be costly and insecure, has doubled, from 16% in 1998-99, to 33% in 2023-24.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Only 14 affordable rental units are available for every 100 extremely low-income households.", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The pair also received more than $200,000 in kickbacks in exchange for steering contracts worth millions of dollars to businesses controlled by Edouardo St. Fort and Miguel Jorge, the indictment said.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is the lowest in six years.", "score": 3.09725, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "St. Fort and Jorge were charged with federal program bribery and related charges, and face up to 10 years each.", "score": 3.083055, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "City officials said they have since issued 41 citations, 30 in 2025 alone, to assuage the authorities as 153 firearms were reported stolen.", "score": 2.970815, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most would do so by standardizing or trimming regulation.", "score": 2.9374000000000002, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Susan continued her charitable promotion: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Susan continued her charitable endorsement: \"Every shirt sold helps give people experiencing homelessness hope and the chance to create positive change through football. We're all on the same team.\"", "score": 2.922625, "claim_types": ["personal", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and drugs", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and criminals", "score": 2.89907, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 'forgotten' residents on Britain's most notorious housing estate: How failed £1.5bn regeneration deal has left London tower blocks overrun with squatters and drugs https://t.co/fvof91NBRy", "score": 2.868115, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A young family have been left homeless and a couple forced to use tarpaulin sheets for windows after a cowboy builder allegedly conned them out of £100,000.", "score": 2.8334, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'If people are being moved out of council houses, and they are being replaced with a higher number of private residences - that's a problem.", "score": 2.810965, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The mother of three paid £45,000 for a bungalow extension but said when she returned home after four weeks and there 'was nothing left'", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Six months later she is still sharing a bedroom with her partner and three children with her house left in a pile of rubble", "score": 2.772635, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"What we see in the construction sector are some of the challenges about the cost of construction of houses, because the cost of construction of houses has gone up significantly as a consequence of the global pressures around about the access to raw materials following the invasion of Ukraine, so general construction costs have increased,\" he said.", "score": 2.76525, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Home ownership over the same period halved.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Most of the dollars that have been distributed so far are loans, which recipients are required to repay within two years.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A whopping 67 per cent of over-65s live in homes with two or more spare rooms - far higher than any other age group.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An annual decrease was reported for all-sector starts (6% decrease) and completions (13% decrease) between 2024 and 2025.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In every single region of the country, there are more homes than households: even in London, the epicentre of the housing crisis, there was an excess of 250,000 properties in 2021.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That is a staggering statistic in the middle of a housing emergency in which 8.9 per cent of households in the social rented sector and 5.8 per cent of private rented households are classed as officially \"over-crowded\".", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Young family is left homeless and couple using tarpaulin sheets for windows after cowboy builder 'conned them out of £100,000'", "score": 2.68177, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Still, if there was a water shortage not of my causing and I had more bottles gathering dust in the garage than my family needed, at a time when others were going thirsty, would I not have a moral obligation to offload my excess to help those in desperate need?", "score": 2.658185, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "Ms Taylor has since shared negative reviews on Facebook, which Mr Bishop claims have led to his house being attacked and his life being put at risk.", "score": 2.652965, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 1.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Low supply is causing prices to spike.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Neither party will go on record to explain what went so wrong that more than half of that deal has been torn up, but the council admitted 'progress has been too slow', and this has caused 'serious problems including anti-social behaviour in and around the vacant blocks'.", "score": 2.61247, "claim_types": ["quantity", "correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'We know that these firearms are being stolen to defend public safety,' Mayor Johnson said, noting that in just one year the city has seen a nearly 40 percent decline in firearms being stolen from unlocked vehicles.", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Michael Bishop has been accused of taking £64,500 and £45,000 from the two families before wrecking their houses and running away", "score": 2.61247, "claim_types": ["quantity", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were 430 social sector starts last year in Glasgow last year, up from 309 the year before and the highest in the last four years.", "score": 2.58736, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So far, Notting Hill Genesis has built 703 homes, with another 321 currently under construction.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It was estimated in 2005 that fully retrofitting the estate would cost £350m, exactly the same amount as has been spent to date - although the former figure would now be higher, accounting for inflation.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The 29 single-family homes in Paradise Trails - which are now available for purchase - are in line with Nevada ́s average housing costs.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Gatehouse of Fleet has a population of just over 1,000 and is named after the old tollhouse on the River Fleet.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "But Southwark Council insisted it was more economical to start again, signing a blueprint from Notting Hill Genesis in 2014 to rebuild the estate with 4,200 new homes by 2036 - with the total project estimated at £1.5billion.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Depending on the nature of the project and the contract, a bond might cost a factory anywhere from three-quarters of a percentage point to 3% of a contract ́s entire cost, he said.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We haven't got 100 per cent brilliant reviews.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In terms of starts, building work on 11,929 was started by the private sector and 3,070 homes by the social sector.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Fife Council's current new-build housing programme includes 1,200 homes either planned or already under construction.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The latest construction phase includes 27 council homes for older people, 19 of which are wheelchair-adapted, as well as a 128-place early years centre.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "New build social homes completed in Glasgow last year have plummeted to the lowest level in decades.", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In England alone, there are 1.4 million more properties than households needing them, according to the 2021 census.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "So severe is this problem that, according to government data, 72 per cent of homes in England are now classed as \"under-occupied\", meaning they have at least two bedrooms more than their occupants need.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "As of last October, new housing construction per 1,000 residents over the past 12 months stood at 0.58 in London, compared with 2.35 in New York and 5.27 in Paris.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Aylesbury, which housed more than 10,000 at its peak, is one of the largest and most notorious council estates in the country.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With more than 2,700 homes across dozens of large blocks, it was one of the largest council estates in Europe - but its decline has since become a symbol of the long-term failures of the post-war housing project.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Two of those are almost complete, while the proposal for Phase 2B, which includes the empty Wendover block, is still awaiting planning permission from the council.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "That was part of the impetus for AB540, which focuses on middle-income housing but includes millions of dollars for low-income rentals as well.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Official figures show the number of homes for social rent completed in the city in 2025 was just 235.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across Scotland, social sector new home completions fell to 3611 last year from 4835 in 2024 and the number started was also down.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Still, at least they had tens of thousands of pounds in the bank to see them comfortably through their twilight years, right?", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "'Since the partnership between Notting Hill Genesis and Southwark Council was established in 2014, we've built over 700 homes on the estate, 581 of which the council has bought to utilise as council homes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year fewer than 6,000 started construction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "With £350million spent so far, fewer than a quarter of the new homes have materialised, and more than a third of the original dwellings stand empty, awaiting demolition that has repeatedly been delayed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "His office announced in February it had awarded $86.1 million of the $133 million in the bill.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It has dropped steadily since 2019 when there was 1000 completions.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Across all housing sectors, there were fewer homes completed in Glasgow, with 1530, down from 2301 the year before.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Leaving out 2020, when Covid‐19 affected building activity, the private sector completed fewer homes in 2025 than in any year since 2017 and started fewer homes than in any year since 2013.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "In Fife, almost 41,000 homes were sold and a housing emergency was declared in 2024.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We have an ambitious target agreed between the Mayor and the government of 88,000 new homes a year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "We surveyed our members on the initial proposals, set out in October, and found that across 67 development sites in London, representing over 86,000 homes, only 17 per cent - less than 15,000 homes - could potentially benefit from the original emergency measures.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of the money that ́s been spent, $22 million was earmarked for homebuyers who work in the fields of health care, education, public safety or construction.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Other spending so far has included $15 million on low-income housing specifically, $9 million in grants to local governments and $11 million on land purchases (all of which have been in Clark County).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It provided $23 million worth of loans so construction companies can purchase land for development and $25 million in grants to local governments to cover building and permitting fees.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The Homeless Authority also reported 457 sheltered and 172 unsheltered people during last year's point-in-time survey, which is required by the federal Housing and Urban Development to allow organizations and agencies to receive federal funds.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Meanwhile, records show the number of recorded encampments in Chatham County plummeted from 80 in 2023 to 39 in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The charity Shelter Scotland warned the Scottish Government risked missing its target of 110,000 new affordable homes by 2032.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It is down from 408 the year before and the lowest on record since 1996.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.5, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There was a drop in all housebuilding starts and completions across Scotland.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Of the 240 flats, just six still have tenants, while the sister block is completely empty.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Steph Morley, from Barnsley, and her husband Karl Younger paid Bishop £64,500 to renovate their house", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The project has also received strong support from the local authority, including £300,000 in backing from Dumfries and Galloway Council's Town Centre Living Fund.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There were 17,336 new homes built and 14,999 new builds started across the social and private sector in 2025.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The private sector built 13,725 homes and the social sector built 3,611 homes.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Scotland lost around 500,000 council houses under the Right to Buy scheme between 1980 and 2016.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The need for new homes in London is high, but effective demand is low given the cost buyers face.", "score": 2.5459449999999997, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Edinburgh unveils £350m plan to fast-track thousands of affordable homes", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Last year, the private sector completed the least amount of homes since 2017, with just 13,725 built, while the social sector completed just 3,611, the lowest since 2014.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The number of social homes which began construction in Scotland last year was also the lowest figure on record at 3,070.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "\"The Scottish Government pledged 110,000 affordable homes by 2032 - 70 per cent of which should be for social rent.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "It found that among 32-year-olds who are not yet parents, for example, twice the proportion of those in the lowest quarter of earners said they intended to remain permanently childless, compared with those in the top quarter of earners.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since 2023, the city has agreed to pay more than $7 million to Fort NYC Security to provide security services at homeless shelters, often as a subcontractor for BHRAGS.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "RT @The_TUC: Farage's Reform has pledged to rip up legal protections for workers and renters - handing power to bad bosses and rogue landlords.", "score": 2.538635, "claim_types": ["rules", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Residents in Savannah have started mixing Xylazine, also known as tranq, with fentanyl.", "score": 2.52653, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Parents unable to enter the workplace because of care commitments is one of the most common drivers of child poverty.", "score": 5.35651, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "And hard times generally hit the poorest hardest, leading to rising rates of poverty-related diseases and fewer people able to work.", "score": 3.4184200000000002, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 1.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The conflict has reportedly led to a 33% contraction in the global fertiliser supply chain.", "score": 3.2500299999999998, "claim_types": ["quantity", "correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.5, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "👧🏻 Lifting 450,000 children out of poverty by removing the two-child cap", "score": 3.123595, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.5, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "🥣 Free breakfast clubs in schools - saving parents up to £450 a year", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The UK defines relative poverty as living in a household with income below 60% of the median income in that year.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 0.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Food and drink prices have continued to rise in recent years, with retail prices now at around 38% higher than they were before the pandemic.", "score": 2.6987249999999996, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Households could face food inflation above 8% within months, according to the Institute of Grocery Distribution (IGD), which could add more than £150 a year to the average household's shopping bill.", "score": 2.649215, "claim_types": ["quantity", "predictions"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "FOOD prices in Scotland are set to spike, again.", "score": 2.6127849999999997, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This closure and knock-on effect of oil supplies does have an impact on prices, as food production is energy intensive and is particularly exposed to sudden change in oil and gas prices.", "score": 2.6127849999999997, "claim_types": ["correlation"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.5, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Up to 30% of processed ammonia, used as the raw material in fertiliser, passes through the Gulf.", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Peterborough City Council says it has helped 68 households claim £84,000 in unclaimed benefits", "score": 2.5769, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Since April 2025, over 928,000 parents have utilised the HMRC app to manage their Child Benefit account, including:", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "An online tool has identified more than £84,800 in unclaimed benefits since it went live in January, a local authority has said.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Recent statistics found that, while over 6.9 million families receive Child Benefit payments, only 72% of families claimed it during their baby's first year.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "The key shipping route sees around one fifth of the UK's oil consumption pass through the Strait, on average around 20 million barrels of crude oil per day.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 1.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.5, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "A report by the analytics company, Policy in Practice, estimated there may be about 31,000 people across Peterborough that were entitled to unclaimed benefits they have not yet claimed.", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Dr Chris Provan, the college's chair, said: \"In my daily practice, I see first-hand how poverty affects health - patients develop chronic conditions earlier, struggle to afford nutritious food or heat their homes, and all too often die prematurely... Declining healthy life expectancy not only leads to poorer health outcomes but also creates wider economic and social consequences as people can no longer work and become increasingly isolated due to deteriorating health.\"", "score": 2.5219199999999997, "claim_types": ["correlation", "other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "UK drivers getting up to £2,500 in compensation after going over potholes", "score": 4.66662, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.5, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Political trust tends to scale: if a governing party - be it the Social Democrats or Labour - is seen as not being able to deal with the potholes on our roads and the price of our groceries, why trust it to manage public service reform or geopolitical turmoil?", "score": 4.386095, "claim_types": [], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "If an accident occurs due to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", "score": 4.073585, "claim_types": ["correlation", "rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 0.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Should an accident occur owing to a failure to maintain these roads, for example, potholes, the authority is generally liable to pay compensation.", "score": 3.95176, "claim_types": ["rules"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 1.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "This follows MSE publishing fresh guidance encouraging motorists to contemplate submitting claims if their vehicles sustain damage from hitting potholes.", "score": 3.5503549999999997, "claim_types": ["other"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 1.0}} -{"sentence_text": "The latest figures show there's a record £18 billion pothole repair backlog!", "score": 2.7091849999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 1.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "There's a record £18 billion backlog of damage to local roads in England and Wales (stock image) (Image: Getty )", "score": 2.556405, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Arrow MORE: A massive pothole wrecked my van and I'm over £1,000 out of pocket", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 0.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Motorists who have lodged claims following pothole-related vehicle damage have secured compensation payments of up to £2,500, according to Money Saving Expert (MSE).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} -{"sentence_text": "Some UK drivers who have put in a claim after a pothole caused damage to their car have been paid up to £2,500 in compensation, according to Money Saving Expert (MSE).", "score": 2.5459449999999997, "claim_types": ["quantity"], "question_answers": {"Is this making a claim that is too good to be true?": 0.0, "Could believing this claim harm someone's health?": 0.0, "Does this sentence relate to many people?": 1.0, "Is this sentence likely to be believed by many people?": 1.0, "Could believing this claim lead to violence?": 0.0, "Does the sentence contain compare quantities, such as 'more' or 'less'?": 0.0, "Answer 'yes' if this is a general or universal claim or answer 'no' if it is about a single event or individual": 0.0, "Does the sentence discuss superlatives, such as 'biggest ever' or 'fastest growth'?": 0.0, "Is this sentence interesting to the average reader?": 1.0, "Does the sentence suggest a course of action?": 0.0}} diff --git a/scripts/encoder_experiment/label_sentences.py b/src/local_models/label_sentences.py similarity index 99% rename from scripts/encoder_experiment/label_sentences.py rename to src/local_models/label_sentences.py index 2b48184..f1f3e36 100644 --- a/scripts/encoder_experiment/label_sentences.py +++ b/src/local_models/label_sentences.py @@ -26,12 +26,12 @@ import sys from pathlib import Path +from local_models.questions import QUESTIONS + from pastel.models import BiasType, Sentence from pastel.optimise_weights import load_examples from pastel.pastel import Pastel -from questions import QUESTIONS - logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s") logging.getLogger("google.ai.generativelanguage").setLevel(logging.WARNING) # supress noisy messages "AFC is enabled with max remote calls: 10.": diff --git a/scripts/encoder_experiment/local_answerer.py b/src/local_models/local_answerer.py similarity index 94% rename from scripts/encoder_experiment/local_answerer.py rename to src/local_models/local_answerer.py index 269e57a..fb3832b 100644 --- a/scripts/encoder_experiment/local_answerer.py +++ b/src/local_models/local_answerer.py @@ -2,7 +2,7 @@ from pathlib import Path -from questions import QUESTIONS +from local_models.questions import QUESTIONS MODELS: dict[str, str] = { "ModernBERT-multilingual": "jhu-clsp/mmBERT-base", @@ -12,6 +12,7 @@ MODEL_CATEGORY = "ModernBERT-multilingual" RESULTS_DIR = Path(__file__).parent / "results" +MODELS_DIR = Path("data/local_models/models") MAX_LENGTH = 128 _model_cache: dict[int, tuple] = {} @@ -21,7 +22,7 @@ def _load_model_for_question(question_index: int) -> tuple: from transformers import AutoModelForSequenceClassification, AutoTokenizer question_label = f"q{question_index:02d}" - checkpoint_dir = RESULTS_DIR / MODEL_CATEGORY / question_label + checkpoint_dir = MODELS_DIR / MODEL_CATEGORY / question_label checkpoints = sorted( checkpoint_dir.glob("checkpoint-*"), diff --git a/scripts/encoder_experiment/questions.py b/src/local_models/questions.py similarity index 100% rename from scripts/encoder_experiment/questions.py rename to src/local_models/questions.py From 0ee1c06d6c14a97c18c52e7dbeaf095fcbef37a5 Mon Sep 17 00:00:00 2001 From: David Corney Date: Tue, 2 Jun 2026 14:41:19 +0000 Subject: [PATCH 09/11] feat: Adding README and other comments --- src/local_models/README.md | 28 ++ .../local_models}/finetune_encoder.py | 269 +++++++++--------- src/local_models/label_sentences.py | 88 +++--- src/local_models/local_answerer.py | 8 +- src/pastel/pastel.py | 19 +- 5 files changed, 221 insertions(+), 191 deletions(-) create mode 100644 src/local_models/README.md rename {scripts/encoder_experiment => src/local_models}/finetune_encoder.py (61%) diff --git a/src/local_models/README.md b/src/local_models/README.md new file mode 100644 index 0000000..1a977e2 --- /dev/null +++ b/src/local_models/README.md @@ -0,0 +1,28 @@ +# Using local models for Pastel + +Originally, the Pastel library relied on Gemini to answer a set of questions around each piece of text. While this produced good results, the rising price of Gemini and comparable tools encourages the use of small, local, fine-tuned encoder models. + +When a new question is added, we need to create a training set and then use it to fine tune a new model. Each model will only answer one question. We use Gemini to create the training set as a one-off task. + +## Create a training set + +The `label_sentences.py` module `main()` function processes a single question. It loads a set of sentences that already have labels for some questions. It then passes the sentences and the new question to Gemini and records the results. The end result is an extra set of labels in the `labelled_sentences.jsonl` file. + +## Training a model + +A new model can then be trained using `finetune_encode.py`. Pass the question to `build_one_question_answerer()` and it will extract the question and labelled sentences from the training file and fine tune a model. + +When all new questions have been set up, a new Pastel model can be trained by adding the questions to `demo_beam_search.py`. + +## Inference + +After training, `local_answerer.py` uses a fine-tuned model to label new sentences. + +# Known issues! + +* The function `pastel.py / _get_answers_for_single_sentence()` can either pass the questions to Gemini (needed when creating a training set) or to the new fine-tuned model (for inference). Currently, this switch is done by commenting out bits of code! In the long run, in production, we'll want to only use Gemini during training. However, the library is open source, so it might want to keep both options with a flag set in the environment to indicate 'gemini or local'. + +* The trained local models will need to be stored in a bucket and downloaded as required. + +* Evaluation of individual local models and the combined Pastel model. + diff --git a/scripts/encoder_experiment/finetune_encoder.py b/src/local_models/finetune_encoder.py similarity index 61% rename from scripts/encoder_experiment/finetune_encoder.py rename to src/local_models/finetune_encoder.py index 025bceb..0e67b89 100644 --- a/scripts/encoder_experiment/finetune_encoder.py +++ b/src/local_models/finetune_encoder.py @@ -1,13 +1,8 @@ # Claude-created -"""Script 2: Fine-tune encoder-only LLMs on the labelled data from label_sentences.py. +"""Fine-tune encoder-only LLMs on labelled data. -Trains three models on binary yes/no classification for each question: - - ModernBERT-base-multilingual (answerdotai/ModernBERT-base-multilingual) - - mDeBERTa-v3-base (microsoft/mdeberta-v3-base) - - XLM-RoBERTa-base (xlm-roberta-base) Each model is fine-tuned separately for each question (NLI-style: input = question + sentence). -Results are written to a CSV and a summary table is printed to stdout. Dependencies for local fine-tuning: uv sync --group ml-labeller @@ -24,10 +19,11 @@ from dataclasses import dataclass from pathlib import Path -import datasets # noqa: F401 +# import datasets # noqa: F401 +import datasets as hf_datasets import numpy as np -# import transformers # noqa: F401 +from sklearn.model_selection import StratifiedShuffleSplit from transformers import AutoTokenizer from local_models.questions import QUESTIONS @@ -50,6 +46,7 @@ def setup_logging(output_dir: Path) -> None: logger.info("Logging to %s", log_path) +# Just using ModernBERT-multilingual but other options are available MODELS: dict[str, str] = { "ModernBERT-multilingual": "jhu-clsp/mmBERT-base", # "mDeBERTa-v3-base": "microsoft/mdeberta-v3-base", @@ -73,7 +70,7 @@ class QuestionDataset: class ModelResult: model_name: str question: str - question_index: int + question_label: str n_train: int n_test: int accuracy: float @@ -95,41 +92,32 @@ def load_labelled_data(input_path: Path) -> list[dict]: return records -def build_question_datasets( +def build_question_dataset( records: list[dict], - questions: list[str], -) -> list[QuestionDataset]: - """ - For each question, build a QuestionDataset containing all the questions + labels (0/1). - Input string = question + " " + sentence_text (tokeniser adds [CLS]/[SEP]). - Label = int(answer) for 0.0 or 1.0; records with 0.5 (unsure) are filtered out. - """ - datasets = [] - for question in questions: - inputs, labels = [], [] - n_filtered = 0 - for record in records: - answers = record.get("question_answers", {}) - if question not in answers: - print(f"No answers for question {question}") - continue - answer = answers[question] - if answer == 0.5: - n_filtered += 1 - continue - inputs.append(question + " " + record["sentence_text"]) - labels.append(int(answer)) - if n_filtered: - logger.info( - "Question %r: filtered %d unsure (0.5) records, %d remaining", - question[:50], - n_filtered, - len(inputs), - ) - datasets.append( - QuestionDataset(question=question, inputs=inputs, labels=labels) + question: str, +) -> QuestionDataset: + """Reformat trainig data into a QuestionDataSet object""" + inputs, labels = [], [] + n_filtered = 0 + for record in records: + answers = record.get("question_answers", {}) + if question not in answers: + print(f"No answers for question {question}") + continue + answer = answers[question] + if answer == 0.5: + n_filtered += 1 + continue + inputs.append(question + " " + record["sentence_text"]) + labels.append(int(answer)) + if n_filtered: + logger.info( + "Question %r: filtered %d unsure (0.5) records, %d remaining", + question[:50], + n_filtered, + len(inputs), ) - return datasets + return QuestionDataset(question=question, inputs=inputs, labels=labels) def split_dataset( @@ -138,10 +126,9 @@ def split_dataset( random_state: int = RANDOM_SEED, ) -> tuple[QuestionDataset, QuestionDataset] | None: """ - Stratified 80/20 train/test split. + Stratified train/test split. Returns None (and warns) if a class has fewer than 2 examples. """ - from sklearn.model_selection import StratifiedShuffleSplit labels_arr = np.array(qd.labels) unique, counts = np.unique(labels_arr, return_counts=True) @@ -183,7 +170,6 @@ def split_dataset( def tokenise_dataset(qd: QuestionDataset, tokenizer) -> "datasets.Dataset": - import datasets as hf_datasets tokenised = tokenizer( qd.inputs, @@ -216,7 +202,7 @@ def compute_metrics(eval_pred) -> dict[str, float]: } -def train_one_model( +def finetune_one_model( model_key: str, model_id: str, train_ds, @@ -288,8 +274,32 @@ def auto_detect_device() -> str: return "cpu" -def train_all_models( - question_datasets: list[QuestionDataset], +def get_question_id(question: str) -> str: + map_path = Path("data/local_models/models/ModernBERT-multilingual/model_map.json") + question_map: dict[str, str] = ( + json.loads(map_path.read_text(encoding="utf-8")) if map_path.exists() else {} + ) + + if question in question_map: + return question_map[question] + + existing_ids = [ + int(v[1:]) + for v in question_map.values() + if v.startswith("q") and v[1:].isdigit() + ] + next_id = max(existing_ids, default=-1) + 1 + new_id = f"q{next_id:02d}" + question_map[question] = new_id + map_path.parent.mkdir(parents=True, exist_ok=True) + map_path.write_text( + json.dumps(question_map, indent=4, ensure_ascii=False), encoding="utf-8" + ) + return new_id + + +def train_one_model( + question_dataset: QuestionDataset, output_dir: Path, epochs: int, batch_size: int, @@ -297,72 +307,74 @@ def train_all_models( save_checkpoints: bool, csv_path: Path, ) -> list[ModelResult]: - """For each question, load the annotated dataset then train a local transformer model""" + """For this question, load the annotated dataset then train a local transformer model. + Update the file mapping questions to model names.""" results: list[ModelResult] = [] + question = question_dataset.question + question_label = get_question_id(question) + + # for q_idx, qd in enumerate(question_datasets): + split = split_dataset(question_dataset) + if split is None: + return [] + # fail # TODO: handle this correctly: raise exception as it's a pretty terminal failing + train_qd, test_qd = split + # question_label = f"q{q_idx:02d}" + logger.info( + "Question %s: (train=%d, test=%d)", + question[:60], + len(train_qd.inputs), + len(test_qd.inputs), + ) - for q_idx, qd in enumerate(question_datasets): - split = split_dataset(qd) - if split is None: + for model_key, model_id in MODELS.items(): + logger.info(" Training %s (%s)...", model_key, model_id) + tokenizer = AutoTokenizer.from_pretrained(model_id) + + train_ds = tokenise_dataset(train_qd, tokenizer) + test_ds = tokenise_dataset(test_qd, tokenizer) + print(f"Training '{question[:40]}...' ") + try: + metrics, elapsed = finetune_one_model( + model_key=model_key, + model_id=model_id, + train_ds=train_ds, + test_ds=test_ds, + output_dir=output_dir, + question_label=question_label, + epochs=epochs, + batch_size=batch_size, + lr=lr, + save_checkpoints=save_checkpoints, + ) + except Exception as e: + logger.error(" Failed for %s / %s", model_key, e) continue - train_qd, test_qd = split - question_label = f"q{q_idx:02d}" + + result = ModelResult( + model_name=model_key, + question=question, + question_label=question_label, + n_train=len(train_qd.inputs), + n_test=len(test_qd.inputs), + accuracy=metrics.get("accuracy", float("nan")), + f1_binary=metrics.get("f1_binary", float("nan")), + f1_macro=metrics.get("f1_macro", float("nan")), + precision=metrics.get("precision", float("nan")), + recall=metrics.get("recall", float("nan")), + train_seconds=elapsed, + ) + results.append(result) + append_result_csv(result, csv_path) logger.info( - "Question %d/%d: %r (train=%d, test=%d)", - q_idx + 1, - len(question_datasets), - qd.question[:60], - len(train_qd.inputs), - len(test_qd.inputs), + " accuracy=%.3f f1_binary=%.3f f1_macro=%.3f (%.1fs)", + result.accuracy, + result.f1_binary, + result.f1_macro, + elapsed, ) - for model_key, model_id in MODELS.items(): - logger.info(" Training %s (%s)...", model_key, model_id) - tokenizer = AutoTokenizer.from_pretrained(model_id) - - train_ds = tokenise_dataset(train_qd, tokenizer) - test_ds = tokenise_dataset(test_qd, tokenizer) - print(f"Training q {q_idx} ") - try: - metrics, elapsed = train_one_model( - model_key=model_key, - model_id=model_id, - train_ds=train_ds, - test_ds=test_ds, - output_dir=output_dir, - question_label=question_label, - epochs=epochs, - batch_size=batch_size, - lr=lr, - save_checkpoints=save_checkpoints, - ) - except Exception as e: - logger.error(" Failed for %s / question %d: %s", model_key, q_idx, e) - continue - - result = ModelResult( - model_name=model_key, - question=qd.question, - question_index=q_idx, - n_train=len(train_qd.inputs), - n_test=len(test_qd.inputs), - accuracy=metrics.get("accuracy", float("nan")), - f1_binary=metrics.get("f1_binary", float("nan")), - f1_macro=metrics.get("f1_macro", float("nan")), - precision=metrics.get("precision", float("nan")), - recall=metrics.get("recall", float("nan")), - train_seconds=elapsed, - ) - results.append(result) - append_result_csv(result, csv_path) - logger.info( - " accuracy=%.3f f1_binary=%.3f f1_macro=%.3f (%.1fs)", - result.accuracy, - result.f1_binary, - result.f1_macro, - elapsed, - ) - return results @@ -395,7 +407,7 @@ def append_result_csv(result: ModelResult, output_path: Path) -> None: writer.writerow( { "model_name": result.model_name, - "question_index": result.question_index, + "question_index": result.question_label, "question_text": result.question, "n_train": result.n_train, "n_test": result.n_test, @@ -409,33 +421,7 @@ def append_result_csv(result: ModelResult, output_path: Path) -> None: ) -def print_summary_table(results: list[ModelResult]) -> None: - if not results: - print("No results to summarise.") - return - - print("\n" + "=" * 70) - print("SUMMARY: Mean ± SD of binary F1 across all questions") - print("=" * 70) - print(f"{'Model':<30} {'N questions':>11} {'Mean F1':>8} {'SD F1':>7}") - print("-" * 70) - - for model_key in MODELS: - model_results = [r for r in results if r.model_name == model_key] - if not model_results: - continue - f1_scores = [r.f1_binary for r in model_results if not np.isnan(r.f1_binary)] - if not f1_scores: - print(f"{model_key:<30} {'—':>11} {'—':>8} {'—':>7}") - continue - mean_f1 = np.mean(f1_scores) - sd_f1 = np.std(f1_scores) - print(f"{model_key:<30} {len(f1_scores):>11} {mean_f1:>8.3f} {sd_f1:>7.3f}") - - print("=" * 70 + "\n") - - -def main() -> None: +def build_one_question_answerer(question: str) -> None: input_path = Path("data/local_models/labelled_sentences.jsonl") output_dir = Path("data/local_models/models") @@ -454,17 +440,16 @@ def main() -> None: device = auto_detect_device() logger.info("Using device: %s", device) if device != "cpu": - os.environ.setdefault("CUDA_VISIBLE_DEVICES", "0") records = load_labelled_data(input_path) - question_datasets = build_question_datasets(records, QUESTIONS) + question_dataset = build_question_dataset(records, question) csv_path = output_dir / "results.csv" init_results_csv(csv_path) - results = train_all_models( - question_datasets=question_datasets, + results = train_one_model( + question_dataset=question_dataset, output_dir=output_dir, epochs=epochs, batch_size=batch_size, @@ -473,8 +458,8 @@ def main() -> None: csv_path=csv_path, ) - print_summary_table(results) - if __name__ == "__main__": - main() + # main() + new_question = "Is this sentence a joke or satirical?" + build_one_question_answerer(new_question) diff --git a/src/local_models/label_sentences.py b/src/local_models/label_sentences.py index f1f3e36..2ad102e 100644 --- a/src/local_models/label_sentences.py +++ b/src/local_models/label_sentences.py @@ -1,5 +1,5 @@ # Claude-created script -"""Script 1: Use Gemini (via Pastel) to label sentences with yes/no answers to a fixed question list. +"""Use Gemini (via Pastel) to label sentences with yes/no answers to a fixed question list. Output is a JSONL file with one record per sentence, each containing a `question_answers` dict. The script is restart-safe: sentences already written to the output file are skipped. @@ -19,7 +19,6 @@ --batch-size 20 """ -import argparse import asyncio import json import logging @@ -82,8 +81,8 @@ def build_pastel(questions: list[str]) -> Pastel: return Pastel.from_feature_list(questions) -def load_already_labelled(output_path: Path) -> set[str]: - """Return the set of sentence_text values already present in the output file.""" +def load_already_labelled(output_path: Path, question: str) -> set[str]: + """Return sentence_text values that already have an answer for this question.""" already_done: set[str] = set() if not output_path.exists(): return already_done @@ -93,7 +92,8 @@ def load_already_labelled(output_path: Path) -> set[str]: if line: try: record = json.loads(line) - already_done.add(record["sentence_text"]) + if question in record.get("question_answers", {}): + already_done.add(record["sentence_text"]) except (json.JSONDecodeError, KeyError): pass return already_done @@ -119,8 +119,9 @@ def format_output_record( async def label_batch( pastel: Pastel, batch_rows: list[dict], + questions: list[str], ) -> list[dict]: - """Call Pastel for a batch of rows, return formatted output records.""" + """Call Gemini (via Pastel) to label a batch of rows, return formatted output records.""" sentences = [ Sentence( sentence_text=row["sentence_text"], @@ -136,42 +137,38 @@ async def label_batch( if sentence not in answers_by_sentence: logger.warning("No answer returned for: %s", row["sentence_text"][:60]) continue - record = format_output_record(row, answers_by_sentence[sentence], QUESTIONS) + record = format_output_record(row, answers_by_sentence[sentence], questions) records.append(record) return records -def append_records(records: list[dict], output_path: Path) -> None: - with output_path.open("a", encoding="utf-8") as f: - for record in records: +def update_records(new_records: list[dict], output_path: Path) -> None: + existing: dict[str, dict] = {} + if output_path.exists(): + with output_path.open("r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + try: + record = json.loads(line) + existing[record["sentence_text"]] = record + except (json.JSONDecodeError, KeyError): + pass + for record in new_records: + text = record["sentence_text"] + if text in existing: + existing[text]["question_answers"].update(record["question_answers"]) + else: + existing[text] = record + with output_path.open("w", encoding="utf-8") as f: + for record in existing.values(): f.write(json.dumps(record, ensure_ascii=False) + "\n") -def parse_args() -> argparse.Namespace: - parser = argparse.ArgumentParser(description=__doc__) - parser.add_argument( - "--input", - default="scripts/encoder_experiment/fullfact-2026-03-31-claims.jsonl", - help="Path to input file (.json FullFact claims export or .jsonl pastel training format)", - ) - parser.add_argument( - "--output", - default="scripts/encoder_experiment/labelled_sentences.jsonl", - help="Path for labelled output JSONL", - ) - parser.add_argument( - "--batch-size", - type=int, - default=20, - help="Number of sentences per Pastel call (default: 20)", - ) - return parser.parse_args() - - -async def main() -> None: - args = parse_args() - input_path = Path(args.input) - output_path = Path(args.output) +async def main(question: str) -> None: + input_path = Path("data/local_models/fullfact-2026-03-31-claims.jsonl") + output_path = Path("data/local_models/labelled_sentences.jsonl") + batch_size = 20 if not input_path.exists(): logger.error("Input file not found: %s", input_path) @@ -180,7 +177,7 @@ async def main() -> None: rows = load_input(input_path) logger.info("Loaded %d sentences from %s", len(rows), input_path) - already_done = load_already_labelled(output_path) + already_done = load_already_labelled(output_path, question) if already_done: logger.info("Skipping %d already-labelled sentences", len(already_done)) @@ -189,12 +186,9 @@ async def main() -> None: logger.info("All sentences already labelled. Nothing to do.") return - logger.info( - "%d sentences to label with %d questions each", len(pending), len(QUESTIONS) - ) + logger.info("%d sentences to label", len(pending)) - pastel = build_pastel(QUESTIONS) - batch_size = args.batch_size + pastel = build_pastel([question]) total_written = 0 for i in range(0, len(pending), batch_size): @@ -205,16 +199,16 @@ async def main() -> None: (len(pending) + batch_size - 1) // batch_size, len(batch), ) - records = await label_batch(pastel, batch) - append_records(records, output_path) + records = await label_batch(pastel, batch, [question]) + update_records(records, output_path) total_written += len(records) logger.info( " Written %d records (total so far: %d)", len(records), total_written ) # not sure if needed; might reduce rate limits/threading errors: await asyncio.sleep(1.0) - # if i >= 200: - # break + if i >= 200: + break logger.info("Done. %d sentences labelled -> %s", total_written, output_path) # Allow gRPC background threads (used by the Gemini client) to drain @@ -223,4 +217,6 @@ async def main() -> None: if __name__ == "__main__": - asyncio.run(main()) + new_question = "Is this sentence a joke or satirical?" + + asyncio.run(main(new_question)) diff --git a/src/local_models/local_answerer.py b/src/local_models/local_answerer.py index fb3832b..ffca2a4 100644 --- a/src/local_models/local_answerer.py +++ b/src/local_models/local_answerer.py @@ -10,7 +10,7 @@ "XLM-RoBERTa-base": "FacebookAI/xlm-roberta-base", } -MODEL_CATEGORY = "ModernBERT-multilingual" +MODEL_CATEGORY = "ModernBERT-multilingual" # only using this one for now RESULTS_DIR = Path(__file__).parent / "results" MODELS_DIR = Path("data/local_models/models") MAX_LENGTH = 128 @@ -49,7 +49,11 @@ def preload_models(): def answer_question(question: str, sentence: str) -> float: import torch - question_index = QUESTIONS.index(question) + try: + question_index = QUESTIONS.index(question) + except: + print("Error: unknown question ", question) + return 0.0 if question_index not in _model_cache: _model_cache[question_index] = _load_model_for_question(question_index) diff --git a/src/pastel/pastel.py b/src/pastel/pastel.py index baebce8..483c7a0 100644 --- a/src/pastel/pastel.py +++ b/src/pastel/pastel.py @@ -13,6 +13,7 @@ from genai_utils.gemini import run_prompt_async from google.api_core import exceptions as core_exceptions +from local_models.local_answerer import answer_question from pastel import pastel_functions from pastel.models import FEATURE_TYPE, BiasType, ScoreAndAnswers, Sentence @@ -227,6 +228,17 @@ async def _get_llm_answers_for_single_sentence( ) return sent_answers + def get_local_answers_for_single_sentence( + self, sentence: Sentence + ) -> dict[FEATURE_TYPE, float]: + sent_answers: dict[FEATURE_TYPE, float] = {} + questions = self.get_questions() + for question in questions: + response = answer_question(question, sentence.sentence_text) + sent_answers[question] = response + + return sent_answers + def _get_function_answers_for_single_sentence( self, sentence: Sentence ) -> dict[FEATURE_TYPE, float]: @@ -239,13 +251,18 @@ def _get_function_answers_for_single_sentence( async def _get_answers_for_single_sentence( self, sentence: Sentence ) -> dict[FEATURE_TYPE, float]: + # TODO: handle switching between Gemini & local models better - pass through new flag? # First, get answers to all the questions from genAI: llm_sent_answers = await self._get_llm_answers_for_single_sentence(sentence) + # print("_get_answers_for_single_sentence gives ", llm_sent_answers) + # llm_sent_answers = dict() + # local_sent_answers = self.get_local_answers_for_single_sentence(sentence) + local_sent_answers = dict() # Second, get values from the functions function_sent_answers = self._get_function_answers_for_single_sentence(sentence) - return llm_sent_answers | function_sent_answers + return local_sent_answers | llm_sent_answers | function_sent_answers async def get_answers_to_questions( self, sentences: list[Sentence] From fe5ef7c1c11c339de994323406c28711717cd836 Mon Sep 17 00:00:00 2001 From: David Corney Date: Tue, 2 Jun 2026 14:53:18 +0000 Subject: [PATCH 10/11] Adding missing __init__ package file --- src/local_models/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/local_models/__init__.py diff --git a/src/local_models/__init__.py b/src/local_models/__init__.py new file mode 100644 index 0000000..e69de29 From f5ec1835ab98baf350d05242a2099b15c32ac831 Mon Sep 17 00:00:00 2001 From: David Corney Date: Wed, 24 Jun 2026 10:21:30 +0100 Subject: [PATCH 11/11] Delete scripts/encoder_experiment/flowchart.md --- scripts/encoder_experiment/flowchart.md | 28 ------------------------- 1 file changed, 28 deletions(-) delete mode 100644 scripts/encoder_experiment/flowchart.md diff --git a/scripts/encoder_experiment/flowchart.md b/scripts/encoder_experiment/flowchart.md deleted file mode 100644 index 2055e42..0000000 --- a/scripts/encoder_experiment/flowchart.md +++ /dev/null @@ -1,28 +0,0 @@ -```mermaid - graph TD - %% Main Flow - A(Polygraph daily cronjob ) --> B(LLM responses) - B --> C1[extract atoms] - - subgraph factuality [Factuality] - C1 --> C2[find/label repeats] - C2 --> C3[auto mark accuracy] - end - - - B -.-> N1(extract URLs) - %% Green Path (Annotated Flow) - subgraph URL [Source consistency] - - N1 --> N2(find/label repeats) - N2 --> N3(auto-mark consistency) - N3 <--> N4@{ shape:lean-l, label: "manual mark (source)" } - end - - %% Bottom Outputs - C3 --> D1[/factuality score/] - C3 <--> D2@{ shape: lean-l, label: "manual marker (factuality)" } - D2 <--> D3[Web UI] - N4 <--> D3 - -```